We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ed6eb7 commit 4c30c4aCopy full SHA for 4c30c4a
1 file changed
PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx
@@ -1313,7 +1313,10 @@ struct FemtoUniverseProducerTask {
1313
if (track.itsChi2NCl() > ConfTrkSelection.confTrkMaxChi2PerClusterITS) {
1314
continue;
1315
}
1316
- if ((ConfTrkSelection.confTrkTPCRefit && !track.hasTPC()) || (ConfTrkSelection.confTrkITSRefit && !track.hasITS())) {
+ if (ConfTrkSelection.confTrkTPCRefit && !track.hasTPC()) {
1317
+ continue;
1318
+ }
1319
+ if (ConfTrkSelection.confTrkITSRefit && track.pt() < confTOFpTmin && !track.hasITS()) {
1320
1321
1322
0 commit comments