ATLAS Offline Software
Loading...
Searching...
No Matches
LArFCalTowerBuilderTool Class Reference

special tower builder for FCal More...

#include <LArFCalTowerBuilderTool.h>

Inheritance diagram for LArFCalTowerBuilderTool:
Collaboration diagram for LArFCalTowerBuilderTool:

Public Member Functions

 LArFCalTowerBuilderTool (const LArFCalTowerBuilderTool &)=delete
LArFCalTowerBuilderTooloperator= (const LArFCalTowerBuilderTool &)=delete
 LArFCalTowerBuilderTool (const std::string &name, const std::string &type, const IInterface *parent)
 AlgTool constructor.
virtual ~LArFCalTowerBuilderTool ()
virtual StatusCode execute (const EventContext &ctx, CaloTowerContainer *theContainer, const CaloCellContainer *theCell=0, const CaloTowerSeg::SubSeg *subseg=0) const override
 Run tower building and add results to the tower container.
virtual StatusCode execute (const EventContext &ctx, CaloTowerContainer *theContainer) override
 Run tower building and add results to the tower container.
virtual StatusCode initialize ATLAS_NOT_THREAD_SAFE () override
 common initialization
virtual void setTowerSeg (const CaloTowerSeg &theTowerSeg) override
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 sysInitialize () override
 Perform system initialization for an algorithm.
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

Static Public Member Functions

static const InterfaceID & interfaceID ()

Protected Member Functions

const CaloTowerSegtowerSeg () const
 Return the tower segmentation.
const CaloCellContainergetCells () const
 Retrieve cells from StoreGate.
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.

Protected Attributes

SG::ReadHandleKey< CaloCellContainerm_cellContainerName
SG::ReadCondHandleKey< CaloDetDescrManagerm_caloMgrKey {this,"CaloDetDescrManager","CaloDetDescrManager"}

Private Types

typedef LArFCalTowerStore::tower_iterator tower_iterator
typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

virtual StatusCode initializeTool () override
void addTower (const tower_iterator &t, const ElementLink< CaloCellContainer > &cellsEL, CaloTower *tower) const
void iterateFull (CaloTowerContainer *towers, const ElementLink< CaloCellContainer > &cellsEL) const
void iterateSubSeg (CaloTowerContainer *towers, const ElementLink< CaloCellContainer > &cellsEL, const CaloTowerSeg::SubSeg *subseg) const
void runTimeInit (const EventContext &ctx) const
StatusCode rebuildLookup (const EventContext &ctx)
 Rebuild the cell lookup table.
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

double m_minEt
const CaloCell_IDm_cellIdHelper
const LArFCAL_IDm_larFCalId
LArFCalTowerStore m_cellStore
std::once_flag m_onceFlag
CaloTowerSeg m_theTowerSeg
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

Static Private Attributes

static const CaloCell_ID::SUBCALO m_caloIndex = CaloCell_ID::LARFCAL

Detailed Description

special tower builder for FCal

LArFCalTowerBuilderTool is FCal specific. It first produces "mini-cells", which are FCal cell fragments defining the overlap between the (eta,phi) tower grid and the rectangular FCal cell. These mini-cells are then collected onto the tower grid.

Author
Peter Loch loch@.nosp@m.phsy.nosp@m.ics.a.nosp@m.rizo.nosp@m.na.ed.nosp@m.u
Date
April 30, 2004 - first implementation

Definition at line 35 of file LArFCalTowerBuilderTool.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< AlgTool > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

◆ tower_iterator

Constructor & Destructor Documentation

◆ LArFCalTowerBuilderTool() [1/2]

LArFCalTowerBuilderTool::LArFCalTowerBuilderTool ( const LArFCalTowerBuilderTool & )
delete

◆ LArFCalTowerBuilderTool() [2/2]

LArFCalTowerBuilderTool::LArFCalTowerBuilderTool ( const std::string & name,
const std::string & type,
const IInterface * parent )

AlgTool constructor.

Definition at line 26 of file LArFCalTowerBuilderTool.cxx.

29 : CaloTowerBuilderToolBase(name,type,parent)
30 , m_minEt(0.)
31 , m_cellIdHelper(nullptr)
32 , m_larFCalId(nullptr)
33{
34 // Et cut for minicells
35 declareProperty("MinimumEt",m_minEt);
36}
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
CaloTowerBuilderToolBase(const std::string &name, const std::string &type, const IInterface *parent)
AlgTool constructor.
const CaloCell_ID * m_cellIdHelper

◆ ~LArFCalTowerBuilderTool()

LArFCalTowerBuilderTool::~LArFCalTowerBuilderTool ( )
virtual

Definition at line 38 of file LArFCalTowerBuilderTool.cxx.

38 {
39}

Member Function Documentation

◆ addTower()

void LArFCalTowerBuilderTool::addTower ( const tower_iterator & t,
const ElementLink< CaloCellContainer > & cellsEL,
CaloTower * tower ) const
inlineprivate

Definition at line 62 of file LArFCalTowerBuilderTool.cxx.

65{
66 LArFCalTowerStore::cell_iterator firstC = m_cellStore.firstCellofTower(t);
67 LArFCalTowerStore::cell_iterator lastC = m_cellStore.lastCellofTower(t);
68 // here get needed size of this vector and use it to reserve tower size.
69 int ts= m_cellStore.towerSize(t);
70 double wsumE = tower->getBasicEnergy(); // this is not 0 since some towers already have cells from other calos.
71 const CaloCellContainer* cells = cellsEL.getDataPtr();
72 for (; firstC != lastC; ++firstC) {
73
74 unsigned int ci = firstC->first;
75 double weightC = firstC->second;
76 int cndx = cells->findIndex(ci);
77 const CaloCell* cellPtr = nullptr;
78 if (cndx >= 0)
79 cellPtr = (*cells)[cndx];
80 // get weights
81 if (cellPtr) {
82 wsumE += weightC * cellPtr->e(); // Summ up weighted energies .
83 tower->addUniqueCellNoKine(cellsEL, cndx, weightC, ts); // add cells to tower.
84 }
85 }
86 tower->setE(wsumE); // update tower kinematics.
87}
virtual double e() const override final
get energy (data member) (synonym to method energy()
Definition CaloCell.h:333
void addUniqueCellNoKine(const CaloCellContainer *theContainer, index_type theIndex, double weight, size_t size_hint=0)
Add a cell (very fast)
virtual double getBasicEnergy() const override
Basic signal getter.
Definition CaloTower.cxx:51
tower_data_t::const_iterator cell_iterator
virtual void setE(double theE)
set energy data member
Definition P4EEtaPhiM.h:114
int ts
Definition globals.cxx:24

◆ ATLAS_NOT_THREAD_SAFE()

virtual StatusCode initialize CaloTowerBuilderToolBase::ATLAS_NOT_THREAD_SAFE ( )
overridevirtualinherited

common initialization

Implements ICaloTowerBuilderToolBase.

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::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< AlgTool > >::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< AlgTool > >::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< AlgTool > >::evtStore ( )
inlineinherited

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

Definition at line 85 of file AthCommonDataStore.h.

◆ execute() [1/2]

StatusCode LArFCalTowerBuilderTool::execute ( const EventContext & ctx,
CaloTowerContainer * theContainer )
overridevirtual

Run tower building and add results to the tower container.

Parameters
ctxThe current event context.
theContainerThe tower container to fill.

If the segmentation hasn't been set, take it from the tower container. This is for use by converters.

Implements CaloTowerBuilderToolBase.

Definition at line 189 of file LArFCalTowerBuilderTool.cxx.

191{
192 if (m_cellStore.size() == 0) {
193 setTowerSeg (theContainer->towerseg());
194 ATH_CHECK( rebuildLookup(ctx) );
195 }
196
197 return execute (ctx, theContainer, nullptr, nullptr);
198}
#define ATH_CHECK
Evaluate an expression and check for errors.
virtual void setTowerSeg(const CaloTowerSeg &theTowerSeg) override
const CaloTowerSeg & towerseg() const
Return a copy of the attached CaloTowerSeg.
virtual StatusCode execute(const EventContext &ctx, CaloTowerContainer *theContainer, const CaloCellContainer *theCell=0, const CaloTowerSeg::SubSeg *subseg=0) const override
Run tower building and add results to the tower container.
StatusCode rebuildLookup(const EventContext &ctx)
Rebuild the cell lookup table.

◆ execute() [2/2]

StatusCode LArFCalTowerBuilderTool::execute ( const EventContext & ctx,
CaloTowerContainer * theContainer,
const CaloCellContainer * theCell = 0,
const CaloTowerSeg::SubSeg * subseg = 0 ) const
overridevirtual

Run tower building and add results to the tower container.

If a cell container is provided, use that; otherwise, fetch from SG (the key is given by a job property). If subseg is provided, then we do the building only within the rectangular region that it describes. The segmentation of the tower container must match the region over which we're running the tower building.

Parameters
ctxThe current event context.
theContainerThe tower container to fill.
theCellThe cell container to read. If null, we fetch from SG.
subsegIf provided, run tower building only within this window. The tower container segmentation must match.

Implements CaloTowerBuilderToolBase.

Definition at line 135 of file LArFCalTowerBuilderTool.cxx.

139{
140
141 //Init internal structure m_cellStore on first invocation
142 //Alignment updates are not taken into account!
143 std::call_once(m_onceFlag,&LArFCalTowerBuilderTool::runTimeInit,this,ctx);
144
145 if (m_cellStore.size() == 0) {
146 ATH_MSG_ERROR("Cell store not initialized.");
147 return StatusCode::FAILURE;
148 }
149
150 // retrieve cells
151 if (!theCells) {
152 theCells = getCells();
153 if (!theCells) {
154 return StatusCode::SUCCESS;
155 }
156 }
157
158 // check if any FCal in container
159 if ( theCells->nCellsCalo(m_caloIndex) == 0 ){
160 ATH_MSG_DEBUG( "no FCal cells in CaloCellContainer, skip tool!" );
161 return StatusCode::SUCCESS;
162 }
163
165 // Map Cells on Towers //
167
168 // register this calorimeter
169 theTowers->setCalo(m_caloIndex);
170
171 const ElementLink<CaloCellContainer> cellsEL (*theCells, 0, ctx);
172 if (subseg)
173 iterateSubSeg (theTowers, cellsEL, subseg);
174 else
175 iterateFull (theTowers, cellsEL);
176
177 return StatusCode::SUCCESS;
178}
#define ATH_MSG_ERROR(x)
#define ATH_MSG_DEBUG(x)
const CaloCellContainer * getCells() const
Retrieve cells from StoreGate.
void iterateFull(CaloTowerContainer *towers, const ElementLink< CaloCellContainer > &cellsEL) const
static const CaloCell_ID::SUBCALO m_caloIndex
void runTimeInit(const EventContext &ctx) const
void iterateSubSeg(CaloTowerContainer *towers, const ElementLink< CaloCellContainer > &cellsEL, const CaloTowerSeg::SubSeg *subseg) const

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::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

◆ getCells()

const CaloCellContainer * CaloTowerBuilderToolBase::getCells ( ) const
protectedinherited

Retrieve cells from StoreGate.

Definition at line 59 of file CaloTowerBuilderToolBase.cxx.

60{
61 const CaloCellContainer* cells = nullptr;
62 if (!m_cellContainerName.key().empty()) {
64 if (!cells) {
65 ATH_MSG_WARNING("no CaloCellContainer with key <"
66 << m_cellContainerName.key() << "> found, skip tool!");
67
68 }
69 }
70 return cells;
71}
#define ATH_MSG_WARNING(x)
SG::ReadHandleKey< CaloCellContainer > m_cellContainerName
const T * get(const ReadCondHandleKey< T > &key, const EventContext &ctx)
Convenience function to retrieve an object given a ReadCondHandleKey.

◆ initializeTool()

StatusCode LArFCalTowerBuilderTool::initializeTool ( )
overrideprivatevirtual

Implements CaloTowerBuilderToolBase.

Definition at line 45 of file LArFCalTowerBuilderTool.cxx.

45 {
46 ATH_CHECK( detStore()->retrieve (m_cellIdHelper, "CaloCell_ID") );
47 m_larFCalId = m_cellIdHelper->fcal_idHelper();
48
49 // ignore other input!
50 ATH_MSG_INFO( "CaloTowerBuilder for the FCal initiated" );
51
52 return StatusCode::SUCCESS;
53}
#define ATH_MSG_INFO(x)
const ServiceHandle< StoreGateSvc > & detStore() const

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::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.

◆ interfaceID()

const InterfaceID & ICaloTowerBuilderToolBase::interfaceID ( )
inlinestaticinherited

Definition at line 70 of file ICaloTowerBuilderToolBase.h.

70 {
71 static const InterfaceID IID("ICaloTowerBuilderToolBase", 1 , 0);
72 return IID;
73 }

◆ iterateFull()

void LArFCalTowerBuilderTool::iterateFull ( CaloTowerContainer * towers,
const ElementLink< CaloCellContainer > & cellsEL ) const
inlineprivate

Definition at line 92 of file LArFCalTowerBuilderTool.cxx.

94{
95 size_t sz = towers->size();
96 assert(m_cellStore.size() == sz);
97 tower_iterator tower_it = m_cellStore.towers();
98
99 for (unsigned int t = 0; t < sz; ++t, ++tower_it) {
100 CaloTower* aTower = towers->getTower(t);
101 addTower (tower_it, cellsEL, aTower);
102 }
103}
static Double_t sz
LArFCalTowerStore::tower_iterator tower_iterator
void addTower(const tower_iterator &t, const ElementLink< CaloCellContainer > &cellsEL, CaloTower *tower) const

◆ iterateSubSeg()

void LArFCalTowerBuilderTool::iterateSubSeg ( CaloTowerContainer * towers,
const ElementLink< CaloCellContainer > & cellsEL,
const CaloTowerSeg::SubSeg * subseg ) const
inlineprivate

Definition at line 108 of file LArFCalTowerBuilderTool.cxx.

111{
112 size_t sz = towers->size();
113 assert(subseg->size() == sz);
114 LArFCalTowerStore::tower_subseg_iterator tower_it = m_cellStore.towers(*subseg);
115
116 for (unsigned int t = 0; t < sz; ++t, ++tower_it) {
117 CaloTower* aTower = towers->getTower(tower_it.itower());
118 addTower (tower_it, cellsEL, aTower);
119 }
120}
size_t itower() const
The tower index to which the iterator is referring.
size_t size() const
The number of towers in this window.
CaloTowerSeg::SubSegIterator< tower_iterator > tower_subseg_iterator

◆ msg()

MsgStream & AthCommonMsg< AlgTool >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

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

◆ msgLvl()

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

Definition at line 30 of file AthCommonMsg.h.

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

◆ operator=()

LArFCalTowerBuilderTool & LArFCalTowerBuilderTool::operator= ( const LArFCalTowerBuilderTool & )
delete

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::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.

◆ rebuildLookup()

StatusCode LArFCalTowerBuilderTool::rebuildLookup ( const EventContext & ctx)
private

Rebuild the cell lookup table.

Definition at line 205 of file LArFCalTowerBuilderTool.cxx.

206{
207// std::cout << "rebuildLookup in context : " << ctx << std::endl;
208 ATH_MSG_DEBUG("Building lookup table");
209 SG::ReadCondHandle<CaloDetDescrManager> caloMgrHandle(m_caloMgrKey,ctx);
210 const CaloDetDescrManager* theManager = *caloMgrHandle;
211 CaloTowerContainer theTowers (towerSeg());
212 if ( m_cellStore.buildLookUp(*m_cellIdHelper,
213 *theManager,
214 &theTowers) )
215 {
216 return StatusCode::SUCCESS;
217 }
218 return StatusCode::FAILURE;
219}
Athena::TPCnvVers::Old Athena::TPCnvVers::Old Athena::TPCnvVers::Current Athena::TPCnvVers::Current CaloTowerContainer
Definition CaloTPCnv.cxx:68
const CaloTowerSeg & towerSeg() const
Return the tower segmentation.
SG::ReadCondHandleKey< CaloDetDescrManager > m_caloMgrKey

◆ 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< AlgTool > >::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< AlgTool > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ runTimeInit()

void LArFCalTowerBuilderTool::runTimeInit ( const EventContext & ctx) const
private

Definition at line 127 of file LArFCalTowerBuilderTool.cxx.

127 {
128 //cast alway const-ness, acceptable since this is protected under a std::call_once
130 if( thisNC->rebuildLookup(ctx)!=StatusCode::SUCCESS )
131 throw std::runtime_error("LArFCalTowerBuilderTool::runTimeInit rebuildLookup table failed");
132}
#define ATLAS_THREAD_SAFE
LArFCalTowerBuilderTool(const LArFCalTowerBuilderTool &)=delete

◆ setTowerSeg()

void CaloTowerBuilderToolBase::setTowerSeg ( const CaloTowerSeg & theTowerSeg)
overridevirtualinherited

Implements ICaloTowerBuilderToolBase.

Definition at line 37 of file CaloTowerBuilderToolBase.cxx.

37 {
38
39 ATH_MSG_DEBUG(" in CaloTowerBuilderToolBase::setTowerSeg ");
40 m_theTowerSeg = theTowerSeg;
41 ATH_MSG_DEBUG(" neta,nphi,etamin,etamax " << theTowerSeg.neta()
42 << " " << theTowerSeg.nphi() << " " << theTowerSeg.etamin()
43 << " " << theTowerSeg.etamax());
44}
index_t nphi() const
Retrieve number of bins.
index_t neta() const
Retrieve number of bins.
double etamin() const
Retrieve lower boundary value range.
double etamax() const
Retrieve upper boundary value range.

◆ sysInitialize()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysInitialize ( )
overridevirtualinherited

Perform system initialization for an algorithm.

We override this to declare all the elements of handle key arrays at the end of initialization. See comments on updateVHKA.

Reimplemented in asg::AsgMetadataTool, AthCheckedComponent< AthAlgTool >, AthCheckedComponent<::AthAlgTool >, and DerivationFramework::CfAthAlgTool.

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::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.

◆ towerSeg()

const CaloTowerSeg & CaloTowerBuilderToolBase::towerSeg ( ) const
protectedinherited

Return the tower segmentation.

Definition at line 50 of file CaloTowerBuilderToolBase.cxx.

51{
52 return m_theTowerSeg;
53}

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::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 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_caloIndex

CaloCell_ID::SUBCALO const LArFCalTowerBuilderTool::m_caloIndex = CaloCell_ID::LARFCAL
staticprivate

Definition at line 92 of file LArFCalTowerBuilderTool.h.

◆ m_caloMgrKey

SG::ReadCondHandleKey<CaloDetDescrManager> CaloTowerBuilderToolBase::m_caloMgrKey {this,"CaloDetDescrManager","CaloDetDescrManager"}
protectedinherited

Definition at line 95 of file CaloTowerBuilderToolBase.h.

95{this,"CaloDetDescrManager","CaloDetDescrManager"};

◆ m_cellContainerName

SG::ReadHandleKey<CaloCellContainer> CaloTowerBuilderToolBase::m_cellContainerName
protectedinherited

Definition at line 92 of file CaloTowerBuilderToolBase.h.

◆ m_cellIdHelper

const CaloCell_ID* LArFCalTowerBuilderTool::m_cellIdHelper
private

Definition at line 94 of file LArFCalTowerBuilderTool.h.

◆ m_cellStore

LArFCalTowerStore LArFCalTowerBuilderTool::m_cellStore
private

Definition at line 97 of file LArFCalTowerBuilderTool.h.

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_larFCalId

const LArFCAL_ID* LArFCalTowerBuilderTool::m_larFCalId
private

Definition at line 95 of file LArFCalTowerBuilderTool.h.

◆ m_minEt

double LArFCalTowerBuilderTool::m_minEt
private

Definition at line 67 of file LArFCalTowerBuilderTool.h.

◆ m_onceFlag

std::once_flag LArFCalTowerBuilderTool::m_onceFlag
mutableprivate

Definition at line 98 of file LArFCalTowerBuilderTool.h.

◆ m_theTowerSeg

CaloTowerSeg CaloTowerBuilderToolBase::m_theTowerSeg
privateinherited

Definition at line 99 of file CaloTowerBuilderToolBase.h.

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< AlgTool > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

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

Definition at line 398 of file AthCommonDataStore.h.


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