Skip to content
Snippets Groups Projects
Commit 0cd173a9 authored by Johannes Junggeburth's avatar Johannes Junggeburth :dog2:
Browse files

Small tidy fixes

parent 958f92d1
No related branches found
No related tags found
5 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45710Muon ART tests: Fix Run3 digitization tests & small tidy up of MuonPRD
...@@ -22,7 +22,7 @@ class ValAlgVariables ...@@ -22,7 +22,7 @@ class ValAlgVariables
ValAlgVariables(StoreGateSvc* evtStore, ValAlgVariables(StoreGateSvc* evtStore,
const MuonGM::MuonDetectorManager* detManager, const MuonGM::MuonDetectorManager* detManager,
TTree* tree, TTree* tree,
std::string containername, const std::string& containername,
MSG::Level msglvl) : MSG::Level msglvl) :
m_evtStore(evtStore), m_evtStore(evtStore),
m_detManager(detManager), m_detManager(detManager),
...@@ -32,13 +32,13 @@ class ValAlgVariables ...@@ -32,13 +32,13 @@ class ValAlgVariables
m_msg.get().setLevel(msglvl); m_msg.get().setLevel(msglvl);
} }
virtual ~ValAlgVariables() {}; virtual ~ValAlgVariables() = default;
virtual StatusCode initializeVariables() = 0; virtual StatusCode initializeVariables() = 0;
virtual StatusCode fillVariables(const MuonGM::MuonDetectorManager* MuonDetMgr) = 0; virtual StatusCode fillVariables(const MuonGM::MuonDetectorManager* MuonDetMgr) = 0;
MsgStream& msg( MSG::Level lvl ) const { return m_msg << lvl; } MsgStream& msg( MSG::Level lvl ) const { return m_msg << lvl; }
bool msgLvl( MSG::Level lvl ) { return m_msg.get().level() <= lvl; } bool msgLvl( MSG::Level lvl ) const { return m_msg.get().level() <= lvl; }
protected: protected:
......
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