Skip to content

Commit

Permalink
Merge pull request #40305 from iatakisi/my-new-feature
Browse files Browse the repository at this point in the history
adding new per lumi plots to Jetmet DQM
  • Loading branch information
cmsbuild authored Dec 15, 2022
2 parents aa738f8 + 91211b9 commit 3c895cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DQMOffline/JetMET/src/METAnalyzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -337,15 +337,15 @@ void METAnalyzer::bookMonitorElement(std::string DirName,
hMEx = ibooker.book1D("MEx", "MEx", 200, -500, 500);
hMEy = ibooker.book1D("MEy", "MEy", 200, -500, 500);
hMET = ibooker.book1D("MET", "MET", 200, 0, 1000);
hMET_2 = ibooker.book1D("MET_2", "MET Range 2", 200, 0, 2000);
hSumET = ibooker.book1D("SumET", "SumET", 400, 0, 4000);

{
auto scope = DQMStore::IBooker::UseLumiScope(ibooker);
hMET_2 = ibooker.book1D("MET_2", "MET Range 2", 200, 0, 2000);
hSumET = ibooker.book1D("SumET", "SumET", 400, 0, 4000);
hMETSig = ibooker.book1D("METSig", "METSig", 51, 0, 51);
hMETPhi = ibooker.book1D("METPhi", "METPhi", 60, -M_PI, M_PI);
}

hMETPhi = ibooker.book1D("METPhi", "METPhi", 60, -M_PI, M_PI);
hMET_logx = ibooker.book1D("MET_logx", "MET_logx", 40, -1, 9);
hSumET_logx = ibooker.book1D("SumET_logx", "SumET_logx", 40, -1, 9);

Expand Down

0 comments on commit 3c895cd

Please sign in to comment.