File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
PWGLF/Tasks/GlobalEventProperties Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -1439,8 +1439,9 @@ struct PseudorapidityDensityMFT {
14391439 if (usePhiCut) {
14401440 if ((phi <= PhiVetoLow) ||
14411441 ((phi >= PhiVetoPiMin) && (phi <= PhiVetoPiMax)) ||
1442- (phi >= PhiVetoHigh))
1442+ (phi >= PhiVetoHigh)){
14431443 continue ;
1444+ }
14441445 }
14451446 float dcaXyCut = retrack.bestDCAXY ();
14461447 if (useDCAxyCut) {
@@ -1493,8 +1494,9 @@ struct PseudorapidityDensityMFT {
14931494 if (usePhiCut) {
14941495 if ((phi <= PhiVetoLow) ||
14951496 ((phi >= PhiVetoPiMin) && (phi <= PhiVetoPiMax)) ||
1496- (phi >= PhiVetoHigh))
1497+ (phi >= PhiVetoHigh)){
14971498 continue ;
1499+ }
14981500 }
14991501 float dcaXyCut = retrack.bestDCAXY ();
15001502 if (useDCAxyCut) {
@@ -1533,8 +1535,9 @@ struct PseudorapidityDensityMFT {
15331535 if (usePhiCut) {
15341536 if ((phi <= PhiVetoLow) ||
15351537 ((phi >= PhiVetoPiMin) && (phi <= PhiVetoPiMax)) ||
1536- (phi >= PhiVetoHigh))
1538+ (phi >= PhiVetoHigh)){
15371539 continue ;
1540+ }
15381541 }
15391542 if (useDCAxyCut) {
15401543 if (dcaXyCut > maxDCAxy)
You can’t perform that action at this time.
0 commit comments