Skip to content

Commit

Permalink
Fix histogram naming
Browse files Browse the repository at this point in the history
  • Loading branch information
wiechula committed Nov 27, 2023
1 parent d2d47ed commit c14c590
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Detectors/TPC/qc/src/Tracks.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c14c590

Please sign in to comment.