@@ -63,17 +63,17 @@ struct ThreeParticleCorrelations {
6363 HistogramRegistry rQARegistry{" QARegistry" , {}, OutputObjHandlingPolicy::AnalysisObject, false , true };
6464
6565 // Collision & Event filters
66- Filter collCent = aod::cent::centFT0C > centMin && aod::cent::centFT0C < centMax;
66+ Filter collCent = aod::cent::centFT0C > centMin&& aod::cent::centFT0C < centMax;
6767 Filter collZvtx = nabs(aod::collision::posZ) < zvtxMax;
6868 Filter mcCollZvtx = nabs(aod::mccollision::posZ) < zvtxMax;
6969 Filter evSelect = aod::evsel::sel8 == true ;
7070
7171 // V0 filters
72- Filter v0Pt = aod::v0data::pt > v0PtMin && aod::v0data::pt < v0PtMax;
72+ Filter v0Pt = aod::v0data::pt > v0PtMin&& aod::v0data::pt < v0PtMax;
7373 Filter v0Eta = nabs(aod::v0data::eta) < v0EtaMax;
7474
7575 // Track filters
76- Filter trackPt = aod::track::pt > trackPtMin && aod::track::pt < trackPtMax;
76+ Filter trackPt = aod::track::pt > trackPtMin&& aod::track::pt < trackPtMax;
7777 Filter trackEta = nabs(aod::track::eta) < trackEtaMax;
7878 Filter globalTracks = requireGlobalTrackInFilter();
7979
@@ -98,17 +98,17 @@ struct ThreeParticleCorrelations {
9898 aod::pidTOFFullPi, aod::pidTOFFullKa, aod::pidTOFFullPr, aod::pidTOFbeta>>;
9999
100100 // Partitions
101- Partition<MyFilteredMCParticles> mcParticles = aod::mcparticle::pt > trackPtMin && aod::mcparticle::pt < trackPtMax;
101+ Partition<MyFilteredMCParticles> mcParticles = aod::mcparticle::pt > trackPtMin&& aod::mcparticle::pt < trackPtMax;
102102 Partition<MyFilteredMCParticles> mcTriggers = ((aod::mcparticle::pdgCode == static_cast <int >(kLambda0 ) || aod::mcparticle::pdgCode == static_cast <int >(kLambda0Bar )) &&
103- aod::mcparticle::pt > v0PtMin && aod::mcparticle::pt < v0PtMax && nabs(aod::mcparticle::eta) < v0EtaMax);
103+ aod::mcparticle::pt > v0PtMin && aod::mcparticle::pt < v0PtMax && nabs(aod::mcparticle::eta) < v0EtaMax);
104104 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) ||
105- ((aod::mcparticle::pdgCode == static_cast <int >(kKPlus ) || aod::mcparticle::pdgCode == static_cast <int >(kKMinus )) && aod::mcparticle::pt > kaonPtMin && aod::mcparticle::pt < kaonPtMax) ||
106- ((aod::mcparticle::pdgCode == static_cast <int >(kProton ) || aod::mcparticle::pdgCode == static_cast <int >(kProtonBar )) && aod::mcparticle::pt > protonPtMin));
107-
105+ ((aod::mcparticle::pdgCode == static_cast <int >(kKPlus ) || aod::mcparticle::pdgCode == static_cast <int >(kKMinus )) && aod::mcparticle::pt > kaonPtMin && aod::mcparticle::pt < kaonPtMax) ||
106+ ((aod::mcparticle::pdgCode == static_cast <int >(kProton ) || aod::mcparticle::pdgCode == static_cast <int >(kProtonBar )) && aod::mcparticle::pt > protonPtMin));
107+
108108 // Mixed-events binning policy
109109 SliceCache cache;
110110 Preslice<MyFilteredMCParticles> perCol = aod::mcparticle::mcCollisionId;
111-
111+
112112 ConfigurableAxis confCentBins{" confCentBins" , {VARIABLE_WIDTH, 0 .0f , 10 .0f , 20 .0f , 30 .0f , 40 .0f , 50 .0f , 60 .0f , 70 .0f , 80 .0f , 90 .0f }, " ME Centrality binning" };
113113 ConfigurableAxis confZvtxBins{" confZvtxBins" , {VARIABLE_WIDTH, -7 .0f , -5 .0f , -3 .0f , -1 .0f , 0 .0f , 1 .0f , 3 .0f , 5 .0f , 7 .0f }, " ME Zvtx binning" };
114114 using BinningType = ColumnBinningPolicy<aod::cent::CentFT0C, aod::collision::PosZ>;
@@ -160,7 +160,7 @@ struct ThreeParticleCorrelations {
160160 rQARegistry.add (" hPtPion" , " hPtPion" , {HistType::kTH1D , {{trackPtAxis}}});
161161 rQARegistry.add (" hPtKaon" , " hPtKaon" , {HistType::kTH1D , {{trackPtAxis}}});
162162 rQARegistry.add (" hPtProton" , " hPtProton" , {HistType::kTH1D , {{trackPtAxis}}});
163- rQARegistry.add (" hPtV0" , " hPtV0" , {HistType::kTH1D , {{v0PtAxis}}});
163+ rQARegistry.add (" hPtV0" , " hPtV0" , {HistType::kTH1D , {{v0PtAxis}}});
164164 rQARegistry.add (" hdEdx" , " hdEdx" , {HistType::kTH2D , {{56 , 0.2 , 3.0 }, {180 , 20 , 200 }}});
165165 rQARegistry.add (" hdEdxPion" , " hdEdxPion" , {HistType::kTH2D , {{56 , 0.2 , 3.0 }, {180 , 20 , 200 }}});
166166 rQARegistry.add (" hdEdxKaon" , " hdEdxKaon" , {HistType::kTH2D , {{56 , 0.2 , 3.0 }, {180 , 20 , 200 }}});
@@ -278,15 +278,15 @@ struct ThreeParticleCorrelations {
278278 rQARegistry.fill (HIST (" hdEdx" ), track.pt (), track.tpcSignal ());
279279 rQARegistry.fill (HIST (" hBeta" ), track.pt (), track.beta ());
280280 if (assocPID[0 ] == pionID) { // Pions
281- rQARegistry.fill (HIST (" hPtPion" ), track.pt (), 1 . / trackEff (hEffPions, track.sign (), track.pt ()));
281+ rQARegistry.fill (HIST (" hPtPion" ), track.pt (), 1 . / trackEff (hEffPions, track.sign (), track.pt ()));
282282 rQARegistry.fill (HIST (" hdEdxPion" ), track.pt (), track.tpcSignal ());
283283 rQARegistry.fill (HIST (" hBetaPion" ), track.pt (), track.beta ());
284284 } else if (assocPID[0 ] == kaonID) { // Kaons
285- rQARegistry.fill (HIST (" hPtKaon" ), track.pt (), 1 . / trackEff (hEffKaons, track.sign (), track.pt ()));
285+ rQARegistry.fill (HIST (" hPtKaon" ), track.pt (), 1 . / trackEff (hEffKaons, track.sign (), track.pt ()));
286286 rQARegistry.fill (HIST (" hdEdxKaon" ), track.pt (), track.tpcSignal ());
287287 rQARegistry.fill (HIST (" hBetaKaon" ), track.pt (), track.beta ());
288288 } else if (assocPID[0 ] == protonID) { // Protons
289- rQARegistry.fill (HIST (" hPtProton" ), track.pt (), 1 . / trackEff (hEffProtons, track.sign (), track.pt ()));
289+ rQARegistry.fill (HIST (" hPtProton" ), track.pt (), 1 . / trackEff (hEffProtons, track.sign (), track.pt ()));
290290 rQARegistry.fill (HIST (" hdEdxProton" ), track.pt (), track.tpcSignal ());
291291 rQARegistry.fill (HIST (" hBetaProton" ), track.pt (), track.beta ());
292292 }
@@ -298,7 +298,7 @@ struct ThreeParticleCorrelations {
298298 for (const auto & trigger : v0s) {
299299 if (v0Filters (trigger)) {
300300
301- rQARegistry.fill (HIST (" hPtV0" ), trigger.pt ());
301+ rQARegistry.fill (HIST (" hPtV0" ), trigger.pt ());
302302 triggSign = v0Sign (trigger);
303303 if (triggSign == 1 ) {
304304 candMass = trigger.mLambda ();
@@ -342,7 +342,7 @@ struct ThreeParticleCorrelations {
342342 }
343343
344344 void processMixed (MyFilteredCollisions const &, MyFilteredV0s const &, MyFilteredTracks const &, aod::BCsWithTimestamps const &)
345- {
345+ {
346346
347347 // Start of the Mixed-Event correlations
348348 for (const auto & [coll_1, v0_1, coll_2, track_2] : pairData) {
@@ -551,7 +551,7 @@ struct ThreeParticleCorrelations {
551551 }
552552 }
553553 } else if (track.sign () < 0 ) { // Negative tracks
554- if (assocPID[0 ] == pionID) { // Pions
554+ if (assocPID[0 ] == pionID) { // Pions
555555 rMCRegistry.fill (HIST (" hSelectPionN" ), track.pt ());
556556 if (particle.pdgCode () == kPiMinus ) {
557557 rMCRegistry.fill (HIST (" hTrueSelectPionN" ), track.pt ());
0 commit comments