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

Condition algorithm to prepare TileHid2RESrcID conditions object and put it into conditions store. More...

#include <TileHid2RESrcIDCondAlg.h>

Inheritance diagram for TileHid2RESrcIDCondAlg:
Collaboration diagram for TileHid2RESrcIDCondAlg:

Public Member Functions

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

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

Gaudi::Property< bool > m_forHLT {this, "ForHLT", false, "Produce TileHid2RESrcID conditions object for HLT"}
SG::WriteCondHandleKey< TileHid2RESrcIDm_hid2ReSrcIdKey
 Name of output TileHid2RESrcID.
Gaudi::Property< unsigned int > m_fullTileRODs
Gaudi::Property< std::vector< std::string > > m_ROD2ROBmap
ServiceHandle< IROBDataProviderSvcm_robSvc
 Name of ROB data provider service.
ToolHandle< ITileCondProxy< TileCalibDrawerInt > > m_rodStatusProxy
 Tool to get Tile ROD status (e.g.: mapping from BS frag ID to drawer ID)
const TileHWIDm_tileHWID {nullptr}
bool m_initFromEvent {false}
bool m_initFromDB {false}
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

Condition algorithm to prepare TileHid2RESrcID conditions object and put it into conditions store.

Definition at line 27 of file TileHid2RESrcIDCondAlg.h.

Member Typedef Documentation

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

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}

◆ 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 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

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

Definition at line 36 of file TileHid2RESrcIDCondAlg.cxx.

36 {
37
38 SG::WriteCondHandle<TileHid2RESrcID> hid2ReSrcId{m_hid2ReSrcIdKey, ctx};
39
40 if (hid2ReSrcId.isValid()) {
41 ATH_MSG_DEBUG("Found valid TileHid2RESrcID: " << hid2ReSrcId.key());
42 return StatusCode::SUCCESS;
43 }
44
45 const uint32_t run = ctx.eventID().run_number();
46
47 EventIDRange eventRange;
48 std::unique_ptr<TileHid2RESrcID> hid2re;
49
50 if (m_initFromDB) {
51 hid2re = std::make_unique<TileHid2RESrcID>(m_tileHWID, run);
52
53 auto calibData = std::make_unique<TileCalibData<TileCalibDrawerInt>>();
54 ATH_CHECK( m_rodStatusProxy->fillCalibData(*calibData, eventRange) );
55
56 std::vector<std::vector<uint32_t>> allMap;
58
59 for (unsigned int drawerIdx = 0; drawerIdx < TileCalibUtils::MAX_DRAWERIDX; ++drawerIdx) {
60 const TileCalibDrawerInt* calibDrawer = calibData->getCalibDrawer(drawerIdx);
61 unsigned int nGains = calibDrawer->getNGains();
62 unsigned int nChannels = calibDrawer->getNChans();
63 unsigned int nValues = calibDrawer->getObjSizeUint32();
64 for (unsigned int channel = 0; channel < nChannels; ++channel) {
65 for (unsigned int adc = 0; adc < nGains; ++adc) {
66 std::vector<uint32_t> fragMap;
67 fragMap.reserve(nValues);
68 for (unsigned int i = 0; i < nValues; ++i) {
69 fragMap.push_back( calibDrawer->getData(channel, adc, i) );
70 }
71 allMap.emplace_back(std::move(fragMap));
72 }
73 }
74 }
75
76 hid2re->initialize(allMap);
77
78 } else if (m_forHLT) {
79 hid2re = std::make_unique<TileHid2RESrcID>(m_tileHWID, run);
80 } else {
81
82 unsigned int fullMode = (m_fullTileRODs > 0) ? m_fullTileRODs.value() : run;
83 hid2re = std::make_unique<TileHid2RESrcID>(m_tileHWID, fullMode);
84
85 // Check whether we want to overwrite default ROB IDs
86 if (m_initFromEvent) {
87 ATH_MSG_DEBUG( "Length of ROD2ROBmap is and odd value, "
88 << " means that we'll scan event for all fragments to create proper map" );
89
90 bool of2Default{true};
91 const eformat::FullEventFragment<const uint32_t*> * event = m_robSvc->getEvent(ctx);
92 try {
93 event->check_tree();
94 hid2re->setROD2ROBmap(event, of2Default, msg());
95 } catch (...) {
96 ATH_MSG_DEBUG( "Bad event, mapping might be incomplete! " );
97 // Bad event, but process anyhow (well, till next bug report )
98 hid2re->setROD2ROBmap(event, of2Default, msg());
99 }
100 } else if (m_ROD2ROBmap.empty()) {
101 ATH_MSG_DEBUG( "Length of ROD2ROBmap vector is zero, "
102 << " means that predefined mapping for run " << fullMode << " will be used " );
103 } else {
104 ATH_MSG_DEBUG( "Apply additional remapping for " << m_ROD2ROBmap.value().size()/2 << " fragments from jobOptions ");
105 hid2re->setROD2ROBmap(m_ROD2ROBmap.value(), msg());
106 }
107
108 }
109
110 if (!m_initFromDB) {
111 // Set validity of TileHid2RESrcID for current run
112 eventRange = EventIDRange(EventIDBase{run, EventIDBase::UNDEFEVT, EventIDBase::UNDEFNUM, EventIDBase::UNDEFNUM, 0},
113 EventIDBase{run + 1, EventIDBase::UNDEFEVT, EventIDBase::UNDEFNUM, EventIDBase::UNDEFNUM, 0});
114 }
115
116 hid2re->printSpecial(msg());
117
118 ATH_CHECK( hid2ReSrcId.record(eventRange, std::move(hid2re)) );
119
120 ATH_MSG_VERBOSE("Recorded TileHid2RESrcID object with "
121 << hid2ReSrcId.key()
122 << " with EventRange " << eventRange
123 << " into Conditions Store");
124
125 return StatusCode::SUCCESS;
126}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_DEBUG(x)
const std::string & key() const
StatusCode record(const EventIDRange &range, T *t)
record handle, with explicit range DEPRECATED
static const unsigned int MAX_DRAWERIDX
Maximal drawer index.
static const unsigned int MAX_DRAWR0
Number of drawers in ROS 0.
ToolHandle< ITileCondProxy< TileCalibDrawerInt > > m_rodStatusProxy
Tool to get Tile ROD status (e.g.: mapping from BS frag ID to drawer ID)
Gaudi::Property< std::vector< std::string > > m_ROD2ROBmap
ServiceHandle< IROBDataProviderSvc > m_robSvc
Name of ROB data provider service.
Gaudi::Property< unsigned int > m_fullTileRODs
SG::WriteCondHandleKey< TileHid2RESrcID > m_hid2ReSrcIdKey
Name of output TileHid2RESrcID.
Gaudi::Property< bool > m_forHLT
unsigned int constexpr nChannels
Definition RPDUtils.h:23
setEventNumber uint32_t

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

Definition at line 15 of file TileHid2RESrcIDCondAlg.cxx.

15 {
16
17 ATH_MSG_DEBUG( "In initialize()" );
18
19 // Retrieve TileHWID helper from det store
21 ATH_CHECK( m_hid2ReSrcIdKey.initialize() );
22
24 ATH_CHECK( m_rodStatusProxy.retrieve(EnableTool{m_initFromDB}) );
25
26 // Initilize from event if length of ROD2ROBmap is and odd value
27 m_initFromEvent = (!m_initFromDB && (m_ROD2ROBmap.value().size() % 2 == 1));
28 if (m_initFromEvent) {
29 ATH_CHECK(m_robSvc.retrieve());
30 }
31
32 return StatusCode::SUCCESS;
33}
const ServiceHandle< StoreGateSvc > & detStore() const
retrieve(aClass, aKey=None)
Definition PyKernel.py:110

◆ 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_ERROR(x)
#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_forHLT

Gaudi::Property<bool> TileHid2RESrcIDCondAlg::m_forHLT {this, "ForHLT", false, "Produce TileHid2RESrcID conditions object for HLT"}
private

Definition at line 37 of file TileHid2RESrcIDCondAlg.h.

37{this, "ForHLT", false, "Produce TileHid2RESrcID conditions object for HLT"};

◆ m_fullTileRODs

Gaudi::Property<unsigned int> TileHid2RESrcIDCondAlg::m_fullTileRODs
private
Initial value:
{this, "FullTileMode", 320000,
"Run from which to take the cabling (for the moment, either 320000 - full 2017 mode (default) - or 0 - 2016 mode)"}

Definition at line 45 of file TileHid2RESrcIDCondAlg.h.

45 {this, "FullTileMode", 320000,
46 "Run from which to take the cabling (for the moment, either 320000 - full 2017 mode (default) - or 0 - 2016 mode)"};

◆ m_hid2ReSrcIdKey

SG::WriteCondHandleKey<TileHid2RESrcID> TileHid2RESrcIDCondAlg::m_hid2ReSrcIdKey
private
Initial value:
{this,
"TileHid2RESrcID", "TileHid2RESrcID", "Output TileHid2RESrcID conditions object"}

Name of output TileHid2RESrcID.

Definition at line 42 of file TileHid2RESrcIDCondAlg.h.

42 {this,
43 "TileHid2RESrcID", "TileHid2RESrcID", "Output TileHid2RESrcID conditions object"};

◆ m_initFromDB

bool TileHid2RESrcIDCondAlg::m_initFromDB {false}
private

Definition at line 65 of file TileHid2RESrcIDCondAlg.h.

65{false};

◆ m_initFromEvent

bool TileHid2RESrcIDCondAlg::m_initFromEvent {false}
private

Definition at line 64 of file TileHid2RESrcIDCondAlg.h.

64{false};

◆ m_robSvc

ServiceHandle<IROBDataProviderSvc> TileHid2RESrcIDCondAlg::m_robSvc
private
Initial value:
{this,
"ROBDataProviderSvc", "ROBDataProviderSvc", "The ROB data provider service"}

Name of ROB data provider service.

Definition at line 54 of file TileHid2RESrcIDCondAlg.h.

54 {this,
55 "ROBDataProviderSvc", "ROBDataProviderSvc", "The ROB data provider service"};

◆ m_ROD2ROBmap

Gaudi::Property<std::vector<std::string> > TileHid2RESrcIDCondAlg::m_ROD2ROBmap
private
Initial value:
{this,
"ROD2ROBmap",{},"","OrderedSet<std::string>"}

Definition at line 48 of file TileHid2RESrcIDCondAlg.h.

48 {this,
49 "ROD2ROBmap",{},"","OrderedSet<std::string>"};

◆ m_rodStatusProxy

ToolHandle<ITileCondProxy<TileCalibDrawerInt> > TileHid2RESrcIDCondAlg::m_rodStatusProxy
private
Initial value:
{this,
"RODStatusProxy", "", "Tile ROD status proxy tool"}

Tool to get Tile ROD status (e.g.: mapping from BS frag ID to drawer ID)

Definition at line 60 of file TileHid2RESrcIDCondAlg.h.

60 {this,
61 "RODStatusProxy", "", "Tile ROD status proxy tool"};

◆ m_tileHWID

const TileHWID* TileHid2RESrcIDCondAlg::m_tileHWID {nullptr}
private

Definition at line 63 of file TileHid2RESrcIDCondAlg.h.

63{nullptr};

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