You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// For deuterons: Determine whether to apply TOF based on pt threshold
957
980
if (trackSpecies == kDeuteronForFemto) {
981
+
982
+
if (track.tpcNClsFound() < mMinTpcCluster) {
983
+
returnfalse;
984
+
}
985
+
if (track.tpcNClsCrossedRows() < mMinTpcRow) {
986
+
returnfalse;
987
+
}
988
+
if (track.tpcCrossedRowsOverFindableCls() < mMinTpcCrossedOverFound) {
989
+
returnfalse;
990
+
}
991
+
if (track.tpcNClsShared() > mMaxTpcShared) {
992
+
returnfalse;
993
+
}
994
+
if (track.tpcFractionSharedCls() > mMaxTpcFracShared) {
995
+
returnfalse;
996
+
}
997
+
if (track.itsNCls() < mMinItsCluster) {
998
+
returnfalse;
999
+
}
1000
+
if (track.itsNClsInnerBarrel() < mMinItsIbCluster) {
1001
+
returnfalse;
1002
+
}
1003
+
958
1004
// Apply different PID strategy in different pt range
959
1005
// one side selection only
960
-
if (pt <= ptThresholdPidStrategy) {
1006
+
if (momentum <= ptThresholdPidStrategy) {
961
1007
if (std::fabs(NSigmaTPC) > nSigmaCuts[0] || NSigmaITS < -nSigmaCuts[3]) { // Use TPC and ITS below the threshold, NSigmaITS for deuteron with a lower limit
0 commit comments