Skip to content

Commit 18e97f3

Browse files
authored
[PWGCF] FemtoUniverse: Fix range in ITS PIDnsigma histogram (AliceO2Group#15805)
1 parent 4ac64ac commit 18e97f3

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,11 @@ class FemtoUniverseParticleHisto
105105
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaComb_p").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{comb}^{p}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {100, 0, 5}});
106106
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaComb_d").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{comb}^{d}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {100, 0, 5}});
107107
if (isFillITSNsigma) {
108-
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaITS_el").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITS}^{e}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {100, 0, 5}});
109-
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaITS_pi").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITS}^{#pi}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {100, 0, 5}});
110-
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaITS_K").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITS}^{K}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {100, 0, 5}});
111-
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaITS_p").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITS}^{p}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {100, 0, 5}});
112-
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaITS_d").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITS}^{d}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {100, 0, 5}});
108+
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaITS_el").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITS}^{e}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {200, -4.975, 5.025}});
109+
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaITS_pi").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITS}^{#pi}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {200, -4.975, 5.025}});
110+
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaITS_K").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITS}^{K}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {200, -4.975, 5.025}});
111+
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaITS_p").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITS}^{p}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {200, -4.975, 5.025}});
112+
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaITS_d").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITS}^{d}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {200, -4.975, 5.025}});
113113
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaCombITSTPC_el").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITSTPC}^{e}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {100, 0, 5}});
114114
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaCombITSTPC_pi").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITSTPC}^{#pi}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {100, 0, 5}});
115115
mHistogramRegistry->add((folderName + folderSuffix + "/nSigmaCombITSTPC_K").c_str(), "; #it{p} (GeV/#it{c}); n#sigma_{ITSTPC}^{K}", o2::framework::HistType::kTH2F, {{tempFitVarMomAxis}, {100, 0, 5}});

0 commit comments

Comments
 (0)