Skip to content

Commit c45b42e

Browse files
committed
Please consider the following formatting changes
1 parent 5513b99 commit c45b42e

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ struct ThreeParticleCorrelations {
5353
float cosPAMin = 0.995;
5454
float dcaProtonMin = 0.05, dcaPionMin = 0.2;
5555
int dcaV0DauMax = 1;
56-
56+
5757
// Track filter parameters
5858
float pionPtMin = 0.3, pionPtMax = 2.3, kaonPtMin = 0.5, kaonPtMax = 2.5, protonPtMin = 0.5, protonPtMax = 2.5;
5959
float pionPtMid = 1.5, kaonPtMid1 = 1.5, kaonPtMid2 = 2.0, protonPtMid = 0.7;
@@ -74,13 +74,13 @@ struct ThreeParticleCorrelations {
7474
HistogramRegistry rQARegistry{"QARegistry", {}, OutputObjHandlingPolicy::AnalysisObject, false, true};
7575

7676
// Collision & Event filters
77-
Filter collCent = aod::cent::centFT0C > centMin && aod::cent::centFT0C < centMax;
77+
Filter collCent = aod::cent::centFT0C > centMin&& aod::cent::centFT0C < centMax;
7878
Filter collZvtx = nabs(aod::collision::posZ) < zvtxMax;
7979
Filter mcCollZvtx = nabs(aod::mccollision::posZ) < zvtxMax;
8080
Filter evSelect = aod::evsel::sel8 == true;
8181

8282
// Track filters
83-
Filter trackPt = aod::track::pt > trackPtMin && aod::track::pt < trackPtMax;
83+
Filter trackPt = aod::track::pt > trackPtMin&& aod::track::pt < trackPtMax;
8484
Filter trackEta = nabs(aod::track::eta) < trackEtaMax;
8585
Filter globalTracks = requireGlobalTrackInFilter();
8686

@@ -108,8 +108,8 @@ struct ThreeParticleCorrelations {
108108
aod::pidTOFFullPi, aod::pidTOFFullKa, aod::pidTOFFullPr, aod::pidTOFbeta>>;
109109

110110
// Partitions
111-
Partition<MyFilteredMCParticles> mcTracks = aod::mcparticle::pt > trackPtMin && aod::mcparticle::pt < trackPtMax;
112-
Partition<MyFilteredMCParticles> mcV0s = aod::mcparticle::pt > v0PtMin && aod::mcparticle::pt < v0PtMax && nabs(aod::mcparticle::eta) < v0EtaMax;
111+
Partition<MyFilteredMCParticles> mcTracks = aod::mcparticle::pt > trackPtMin&& aod::mcparticle::pt < trackPtMax;
112+
Partition<MyFilteredMCParticles> mcV0s = aod::mcparticle::pt > v0PtMin&& aod::mcparticle::pt < v0PtMax&& nabs(aod::mcparticle::eta) < v0EtaMax;
113113
Partition<MyFilteredMCParticles> mcTriggers = ((aod::mcparticle::pdgCode == static_cast<int>(kLambda0) || aod::mcparticle::pdgCode == static_cast<int>(kLambda0Bar)) &&
114114
aod::mcparticle::pt > v0PtMin && aod::mcparticle::pt < v0PtMax && nabs(aod::mcparticle::eta) < v0EtaMax);
115115
Partition<MyFilteredMCParticles> mcAssociates = (((aod::mcparticle::pdgCode == static_cast<int>(kPiPlus) || aod::mcparticle::pdgCode == static_cast<int>(kPiMinus)) && aod::mcparticle::pt > pionPtMin && aod::mcparticle::pt < pionPtMax) ||
@@ -918,14 +918,14 @@ struct ThreeParticleCorrelations {
918918
if (FillHist) {
919919
rQARegistry.fill(HIST("hNEvents"), 2.5);
920920
}
921-
921+
922922
return true;
923923
}
924924

925925
template <class Col, class V0Cand, typename T>
926926
bool v0Filters(const Col& col, const V0Cand& v0, T const&) // V0 filter
927927
{
928-
928+
929929
// Kinematic cuts
930930
if (v0.pt() <= v0PtMin || v0.pt() >= v0PtMax || std::abs(v0.eta()) >= v0EtaMax) {
931931
return false;
@@ -942,17 +942,17 @@ struct ThreeParticleCorrelations {
942942
}
943943
if (v0Sign(v0) == 1) {
944944
if (std::abs(posDaughter.tpcNSigmaPr()) >= nSigma5 || std::abs(negDaughter.tpcNSigmaPi()) >= nSigma5) {
945-
return false;
945+
return false;
946946
}
947947
if (std::abs(v0.dcapostopv()) <= dcaProtonMin || std::abs(v0.dcanegtopv()) <= dcaPionMin) {
948-
return false;
948+
return false;
949949
}
950950
} else if (v0Sign(v0) == -1) {
951951
if (std::abs(posDaughter.tpcNSigmaPi()) >= nSigma5 || std::abs(negDaughter.tpcNSigmaPr()) >= nSigma5) {
952-
return false;
952+
return false;
953953
}
954954
if (std::abs(v0.dcapostopv()) <= dcaPionMin || std::abs(v0.dcanegtopv()) <= dcaProtonMin) {
955-
return false;
955+
return false;
956956
}
957957
}
958958

0 commit comments

Comments
 (0)