Skip to content

Commit

Permalink
Merge pull request #40121 from Sam-Harper/FastTimerDQMFixPaths_1250pre5
Browse files Browse the repository at this point in the history
cleaning the folder name of the per path histograms
  • Loading branch information
cmsbuild authored Nov 22, 2022
2 parents def67f9 + 0337854 commit b3e7f2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion HLTrigger/Timer/plugins/FastTimerService.cc
Original file line number Diff line number Diff line change
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 b3e7f2e

Please sign in to comment.