ATLAS Offline Software
ZdcDigits_p1.h
Go to the documentation of this file.
1 
3 /*
4  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5 */
6 
7 // ZdcDigits_p1.h
8 // Header file for class ZdcDigits_p1
9 // Author: Alexander Solodkov <Sanya.Solodkov@cern.ch>
10 // Date: June 2009
12 #ifndef ZDCTPCNV_ZDCDIGITS_P1_H
13 #define ZDCTPCNV_ZDCDIGITS_P1_H
14 
15 #include <vector>
16 
17 // forward declarations
18 class ZdcDigitsCnv_p1;
19 
20 class ZdcDigits_p1 {
21 
22  // Make the AthenaPoolCnv class our friend
23  friend class ZdcDigitsCnv_p1;
24 
25 public:
26 
30 
31 private:
32 
33  unsigned int m_id;
34  std::vector<int> m_digits_gain0_delay0;
35  std::vector<int> m_digits_gain0_delay1;
36  std::vector<int> m_digits_gain1_delay0;
37  std::vector<int> m_digits_gain1_delay1;
38 
39 };
40 
41 #endif //> ZDCTPCNV_ZDCDIGITS_P1_H
42 
ZdcDigits_p1
Definition: ZdcDigits_p1.h:20
ZdcDigits_p1::ZdcDigits_p1
ZdcDigits_p1()
Default constructor:
Definition: ZdcDigits_p1.h:29
ZdcDigits_p1::m_digits_gain1_delay1
std::vector< int > m_digits_gain1_delay1
Definition: ZdcDigits_p1.h:37
ZdcDigits_p1::m_id
unsigned int m_id
Definition: ZdcDigits_p1.h:33
ZdcDigits_p1::m_digits_gain1_delay0
std::vector< int > m_digits_gain1_delay0
Definition: ZdcDigits_p1.h:36
ZdcDigitsCnv_p1
Definition: ZdcDigitsCnv_p1.h:26
ZdcDigits_p1::m_digits_gain0_delay0
std::vector< int > m_digits_gain0_delay0
Definition: ZdcDigits_p1.h:34
ZdcDigits_p1::m_digits_gain0_delay1
std::vector< int > m_digits_gain0_delay1
Definition: ZdcDigits_p1.h:35