@@ -108,7 +108,7 @@ struct FlowSP {
108108 // axis
109109
110110 Filter collisionFilter = nabs(aod::collision::posZ) < cfgVtxZ;
111- Filter trackFilter = nabs(aod::track::eta) < cfgEta && aod::track::pt > cfgPtmin&& aod::track::pt < cfgPtmax && ((requireGlobalTrackInFilter()) || (aod::track::isGlobalTrackSDD == (uint8_t ) true )) && nabs(aod::track::dcaXY) < cfgDCAxy && nabs(aod::track::dcaZ) < cfgDCAz;
111+ Filter trackFilter = nabs(aod::track::eta) < cfgEta && aod::track::pt > cfgPtmin&& aod::track::pt < cfgPtmax && ((requireGlobalTrackInFilter()) || (aod::track::isGlobalTrackSDD == (uint8_t ) true )) && nabs(aod::track::dcaXY) < cfgDCAxy&& nabs(aod::track::dcaZ) < cfgDCAz;
112112 Filter trackFilterMC = nabs(aod::mcparticle::eta) < cfgEta && aod::mcparticle::pt > cfgPtmin&& aod::mcparticle::pt < cfgPtmax;
113113 using UsedCollisions = soa::Filtered<soa::Join<aod::Collisions, aod::EvSels, aod::Mults, aod::CentFT0Cs, aod::CentFT0CVariant1s, aod::CentFT0Ms, aod::CentFV0As, aod::CentNGlobals, aod::SPTableZDC>>;
114114 using UsedTracks = soa::Filtered<soa::Join<aod::Tracks, aod::TracksExtra, aod::TrackSelection, aod::TracksDCA>>;
@@ -876,23 +876,23 @@ struct FlowSP {
876876 registry.fill (HIST (" trackMC" ) + HIST (Mode[md]) + HIST (Time[ft]) + HIST (" neg/hPt_hadron" ), track.pt ());
877877 }
878878
879- if (pdgCode == 211 || pdgCode == -211 ){
879+ if (pdgCode == 211 || pdgCode == -211 ) {
880880 registry.fill (HIST (" trackMC" ) + HIST (Mode[md]) + HIST (Time[ft]) + HIST (" incl/hPt_pion" ), track.pt ());
881- if (pdgCode == 211 ) {
881+ if (pdgCode == 211 ) {
882882 registry.fill (HIST (" trackMC" ) + HIST (Mode[md]) + HIST (Time[ft]) + HIST (" pos/hPt_pion" ), track.pt ());
883883 } else {
884884 registry.fill (HIST (" trackMC" ) + HIST (Mode[md]) + HIST (Time[ft]) + HIST (" neg/hPt_pion" ), track.pt ());
885885 }
886- } else if (pdgCode == 321 || pdgCode == -321 ) {
886+ } else if (pdgCode == 321 || pdgCode == -321 ) {
887887 registry.fill (HIST (" trackMC" ) + HIST (Mode[md]) + HIST (Time[ft]) + HIST (" incl/hPt_kaon" ), track.pt ());
888- if (pdgCode == 321 ) {
888+ if (pdgCode == 321 ) {
889889 registry.fill (HIST (" trackMC" ) + HIST (Mode[md]) + HIST (Time[ft]) + HIST (" pos/hPt_kaon" ), track.pt ());
890890 } else {
891891 registry.fill (HIST (" trackMC" ) + HIST (Mode[md]) + HIST (Time[ft]) + HIST (" neg/hPt_kaon" ), track.pt ());
892892 }
893- } else if (pdgCode == 2212 || pdgCode == -2212 ) {
893+ } else if (pdgCode == 2212 || pdgCode == -2212 ) {
894894 registry.fill (HIST (" trackMC" ) + HIST (Mode[md]) + HIST (Time[ft]) + HIST (" incl/hPt_proton" ), track.pt ());
895- if (pdgCode == 2212 ) {
895+ if (pdgCode == 2212 ) {
896896 registry.fill (HIST (" trackMC" ) + HIST (Mode[md]) + HIST (Time[ft]) + HIST (" pos/hPt_proton" ), track.pt ());
897897 } else {
898898 registry.fill (HIST (" trackMC" ) + HIST (Mode[md]) + HIST (Time[ft]) + HIST (" neg/hPt_proton" ), track.pt ());
@@ -1111,7 +1111,7 @@ struct FlowSP {
11111111 if (track.sign () == 0.0 )
11121112 continue ;
11131113 registry.fill (HIST (" hTrackCount" ), trackSel_ZeroCharge);
1114-
1114+
11151115 bool pos = (track.sign () > 0 ) ? true : false ;
11161116
11171117 fillMCPtHistos<kBefore , kReco >(track, mcParticle.pdgCode ());
@@ -1125,7 +1125,7 @@ struct FlowSP {
11251125
11261126 if (!trackSelected (track, field))
11271127 continue ;
1128-
1128+
11291129 fillMCPtHistos<kAfter , kReco >(track, mcParticle.pdgCode ());
11301130
11311131 if (cfgFillQAHistos)
@@ -1216,7 +1216,6 @@ struct FlowSP {
12161216 if (particle.eta () < -cfgEta || particle.eta () > cfgEta || particle.pt () < cfgPtmin || particle.pt () > cfgPtmax)
12171217 continue ;
12181218
1219-
12201219 fillMCPtHistos<kAfter , kGen >(particle, pdgCode);
12211220
12221221 registry.fill (HIST (" trackMCGen/after/incl/phi_eta_vtxZ_gen" ), particle.phi (), particle.eta (), vtxz);
0 commit comments