ATLAS Offline Software
CscCondData.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef CSCCONDDATA_H
6 #define CSCCONDDATA_H
7 
18 namespace MuonCalib {
19  template <class data_type> class CscCondData
20  {
21  public:
22  CscCondData(const data_type & value) : m_value (value) { }
23  void setValue(const data_type & value);
24  inline const data_type & getValue() const;
25  private:
26  data_type m_value;
27  };
28 
29 
30  template <class data_type>
31  inline void CscCondData<data_type>::setValue(const data_type & value) {
32  m_value = value;
33  }
34  template <class data_type>
35  inline const data_type & CscCondData<data_type>::getValue() const {
36  return m_value;
37  }
38 }//end namespace MuonCalib
39 #endif
MuonCalib::CscCondData::getValue
const data_type & getValue() const
Definition: CscCondData.h:35
athena.value
value
Definition: athena.py:122
MuonCalib::CscCondData::CscCondData
CscCondData(const data_type &value)
Definition: CscCondData.h:22
MuonCalib
CscCalcPed - algorithm that finds the Cathode Strip Chamber pedestals from an RDO.
Definition: CscCalcPed.cxx:22
MuonCalib::CscCondData::setValue
void setValue(const data_type &value)
Definition: CscCondData.h:31
MuonCalib::CscCondData
Definition: CscCondData.h:20
MuonCalib::CscCondData::m_value
data_type m_value
Definition: CscCondData.h:26