Skip to content

Commit 40641b6

Browse files
authored
PWGHF: Fix isPhysicalPrimary (AliceO2Group#415)
1 parent d31224d commit 40641b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGHF/Tasks/qaPidRejection.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ struct QaTrackingRejection {
182182
bool isRICHhpProton = !(selectorProton.getStatusTrackPIDRICH(track) == TrackSelectorPID::Status::PIDRejected);
183183
bool isMIDhpMuon = (selectorMuon.getStatusTrackPIDMID(track) == TrackSelectorPID::Status::PIDAccepted);
184184

185-
if (MC::isPhysicalPrimary(mcParticle)) {
185+
if (mcParticle.isPhysicalPrimary()) {
186186
histos.fill(HIST("tracking/pteta"), track.pt(), track.eta());
187187
if (isTOFhpElectron) {
188188
histos.fill(HIST("trackingTOFselElectron/pteta"), track.pt(), track.eta());

0 commit comments

Comments
 (0)