File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -257,13 +257,13 @@ struct HfCandidateCreatorXicToXiPiPi {
257257 }
258258 }
259259
260- if (std::abs (nSigTpcBachelorPi) < softTrigCuts.maxNsigmaXiDaus || (hasTofBachelorPi && std::abs (nSigTofBachelorPi) < softTrigCuts.maxNsigmaXiDaus )) {
260+ if (std::abs (nSigTpcBachelorPi) > softTrigCuts.maxNsigmaXiDaus || (hasTofBachelorPi && std::abs (nSigTofBachelorPi) > softTrigCuts.maxNsigmaXiDaus )) {
261261 return false ;
262262 }
263- if (std::abs (nSigTpcPiFromLambda) < softTrigCuts.maxNsigmaXiDaus || (hasTofPiFromLambda && std::abs (nSigTofPiFromLambda) < softTrigCuts.maxNsigmaXiDaus )) {
263+ if (std::abs (nSigTpcPiFromLambda) > softTrigCuts.maxNsigmaXiDaus || (hasTofPiFromLambda && std::abs (nSigTofPiFromLambda) > softTrigCuts.maxNsigmaXiDaus )) {
264264 return false ;
265265 }
266- if (std::abs (nSigTpcPrFromLambda) < softTrigCuts.maxNsigmaXiDaus || (hasTofPrFromLambda && std::abs (nSigTofPrFromLambda) < softTrigCuts.maxNsigmaXiDaus )) {
266+ if (std::abs (nSigTpcPrFromLambda) > softTrigCuts.maxNsigmaXiDaus || (hasTofPrFromLambda && std::abs (nSigTofPrFromLambda) > softTrigCuts.maxNsigmaXiDaus )) {
267267 return false ;
268268 }
269269
You can’t perform that action at this time.
0 commit comments