Skip to content

Commit

Permalink
Merge pull request #82 from DUNE-DAQ/mrigan/fix_tam_v5
Browse files Browse the repository at this point in the history
Fix for TriggegActivityMaker config load
  • Loading branch information
MRiganSUSX authored Sep 23, 2024
2 parents 4fddb07 + 560d4b7 commit b146de1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/triggeralgs/TriggerActivityMaker.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ class TriggerActivityMaker

if (config.contains("prescale"))
m_prescale = config["prescale"];
if (config.contains("max_tot"))
m_max_time_over_threshold = config["max_tot"];
if (config.contains("max_time_over_threshold"))
m_max_time_over_threshold = config["max_time_over_threshold"];

TLOG() << "[TAM]: max tot : " << m_max_time_over_threshold;
TLOG() << "[TAM]: prescale : " << m_prescale;
Expand Down

0 comments on commit b146de1

Please sign in to comment.