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