Skip to content

Commit

Permalink
Merge pull request #40134 from missirol/devel_hltFastTimerDQMSafeChar…
Browse files Browse the repository at this point in the history
…sPerPath_125X

cleaning the folder name of the per path histograms [`12_5_X`]
  • Loading branch information
cmsbuild committed Nov 23, 2022
2 parents 685bb88 + f367bf3 commit cb6e6dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion HLTrigger/Timer/plugins/FastTimerService.cc
Expand Up @@ -568,7 +568,9 @@ void FastTimerService::PlotsPerPath::book(dqm::reco::DQMStore::IBooker& booker,
unsigned int lumisections,
bool byls) {
const std::string basedir = booker.pwd();
booker.setCurrentFolder(basedir + "/" + prefixDir + path.name_);
std::string folderName = basedir + "/" + prefixDir + path.name_;
fixForDQM(folderName);
booker.setCurrentFolder(folderName);

total_.book(booker, "path", path.name_, ranges, lumisections, byls);

Expand Down

0 comments on commit cb6e6dc

Please sign in to comment.