Skip to content
Snippets Groups Projects
Commit eb7b4a70 authored by scott snyder's avatar scott snyder
Browse files

MuonTrackMonitoring: Comply with ATLAS naming conventions.

Use flag functions from monitoring base class rather than accessing
protected data members directly.


Former-commit-id: 5e4b0ddc
parent 735d1e0d
No related branches found
No related tags found
No related merge requests found
......@@ -105,9 +105,7 @@ StatusCode MuonGenericTracksMon::bookHistograms()
//set the path with trigger chain name
std::string rootpath = "MuonPhysics/";
if(newEventsBlock){}
if(newLumiBlock){}
if(newRun) {
if(newRunFlag()) {
//example of how to register a new histogram
m_hNEvent = new TH1F("Overview_nEvent", "Number of Events;LumiBlock;Nevents", 2000, -0.5, 1999.5);
......@@ -623,9 +621,7 @@ StatusCode MuonGenericTracksMon::procHistograms()
ATH_MSG_DEBUG("MuonTrackMonitoring procHistograms()");
if(endOfEventsBlock){}
if(endOfLumiBlock){}
if(endOfRun) {
if(endOfRunFlag()) {
//finish the post processing
//for (auto plots : m_oRecoPhysPlots) plots->finalizeRecoPlots();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment