Skip to content

Commit ee9ed9a

Browse files
authored
Update PseudorapidityDensityMFT.cxx
1 parent 2161ef1 commit ee9ed9a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)