Skip to content

Commit

Permalink
Merge pull request #29745 from schneiml/patch-13
Browse files Browse the repository at this point in the history
DQM: Use correct local MEs in DQMEDAnalyzer
  • Loading branch information
cmsbuild authored May 6, 2020
2 parents e6c2873 + da571c4 commit 27c8eeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DQMServices/Core/interface/DQMEDAnalyzer.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ class DQMEDAnalyzer : public edm::stream::EDProducer<edm::GlobalCache<DQMEDAnaly
// if we run booking multiple times because there are multiple runs in a
// job, this is needed to make sure all existing MEs are in a valid state
// before the booking code runs.
edm::Service<DQMStore>()->initLumi(run.run(), /* lumi */ 0, this->moduleDescription().id());
edm::Service<DQMStore>()->enterLumi(run.run(), /* lumi */ 0, this->moduleDescription().id());
edm::Service<DQMStore>()->initLumi(run.run(), /* lumi */ 0, meId());
edm::Service<DQMStore>()->enterLumi(run.run(), /* lumi */ 0, meId());
dqmBeginRun(run, setup);
edm::Service<DQMStore>()->bookTransaction(
[this, &run, &setup](DQMStore::IBooker& booker) {
Expand Down

0 comments on commit 27c8eeb

Please sign in to comment.