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

#include <CscRdoToCscDigit.h>

Inheritance diagram for CscRdoToCscDigit:
Collaboration diagram for CscRdoToCscDigit:

Public Member Functions

 CscRdoToCscDigit (const std::string &name, ISvcLocator *pSvcLocator)
virtual ~CscRdoToCscDigit ()=default
virtual StatusCode initialize () override final
virtual StatusCode execute (const EventContext &ctx) const override final
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

StatusCode decodeCsc (const CscRawDataCollection *, CscDigitContainer *, CscDigitCollection *&, Identifier &) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ToolHandle< ICscCalibToolm_cscCalibTool {this, "cscCalibTool", "CscCalibTool", ""}
ToolHandle< Muon::ICSC_RDO_Decoderm_cscRdoDecoderTool {this, "cscRdoDecoderTool", "Muon::CscRDO_Decoder", ""}
ServiceHandle< Muon::IMuonIdHelperSvcm_idHelperSvc {this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"}
SG::ReadHandleKey< CscRawDataContainerm_cscRdoKey {this, "CscRdoContainer", "CSCRDO", "Csc RDO Input"}
SG::WriteHandleKey< CscDigitContainerm_cscDigitKey {this, "CscDigitContainer", "CSC_DIGITS", "Csc Digit Output"}
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 17 of file CscRdoToCscDigit.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

◆ CscRdoToCscDigit()

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

Definition at line 9 of file CscRdoToCscDigit.cxx.

9: AthReentrantAlgorithm(name, pSvcLocator) {}

◆ ~CscRdoToCscDigit()

virtual CscRdoToCscDigit::~CscRdoToCscDigit ( )
virtualdefault

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>

◆ decodeCsc()

StatusCode CscRdoToCscDigit::decodeCsc ( const CscRawDataCollection * rdoColl,
CscDigitContainer * cscContainer,
CscDigitCollection *& collection,
Identifier & oldId ) const
private

for each Rdo, loop over RawData, converter RawData to digit retrieve/create digit collection, and insert digit into collection

Definition at line 47 of file CscRdoToCscDigit.cxx.

48 {
49 ATH_MSG_DEBUG(" Number of RawData in this rdo " << rdoColl->size());
50
51 const double samplingTime = rdoColl->rate();
52 const unsigned int numSamples = rdoColl->numSamples();
53
54 // decoder.setParams(samplingTime);
55
56 const IdContext cscContext = m_idHelperSvc->cscIdHelper().module_context();
57
60 for (const CscRawData* data : *rdoColl) {
61 if (!data) {
62 ATH_MSG_WARNING("NULL pointer to Digit!");
63 continue;
64 }
65 const uint16_t width = data->width();
66 Identifier stationId = m_cscRdoDecoderTool->stationIdentifier(data, &m_idHelperSvc->cscIdHelper());
67 for (int j = 0; j < width; ++j) {
68 Identifier channelId = m_cscRdoDecoderTool->channelIdentifier(data, &m_idHelperSvc->cscIdHelper(), j);
69 std::vector<uint16_t> samples;
70 const bool extractSamples = data->samples(j, numSamples, samples);
71 if (!extractSamples) {
72 ATH_MSG_WARNING("Unable to extract samples for strip " << j << " Online Cluster width = " << width
73 << " for number of Samples = " << numSamples << " continuing ...");
74 continue;
75 }
76 std::vector<float> charges;
77 const bool adctocharge = m_cscCalibTool->adcToCharge(samples, data->hashId(), charges);
78 double charge = 0.0;
79 double time = 0.0;
80 unsigned int samplingPhase = 0;
81 const int errorfindCharge = m_cscCalibTool->findCharge(samplingTime, samplingPhase, charges, charge, time);
82 // WPARK: Potential problem! error code includes time out of range and aa>0
83 // If this is the case, only very nice samples are converted to Digit. Sep 11, 2009
84 if (!adctocharge || !errorfindCharge) {
85 ATH_MSG_WARNING(" CSC conversion ADC to Charge failed "
86 << "CSC Digit not build ... "
87 << " or charge finding failed "
88 << " ... skipping ");
89 continue;
90 }
91 ATH_MSG_DEBUG("CSC RDO->CscDigit: " << m_idHelperSvc->cscIdHelper().show_to_string(channelId));
92 const int theCharge = static_cast<int>(charge);
93 CscDigit* newDigit = new CscDigit(channelId, theCharge, time);
94 ATH_MSG_DEBUG("CSC RDO->Digit: " << m_idHelperSvc->cscIdHelper().show_to_string(newDigit->identify()) << " "
95 << newDigit->charge() << " " << charge << " time= " << time);
96
97 for (uint16_t i = 0; i < samples.size(); ++i) { ATH_MSG_DEBUG("CSC RDO->Digit: " << samples[i]); }
98 IdentifierHash coll_hash;
99 if (m_idHelperSvc->cscIdHelper().get_hash(stationId, coll_hash, &cscContext)) {
100 ATH_MSG_WARNING("Unable to get CSC digiti collection hash id "
101 << "context begin_index = " << cscContext.begin_index()
102 << " context end_index = " << cscContext.end_index() << " the identifier is ");
103 stationId.show();
104 }
105
106 if (oldId != stationId) {
107 const CscDigitCollection* coll = cscContainer->indexFindPtr(coll_hash);
108 if (nullptr == coll) {
109 CscDigitCollection* newCollection = new CscDigitCollection(stationId, coll_hash);
110 newCollection->push_back(newDigit);
111 collection = newCollection;
112 if (cscContainer->addCollection(newCollection, coll_hash).isFailure()) {
113 ATH_MSG_WARNING("Couldn't record CscDigitCollection with key=" << coll_hash << " in StoreGate!");
114 }
115 } else {
116 CscDigitCollection* oldCollection ATLAS_THREAD_SAFE = const_cast<CscDigitCollection*>(coll); // FIXME
117 oldCollection->push_back(newDigit);
118 collection = oldCollection;
119 }
120 oldId = stationId;
121 } else {
122 collection->push_back(newDigit);
123 }
124 }
125 }
126 return StatusCode::SUCCESS;
127}
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
double charge(const T &p)
Definition AtlasPID.h:997
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11
const double width
#define ATLAS_THREAD_SAFE
int charge() const
Return the charge.
Definition CscDigit.h:42
uint8_t rate() const
the rate could be 25 or 50 ns
ToolHandle< Muon::ICSC_RDO_Decoder > m_cscRdoDecoderTool
ToolHandle< ICscCalibTool > m_cscCalibTool
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
value_type push_back(value_type pElem)
Add an element to the end of the collection.
size_type size() const noexcept
Returns the number of elements in the collection.
size_type begin_index() const
Definition IdContext.h:45
size_type end_index() const
Definition IdContext.h:46
virtual const T * indexFindPtr(IdentifierHash hashId) const override final
return pointer on the found entry or null if out of range using hashed index - fast version,...
virtual StatusCode addCollection(const T *coll, IdentifierHash hashId) override final
insert collection into container with id hash if IDC should not take ownership of collection,...
void show() const
Print out in hex form.
Identifier identify() const
Definition MuonDigit.h:30
time(flags, cells_name, *args, **kw)
setWord1 uint16_t

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

Definition at line 21 of file CscRdoToCscDigit.cxx.

21 {
22 ATH_MSG_DEBUG("in execute()");
23 // retrieve the collection of RDO
24 SG::ReadHandle<CscRawDataContainer> rdoRH(m_cscRdoKey, ctx);
25 if (!rdoRH.isValid()) {
26 ATH_MSG_WARNING("No CSC RDO container found!");
27 return StatusCode::SUCCESS;
28 }
29 const CscRawDataContainer* rdoContainer = rdoRH.cptr();
30 ATH_MSG_DEBUG("Retrieved " << rdoContainer->size() << " CSC RDOs.");
31
32 SG::WriteHandle<CscDigitContainer> wh_cscDigit(m_cscDigitKey, ctx);
33 ATH_CHECK(wh_cscDigit.record(std::make_unique<CscDigitContainer>(m_idHelperSvc->cscIdHelper().module_hash_max())));
34 ATH_MSG_DEBUG("Decoding CSC RDO into CSC Digit");
35
36 Identifier oldId;
37 CscDigitCollection* collection(nullptr);
38 // now decode RDO into digits
39 auto it_rdoColl = rdoContainer->begin();
40 auto lastRdoColl = rdoContainer->end();
41
42 for (; it_rdoColl != lastRdoColl; ++it_rdoColl) { ATH_CHECK(this->decodeCsc(*it_rdoColl, wh_cscDigit.ptr(), collection, oldId)); }
43
44 return StatusCode::SUCCESS;
45}
#define ATH_CHECK
Evaluate an expression and check for errors.
Athena::TPCnvVers::Old Athena::TPCnvVers::Current Athena::TPCnvVers::Old Athena::TPCnvVers::Current CscRawDataContainer
SG::ReadHandleKey< CscRawDataContainer > m_cscRdoKey
StatusCode decodeCsc(const CscRawDataCollection *, CscDigitContainer *, CscDigitCollection *&, Identifier &) const
SG::WriteHandleKey< CscDigitContainer > m_cscDigitKey
const_iterator end() const
return const_iterator for end of container
size_t size() const
Duplicate of fullSize for backwards compatability.
const_iterator begin() const
return const_iterator for first entry

◆ 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 CscRdoToCscDigit::initialize ( )
finaloverridevirtual

CSC calibration tool for the Condtiions Data base access

Definition at line 11 of file CscRdoToCscDigit.cxx.

11 {
12 ATH_CHECK(m_idHelperSvc.retrieve());
14 ATH_CHECK(m_cscCalibTool.retrieve());
15 ATH_CHECK(m_cscRdoKey.initialize());
16 ATH_CHECK(m_cscDigitKey.initialize());
18 return StatusCode::SUCCESS;
19}

◆ 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_ERROR(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_cscCalibTool

ToolHandle<ICscCalibTool> CscRdoToCscDigit::m_cscCalibTool {this, "cscCalibTool", "CscCalibTool", ""}
private

Definition at line 28 of file CscRdoToCscDigit.h.

28{this, "cscCalibTool", "CscCalibTool", ""};

◆ m_cscDigitKey

SG::WriteHandleKey<CscDigitContainer> CscRdoToCscDigit::m_cscDigitKey {this, "CscDigitContainer", "CSC_DIGITS", "Csc Digit Output"}
private

Definition at line 32 of file CscRdoToCscDigit.h.

32{this, "CscDigitContainer", "CSC_DIGITS", "Csc Digit Output"};

◆ m_cscRdoDecoderTool

ToolHandle<Muon::ICSC_RDO_Decoder> CscRdoToCscDigit::m_cscRdoDecoderTool {this, "cscRdoDecoderTool", "Muon::CscRDO_Decoder", ""}
private

Definition at line 29 of file CscRdoToCscDigit.h.

29{this, "cscRdoDecoderTool", "Muon::CscRDO_Decoder", ""};

◆ m_cscRdoKey

SG::ReadHandleKey<CscRawDataContainer> CscRdoToCscDigit::m_cscRdoKey {this, "CscRdoContainer", "CSCRDO", "Csc RDO Input"}
private

Definition at line 31 of file CscRdoToCscDigit.h.

31{this, "CscRdoContainer", "CSCRDO", "Csc RDO Input"};

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

ServiceHandle<Muon::IMuonIdHelperSvc> CscRdoToCscDigit::m_idHelperSvc {this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"}
private

Definition at line 30 of file CscRdoToCscDigit.h.

30{this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"};

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