File tree Expand file tree Collapse file tree 1 file changed +15
-9
lines changed
PWGLF/TableProducer/Strangeness Expand file tree Collapse file tree 1 file changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -484,15 +484,21 @@ struct cascadeFlow {
484484 return false ;
485485 if (std::abs (v0.eta ()) > V0Configs.etaLambda )
486486 return false ;
487- if (V0Configs.isPositiveEta ){ // v0 and daughter tracks required to have positive eta
488- if (v0.pzpos () <= 0 ) return false ;
489- if (v0.pzneg () <= 0 ) return false ;
490- if (v0.eta () <= 0 ) return false ;
491- }
492- if (V0Configs.isNegativeEta ){
493- if (v0.pzpos () >= 0 ) return false ;
494- if (v0.pzneg () >= 0 ) return false ;
495- if (v0.eta () >= 0 ) return false ;
487+ if (V0Configs.isPositiveEta ) { // v0 and daughter tracks required to have positive eta
488+ if (v0.pzpos () <= 0 )
489+ return false ;
490+ if (v0.pzneg () <= 0 )
491+ return false ;
492+ if (v0.eta () <= 0 )
493+ return false ;
494+ }
495+ if (V0Configs.isNegativeEta ) {
496+ if (v0.pzpos () >= 0 )
497+ return false ;
498+ if (v0.pzneg () >= 0 )
499+ return false ;
500+ if (v0.eta () >= 0 )
501+ return false ;
496502 }
497503
498504 return true ;
You can’t perform that action at this time.
0 commit comments