ATLAS Offline Software
Loading...
Searching...
No Matches
LVL1::JTowerRhoSubtractionAlg Class Reference

#include <JTowerRhoSubtractionAlg.h>

Inheritance diagram for LVL1::JTowerRhoSubtractionAlg:
Collaboration diagram for LVL1::JTowerRhoSubtractionAlg:

Classes

struct  JFEXBins

Public Member Functions

 JTowerRhoSubtractionAlg (const std::string &name, ISvcLocator *pSvcLocator)
virtual ~JTowerRhoSubtractionAlg () override
virtual StatusCode initialize () override
virtual StatusCode execute (const EventContext &ctx) const override
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
virtual unsigned int cardinality () const override
 Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
virtual bool filterPassed (const EventContext &ctx) const
virtual void setFilterPassed (bool state, const EventContext &ctx) const
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce (T &h)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

JFEXBins buildFexBins (const xAOD::JGTowerContainer *towers) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

SG::ReadHandleKey< xAOD::JGTowerContainerm_inputKey
SG::WriteHandleKey< xAOD::JGTowerContainerm_outputKey
SG::WriteHandleKey< xAOD::EnergySumRoIm_outputRhoKey
float m_minTowerRho
float m_maxTowerRho
float m_minOutputTowerRho
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default)
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Detailed Description

Definition at line 21 of file JTowerRhoSubtractionAlg.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ JTowerRhoSubtractionAlg()

LVL1::JTowerRhoSubtractionAlg::JTowerRhoSubtractionAlg ( const std::string & name,
ISvcLocator * pSvcLocator )

Definition at line 68 of file JTowerRhoSubtractionAlg.cxx.

69 : AthReentrantAlgorithm(name, pSvcLocator)
70 {
71 declareProperty("InputTowers", m_inputKey = "JTower");
72 declareProperty("OutputTowers", m_outputKey = "JTowerRhoSubtracted");
73 declareProperty("OutputRho", m_outputRhoKey = "JFEXRho");
74 declareProperty("MinTowerRho", m_minTowerRho = 0.0, "Minimum tower rho to enter the calculation of bin rho");
75 declareProperty("MaxTowerRho", m_maxTowerRho = 1.0 * Gaudi::Units::GeV, "Maximum tower rho to enter the calculation of bin rho");
76 declareProperty("MinOutputTowerRho", m_minOutputTowerRho = 100 * Gaudi::Units::MeV, "Minimum tower rho to be output (below this set 0)");
77 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
SG::ReadHandleKey< xAOD::JGTowerContainer > m_inputKey
SG::WriteHandleKey< xAOD::EnergySumRoI > m_outputRhoKey
SG::WriteHandleKey< xAOD::JGTowerContainer > m_outputKey

◆ ~JTowerRhoSubtractionAlg()

LVL1::JTowerRhoSubtractionAlg::~JTowerRhoSubtractionAlg ( )
overridevirtual

Definition at line 79 of file JTowerRhoSubtractionAlg.cxx.

79{}

Member Function Documentation

◆ buildFexBins()

JTowerRhoSubtractionAlg::JFEXBins LVL1::JTowerRhoSubtractionAlg::buildFexBins ( const xAOD::JGTowerContainer * towers) const
private

Definition at line 90 of file JTowerRhoSubtractionAlg.cxx.

91 {
93
94 // Create the bin lists as a list of tower indices
95 // eta bins
96 std::vector<std::pair<float, float>> etaBins{
97 {-1.6, 0.8},
98 {-0.8, 1.6},
99 {-2.4, 0.0},
100 {0.0, 2.4},
101 {-4.9, -0.8},
102 {0.8, 4.9}};
103 std::vector<std::pair<float, float>> etaBinsCore{
104 {-0.8, 0.0},
105 {0.0, 0.8},
106 {-1.6, -0.8},
107 {0.8, 1.6},
108 {-4.9, -1.6},
109 {1.6, 4.9}};
110 // phi bins (in multiples of pi)
111 std::vector<std::pair<float, float>> phiBins{
112 {0.0, TMath::Pi()}, {TMath::Pi(), 2 * TMath::Pi()}};
113 float phiOffset = 0.25 * TMath::Pi();
114
115 std::size_t nBins = etaBins.size() * phiBins.size();
116
117 std::vector<std::size_t> EMTowers = createVectorFromRanges(
118 {{1, 1696}, {3392, 5088}, {6784, 6816}, {6848, 6880}, {6912, 6976}});
119 std::vector<std::size_t> hadTowers = createVectorFromRanges(
120 {{1696, 3392}, {5088, 6784}, {6816, 6848}, {6880, 6912}});
121 std::vector<std::size_t> FCALTowers = createVectorFromRanges({{6976, 7744}});
122
123 // Split the hadronic calorimeter into 3 regions
124 std::vector<std::size_t> had1Towers;
125 std::vector<std::size_t> had2Towers;
126 std::vector<std::size_t> had3Towers;
127 for (std::size_t idx : hadTowers)
128 {
129 float eta = std::abs(towers->at(idx)->eta());
130 if (eta < 1.5)
131 had1Towers.push_back(idx);
132 else if (eta < 1.6)
133 had2Towers.push_back(idx);
134 else
135 had3Towers.push_back(idx);
136 }
137
138 // Create the necessary regions
139 std::vector<std::vector<std::size_t>> regions;
140 regions.reserve(5);
141 regions.push_back(std::move(had1Towers));
142 regions.push_back(std::move(had2Towers));
143 regions.push_back(std::move(had3Towers));
144 regions.push_back(std::move(EMTowers));
145 regions.push_back(std::move(FCALTowers));
146
147 bins.m_bins.resize(regions.size() * nBins);
148 bins.m_binsCore.resize(regions.size() * nBins);
149
150 for (std::size_t regionIdx = 0; regionIdx < regions.size(); ++regionIdx)
151 {
152 for (std::size_t towerIdx : regions.at(regionIdx))
153 {
154 const xAOD::JGTower &tower = *towers->at(towerIdx);
155 for (std::size_t binIdx : findBinNumbers(tower.eta(), tower.phi(), etaBins, phiBins, phiOffset))
156 bins.m_bins.at(binIdx + regionIdx * nBins).push_back(towerIdx);
157 for (std::size_t binIdx : findBinNumbers(tower.eta(), tower.phi(), etaBinsCore, phiBins, phiOffset))
158 bins.m_binsCore.at(binIdx + regionIdx * nBins).push_back(towerIdx);
159 }
160 }
161
162 // If any core bin is empty, also empty the corresponding larger bin
163 for (std::size_t binIdx = 0; binIdx < bins.m_bins.size(); ++binIdx)
164 if (bins.m_binsCore.at(binIdx).size() == 0)
165 bins.m_bins.at(binIdx).clear();
166
167 return bins;
168 }
Scalar eta() const
pseudorapidity method
virtual double phi() const final
The azimuthal angle ( ) of the particle.
virtual double eta() const final
The pseudorapidity ( ) of the particle.
JGTower_v1 JGTower
Define the latest version of the JGTower class.
Definition JGTower.h:15

◆ cardinality()

unsigned int AthCommonReentrantAlgorithm< Gaudi::Algorithm >::cardinality ( ) const
overridevirtualinherited

Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.

Override this to return 0 for reentrant algorithms.

Definition at line 75 of file AthCommonReentrantAlgorithm.cxx.

64{
65 return 0;
66}

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode LVL1::JTowerRhoSubtractionAlg::execute ( const EventContext & ctx) const
overridevirtual

Definition at line 170 of file JTowerRhoSubtractionAlg.cxx.

171 {
172 auto inputTowers = SG::makeHandle(m_inputKey, ctx);
173 if (!inputTowers.isValid())
174 {
175 ATH_MSG_ERROR("Failed to retrieve " << m_inputKey.key());
176 return StatusCode::FAILURE;
177 }
178 auto shallowCopy = xAOD::shallowCopyContainer(*inputTowers);
179 std::unique_ptr<xAOD::JGTowerContainer> outputTowers(shallowCopy.first);
180 std::unique_ptr<xAOD::ShallowAuxContainer> outputTowersAux(shallowCopy.second);
181 xAOD::setOriginalObjectLink(*inputTowers, *outputTowers);
182
183 static const JFEXBins jFEXBins = buildFexBins (inputTowers.cptr());
184
185 // Iterate over the bins and calculate the average energy in the towers
186 std::vector<float> rhos;
187 rhos.reserve(jFEXBins.m_bins.size());
188 for (const std::vector<std::size_t> &binTowerIndices : jFEXBins.m_bins)
189 {
190 std::size_t count = 0;
191 float rhoSum = 0;
192 for (std::size_t towerIdx : binTowerIndices)
193 {
194 const xAOD::JGTower *tower = inputTowers->at(towerIdx);
195 float area = accArea(*tower);
196 float towerRho = tower->et() / area;
197 if (towerRho > m_minTowerRho && towerRho <= m_maxTowerRho)
198 {
199 ++count;
200 rhoSum += towerRho;
201 }
202 }
203 if (count == 0)
204 rhos.push_back(0);
205 else
206 rhos.push_back(rhoSum / count);
207 }
208
209 std::vector<float> subtractedTowerEnergies(inputTowers->size(), 0.0);
210 for (std::size_t binIdx = 0; binIdx < jFEXBins.m_binsCore.size(); ++binIdx)
211 {
212 for (std::size_t towerIdx : jFEXBins.m_binsCore.at(binIdx))
213 {
214 const xAOD::JGTower *tower = inputTowers->at(towerIdx);
215 float area = accArea(*tower);
216 float etSub = tower->et() - rhos.at(binIdx) * area;
217 if (etSub < area * m_minOutputTowerRho)
218 etSub = 0;
219 subtractedTowerEnergies.at(towerIdx) = etSub;
220 }
221 }
222 for (std::size_t idx = 0; idx < subtractedTowerEnergies.size(); ++idx)
223 outputTowers->at(idx)->setEt(subtractedTowerEnergies.at(idx));
224
225 auto outputHandle = SG::makeHandle(m_outputKey, ctx);
226
227 ATH_CHECK(outputHandle.record(std::move(outputTowers), std::move(outputTowersAux)));
228
229 // Create an EnergySumRoI container to store the rho values
230 auto rhoCont = std::make_unique<xAOD::EnergySumRoI>();
231 auto rhoContAux = std::make_unique<xAOD::EnergySumRoIAuxInfo>();
232 rhoCont->setStore(rhoContAux.get());
233 decRhos(*rhoCont) = std::move(rhos);
234 auto outputRhoHandle = SG::makeHandle(m_outputRhoKey, ctx);
235 ATH_CHECK(outputRhoHandle.record(std::move(rhoCont), std::move(rhoContAux)));
236 return StatusCode::SUCCESS;
237 }
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
double area(double R)
JFEXBins buildFexBins(const xAOD::JGTowerContainer *towers) const
virtual double et() const final
int count(std::string s, const std::string &regx)
count how many occurances of a regx are in a string
Definition hcg.cxx:146
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
std::pair< std::unique_ptr< T >, std::unique_ptr< ShallowAuxContainer > > shallowCopyContainer(const T &cont, const EventContext &ctx)
Function making a shallow copy of a constant container.
bool setOriginalObjectLink(const IParticle &original, IParticle &copy)
This function should be used by CP tools when they make a deep copy of an object in their correctedCo...

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ extraOutputDeps()

const DataObjIDColl & AthCommonReentrantAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.

90{
91 // If we didn't find any symlinks to add, just return the collection
92 // from the base class. Otherwise, return the extended collection.
93 if (!m_extendedExtraObjects.empty()) {
95 }
97}
An algorithm that can be simultaneously executed in multiple threads.

◆ filterPassed()

virtual bool AthCommonReentrantAlgorithm< Gaudi::Algorithm >::filterPassed ( const EventContext & ctx) const
inlinevirtualinherited

Definition at line 96 of file AthCommonReentrantAlgorithm.h.

96 {
97 return execState( ctx ).filterPassed();
98 }
virtual bool filterPassed(const EventContext &ctx) const

◆ initialize()

StatusCode LVL1::JTowerRhoSubtractionAlg::initialize ( )
overridevirtual

Definition at line 81 of file JTowerRhoSubtractionAlg.cxx.

82 {
83 ATH_CHECK(m_inputKey.initialize());
84 ATH_CHECK(m_outputKey.initialize());
85 ATH_CHECK(m_outputRhoKey.initialize());
86 return StatusCode::SUCCESS;
87 }

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ isClonable()

◆ msg()

MsgStream & AthCommonMsg< Gaudi::Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< Gaudi::Algorithm >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ renounce()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonReentrantAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Definition at line 100 of file AthCommonReentrantAlgorithm.h.

100 {
102 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const

◆ sysExecute()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysExecute ( const EventContext & ctx)
overridevirtualinherited

Execute an algorithm.

We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.

Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.

77{
78 return BaseAlg::sysExecute (ctx);
79}

◆ sysInitialize()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.

Reimplemented in HypoBase, and InputMakerBase.

Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.

107 {
109
110 if (sc.isFailure()) {
111 return sc;
112 }
113
114 ServiceHandle<ICondSvc> cs("CondSvc",name());
115 for (auto h : outputHandles()) {
116 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
117 // do this inside the loop so we don't create the CondSvc until needed
118 if ( cs.retrieve().isFailure() ) {
119 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
120 return StatusCode::SUCCESS;
121 }
122 if (cs->regHandle(this,*h).isFailure()) {
124 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
125 << " with CondSvc");
126 }
127 }
128 }
129 return sc;
130}
#define ATH_MSG_WARNING(x)
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }

Member Data Documentation

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthCommonReentrantAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 114 of file AthCommonReentrantAlgorithm.h.

◆ m_inputKey

SG::ReadHandleKey<xAOD::JGTowerContainer> LVL1::JTowerRhoSubtractionAlg::m_inputKey
private

Definition at line 31 of file JTowerRhoSubtractionAlg.h.

◆ m_maxTowerRho

float LVL1::JTowerRhoSubtractionAlg::m_maxTowerRho
private

Definition at line 36 of file JTowerRhoSubtractionAlg.h.

◆ m_minOutputTowerRho

float LVL1::JTowerRhoSubtractionAlg::m_minOutputTowerRho
private

Definition at line 37 of file JTowerRhoSubtractionAlg.h.

◆ m_minTowerRho

float LVL1::JTowerRhoSubtractionAlg::m_minTowerRho
private

Definition at line 35 of file JTowerRhoSubtractionAlg.h.

◆ m_outputKey

SG::WriteHandleKey<xAOD::JGTowerContainer> LVL1::JTowerRhoSubtractionAlg::m_outputKey
private

Definition at line 32 of file JTowerRhoSubtractionAlg.h.

◆ m_outputRhoKey

SG::WriteHandleKey<xAOD::EnergySumRoI> LVL1::JTowerRhoSubtractionAlg::m_outputRhoKey
private

Definition at line 33 of file JTowerRhoSubtractionAlg.h.

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.


The documentation for this class was generated from the following files: