ATLAS Offline Software
JEMHits_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  // JEMHits_p1.h - description
7  // -------------------
8  // begin : 21 04 2008
9  // email : Alan.Watson@cern.ch
10  // ***************************************************************************/
11 
12 
13 #ifndef JEMHits_p1_H
14 #define JEMHits_p1_H
15 
16 
19 class JEMHits_p1 {
20 
21  friend class JEMHitsCnv_p1;
22 
23 public:
24 
26  JEMHits_p1();
27 
29  //virtual ~JEMHits_p1();
30 
32  // protected:
33  int m_crate;
34  int m_module;
35  int m_peak;
36  std::vector <unsigned int> m_JetHits;
37 
38 };
39 
41  : m_crate(0),
42  m_module(0),
43  m_peak(0),
44  m_JetHits(0)
45 {
46 }
47 
48 #endif
JEMHits_p1::m_crate
int m_crate
Destructor.
Definition: JEMHits_p1.h:33
JEMHits_p1::m_JetHits
std::vector< unsigned int > m_JetHits
Definition: JEMHits_p1.h:36
JEMHits_p1
T/P separation for TrigT1Calo::JEMHits class.
Definition: JEMHits_p1.h:19
JEMHits_p1::JEMHits_p1
JEMHits_p1()
Constructors.
Definition: JEMHits_p1.h:40
JEMHits_p1::m_peak
int m_peak
Definition: JEMHits_p1.h:35
JEMHits_p1::m_module
int m_module
Definition: JEMHits_p1.h:34
JEMHitsCnv_p1
T/P convertor for TrigT1Calo JEMHits class.
Definition: JEMHitsCnv_p1.h:29