Skip to content
Snippets Groups Projects
Commit abfd1f52 authored by Scott Snyder's avatar Scott Snyder Committed by Graeme Stewart
Browse files

Const fix. (LUCID_RawEvent-00-06-01)

	* Tagging LUCID_RawEvent-00-06-01.
	* LUCID_RawEvent/LUCID_Digit.h: Const fix.
parent 2ee376f4
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment