ATLAS Offline Software
Loading...
Searching...
No Matches
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
16
17
18namespace 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
void setValue(const data_type &value)
Definition CscCondData.h:31
const data_type & getValue() const
Definition CscCondData.h:35
CscCondData(const data_type &value)
Definition CscCondData.h:22
CscCalcPed - algorithm that finds the Cathode Strip Chamber pedestals from an RDO.