ATLAS Offline Software
Loading...
Searching...
No Matches
PanTau::Tool_InformationStore Class Reference

Tool to store information needed in PanTau Algorithms. More...

#include <Tool_InformationStore.h>

Inheritance diagram for PanTau::Tool_InformationStore:
Collaboration diagram for PanTau::Tool_InformationStore:

Public Types

typedef std::map< std::string, std::string > MapString
typedef std::map< std::string, std::vector< std::string > > MapVecString
typedef std::map< std::string, int > MapInt
typedef std::map< std::string, double > MapDouble
typedef std::map< std::string, std::vector< double > > MapVecDouble

Public Member Functions

 Tool_InformationStore (const std::string &name)
virtual ~Tool_InformationStore ()
virtual void ABRDefaultInit ()
virtual StatusCode initialize ()
 Dummy implementation of the initialisation function.
virtual StatusCode getInfo_Int (const std::string &varName, int &value) const
virtual StatusCode getInfo_Double (const std::string &varName, double &value) const
virtual StatusCode getInfo_VecDouble (const std::string &varName, std::vector< double > &value) const
virtual StatusCode getInfo_String (const std::string &varName, std::string &value) const
virtual StatusCode getInfo_VecString (const std::string &varName, std::vector< std::string > &value) const
bool isInitialized ()
virtual void print () const
 Print the state of the tool.
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
Additional helper functions, not directly mimicking Athena
template<class T>
const T * getProperty (const std::string &name) const
 Get one of the tool's properties.
const std::string & msg_level_name () const __attribute__((deprecated))
 A deprecated function for getting the message level's name.
const std::string & getName (const void *ptr) const
 Get the name of an object that is / should be in the event store.
SG::sgkey_t getKey (const void *ptr) const
 Get the (hashed) key of an object that is in the event store.

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

MapString m_Infos_String
 named strings, ints etc... for configuration
MapVecString m_Infos_VecString
MapInt m_Infos_Int
MapDouble m_Infos_Double
MapVecDouble m_Infos_VecDouble
bool m_init =false
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

Tool to store information needed in PanTau Algorithms.

Author
Christian Limbach (limba.nosp@m.ch@p.nosp@m.hysik.nosp@m..uni.nosp@m.-bonn.nosp@m..de)

Definition at line 25 of file Tool_InformationStore.h.

Member Typedef Documentation

◆ MapDouble

typedef std::map<std::string, double> PanTau::ITool_InformationStore::MapDouble
inherited

Definition at line 32 of file ITool_InformationStore.h.

◆ MapInt

typedef std::map<std::string, int> PanTau::ITool_InformationStore::MapInt
inherited

Definition at line 31 of file ITool_InformationStore.h.

◆ MapString

typedef std::map<std::string, std::string> PanTau::ITool_InformationStore::MapString
inherited

Definition at line 29 of file ITool_InformationStore.h.

◆ MapVecDouble

typedef std::map<std::string, std::vector<double> > PanTau::ITool_InformationStore::MapVecDouble
inherited

Definition at line 33 of file ITool_InformationStore.h.

◆ MapVecString

typedef std::map<std::string, std::vector<std::string> > PanTau::ITool_InformationStore::MapVecString
inherited

Definition at line 30 of file ITool_InformationStore.h.

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ Tool_InformationStore()

PanTau::Tool_InformationStore::Tool_InformationStore ( const std::string & name)

Definition at line 89 of file Tool_InformationStore.cxx.

89 :
90 asg::AsgTool(name)
91{
92 declareProperty("Infos_String", m_Infos_String, "Map with string type infos");
93 declareProperty("Infos_VecString", m_Infos_VecString, "Map with vector<string> type infos");
94 declareProperty("Infos_Int", m_Infos_Int, "Map with int type infos");
95 declareProperty("Infos_Double", m_Infos_Double, "Map with double type infos");
96 declareProperty("Infos_VecDouble", m_Infos_VecDouble, "Map with double type infos");
97}
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
MapString m_Infos_String
named strings, ints etc... for configuration

◆ ~Tool_InformationStore()

PanTau::Tool_InformationStore::~Tool_InformationStore ( )
virtualdefault

Member Function Documentation

◆ ABRDefaultInit()

void PanTau::Tool_InformationStore::ABRDefaultInit ( )
virtual

Definition at line 9 of file Tool_InformationStore.cxx.

9 {
10#ifdef XAOD_ANALYSIS
11
12 // Boolean values
13 MapInt m01 = {
14 {"TauConstituents_UsePionMass",1},
15 {"FeatureExtractor_UseEmptySeeds",0},
16 };
17 setMapInt(m01);
18
19 // double values
20 MapDouble m02 = {
21 {"TauConstituents_Types_DeltaRCore",0.2},
22 {"TauConstituents_MaxEta",9.9},
23 {"TauConstituents_PreselectionMinEnergy",500.},
24 // PanTau BDT Cut values --- CellBased
25 {"DecayModeDeterminator_BDTCutValue_R10X_CellBased",0.52},
26 {"DecayModeDeterminator_BDTCutValue_R11X_CellBased",-0.33},
27 {"DecayModeDeterminator_BDTCutValue_R110_CellBased",0.47},
28 {"DecayModeDeterminator_BDTCutValue_R1XX_CellBased",-0.21},
29 {"DecayModeDeterminator_BDTCutValue_R30X_CellBased",-0.13},
30 {"DecayModeDeterminator_BDTCutValue_R3XX_CellBased",-0.08},
31 };
32
33 setMapDouble(m02);
34
35 // String values
36 MapString m03 = {
37 {"Name_TauRecContainer","TauJets"},
38 {"Name_TrackParticleContainer","TrackParticleCandidate"},
39 {"ModeDiscriminator_TMVAMethod","BDTG"},
40 {"FeatureExtractor_VarTypeName_varTypeName_Ratio", "Ratio"},
41 {"FeatureExtractor_VarTypeName_varTypeName_Mean", "Mean"},
42 {"FeatureExtractor_VarTypeName_varTypeName_StdDev", "StdDev"},
43 {"FeatureExtractor_VarTypeName_varTypeName_HLV", "HLV"},
44 {"FeatureExtractor_VarTypeName_varTypeName_Angle", "Angle"},
45 {"FeatureExtractor_VarTypeName_varTypeName_DeltaR", "DeltaR"},
46 {"FeatureExtractor_VarTypeName_varTypeName_JetMoment", "JetMoment"},
47 {"FeatureExtractor_VarTypeName_varTypeName_Combined", "Combined"},
48 {"FeatureExtractor_VarTypeName_varTypeName_Basic", "Basic"},
49 {"FeatureExtractor_VarTypeName_varTypeName_PID", "PID"},
50 {"FeatureExtractor_VarTypeName_varTypeName_Shots", "Shots"},
51 };
52 setMapString(m03);
53
54 // vector<double> values
55 // In Config_PanTau.py, this was called "vector<float> values". This was changed to "double".
56 // The "Units.GeV" (import AthenaCommon.SystemOfUnits as Units) was now replaced by "GeV" (#include "CLHEP/Units/SystemOfUnits.h", using CLHEP::GeV)
57 MapVecDouble m04 = {
58 {"TauConstituents_BinEdges_Eta",{0.000, 0.800, 1.400, 1.500, 1.900, 9.900}},
59 {"TauConstituents_Selection_Neutral_EtaBinned_EtCut",{2.1*GeV, 2.5*GeV, 2.6*GeV, 2.4*GeV, 1.9*GeV}},
60 // Eta Binned P I 0 - B D T C U T S
61 {"CellBased_BinEdges_Eta",{0.000, 0.800, 1.400, 1.500, 1.900, 9.900}},
62 {"CellBased_EtaBinned_Pi0MVACut_1prong",{0.46, 0.39, 0.51, 0.47, 0.54}},
63 {"CellBased_EtaBinned_Pi0MVACut_3prong",{0.47, 0.52, 0.60, 0.55, 0.50}},
64 // P T B I N S
65 {"ModeDiscriminator_BinEdges_Pt",{10*GeV, 100000*GeV}},
66 {"ModeDiscriminator_BDTVariableDefaults_CellBased_1p0n_vs_1p1n", {-9.0, -0.2, -10.0, -0.2, -2.0}},
67 {"ModeDiscriminator_BDTVariableDefaults_CellBased_1p1n_vs_1pXn", {-9.0, -200.0, -0.2, -5.0, -2.0}},
68 {"ModeDiscriminator_BDTVariableDefaults_CellBased_3p0n_vs_3pXn", {-0.2, -9.0, -0.2, -2.0, -200.0}},
69 };
70 setMapVecDouble(m04);
71
72 // vector<string> values
73 MapVecString m05 = {
74 {"Names_ModeCases",{"1p0n_vs_1p1n","1p1n_vs_1pXn","3p0n_vs_3pXn"}},
75 // ---> CellBased BDT variables
76 {"ModeDiscriminator_BDTVariableNames_CellBased_1p0n_vs_1p1n",{"Neutral_PID_BDTValues_BDTSort_1","Neutral_Ratio_1stBDTEtOverEtAllConsts","Combined_DeltaR1stNeutralTo1stCharged","Charged_JetMoment_EtDRxTotalEt","Neutral_Shots_NPhotonsInSeed"}},
77 {"ModeDiscriminator_BDTVariableNames_CellBased_1p1n_vs_1pXn",{"Neutral_PID_BDTValues_BDTSort_2","Neutral_HLV_SumM","Neutral_Ratio_EtOverEtAllConsts","Basic_NNeutralConsts","Neutral_Shots_NPhotonsInSeed"}},
78 {"ModeDiscriminator_BDTVariableNames_CellBased_3p0n_vs_3pXn",{"Neutral_Ratio_EtOverEtAllConsts","Neutral_PID_BDTValues_BDTSort_1","Charged_StdDev_Et_WrtEtAllConsts","Neutral_Shots_NPhotonsInSeed","Charged_HLV_SumM"}},
79 {"ModeDiscriminator_BDTVariableTypes_CellBased_1p0n_vs_1p1n", {"F","F","F","F","F"}},
80 {"ModeDiscriminator_BDTVariableTypes_CellBased_1p1n_vs_1pXn", {"F","F","F","F","F"}},
81 {"ModeDiscriminator_BDTVariableTypes_CellBased_3p0n_vs_3pXn", {"F","F","F","F","F"}},
82 };
83 setMapVecString(m05);
84
85#endif
86}
std::map< std::string, std::vector< std::string > > MapVecString
std::map< std::string, std::string > MapString
std::map< std::string, std::vector< double > > MapVecDouble
std::map< std::string, double > MapDouble
std::map< std::string, int > MapInt

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

◆ 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

◆ getInfo_Double()

StatusCode PanTau::Tool_InformationStore::getInfo_Double ( const std::string & varName,
double & value ) const
virtual

Implements PanTau::ITool_InformationStore.

Definition at line 121 of file Tool_InformationStore.cxx.

121 {
122 MapDouble::const_iterator it = m_Infos_Double.find(varName);
123 if(it == m_Infos_Double.end()) {
124 ATH_MSG_ERROR("getInfo_Double: No double information called " << varName << " present in InformationStore");
125 return StatusCode::FAILURE;
126 }
127 value = it->second;
128 return StatusCode::SUCCESS;
129}
#define ATH_MSG_ERROR(x)

◆ getInfo_Int()

StatusCode PanTau::Tool_InformationStore::getInfo_Int ( const std::string & varName,
int & value ) const
virtual

Implements PanTau::ITool_InformationStore.

Definition at line 111 of file Tool_InformationStore.cxx.

111 {
112 MapInt::const_iterator it = m_Infos_Int.find(varName);
113 if(it == m_Infos_Int.end()) {
114 ATH_MSG_ERROR("getInfo_Int: No integer information called " << varName << " present in InformationStore");
115 return StatusCode::FAILURE;
116 }
117 value = it->second;
118 return StatusCode::SUCCESS;
119}

◆ getInfo_String()

StatusCode PanTau::Tool_InformationStore::getInfo_String ( const std::string & varName,
std::string & value ) const
virtual

Implements PanTau::ITool_InformationStore.

Definition at line 141 of file Tool_InformationStore.cxx.

141 {
142 MapString::const_iterator it = m_Infos_String.find(varName);
143 if(it == m_Infos_String.end()) {
144 ATH_MSG_ERROR("getInfo_String: No string information called " << varName << " present in InformationStore");
145 return StatusCode::FAILURE;
146 }
147 value = it->second;
148 return StatusCode::SUCCESS;
149}

◆ getInfo_VecDouble()

StatusCode PanTau::Tool_InformationStore::getInfo_VecDouble ( const std::string & varName,
std::vector< double > & value ) const
virtual

Implements PanTau::ITool_InformationStore.

Definition at line 131 of file Tool_InformationStore.cxx.

131 {
132 MapVecDouble::const_iterator it = m_Infos_VecDouble.find(varName);
133 if(it == m_Infos_VecDouble.end()) {
134 ATH_MSG_ERROR("getInfo_VecDouble: No double information called " << varName << " present in InformationStore");
135 return StatusCode::FAILURE;
136 }
137 value = it->second;
138 return StatusCode::SUCCESS;
139}

◆ getInfo_VecString()

StatusCode PanTau::Tool_InformationStore::getInfo_VecString ( const std::string & varName,
std::vector< std::string > & value ) const
virtual

Implements PanTau::ITool_InformationStore.

Definition at line 151 of file Tool_InformationStore.cxx.

151 {
152 MapVecString::const_iterator it = m_Infos_VecString.find(varName);
153 if(it == m_Infos_VecString.end()) {
154 ATH_MSG_ERROR("getInfo_VecString: No std::string information called " << varName << " present in InformationStore");
155 return StatusCode::FAILURE;
156 }
157 value = it->second;
158 return StatusCode::SUCCESS;
159}

◆ getKey()

SG::sgkey_t asg::AsgTool::getKey ( const void * ptr) const
inherited

Get the (hashed) key of an object that is in the event store.

This is a bit of a special one. StoreGateSvc and xAOD::TEvent both provide ways for getting the SG::sgkey_t key for an object that is in the store, based on a bare pointer. But they provide different interfaces for doing so.

In order to allow tools to efficiently perform this operation, they can use this helper function.

See also
asg::AsgTool::getName
Parameters
ptrThe bare pointer to the object that the event store should know about
Returns
The hashed key of the object in the store. If not found, an invalid (zero) key.

Definition at line 119 of file AsgTool.cxx.

119 {
120
121#ifdef XAOD_STANDALONE
122 // In case we use @c xAOD::TEvent, we have a direct function call
123 // for this.
124 return evtStore()->event()->getKey( ptr );
125#else
126 const SG::DataProxy* proxy = evtStore()->proxy( ptr );
127 return ( proxy == nullptr ? 0 : proxy->sgkey() );
128#endif // XAOD_STANDALONE
129 }
ServiceHandle< StoreGateSvc > & evtStore()

◆ getName()

const std::string & asg::AsgTool::getName ( const void * ptr) const
inherited

Get the name of an object that is / should be in the event store.

This is a bit of a special one. StoreGateSvc and xAOD::TEvent both provide ways for getting the std::string name for an object that is in the store, based on a bare pointer. But they provide different interfaces for doing so.

In order to allow tools to efficiently perform this operation, they can use this helper function.

See also
asg::AsgTool::getKey
Parameters
ptrThe bare pointer to the object that the event store should know about
Returns
The string name of the object in the store. If not found, an empty string.

Definition at line 106 of file AsgTool.cxx.

106 {
107
108#ifdef XAOD_STANDALONE
109 // In case we use @c xAOD::TEvent, we have a direct function call
110 // for this.
111 return evtStore()->event()->getName( ptr );
112#else
113 const SG::DataProxy* proxy = evtStore()->proxy( ptr );
114 static const std::string dummy = "";
115 return ( proxy == nullptr ? dummy : proxy->name() );
116#endif // XAOD_STANDALONE
117 }

◆ getProperty()

template<class T>
const T * asg::AsgTool::getProperty ( const std::string & name) const
inherited

Get one of the tool's properties.

◆ initialize()

StatusCode PanTau::Tool_InformationStore::initialize ( void )
virtual

Dummy implementation of the initialisation function.

It's here to allow the dual-use tools to skip defining an initialisation function. Since many are doing so...

Reimplemented from asg::AsgTool.

Definition at line 101 of file Tool_InformationStore.cxx.

101 {
102 ATH_MSG_INFO( name() << " initialize()" );
103 m_init=true;
104
105 //This function does nothing in athena
107
108 return StatusCode::SUCCESS;
109}
#define ATH_MSG_INFO(x)

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

◆ isInitialized()

bool PanTau::Tool_InformationStore::isInitialized ( )
inlinevirtual

Implements PanTau::ITool_InformationStore.

Definition at line 64 of file Tool_InformationStore.h.

64{return m_init;}

◆ msg()

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

Definition at line 24 of file AthCommonMsg.h.

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

◆ msg_level_name()

const std::string & asg::AsgTool::msg_level_name ( ) const
inherited

A deprecated function for getting the message level's name.

Instead of using this, weirdly named function, user code should get the string name of the current minimum message level (in case they really need it...), with:

MSG::name( msg().level() )

This function's name doesn't follow the ATLAS coding rules, and as such will be removed in the not too distant future.

Returns
The string name of the current minimum message level that's printed

Definition at line 101 of file AsgTool.cxx.

101 {
102
103 return MSG::name( msg().level() );
104 }
MsgStream & msg() const
const std::string & name(Level lvl)
Convenience function for translating message levels to strings.
Definition MsgLevel.cxx:19

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

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

◆ print()

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

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

◆ 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_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_Infos_Double

MapDouble PanTau::Tool_InformationStore::m_Infos_Double
private

Definition at line 58 of file Tool_InformationStore.h.

◆ m_Infos_Int

MapInt PanTau::Tool_InformationStore::m_Infos_Int
private

Definition at line 57 of file Tool_InformationStore.h.

◆ m_Infos_String

MapString PanTau::Tool_InformationStore::m_Infos_String
private

named strings, ints etc... for configuration

Definition at line 55 of file Tool_InformationStore.h.

◆ m_Infos_VecDouble

MapVecDouble PanTau::Tool_InformationStore::m_Infos_VecDouble
private

Definition at line 59 of file Tool_InformationStore.h.

◆ m_Infos_VecString

MapVecString PanTau::Tool_InformationStore::m_Infos_VecString
private

Definition at line 56 of file Tool_InformationStore.h.

◆ m_init

bool PanTau::Tool_InformationStore::m_init =false
private

Definition at line 61 of file Tool_InformationStore.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: