From 1ac3d202d2a9a3cdafba16224c68abc83a0ee3c6 Mon Sep 17 00:00:00 2001 From: scott snyder <scott.snyder@cern.ch> Date: Wed, 13 Sep 2017 17:43:36 +0200 Subject: [PATCH] TrigT1CaloByteStream: Missing const qualifier. Add const qualifier needed to compile with DataVector once the const_iterator bug is fixed. --- Trigger/TrigT1/TrigT1CaloByteStream/src/JepByteStreamV1Tool.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Trigger/TrigT1/TrigT1CaloByteStream/src/JepByteStreamV1Tool.cxx b/Trigger/TrigT1/TrigT1CaloByteStream/src/JepByteStreamV1Tool.cxx index 4ebb89cb44a..800714bf635 100755 --- a/Trigger/TrigT1/TrigT1CaloByteStream/src/JepByteStreamV1Tool.cxx +++ b/Trigger/TrigT1/TrigT1CaloByteStream/src/JepByteStreamV1Tool.cxx @@ -1575,7 +1575,7 @@ void JepByteStreamV1Tool::setupJeMap(const JetElementCollection* JetElementCollection::const_iterator pos = jeCollection->begin(); JetElementCollection::const_iterator pose = jeCollection->end(); for (; pos != pose; ++pos) { - LVL1::JetElement* const je = *pos; + const LVL1::JetElement* je = *pos; const unsigned int key = m_elementKey->jeKey(je->phi(), je->eta()); m_jeMap.insert(std::make_pair(key, je)); } -- GitLab