ATLAS Offline Software
CMXCPHits.cxx
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 
7 
8 #ifndef TRIGGERSPACE
10 #else
11 #include "CMXCPHits.h"
12 #endif
13 
14 namespace LVL1 {
15 
17  m_crate(0),
18  m_cmx(0),
19  m_source(0),
20  m_peak(0),
21  m_hits0(1),
22  m_hits1(1),
23  m_error0(1),
24  m_error1(1)
25 {
26 }
27 
29 }
30 
32 CMXCPHits::CMXCPHits(int crate, int cmx, int source):
33  m_crate(crate),
34  m_cmx(cmx),
35  m_source(source),
36  m_peak(0),
37  m_hits0(1),
38  m_hits1(1),
39  m_error0(1),
40  m_error1(1)
41 {
42 }
43 
45 CMXCPHits::CMXCPHits(int crate, int cmx, int source,
46  const std::vector<unsigned int>& hits0,
47  const std::vector<unsigned int>& hits1,
48  const std::vector<int>& error0,
49  const std::vector<int>& error1,
50  int peak):
51  m_crate(crate),
52  m_cmx(cmx),
53  m_source(source),
54  m_peak(peak),
55  m_hits0(hits0),
56  m_hits1(hits1),
57  m_error0(error0),
58  m_error1(error1)
59 {
60 }
61 
62 } // end of namespace bracket
LVL1::CMXCPHits::CMXCPHits
CMXCPHits()
Constructors.
Definition: CMXCPHits.cxx:16
LVL1
eFexTowerBuilder creates xAOD::eFexTowerContainer from supercells (LATOME) and triggerTowers (TREX) i...
Definition: ICMMCPHitsCnvTool.h:18
LVL1::CMXCPHits::~CMXCPHits
virtual ~CMXCPHits()
Definition: CMXCPHits.cxx:28
CMXCPHits.h