Skip to content

Commit df82b64

Browse files
prchakraalibuild
andauthored
[PWGCF] FemtoUniverse: Clean the code, add kT vs mult vs kstar histo (#14331)
Co-authored-by: ALICE Action Bot <alibuild@cern.ch>
1 parent 42ba0b7 commit df82b64

File tree

2 files changed

+125
-196
lines changed

2 files changed

+125
-196
lines changed

PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ class FemtoUniverseContainer
9090
mHistogramRegistry->add((folderName + "/DeltaEtaDeltaPhi").c_str(), "; #Delta#varphi (rad); #Delta#eta", kTH2F, {phiAxis, etaAxis});
9191
if (use3dplots) {
9292
mHistogramRegistry->add((folderName + "/relPairkstarmTMult").c_str(), ("; " + femtoObs + "; #it{m}_{T} (GeV/#it{c}^{2}); Multiplicity").c_str(), kTH3F, {femtoObsAxis, mTAxis3D, multAxis3D});
93+
mHistogramRegistry->add((folderName + "/relPairkstarkTMult").c_str(), ("; " + femtoObs + "; #it{k}_{T} (GeV/#it{c}^{2}); Multiplicity").c_str(), kTH3F, {femtoObsAxis, kTAxis, multAxis3D});
9394
}
9495
}
9596

@@ -198,6 +199,7 @@ class FemtoUniverseContainer
198199
mHistogramRegistry->fill(HIST(FolderSuffix[EventType]) + HIST(o2::aod::femtouniverse_mc_particle::MCTypeName[mc]) + HIST("/DeltaEtaDeltaPhi"), deltaPhi, deltaEta, weight);
199200
if (use3dplots) {
200201
mHistogramRegistry->fill(HIST(FolderSuffix[EventType]) + HIST(o2::aod::femtouniverse_mc_particle::MCTypeName[mc]) + HIST("/relPairkstarmTMult"), femtoObs, mT, mult, weight);
202+
mHistogramRegistry->fill(HIST(FolderSuffix[EventType]) + HIST(o2::aod::femtouniverse_mc_particle::MCTypeName[mc]) + HIST("/relPairkstarkTMult"), femtoObs, kT, mult, weight);
201203
}
202204
}
203205

0 commit comments

Comments
 (0)