File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -172,10 +172,10 @@ struct UpcCandProducerSemiFwd {
172172 bool passPt = track.pt () > fUpcCuts .getBarPtLow () && track.pt () < fUpcCuts .getBarPtHigh ();
173173 bool passEta = track.eta () > fUpcCuts .getBarEtaLow () && track.eta () < fUpcCuts .getBarEtaHigh ();
174174 bool passITSNCls = track.itsNCls () >= static_cast <uint8_t >(fUpcCuts .getITSNClusLow ()) &&
175- track.itsNCls () <= static_cast <uint8_t >(fUpcCuts .getITSNClusHigh ());
175+ track.itsNCls () <= static_cast <uint8_t >(fUpcCuts .getITSNClusHigh ());
176176 bool passITSChi2 = track.itsChi2NCl () > fUpcCuts .getITSChi2Low () && track.itsChi2NCl () < fUpcCuts .getITSChi2High ();
177177 bool passTPCNCls = track.tpcNClsFound () >= static_cast <int16_t >(fUpcCuts .getTPCNClsLow ()) &&
178- track.tpcNClsFound () <= static_cast <int16_t >(fUpcCuts .getTPCNClsHigh ());
178+ track.tpcNClsFound () <= static_cast <int16_t >(fUpcCuts .getTPCNClsHigh ());
179179 bool passTPCChi2 = track.tpcChi2NCl () > fUpcCuts .getTPCChi2Low () && track.tpcChi2NCl () < fUpcCuts .getTPCChi2High ();
180180 bool passDcaZ = track.dcaZ () > fUpcCuts .getDcaZLow () && track.dcaZ () < fUpcCuts .getDcaZHigh ();
181181 bool passDcaXY = true ;
You can’t perform that action at this time.
0 commit comments