ATLAS Offline Software
CMMCPHits_p1.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3 */
4 
5  //***************************************************************************
6  // CMMCPHits_p1.h - description
7  // -------------------
8  // begin : 21 04 2008
9  // email : Alan.Watson@cern.ch
10  // ***************************************************************************/
11 
12 
13 #ifndef CMMCPHits_p1_H
14 #define CMMCPHits_p1_H
15 
16 
19 class CMMCPHits_p1 {
20 
21  friend class CMMCPHitsCnv_p1;
22 
23 public:
24 
26  CMMCPHits_p1();
27 
29  //virtual ~CMMCPHits_p1();
30 
32  // protected:
33  int m_crate;
34  int m_dataID;
35  int m_peak;
36  std::vector <unsigned int> m_hits0;
37  std::vector <unsigned int> m_hits1;
38  std::vector <int> m_error0;
39  std::vector <int> m_error1;
40 
41 };
42 
44  : m_crate(0),
45  m_dataID(0),
46  m_peak(0),
47  m_hits0(0),
48  m_hits1(0),
49  m_error0(0),
50  m_error1(0)
51 {
52 }
53 
54 #endif
CMMCPHits_p1::m_hits0
std::vector< unsigned int > m_hits0
Definition: CMMCPHits_p1.h:36
CMMCPHits_p1::m_error0
std::vector< int > m_error0
Definition: CMMCPHits_p1.h:38
CMMCPHits_p1::m_peak
int m_peak
Definition: CMMCPHits_p1.h:35
CMMCPHits_p1::m_crate
int m_crate
Destructor.
Definition: CMMCPHits_p1.h:33
CMMCPHits_p1::CMMCPHits_p1
CMMCPHits_p1()
Constructors.
Definition: CMMCPHits_p1.h:43
CMMCPHits_p1
T/P separation for TrigT1Calo::CMMCPHits class.
Definition: CMMCPHits_p1.h:19
CMMCPHits_p1::m_error1
std::vector< int > m_error1
Definition: CMMCPHits_p1.h:39
CMMCPHits_p1::m_hits1
std::vector< unsigned int > m_hits1
Definition: CMMCPHits_p1.h:37
CMMCPHits_p1::m_dataID
int m_dataID
Definition: CMMCPHits_p1.h:34
CMMCPHitsCnv_p1
T/P convertor for TrigT1Calo CMMCPHits class.
Definition: CMMCPHitsCnv_p1.h:29