Skip to content

Commit

Permalink
Fix bugs (#4584)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmazzasc authored Feb 4, 2024
1 parent 89be1f9 commit 43a8b90
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,7 @@ struct lfmatchingqa {
histos.fill(HIST("thnDe"), signTPCMom, signGloMom, track.tpcInnerParam() - track.p(), track.dcaXY(), getITSClSize(track) * cosL, track.tpcSignal(), tpcNSigmaDeu, track.pidForTracking(), pidMC, genPMC);
}
if (abs(tpcNSigmaHe3) < 4) {
histos.fill(HIST("tpcNsigmaHe"), signTPCMom, signGloMom, tpcNSigmaHe3);
histos.fill(HIST("pidHypoHe"), signTPCMom, tpcNSigmaHe3, track.pidForTracking());
histos.fill(HIST("thnHe"), signTPCMom, signGloMom, track.tpcInnerParam() - track.p(), track.dcaXY(), getITSClSize(track) * cosL, track.tpcSignal(), tpcNSigmaHe3, track.pidForTracking(), pidMC, genPMC);
}
}

Expand Down Expand Up @@ -169,9 +168,8 @@ struct lfmatchingqa {
for (const auto& track : tracks) {
if (!selectTrack(track)) {
continue;

fillHistograms(track, -1, -999);
}
fillHistograms(track, -1, -999);
}
}
PROCESS_SWITCH(lfmatchingqa, processData, "Data analysis", true);
Expand Down

0 comments on commit 43a8b90

Please sign in to comment.