@@ -1233,8 +1233,8 @@ struct ThreeParticleCorrelations {
12331233 for (double r = rMin; r <= rMax; r += 0.01 ) {
12341234 dPhiStar = RecoDecay::constrainAngle (dPhi + std::asin (phaseProton * r) - std::asin (phaseTrack * r), -constants::math::PIHalf);
12351235
1236- if (r == rMin) { // TPC inner radius
1237- if (!Mix) { // Same-event
1236+ if (r == rMin) { // TPC inner radius
1237+ if (!Mix) { // Same-event
12381238 if (proton.sign () * track.sign () == -1 ) { // OS (Electric charge)
12391239 rPhiStarRegistry.fill (HIST (" hSEPhiStarIR_OS" ), dPhiStar, dEta);
12401240 } else if (proton.sign () * track.sign () == 1 ) { // SS (Electric charge)
@@ -1246,7 +1246,7 @@ struct ThreeParticleCorrelations {
12461246 }
12471247 }
12481248
1249- } else { // Mixed-event
1249+ } else { // Mixed-event
12501250 if (proton.sign () * track.sign () == -1 ) { // OS (Electric charge)
12511251 rPhiStarRegistry.fill (HIST (" hMEPhiStarIR_OS" ), dPhiStar, dEta);
12521252 } else if (proton.sign () * track.sign () == 1 ) { // SS (Electric charge)
@@ -1266,20 +1266,20 @@ struct ThreeParticleCorrelations {
12661266 }
12671267 }
12681268
1269- if (!Mix) { // Same-event
1270- if (proton.sign () * track.sign () == -1 ) { // OS (Electric charge)
1271- rPhiStarRegistry.fill (HIST (" hSEPhiStarRadial_OS" ), dPhiStar, r);
1272- } else if (proton.sign () * track.sign () == 1 ) { // SS (Electric charge)
1273- rPhiStarRegistry.fill (HIST (" hSEPhiStarRadial_SS" ), dPhiStar, r);
1274- }
1275-
1276- } else { // Mixed-event
1277- if (proton.sign () * track.sign () == -1 ) { // OS (Electric charge)
1278- rPhiStarRegistry.fill (HIST (" hMEPhiStarRadial_OS" ), dPhiStar, r);
1279- } else if (proton.sign () * track.sign () == 1 ) { // SS (Electric charge)
1280- rPhiStarRegistry.fill (HIST (" hMEPhiStarRadial_SS" ), dPhiStar, r);
1281- }
1282- }
1269+ if (!Mix) { // Same-event
1270+ if (proton.sign () * track.sign () == -1 ) { // OS (Electric charge)
1271+ rPhiStarRegistry.fill (HIST (" hSEPhiStarRadial_OS" ), dPhiStar, r);
1272+ } else if (proton.sign () * track.sign () == 1 ) { // SS (Electric charge)
1273+ rPhiStarRegistry.fill (HIST (" hSEPhiStarRadial_SS" ), dPhiStar, r);
1274+ }
1275+
1276+ } else { // Mixed-event
1277+ if (proton.sign () * track.sign () == -1 ) { // OS (Electric charge)
1278+ rPhiStarRegistry.fill (HIST (" hMEPhiStarRadial_OS" ), dPhiStar, r);
1279+ } else if (proton.sign () * track.sign () == 1 ) { // SS (Electric charge)
1280+ rPhiStarRegistry.fill (HIST (" hMEPhiStarRadial_SS" ), dPhiStar, r);
1281+ }
1282+ }
12831283
12841284 dPhiStarMean += (dPhiStar / 170 );
12851285 }
0 commit comments