Skip to content

Commit

Permalink
Merge pull request #15 from alibuild/alibot-cleanup-8945
Browse files Browse the repository at this point in the history
[PWGCF] Please consider the following formatting changes to #8945
  • Loading branch information
JStaa authored Dec 11, 2024
2 parents 93d559c + dd82f87 commit c979424
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ struct ThreePartCorr {
QARegistry.add("hTOFPion", "hTOFPion", {HistType::kTH2D, {{TrackPtAxis}, {1000, -50, 50}}});
QARegistry.add("hTOFKaon", "hTOFKaon", {HistType::kTH2D, {{TrackPtAxis}, {1000, -50, 50}}});
QARegistry.add("hTOFProton", "hTOFProton", {HistType::kTH2D, {{TrackPtAxis}, {1000, -50, 50}}});

QARegistry.add("hInvMassLambda", "hInvMassLambda", {HistType::kTH3D, {{LambdaInvMassAxis}, {V0PtAxis}, {CentralityAxis}}});
QARegistry.add("hInvMassAntiLambda", "hInvMassAntiLambda", {HistType::kTH3D, {{LambdaInvMassAxis}, {V0PtAxis}, {CentralityAxis}}});

Expand Down Expand Up @@ -204,11 +204,11 @@ struct ThreePartCorr {
// Start of the Track QA
for (const auto& track : tracks) {
if (track.hasTOF()) {
QARegistry.fill(HIST("hTOFPion"), track.pt(), track.tofNSigmaPi());
QARegistry.fill(HIST("hTOFKaon"), track.pt(), track.tofNSigmaKa());
QARegistry.fill(HIST("hTOFProton"), track.pt(), track.tofNSigmaPr());
QARegistry.fill(HIST("hTOFPion"), track.pt(), track.tofNSigmaPi());
QARegistry.fill(HIST("hTOFKaon"), track.pt(), track.tofNSigmaKa());
QARegistry.fill(HIST("hTOFProton"), track.pt(), track.tofNSigmaPr());
}

A_PID = TrackPID(track);
if (A_PID[1] < 4.0) {
QARegistry.fill(HIST("hTrackPt"), track.pt());
Expand Down

0 comments on commit c979424

Please sign in to comment.