Skip to content

Commit

Permalink
Fix the ThroughputService DQM folder
Browse files Browse the repository at this point in the history
Properly take into account the processor model name and SMT status in
the DQM folder for the ThroughputService
  • Loading branch information
fwyzard committed Nov 14, 2022
1 parent 7f53327 commit c31ecff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions HLTrigger/Timer/plugins/ThroughputService.cc
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ ThroughputService::ThroughputService(const edm::ParameterSet& config, edm::Activ
m_time_range(m_enable_dqm ? config.getUntrackedParameter<double>("timeRange") : 0.),
m_time_resolution(m_enable_dqm ? config.getUntrackedParameter<double>("timeResolution") : 0.) {
m_events.clear(); // erases all elements, but does not free internal arrays
registry.watchPreallocate(this, &ThroughputService::preallocate);
registry.watchPreGlobalBeginRun(this, &ThroughputService::preGlobalBeginRun);
registry.watchPreSourceEvent(this, &ThroughputService::preSourceEvent);
registry.watchPostEvent(this, &ThroughputService::postEvent);
Expand Down

0 comments on commit c31ecff

Please sign in to comment.