Skip to content

Commit 18e7bbb

Browse files
basiachBarbara Chytla
andauthored
[PWGCF] FemtoUniverse - Adding a TOF nSigma cut to cascade correlations (#10619)
Co-authored-by: Barbara Chytla <barbara.chytla@cern.ch>
1 parent ba61317 commit 18e7bbb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,8 @@ struct femtoUniversePairTaskTrackCascadeExtended { // o2-linter: disable=name/st
415415
/// Child particles must pass this condition to be selected
416416
if (!isParticleTPC(posChild, CascChildTable[confCascType1][0]) || !isParticleTPC(negChild, CascChildTable[confCascType1][1]) || !isParticleTPC(bachelor, CascChildTable[confCascType1][2]))
417417
continue;
418+
if (!isParticleTOF(posChild, CascChildTable[confCascType1][0]) || !isParticleTOF(negChild, CascChildTable[confCascType1][1]) || !isParticleTOF(bachelor, CascChildTable[confCascType1][2]))
419+
continue;
418420

419421
sameEventCont.setPair<false>(p1, p2, multCol, confUse3D, 1.0f);
420422
}
@@ -527,6 +529,9 @@ struct femtoUniversePairTaskTrackCascadeExtended { // o2-linter: disable=name/st
527529
/// Child particles must pass this condition to be selected
528530
if (!isParticleTPC(posChild, CascChildTable[confCascType1][0]) || !isParticleTPC(negChild, CascChildTable[confCascType1][1]) || !isParticleTPC(bachelor, CascChildTable[confCascType1][2]))
529531
continue;
532+
if (!isParticleTOF(posChild, CascChildTable[confCascType1][0]) || !isParticleTOF(negChild, CascChildTable[confCascType1][1]) || !isParticleTOF(bachelor, CascChildTable[confCascType1][2]))
533+
continue;
534+
530535
// track cleaning
531536
if (!pairCleaner.isCleanPair(p1, p2, parts)) {
532537
continue;

0 commit comments

Comments
 (0)