Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix uninited mem castor monitor module #4144

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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