@@ -861,13 +861,13 @@ struct IdentifiedBfFilterTracks {
861861 TString::Format (" P_{T} distribution for reconstructed %s^{#minus};P_{T} (GeV/c);dN/dP_{T} (c/GeV)" , speciesTitle[sp]).Data (),
862862 ptbins, ptlow, ptup);
863863 fhPtEtaPosA[sp] = new TH2F (TString::Format (" fHistPtEtaPosA_%s" , speciesName[sp]),
864- TString::Format (" P_{T} vs #eta distribution for reconstructed %s^{#plus};P_{T} (GeV/c);#eta;dN/dP_{T} (c/GeV)" , speciesTitle[sp]).Data (),
865- ptbins, ptlow, ptup,
866- etabins, etalow, etaup);
864+ TString::Format (" P_{T} vs #eta distribution for reconstructed %s^{#plus};P_{T} (GeV/c);#eta;dN/dP_{T} (c/GeV)" , speciesTitle[sp]).Data (),
865+ ptbins, ptlow, ptup,
866+ etabins, etalow, etaup);
867867 fhPtEtaNegA[sp] = new TH2F (TString::Format (" fHistPtEtaNegA_%s" , speciesName[sp]),
868- TString::Format (" P_{T} vs #eta distribution for reconstructed %s^{#minus};P_{T} (GeV/c);#eta;dN/dP_{T} (c/GeV)" , speciesTitle[sp]).Data (),
869- ptbins, ptlow, ptup,
870- etabins, etalow, etaup);
868+ TString::Format (" P_{T} vs #eta distribution for reconstructed %s^{#minus};P_{T} (GeV/c);#eta;dN/dP_{T} (c/GeV)" , speciesTitle[sp]).Data (),
869+ ptbins, ptlow, ptup,
870+ etabins, etalow, etaup);
871871 fhNPosNegA[sp] = new TH2F (TString::Format (" fhNPosNegA_%s" , speciesName[sp]).Data (),
872872 TString::Format (" N(%s^{#plus}) N(%s^{#minus}) distribution for reconstructed;N(%s^{#plus});N(%s^{#minus})" , speciesTitle[sp], speciesTitle[sp], speciesTitle[sp], speciesTitle[sp]).Data (),
873873 40 , -0.5 , 39.5 , 40 , -0.5 , 39.5 );
@@ -1001,13 +1001,13 @@ struct IdentifiedBfFilterTracks {
10011001 TString::Format (" P_{T} distribution %s^{#minus} (truth);P_{T} (GeV/c);dN/dP_{T} (c/GeV)" , speciesTitle[sp]).Data (),
10021002 ptbins, ptlow, ptup);
10031003 fhTruePtEtaPosA[sp] = new TH2F (TString::Format (" fTrueHistPtEtaPosA_%s" , speciesName[sp]),
1004- TString::Format (" P_{T} vs #eta distribution %s^{#plus} (truth);P_{T} (GeV/c);#eta;dN/dP_{T} (c/GeV)" , speciesTitle[sp]).Data (),
1005- ptbins, ptlow, ptup,
1006- etabins, etalow, etaup);
1004+ TString::Format (" P_{T} vs #eta distribution %s^{#plus} (truth);P_{T} (GeV/c);#eta;dN/dP_{T} (c/GeV)" , speciesTitle[sp]).Data (),
1005+ ptbins, ptlow, ptup,
1006+ etabins, etalow, etaup);
10071007 fhTruePtEtaNegA[sp] = new TH2F (TString::Format (" fTrueHistPtEtaNegA_%s" , speciesName[sp]),
1008- TString::Format (" P_{T} vs #eta distribution %s^{#minus} (truth);P_{T} (GeV/c);#eta;dN/dP_{T} (c/GeV)" , speciesTitle[sp]).Data (),
1009- ptbins, ptlow, ptup,
1010- etabins, etalow, etaup);
1008+ TString::Format (" P_{T} vs #eta distribution %s^{#minus} (truth);P_{T} (GeV/c);#eta;dN/dP_{T} (c/GeV)" , speciesTitle[sp]).Data (),
1009+ ptbins, ptlow, ptup,
1010+ etabins, etalow, etaup);
10111011 fhTrueNPosNegA[sp] = new TH2F (TString::Format (" fhTrueNPosNegA_%s" , speciesName[sp]).Data (),
10121012 TString::Format (" N(%s^{#plus}) N(%s^{#minus}) distribution (truth);N(%s^{#plus});N(%s^{#minus})" , speciesTitle[sp], speciesTitle[sp], speciesTitle[sp], speciesTitle[sp]).Data (),
10131013 40 , -0.5 , 39.5 , 40 , -0.5 , 39.5 );
@@ -1684,10 +1684,10 @@ void IdentifiedBfFilterTracks::fillTrackHistosAfterSelection(TrackObject const&
16841684 fhdEdxIPTPCA[sp]->Fill (track.tpcInnerParam (), track.tpcSignal ());
16851685 if (track.sign () > 0 ) {
16861686 fhPtPosA[sp]->Fill (track.pt ());
1687- fhPtEtaPosA[sp]->Fill (track.pt (),track.eta ());
1687+ fhPtEtaPosA[sp]->Fill (track.pt (), track.eta ());
16881688 } else {
16891689 fhPtNegA[sp]->Fill (track.pt ());
1690- fhPtEtaNegA[sp]->Fill (track.pt (),track.eta ());
1690+ fhPtEtaNegA[sp]->Fill (track.pt (), track.eta ());
16911691 }
16921692}
16931693
@@ -1748,11 +1748,10 @@ void IdentifiedBfFilterTracks::fillParticleHistosAfterSelection(ParticleObject c
17481748 fhTruePtA[sp]->Fill (particle.pt ());
17491749 if (charge > 0 ) {
17501750 fhTruePtPosA[sp]->Fill (particle.pt ());
1751- fhTruePtEtaPosA[sp]->Fill (particle.pt (),particle.eta ());
1751+ fhTruePtEtaPosA[sp]->Fill (particle.pt (), particle.eta ());
17521752 } else {
17531753 fhTruePtNegA[sp]->Fill (particle.pt ());
1754- fhTruePtEtaNegA[sp]->Fill (particle.pt (),particle.eta ());
1755-
1754+ fhTruePtEtaNegA[sp]->Fill (particle.pt (), particle.eta ());
17561755 }
17571756}
17581757
0 commit comments