Skip to content

Commit

Permalink
Merge pull request #4144 from davidlange6/fix_uninited_mem_CastorMoni…
Browse files Browse the repository at this point in the history
…torModule

Fix uninited mem castor monitor module
  • Loading branch information
davidlange6 committed Jun 6, 2014
2 parents 9926002 + cbf1d67 commit 623d781
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion DQM/CastorMonitor/src/CastorMonitorModule.cc
Expand Up @@ -20,7 +20,7 @@
//==================================================================//
CastorMonitorModule::CastorMonitorModule(const edm::ParameterSet& ps)
{
if(fVerbosity>0) std::cout << "CastorMonitorModule Constructor (start)" << std::endl;


////---- get steerable variables
inputLabelRaw_ = ps.getParameter<edm::InputTag>("rawLabel");
Expand All @@ -32,6 +32,8 @@ CastorMonitorModule::CastorMonitorModule(const edm::ParameterSet& ps)
showTiming_ = ps.getUntrackedParameter<bool>("showTiming", false); //-- show CPU time
dump2database_ = ps.getUntrackedParameter<bool>("dump2database",false); //-- dumps output to database file

if(fVerbosity>0) std::cout << "CastorMonitorModule Constructor (start)" << std::endl;

////---- initialize Run, LS, Event number and other parameters
irun_=0;
ilumisec_=0;
Expand Down

0 comments on commit 623d781

Please sign in to comment.