Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 120863
b: "refs/heads/CMSSW_7_0_X"
c: af81486
h: "refs/heads/CMSSW_7_0_X"
i:
  120861: 898ef03
  120859: 0b186a5
  120855: 2b95278
  120847: 7c2d645
  120831: 9eb7416
v: v3
  • Loading branch information
Andrea Bocci committed Oct 3, 2012
1 parent 89d1fbd commit 64b4a76
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"refs/heads/hi_d20131223": d7335b053d7fe03e98f9f59af6a20004362628e8
refs/heads/gh-pages: a3d9046c56a3ca3dc64ad63f7295276c81ac876a
"refs/heads/analysis_53X_01": 3019419e9784b2b092fc6b5c503b2e0177cbe926
"refs/heads/CMSSW_7_0_X": 1c7a26cc6ae73ec8addf86f184928532e2a5860f
"refs/heads/CMSSW_7_0_X": af814860a3ef16ef894512f3eab87acb3c69d31b
2 changes: 1 addition & 1 deletion trunk/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 trunk/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 64b4a76

Please sign in to comment.