File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -257,10 +257,10 @@ struct lambdaspincorrderived {
257257 if (candidate.dcaBetweenDaughter () > dcaDaughters) {
258258 return false ;
259259 }
260- if (candidate.v0Status () == 0 && std::abs (candidate.dcaPositive ()) < dcaProton && std::abs (candidate.dcaNegative ()) < dcaPion) {
260+ if (candidate.v0Status () == 0 && ( std::abs (candidate.dcaPositive ()) < dcaProton || std::abs (candidate.dcaNegative ()) < dcaPion) ) {
261261 return false ;
262262 }
263- if (candidate.v0Status () == 1 && std::abs (candidate.dcaPositive ()) < dcaPion && std::abs (candidate.dcaNegative ()) < dcaProton) {
263+ if (candidate.v0Status () == 1 && ( std::abs (candidate.dcaPositive ()) < dcaPion || std::abs (candidate.dcaNegative ()) < dcaProton) ) {
264264 return false ;
265265 }
266266 if (candidate.lambdaPt () < ptMin) {
You can’t perform that action at this time.
0 commit comments