ATLAS Offline Software
Loading...
Searching...
No Matches
RIO_OnTrackErrorScalingCondAlg Class Referencefinal

#include <RIO_OnTrackErrorScalingCondAlg.h>

Inheritance diagram for RIO_OnTrackErrorScalingCondAlg:
Collaboration diagram for RIO_OnTrackErrorScalingCondAlg:

Public Member Functions

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

StatusCode addErrorScaling (const std::string &type_name)
void registerAttribute (const std::string &name, unsigned int type_idx, unsigned int param_idx)
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

SG::ReadCondHandleKey< CondAttrListCollectionm_readKey {this, "ReadKey", "/Indet/TrkErrorScaling", "Conditions folder namer for innder detector error scaling parameters."}
Gaudi::Property< std::vector< std::string > > m_errorScalingType
Gaudi::Property< std::vector< std::string > > m_attributIgnoreList { this,"IgnoreAttributes", {}, "List of attributes that should be ignored."}
SG::WriteCondHandleKeyArray< RIO_OnTrackErrorScalingm_writeKey
std::vector< const RIO_OnTrackErrorScalingKit * > m_kits {}
std::map< std::string, std::pair< unsigned int, unsigned int > > m_attributeMap
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 19 of file RIO_OnTrackErrorScalingCondAlg.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

◆ RIO_OnTrackErrorScalingCondAlg()

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

Definition at line 12 of file RIO_OnTrackErrorScalingCondAlg.cxx.

13 : ::AthCondAlgorithm(name, pSvcLocator)
14{
15}

◆ ~RIO_OnTrackErrorScalingCondAlg()

virtual RIO_OnTrackErrorScalingCondAlg::~RIO_OnTrackErrorScalingCondAlg ( )
virtualdefault

Member Function Documentation

◆ addErrorScaling()

StatusCode RIO_OnTrackErrorScalingCondAlg::addErrorScaling ( const std::string & type_name)
private

Definition at line 48 of file RIO_OnTrackErrorScalingCondAlg.cxx.

48 {
49 const RIO_OnTrackErrorScalingKit *the_kit(nullptr);
50 try {
51 the_kit = &(RIO_OnTrackErrorScalingKitManager::instance().kit( type_name ));
52 }
53 catch (std::runtime_error &err) {
54 std::stringstream types;
56 ATH_MSG_FATAL( "Invalid ErrorScaling type name : " << type_name << ". Registered types:" << types.str() );
57 return StatusCode::FAILURE;
58 }
59 catch (std::exception &err) {
60 std::stringstream types;
62 ATH_MSG_FATAL( "Caught exception: " << err.what() << " Invalid ErrorScaling type name : " << type_name << ". Registered types:" << types.str() );
63 return StatusCode::FAILURE;
64 }
65 m_kits.push_back(the_kit);
66 const char* const* parameters=the_kit->paramNames();
67 for (unsigned int param_i=0; param_i<the_kit->nParametres(); ++param_i) {
68 registerAttribute( std::string(parameters[param_i]), m_kits.size()-1, param_i);
69 }
70
71 return StatusCode::SUCCESS;
72}
#define ATH_MSG_FATAL(x)
static const std::vector< std::string > types
void dumpKits(std::ostream &out) const
static KitManager< RIO_OnTrackErrorScalingKit > & instance()
Definition KitManager.h:50
const T_KitInterface & kit(const std::string &name) const
Definition KitManager.h:45
void registerAttribute(const std::string &name, unsigned int type_idx, unsigned int param_idx)
std::vector< const RIO_OnTrackErrorScalingKit * > m_kits

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

Definition at line 94 of file RIO_OnTrackErrorScalingCondAlg.cxx.

94 {
95 SG::ReadCondHandle<CondAttrListCollection> readHandle(m_readKey, ctx);
96 if (!readHandle.isValid()) {
97 return StatusCode::FAILURE;
98 }
99 assert( *readHandle );
100 EventIDRange range;
101 if (!readHandle.range(range)) {
102 ATH_MSG_FATAL("Failed to retrieve validity range for " << readHandle.key());
103 return StatusCode::FAILURE;
104 }
105
106 std::vector<SG::WriteCondHandle<RIO_OnTrackErrorScaling> > write_handles(m_writeKey.makeHandles(ctx));
107 assert( write_handles.size() == m_kits.size() );
108 std::vector< std::unique_ptr<RIO_OnTrackErrorScaling> > error_scaling;
109 error_scaling.reserve( m_kits.size());
110
111 unsigned int total_params=0;
112 for (const RIO_OnTrackErrorScalingKit *a_kit: m_kits) {
113 assert( a_kit );
114 error_scaling.push_back( a_kit->create() );
115 total_params += a_kit->nParametres();
116 }
117 assert( write_handles.size() == error_scaling.size());
118
119 try {
120 // now populate output conditions data objects from attribut lists.
121 for (const std::pair<const unsigned int, coral::AttributeList>& channel : **readHandle ) {
122 const coral::AttributeList &alist = channel.second;
123 unsigned int att_i=0;
124 const std::string& attr_name=alist[att_i++].data<std::string>();
125 try {
126 std::pair<unsigned int, unsigned int> idx = m_attributeMap.at(attr_name);
127 if (idx.first != std::numeric_limits<unsigned int>::max()) {
128 assert( idx.first < error_scaling.size());
129 // cppcheck-suppress assertWithSideEffect
130 assert( idx.second < error_scaling[idx.first]->params().size());
131
132 const int nvals=alist[att_i++].data<int>();
133 std::vector<double> &params = error_scaling[idx.first]->params()[idx.second];
134 params.clear();
135 params.reserve(nvals);
136 assert( att_i == 2);
137 for (int i=0;i<nvals;++i, ++att_i){
138 assert( att_i < alist.size() );
139 // ATH_MSG_VERBOSE("Parameter " << i << " = " << alist[att_i].data<double>() );
140 params.push_back(alist[att_i].data<double>());
141 }
142 }
143 --total_params;
144 }
145 catch (std::out_of_range &err) {
146 ATH_MSG_FATAL("Unhandled attribute: " << attr_name);
147 return StatusCode::FAILURE;
148 }
149 catch (std::exception &err) {
150 ATH_MSG_FATAL("Unhandled attribute: " << attr_name << " what:" << err.what());
151 return StatusCode::FAILURE;
152 }
153 }
154 if (total_params!=0) {
155 ATH_MSG_ERROR("Not all parameters of the output conditions data are filled from attribute list. " << total_params << " parameters are not filled.");
156 }
157
158 for (unsigned int key_i=0; key_i<write_handles.size(); ++key_i) {
159 // assert( key_i < m_writeKey.size());
160 assert( key_i < error_scaling.size());
161 if (!error_scaling[key_i]->postProcess()) {
162 ATH_MSG_ERROR("Conditions data for " << write_handles[key_i].key() << " not valid.");
163 return StatusCode::FAILURE;
164 }
165 // CLID impl_clid=error_scaling[key_i]->clid();
166 if (write_handles[key_i].record(range, std::move(error_scaling[key_i])).isFailure()) {
167 ATH_MSG_FATAL("Could not record RIO_OnTrackErrorScaling " << write_handles[key_i].key()
168 << " with EventRange " << range
169 << " into Conditions Store");
170 return StatusCode::FAILURE;
171 }
172 }
173 }
174 catch (coral::Exception& e) {
175 ATH_MSG_ERROR("Problem with AttributeList decoding: " << e.what());
176 return StatusCode::FAILURE;
177 }
178 return StatusCode::SUCCESS;
179}
#define ATH_MSG_ERROR(x)
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11
SG::ReadCondHandleKey< CondAttrListCollection > m_readKey
std::map< std::string, std::pair< unsigned int, unsigned int > > m_attributeMap
SG::WriteCondHandleKeyArray< RIO_OnTrackErrorScaling > m_writeKey

◆ 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

◆ finalize()

StatusCode RIO_OnTrackErrorScalingCondAlg::finalize ( )
override

Definition at line 182 of file RIO_OnTrackErrorScalingCondAlg.cxx.

182 {
183 return StatusCode::SUCCESS;
184}

◆ initialize()

StatusCode RIO_OnTrackErrorScalingCondAlg::initialize ( )
override

Definition at line 17 of file RIO_OnTrackErrorScalingCondAlg.cxx.

17 {
18 ATH_CHECK(m_readKey.initialize());
19
20 if (m_errorScalingType.size() != m_writeKey.size()) {
21 ATH_MSG_FATAL("Number of error scaling types and out keys do not match: " << m_errorScalingType.size() << " != " << m_writeKey.size()
22 << " There should be exactly one out key for each error scaling type.");
23 return StatusCode::FAILURE;
24 }
25 ATH_CHECK( m_writeKey.initialize() );
26
27 m_kits.clear();
28 m_kits.reserve(m_errorScalingType.size());
29 for (const std::string &type_name : m_errorScalingType ) {
30 ATH_CHECK( addErrorScaling(type_name) );
31 }
32 for (const std::string &attribut_name : m_attributIgnoreList ) {
33 registerAttribute(attribut_name, std::numeric_limits<unsigned int>::max(),0);
34 }
35
36 return StatusCode::SUCCESS;
37}
#define ATH_CHECK
Evaluate an expression and check for errors.
Gaudi::Property< std::vector< std::string > > m_attributIgnoreList
StatusCode addErrorScaling(const std::string &type_name)
Gaudi::Property< std::vector< std::string > > m_errorScalingType

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

◆ registerAttribute()

void RIO_OnTrackErrorScalingCondAlg::registerAttribute ( const std::string & name,
unsigned int type_idx,
unsigned int param_idx )
private

Definition at line 40 of file RIO_OnTrackErrorScalingCondAlg.cxx.

40 {
41 if (!m_attributeMap.insert( std::make_pair(name, std::make_pair(type_idx,param_idx)) ).second) {
42 std::stringstream message;
43 message << "Failed to add RIO_OnTrackErrorScaling paramter : " << name << ".";
44 throw std::runtime_error(message.str());
45 }
46}

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

std::map<std::string, std::pair<unsigned int, unsigned int> > RIO_OnTrackErrorScalingCondAlg::m_attributeMap
private

Definition at line 53 of file RIO_OnTrackErrorScalingCondAlg.h.

◆ m_attributIgnoreList

Gaudi::Property< std::vector<std::string> > RIO_OnTrackErrorScalingCondAlg::m_attributIgnoreList { this,"IgnoreAttributes", {}, "List of attributes that should be ignored."}
private

Definition at line 43 of file RIO_OnTrackErrorScalingCondAlg.h.

44{ this,"IgnoreAttributes", {}, "List of attributes that should be ignored."};

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

Gaudi::Property< std::vector<std::string> > RIO_OnTrackErrorScalingCondAlg::m_errorScalingType
private
Initial value:
{ this,
"ErrorScalingType",
{"PixelRIO_OnTrackErrorScalingRun1","SCTRIO_OnTrackErrorScaling","TRTRIO_OnTrackErrorScaling"},
"Error scaling type. (git grep \"RIO_OnTrackErrorScalingKitManager.*registerKit\")"
}

Definition at line 36 of file RIO_OnTrackErrorScalingCondAlg.h.

37 { this,
38 "ErrorScalingType",
39 {"PixelRIO_OnTrackErrorScalingRun1","SCTRIO_OnTrackErrorScaling","TRTRIO_OnTrackErrorScaling"},
40 "Error scaling type. (git grep \"RIO_OnTrackErrorScalingKitManager.*registerKit\")"
41 };

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

std::vector<const RIO_OnTrackErrorScalingKit *> RIO_OnTrackErrorScalingCondAlg::m_kits {}
private

Definition at line 52 of file RIO_OnTrackErrorScalingCondAlg.h.

52{};

◆ m_readKey

SG::ReadCondHandleKey<CondAttrListCollection> RIO_OnTrackErrorScalingCondAlg::m_readKey {this, "ReadKey", "/Indet/TrkErrorScaling", "Conditions folder namer for innder detector error scaling parameters."}
private

Definition at line 33 of file RIO_OnTrackErrorScalingCondAlg.h.

34{this, "ReadKey", "/Indet/TrkErrorScaling", "Conditions folder namer for innder detector error scaling parameters."};

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

◆ m_writeKey

SG::WriteCondHandleKeyArray<RIO_OnTrackErrorScaling> RIO_OnTrackErrorScalingCondAlg::m_writeKey
private
Initial value:
{ this,
"OutKeys",
{"/Indet/TrkErrorScalingPixel","/Indet/TrkErrorScalingSCT","/Indet/TrkErrorScalingTRT"},
"Output conditions key names, for the specified error scaling types"}

Definition at line 46 of file RIO_OnTrackErrorScalingCondAlg.h.

47 { this,
48 "OutKeys",
49 {"/Indet/TrkErrorScalingPixel","/Indet/TrkErrorScalingSCT","/Indet/TrkErrorScalingTRT"},
50 "Output conditions key names, for the specified error scaling types"};

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