diff --git a/PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx b/PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx index b514d43615a..a112f5f4768 100644 --- a/PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx +++ b/PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx @@ -1313,7 +1313,10 @@ struct FemtoUniverseProducerTask { if (track.itsChi2NCl() > ConfTrkSelection.confTrkMaxChi2PerClusterITS) { continue; } - if ((ConfTrkSelection.confTrkTPCRefit && !track.hasTPC()) || (ConfTrkSelection.confTrkITSRefit && !track.hasITS())) { + if (ConfTrkSelection.confTrkTPCRefit && !track.hasTPC()) { + continue; + } + if (ConfTrkSelection.confTrkITSRefit && track.pt() < confTOFpTmin && !track.hasITS()) { continue; }