From c14c59060a633576be323f7a46366e826b015667 Mon Sep 17 00:00:00 2001 From: wiechula <11199190+wiechula@users.noreply.github.com> Date: Tue, 21 Nov 2023 20:19:32 +0100 Subject: [PATCH] Fix histogram naming --- Detectors/TPC/qc/src/Tracks.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Detectors/TPC/qc/src/Tracks.cxx b/Detectors/TPC/qc/src/Tracks.cxx index 1fddee28d695a..86f13d60a00fa 100644 --- a/Detectors/TPC/qc/src/Tracks.cxx +++ b/Detectors/TPC/qc/src/Tracks.cxx @@ -140,8 +140,8 @@ bool Tracks::processTrack(const o2::tpc::TrackTPC& track) auto dcaHist = mMapHist[fmt::format("hDCAr_{}", types[type]).data()].get(); const std::string signType((sign < 0) ? "Neg" : "Pos"); auto dcaHistPT = mMapHist["hDCArVsPt" + signType].get(); - auto dcaHistEta = mMapHist["hDCArVsEtaPos" + signType].get(); - auto dcaHistNCluster = mMapHist["hDCArVsNClsPos" + signType].get(); + auto dcaHistEta = mMapHist["hDCArVsEta" + signType].get(); + auto dcaHistNCluster = mMapHist["hDCArVsNCls" + signType].get(); // set-up sampling for the DCA calculation Double_t sampleProb = 2;