Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,8 @@ struct femtoUniverseProducerTask {
}
if (!(IsKaonNSigma(p2.pt(), trackCuts.getNsigmaTPC(p2, o2::track::PID::Kaon), trackCuts.getNsigmaTOF(p2, o2::track::PID::Kaon)))) {
continue;
} else if ((!(p1.sign() == 1)) || (!(p2.sign() == -1))) {
continue;
}

TLorentzVector part1Vec;
Expand Down
28 changes: 14 additions & 14 deletions PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -376,17 +376,17 @@ struct femtoUniversePairTaskTrackPhi {
continue;
}
}
// Close Pair Rejection
if (ConfIsCPR.value) {
if (pairCloseRejection.isClosePair(track, phicandidate, parts, magFieldTesla)) {
continue;
}
}
// // Close Pair Rejection
// if (ConfIsCPR.value) {
// if (pairCloseRejection.isClosePair(track, phicandidate, parts, magFieldTesla)) {
// continue;
// }
// }

// Track Cleaning
if (!pairCleaner.isCleanPair(track, phicandidate, parts)) {
continue;
}
// // Track Cleaning
// if (!pairCleaner.isCleanPair(track, phicandidate, parts)) {
// continue;
// }
sameEventFemtoCont.setPair<isMC>(track, phicandidate, multCol, ConfBothTracks.ConfUse3D);
sameEventAngularCont.setPair<isMC>(track, phicandidate, multCol, ConfBothTracks.ConfUse3D);
}
Expand Down Expand Up @@ -465,10 +465,10 @@ struct femtoUniversePairTaskTrackPhi {
continue;
}
}
// // if (ConfIsCPR.value) {
if (pairCloseRejection.isClosePair(track, phicandidate, parts, magFieldTesla)) {
continue;
}
// if (ConfIsCPR.value) {
// if (pairCloseRejection.isClosePair(track, phicandidate, parts, magFieldTesla)) {
// continue;
// }
// }

mixedEventFemtoCont.setPair<isMC>(track, phicandidate, multCol, ConfBothTracks.ConfUse3D);
Expand Down