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