From abfd1f52cf439ccee2275e29d2253dc698c7dc65 Mon Sep 17 00:00:00 2001 From: Scott Snyder <scott.snyder@cern.ch> Date: Tue, 16 Aug 2016 20:15:30 +0200 Subject: [PATCH] Const fix. (LUCID_RawEvent-00-06-01) * Tagging LUCID_RawEvent-00-06-01. * LUCID_RawEvent/LUCID_Digit.h: Const fix. --- .../LUCID/LUCID_RawEvent/LUCID_RawEvent/LUCID_Digit.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ForwardDetectors/LUCID/LUCID_RawEvent/LUCID_RawEvent/LUCID_Digit.h b/ForwardDetectors/LUCID/LUCID_RawEvent/LUCID_RawEvent/LUCID_Digit.h index 4612ab2f709..25cac507480 100644 --- a/ForwardDetectors/LUCID/LUCID_RawEvent/LUCID_RawEvent/LUCID_Digit.h +++ b/ForwardDetectors/LUCID/LUCID_RawEvent/LUCID_RawEvent/LUCID_Digit.h @@ -26,8 +26,8 @@ class LUCID_Digit { inline unsigned short getTDC () const { return m_tdc; } inline bool isHit () const { return m_isHit; } - inline bool isSideA() { return (m_tubeID < 20); } - inline bool isSideC() { return (m_tubeID >= 20); } + inline bool isSideA() const { return (m_tubeID < 20); } + inline bool isSideC() const { return (m_tubeID >= 20); } private: -- GitLab