From 0ccbdb43f2dcb8f93cd9cac673e681bf1d7f46e7 Mon Sep 17 00:00:00 2001
From: scott snyder <scott.snyder@cern.ch>
Date: Thu, 21 Dec 2017 14:55:17 +0100
Subject: [PATCH] TrigGenericAlgs: const fixes.

const-correctness fixes.



Former-commit-id: 34053fcdd7d50bd3dab3e8d7102529114178e21a
---
 .../TrigGenericAlgs/src/AcceptL1TopoMonitor.cxx               | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Trigger/TrigAlgorithms/TrigGenericAlgs/src/AcceptL1TopoMonitor.cxx b/Trigger/TrigAlgorithms/TrigGenericAlgs/src/AcceptL1TopoMonitor.cxx
index 401840fffa5..cf90ef93bc0 100644
--- a/Trigger/TrigAlgorithms/TrigGenericAlgs/src/AcceptL1TopoMonitor.cxx
+++ b/Trigger/TrigAlgorithms/TrigGenericAlgs/src/AcceptL1TopoMonitor.cxx
@@ -197,7 +197,7 @@ HLT::ErrorCode AcceptL1TopoMonitor::hltExecute(std::vector<HLT::TEVec>& /*fake_s
             return HLT::ErrorCode(HLT::Action::ABORT_CHAIN, HLT::Reason::MISSING_FEATURE);
         }
         // get event ID
-        EventID* eventId;
+        const EventID* eventId;
         if ( !(eventId = event->event_ID())){
             ATH_MSG_WARNING( "Could not find EventID object" );
             return HLT::ErrorCode(HLT::Action::ABORT_CHAIN, HLT::Reason::MISSING_FEATURE);
@@ -646,7 +646,7 @@ StatusCode AcceptL1TopoMonitor::doCnvMon(bool prescalForDAQROBAccess)
             m_hasGenericDaqError = true;
         } else {
             // loop over and print RDOs
-            for (auto & rdo : *rdos){
+            for (const L1TopoRDO* rdo : *rdos){
                 ATH_MSG_VERBOSE( *rdo );
                 ATH_MSG_DEBUG( "CnvMon: Found DAQ RDO with source ID "<<L1Topo::formatHex8(rdo->getSourceID()) );
                 m_histSIDsViaConverters->Fill(m_allSIDLabelsToInts.at(rdo->getSourceID()));
-- 
GitLab