From e094305e25b2474a1e31c0d8d09d59b6c284908d Mon Sep 17 00:00:00 2001 From: michaelmackenzie Date: Wed, 7 Jan 2026 10:07:51 -0600 Subject: [PATCH] Follow trigger navigator changes --- src/EventNtupleMaker_module.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EventNtupleMaker_module.cc b/src/EventNtupleMaker_module.cc index b0dcc617..b2fc5014 100644 --- a/src/EventNtupleMaker_module.cc +++ b/src/EventNtupleMaker_module.cc @@ -943,13 +943,13 @@ namespace mu2e { throw cet::exception("EventNtuple") << "More trigger paths in TriggerResultsNavigator than maximum allowed by TrigInfo::ntrig_. Increase TrigInfo::ntrig_ and rebuild\n"; } for (unsigned int i = 0; i < tnav.getTrigPaths().size(); ++i) { - const std::string name = "trig_"+tnav.getTrigPathName(i); + const std::string name = "trig_"+tnav.getTrigPathNameByIndex(i); _ntuple->Branch(name.c_str(), &_triggerResults._triggerArray[i], _buffsize,_splitlevel); } } for (unsigned int i = 0; i < tnav.getTrigPaths().size(); ++i) { - const std::string path = tnav.getTrigPathName(i); + const std::string path = tnav.getTrigPathNameByIndex(i); bool accepted = tnav.accepted(path); _triggerResults._triggerArray[i] = accepted; }