Skip to content

Commit 3976be0

Browse files
committed
Please consider the following formatting changes
1 parent d29ffec commit 3976be0

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -816,15 +816,15 @@ struct ThreeParticleCorrelations {
816816
{
817817

818818
if (confRDSwitch) {
819-
819+
820820
auto proton = v0.template posTrack_as<MyFilteredTracks>();
821821
if (v0Sign(v0) == -1) {
822-
proton = v0.template negTrack_as<MyFilteredTracks>();
822+
proton = v0.template negTrack_as<MyFilteredTracks>();
823823
}
824824

825825
double dEta = proton.eta() - track.eta();
826826
if (std::abs(dEta) > dEtaMin) {
827-
return kTRUE;
827+
return kTRUE;
828828
}
829829

830830
double dPhiStar;
@@ -833,30 +833,30 @@ struct ThreeParticleCorrelations {
833833
double phaseTrack = (-0.3 * B * track.sign()) / (2 * track.pt());
834834

835835
for (double r = rMin; r <= rMax; r += 0.01) {
836-
dPhiStar = RecoDecay::constrainAngle(dPhi + std::asin(phaseProton * r) - std::asin(phaseTrack * r), -constants::math::PIHalf);
837-
838-
if (r == rMin) {
839-
if (!Mix) {
840-
rPhiStarRegistry.fill(HIST("hSEProtonPreCut"), dPhiStar, dEta);
841-
} else {
842-
rPhiStarRegistry.fill(HIST("hMEProtonPreCut"), dPhiStar, dEta);
843-
}
844-
}
845-
846-
if (std::abs(dPhiStar) < dPhiStarMin) {
847-
return kFALSE;
848-
}
849-
850-
if (r == rMin) {
851-
if (!Mix) {
852-
rPhiStarRegistry.fill(HIST("hSEProtonPostCut"), dPhiStar, dEta);
853-
} else {
854-
rPhiStarRegistry.fill(HIST("hMEProtonPostCut"), dPhiStar, dEta);
855-
}
856-
}
836+
dPhiStar = RecoDecay::constrainAngle(dPhi + std::asin(phaseProton * r) - std::asin(phaseTrack * r), -constants::math::PIHalf);
837+
838+
if (r == rMin) {
839+
if (!Mix) {
840+
rPhiStarRegistry.fill(HIST("hSEProtonPreCut"), dPhiStar, dEta);
841+
} else {
842+
rPhiStarRegistry.fill(HIST("hMEProtonPreCut"), dPhiStar, dEta);
843+
}
844+
}
845+
846+
if (std::abs(dPhiStar) < dPhiStarMin) {
847+
return kFALSE;
848+
}
849+
850+
if (r == rMin) {
851+
if (!Mix) {
852+
rPhiStarRegistry.fill(HIST("hSEProtonPostCut"), dPhiStar, dEta);
853+
} else {
854+
rPhiStarRegistry.fill(HIST("hMEProtonPostCut"), dPhiStar, dEta);
855+
}
856+
}
857857
}
858858
}
859-
859+
860860
return kTRUE;
861861
}
862862
};

0 commit comments

Comments
 (0)