ATLAS Offline Software
jEmTOB.cxx
Go to the documentation of this file.
1 // Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2 
3 #include "L1TopoEvent/jEmTOB.h"
4 
6 
7 // constructors
8 // default constructor
9 TCS::jEmTOB::jEmTOB(uint32_t roiWord, const std::string& tobName) :
10  BaseTOB( roiWord,tobName )
11 {}
12 
13 // constructor with initial values
14 TCS::jEmTOB::jEmTOB(unsigned int Et, int eta, unsigned phi, uint32_t roiWord, const std::string& tobName) :
15  BaseTOB( roiWord,tobName )
16  , m_Et(Et)
17  , m_eta(eta)
18  , m_phi(phi)
19 {}
20 
21 // copy constructor
22 TCS::jEmTOB::jEmTOB(const jEmTOB & jet) = default;
23 
24 TCS::jEmTOB::~jEmTOB() = default;
25 
28  return fg_heap.create(jet);
29 }
30 
31 void
33  return fg_heap.clear();
34 }
35 
36 void
37 TCS::jEmTOB::print(std::ostream &o) const {
38  o << "jEm jet energy: " << Et() << ", eta: " << eta() << ", phi: " << phi();
39 }
phi
Scalar phi() const
phi method
Definition: AmgMatrixBasePlugin.h:64
xAOD::uint32_t
setEventNumber uint32_t
Definition: EventInfo_v1.cxx:127
eta
Scalar eta() const
pseudorapidity method
Definition: AmgMatrixBasePlugin.h:79
TCS::jEmTOB::createOnHeap
static jEmTOB * createOnHeap(const jEmTOB &cluster)
Definition: jEmTOB.cxx:27
TCS::jEmTOB::print
virtual void print(std::ostream &o) const
Definition: jEmTOB.cxx:37
TCS::Heap< TCS::jEmTOB >
xAOD::roiWord
roiWord
Definition: TrigMissingET_v1.cxx:36
jet
Definition: JetCalibTools_PlotJESFactors.cxx:23
TCS::BaseTOB
Definition: BaseTOB.h:12
TCS::jEmTOB::~jEmTOB
virtual ~jEmTOB()
jEmTOB.h
TCS::jEmTOB
Definition: jEmTOB.h:16
TCS::jEmTOB::jEmTOB
jEmTOB(uint32_t roiWord=0, const std::string &tobName="jEm")
Definition: jEmTOB.cxx:9
TCS::jEmTOB::fg_heap
static thread_local Heap< TCS::jEmTOB > fg_heap
Definition: jEmTOB.h:84
TCS::jEmTOB::clearHeap
static void clearHeap()
Definition: jEmTOB.cxx:32