Skip to content

Commit

Permalink
fix the type of m_dqm_lumi_range (dqmLumiSectionsRange)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea Bocci committed Oct 3, 2012
1 parent 1c7a26c commit af81486
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HLTrigger/Timer/interface/FastTimerService.h
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class FastTimerService {
const double m_dqm_pathtime_resolution;
const double m_dqm_moduletime_range;
const double m_dqm_moduletime_resolution;
const int m_dqm_lumi_range;
const uint32_t m_dqm_lumi_range;
std::string m_dqm_path;

// job configuration and caching
Expand Down
4 changes: 2 additions & 2 deletions HLTrigger/Timer/src/FastTimerService.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ FastTimerService::FastTimerService(const edm::ParameterSet & config, edm::Activi
m_dqm_pathtime_resolution( config.getUntrackedParameter<double>( "dqmPathTimeResolution" ) ), // ms
m_dqm_moduletime_range( config.getUntrackedParameter<double>( "dqmModuleTimeRange" ) ), // ms
m_dqm_moduletime_resolution( config.getUntrackedParameter<double>( "dqmModuleTimeResolution" ) ), // ms
m_dqm_lumi_range( config.getUntrackedParameter<double>( "dqmLumiSectionsRange" ) ), // lumisections
m_dqm_lumi_range( config.getUntrackedParameter<uint32_t>( "dqmLumiSectionsRange" ) ), // lumisections
m_dqm_path( config.getUntrackedParameter<std::string>("dqmPath" ) ),
// caching
m_first_path(0), // these are initialized at prePathBeginRun(),
Expand Down Expand Up @@ -926,7 +926,7 @@ void FastTimerService::fillDescriptions(edm::ConfigurationDescriptions & descrip
desc.addUntracked<double>( "dqmPathTimeResolution", 0.5); // ms
desc.addUntracked<double>( "dqmModuleTimeRange", 40. ); // ms
desc.addUntracked<double>( "dqmModuleTimeResolution", 0.2); // ms
desc.addUntracked<int>( "dqmLumiSectionsRange", 2500 ); // ~ 16 hours
desc.addUntracked<uint32_t>( "dqmLumiSectionsRange", 2500 ); // ~ 16 hours
desc.addUntracked<std::string>( "dqmPath", "HLT/TimerService");
descriptions.add("FastTimerService", desc);
}

0 comments on commit af81486

Please sign in to comment.