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

#include <RegSelCondAlg_Tile.h>

Inheritance diagram for RegSelCondAlg_Tile:
Collaboration diagram for RegSelCondAlg_Tile:

Public Member Functions

 RegSelCondAlg_Tile (const std::string &name, ISvcLocator *pSvcLocator)
virtual StatusCode initialize () override
virtual StatusCode execute (const EventContext &ctx) const override
virtual bool isReEntrant () const override
 Avoid scheduling algorithm multiple times.
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

virtual std::unique_ptr< RegSelectorMapcreateTable (const TileHid2RESrcID *hid2re) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

std::string m_managerName
bool m_printTable
SG::ReadCondHandleKey< TileHid2RESrcIDm_hid2RESrcIDKey {this, "TileHid2RESrcID", "TileHid2RESrcIDHLT", "TileHid2RESrcID key"}
SG::WriteCondHandleKey< IRegSelLUTCondDatam_tableKey { this, "RegSelLUT", "RegSelLUTCondData", "Region Selector lookup table" }
 Output conditions object.
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 30 of file RegSelCondAlg_Tile.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

◆ RegSelCondAlg_Tile()

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

Definition at line 39 of file RegSelCondAlg_Tile.cxx.

39 :
40 AthCondAlgorithm( name, pSvcLocator ),
41 m_managerName(""),
42 m_printTable(false)
43{
44 declareProperty( "ManagerName", m_managerName );
45 declareProperty( "PrintTable", m_printTable=false );
46}
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

Member Function Documentation

◆ 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}

◆ createTable()

std::unique_ptr< RegSelectorMap > RegSelCondAlg_Tile::createTable ( const TileHid2RESrcID * hid2re) const
privatevirtual

get all the tools, managers and helpers locally - done't need to create class variables for any of these

coded in here

this code - this is not clear at all

The RegionSelectorLUT and RegSelectorMap classes are truly awful and should be completely replaced, but for the time being need to create the RegSelectorMap from the RegionSelectorLUT (why not just fill the Map to start with ???) and then call mountDataStruct() - why this insane approach ?

Definition at line 135 of file RegSelCondAlg_Tile.cxx.

135 {
136
137 std::unique_ptr<RegSelectorMap> lut(nullptr);
138
141
142
143 // Get the TileID helper from the detector store
144 const TileID* tileID;
145 if (detStore()->retrieve(tileID, "TileID").isFailure()) {
146 ATH_MSG_ERROR( "Could not get TileID helper !");
147 return lut;
148 }
149
150 // Get the TileHWID helper from the detector store
151 const TileHWID* tileHWID;
152 if (detStore()->retrieve(tileHWID, "TileHWID").isFailure()) {
153 ATH_MSG_ERROR( "Could not get TileHWID helper !");
154 return lut;
155 }
156
157 // Get pointer to TileDetDescrManager
158 const TileDetDescrManager* tileMgr;
159 if (detStore()->retrieve(tileMgr).isFailure()) {
160 ATH_MSG_ERROR( "Unable to retrieve TileDetDescrManager from DetectorStore" );
161 return lut;
162 }
163
164 std::unique_ptr<RegionSelectorLUT> ttLut = std::make_unique<RegionSelectorLUT>(256);
165
166 enum Partition { Ancillary = 0, LBA = 1, LBC = 2, EBA = 3, EBC = 4 };
167
168 // hard-coded etamin/etamax - ignoring slightly different positions of EBA end ENC partitions
169 // FIXME: this is very poor - the actual positions should come from the geometry, not be hard
171
172 std::vector<double> etamin(TileCalibUtils::MAX_ROS);
173 etamin[LBA]=-0.1;
174 etamin[LBC]=-1.0;
175 etamin[EBA]=+0.708779;
176 etamin[EBC]=-1.60943;
177 std::vector<double> etamax(TileCalibUtils::MAX_ROS);
178 etamax[LBA]=+1.0;
179 etamax[LBC]=+0.1;
180 etamax[EBA]=+1.60943;
181 etamax[EBC]=-0.708779;
182
183 // so presumably USE_CELL_PHI is not definied, so we don't want
185
186# if (defined USE_MODULE_PHI)
187# else
188 double dphi = 2 * M_PI / TileCalibUtils::MAX_DRAWER; // 0.09817477;
189# endif
190
191 int sam = 0; // ?
192 int layer = 0; //?
193 int firstone = tileHWID->drawerIdx( tileHWID->drawer_id(LBA,0) ); // hash index of first real drawer (LBA01)
194 for (unsigned int ros = 0; ros < TileCalibUtils::MAX_ROS; ++ros) {
195 for (unsigned int drawer = 0; drawer < TileCalibUtils::MAX_DRAWER; ++drawer) {
196
197 int hash = tileHWID->drawerIdx( tileHWID->drawer_id(ros,drawer) ) - firstone;
198 if (hash<0) continue;
199
200 int coll = tileHWID->frag(ros, drawer);
201 int rod = hid2re->getRodID(coll);
202
203 double etami = etamin[ros];
204 double etama = etamax[ros];
205
206# if (defined USE_MODULE_PHI)
207 // alternative approach
208 int section = (ros==LBA || ros==LBC) ? TileID::BARREL : TileID::EXTBAR;
209 int side = (ros==LBA || ros==EBA) ? TileID::POSITIVE : TileID::NEGATIVE;
210 Identifier moduleID = tileID->module_id(section,side,drawer);
211 CaloDetDescriptor *moduleDDE = tileMgr->get_module_element(moduleID);
212 double phimin = moduleDDE->calo_phi_min();
213 double phimax = moduleDDE->calo_phi_max();
214 if ( phimin < 0.0 ) {
215 phimin+=2*M_PI;
216 if ( phimax < phimin ) phimax+=2*M_PI;
217 }
218# else
219 // OLD method - we can predict phi boundaries from module number
220 double phimin = drawer * dphi;
221 double phimax = (drawer+1) * dphi;
222# endif
223
224 ttLut->additem(etami,etama,phimin,phimax,sam,layer,hash,rod);
225
226 }
227 }
228
229
235
236 lut = std::make_unique<RegSelectorMap>();
237 lut->addLut( ttLut.get() );
238 lut->mountDataStruct();
239
240 return lut;
241}
#define M_PI
#define ATH_MSG_ERROR(x)
void section(const std::string &sec)
const ServiceHandle< StoreGateSvc > & detStore() const
double calo_phi_max() const
'ideal' geometry: phi maximal
double calo_phi_min() const
'ideal' geometry: phi minimal
static const unsigned int MAX_ROS
Number of ROSs.
static const unsigned int MAX_DRAWER
Number of drawers in ROS 1-4.
CaloDetDescriptor * get_module_element(const IdentifierHash module_hash) const
int frag(const HWIdentifier &id) const
extract frag field from HW identifier
Definition TileHWID.h:181
int drawerIdx(const HWIdentifier &id) const
construct drawer index from HW identifier
Definition TileHWID.h:175
HWIdentifier drawer_id(int frag) const
ROS HWIdentifer.
Definition TileHWID.cxx:187
uint32_t getRodID(int frag_id) const
make a ROD SrcID for a fragment ID
Identifier module_id(int section, int side, int module) const
constexpr auto lut(Generator &&f)
@ layer
Definition HitInfo.h:79
retrieve(aClass, aKey=None)
Definition PyKernel.py:110

◆ 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 RegSelCondAlg_Tile::execute ( const EventContext & ctx) const
overridevirtual

do stuff here ...

inpractice, this should never be called, although in serial athena,
because the implementation of the conditions behaviour is flawed in
the framework, this routine will be called every event (!) regardless
of whether it should be called or not so we need this check to
prevent unecessary code execution on out our side

create the new lookup table

create the conditions data for storage

leave this commented here since this is where it should really be, but we had to move it up in the code to handle the flawed conditions handling in the serial athena use case SG::WriteCondHandle<IRegSelLUTCondData> lutCondData( m_tableKey, ctx );

Definition at line 61 of file RegSelCondAlg_Tile.cxx.

61 {
62
63 ATH_MSG_DEBUG("RegSelCondAlg_Tile::execute() -- enter -- ");
64
66 ATH_MSG_DEBUG( "Creating region selector table " << m_tableKey );
67
68
69 SG::WriteCondHandle<IRegSelLUTCondData> lutCondData( m_tableKey, ctx );
70 if (lutCondData.isValid()) {
76 ATH_MSG_DEBUG("CondHandle " << lutCondData.fullKey() << " is already valid." );
77 return StatusCode::SUCCESS;
78 }
79
80 SG::ReadCondHandle<TileHid2RESrcID> hid2RESrcID(m_hid2RESrcIDKey, ctx);
81 if(!hid2RESrcID.isValid()) {
82 ATH_MSG_ERROR( "Do not have TileHid2RESrcID from key " << m_hid2RESrcIDKey.key() );
83 return StatusCode::FAILURE;
84 }
85
86 EventIDRange id_range;
87
88 if( !hid2RESrcID.range( id_range ) ) {
89 ATH_MSG_ERROR("Failed to retrieve validity range for " << hid2RESrcID.key());
90 return StatusCode::FAILURE;
91 }
92
93
94 ATH_MSG_INFO( "creating new Tile table" );
95
97
98 std::unique_ptr<IRegSelLUT> rd = createTable(*hid2RESrcID);
99
100 if ( !rd ) return StatusCode::FAILURE;
101
102 ATH_MSG_INFO( "Storing the new look up table " << m_tableKey );
103
105
106 IRegSelLUTCondData* rcd = new IRegSelLUTCondData( std::move(rd) );
107
108 try {
113 if( lutCondData.record( id_range, rcd ).isFailure() ) {
114 ATH_MSG_ERROR( "Could not record " << m_tableKey
115 << " " << lutCondData.key()
116 << " with range " << id_range );
117 return StatusCode::FAILURE;
118 }
119 ATH_MSG_INFO( "RegSelCondAlg LUT recorded: " << m_tableKey);
120 }
121 catch (...) {
122 ATH_MSG_ERROR("RegSelCondAlg_Tile::execute() failed to record table: " << m_tableKey);
123 return StatusCode::FAILURE;
124 }
125
126
127 ATH_MSG_DEBUG("RegSelCondAlg_Tile::execute() -- exit -- ");
128
129 return StatusCode::SUCCESS;
130}
#define ATH_MSG_INFO(x)
#define ATH_MSG_DEBUG(x)
RegSelCondData< IRegSelLUT > IRegSelLUTCondData
virtual std::unique_ptr< RegSelectorMap > createTable(const TileHid2RESrcID *hid2re) const
SG::ReadCondHandleKey< TileHid2RESrcID > m_hid2RESrcIDKey
SG::WriteCondHandleKey< IRegSelLUTCondData > m_tableKey
Output conditions object.

◆ 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 RegSelCondAlg_Tile::initialize ( )
overridevirtual

Definition at line 51 of file RegSelCondAlg_Tile.cxx.

51 {
52 ATH_MSG_DEBUG("RegSelCondAlg_Tile::initialize() ");
53 ATH_CHECK(m_hid2RESrcIDKey.initialize());
54 ATH_CHECK(m_tableKey.initialize());
55 ATH_MSG_INFO("RegSelCondAlg_Tile::initialize() " << m_tableKey );
56 return StatusCode::SUCCESS;
57}
#define ATH_CHECK
Evaluate an expression and check for errors.

◆ 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()

◆ isReEntrant()

virtual bool AthCondAlgorithm::isReEntrant ( ) const
inlineoverridevirtualinherited

Avoid scheduling algorithm multiple times.

With multiple concurrent events, conditions objects often expire simultaneously for all slots. To avoid that the scheduler runs the CondAlg in each slot, we declare it as "non-reentrant". This ensures that the conditions objects are only created once.

In case a particular CondAlg should behave differently, it can override this method again and return true.

See also
ATEAM-836

Definition at line 39 of file AthCondAlgorithm.h.

39{ return false; }

◆ 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_hid2RESrcIDKey

SG::ReadCondHandleKey<TileHid2RESrcID> RegSelCondAlg_Tile::m_hid2RESrcIDKey {this, "TileHid2RESrcID", "TileHid2RESrcIDHLT", "TileHid2RESrcID key"}
private

Definition at line 46 of file RegSelCondAlg_Tile.h.

47{this, "TileHid2RESrcID", "TileHid2RESrcIDHLT", "TileHid2RESrcID key"};

◆ m_managerName

std::string RegSelCondAlg_Tile::m_managerName
private

Definition at line 42 of file RegSelCondAlg_Tile.h.

◆ m_printTable

bool RegSelCondAlg_Tile::m_printTable
private

Definition at line 44 of file RegSelCondAlg_Tile.h.

◆ m_tableKey

SG::WriteCondHandleKey<IRegSelLUTCondData> RegSelCondAlg_Tile::m_tableKey { this, "RegSelLUT", "RegSelLUTCondData", "Region Selector lookup table" }
private

Output conditions object.

Definition at line 50 of file RegSelCondAlg_Tile.h.

51{ this, "RegSelLUT", "RegSelLUTCondData", "Region Selector lookup table" };

◆ 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: