diff --git a/PWGCF/Femto/FemtoNuclei/TableProducer/PiNucleiFemto.cxx b/PWGCF/Femto/FemtoNuclei/TableProducer/PiNucleiFemto.cxx index e6b7414ed73..a59f190eaca 100644 --- a/PWGCF/Femto/FemtoNuclei/TableProducer/PiNucleiFemto.cxx +++ b/PWGCF/Femto/FemtoNuclei/TableProducer/PiNucleiFemto.cxx @@ -482,7 +482,7 @@ struct PiNucleiFemto { template bool selectionPIDPion(const Ttrack& candidate) { - if ( candidate.tpcChi2NCl() > settingCutChi2tpcHighPion ||candidate.tpcChi2NCl() < settingCutChi2tpcLowPion ||candidate.itsChi2NCl() > settingCutChi2NClITSPion) + if (candidate.tpcChi2NCl() > settingCutChi2tpcHighPion || candidate.tpcChi2NCl() < settingCutChi2tpcLowPion || candidate.itsChi2NCl() > settingCutChi2NClITSPion) return false; if (abs(candidate.dcaXY()) > settingCutPiDCAxyMin || abs(candidate.dcaZ()) > settingCutPiDCAzMin) return false;