diff --git a/HLTrigger/Timer/plugins/FastTimerService.cc b/HLTrigger/Timer/plugins/FastTimerService.cc index 6f8d0ed16c3e1..93d615dfeeab3 100644 --- a/HLTrigger/Timer/plugins/FastTimerService.cc +++ b/HLTrigger/Timer/plugins/FastTimerService.cc @@ -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);