ATLAS Offline Software
Loading...
Searching...
No Matches
columnar::ColumnarLinkTool Class Referencefinal

a columnar tool to merge the two components of an element link into the proper repesentation for columnar More...

#include <ColumnarLinkTool.h>

Inheritance diagram for columnar::ColumnarLinkTool:
Collaboration diagram for columnar::ColumnarLinkTool:

Classes

struct  ColumnSlot
 generic per-column low-level accessor state More...
struct  TargetSlot
 per-target container information More...

Public Member Functions

 ColumnarLinkTool (const std::string &name)
virtual StatusCode initialize () override
 Dummy implementation of the initialisation function.
virtual void callEvents (EventContextRange events) const override
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.

Public Attributes

Gaudi::Property< std::vector< std::string > > m_targetContainerNames
Gaudi::Property< bool > m_errorOnUnknownKey
Gaudi::Property< unsigned > m_nestingDepth

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

std::vector< TargetSlotm_targetSlots
ColumnSlot m_srcContainerSlot
 per-event particle offsets of the source container
std::vector< ColumnSlotm_linkOffsetSlots
 offset columns describing the nested-vector structure of the link triple; outermost first; size matches m_nestingDepth
ColumnSlot m_indexSlot
 flat input column with the per-link index into the target container
ColumnSlot m_keySlot
 flat input column with the raw sgkey identifying the target container
ColumnSlot m_outLinkSlot
 flat output column with the merged link
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

a columnar tool to merge the two components of an element link into the proper repesentation for columnar

This tool reads both the index and sgkey columns of a link (directly from the xAOD input), adjusts the index with the event offset, looks up the sgkey, and writes out a combined column.

With m_nestingDepth set to a non-zero value the tool also supports vector-of-link and (nested) vector-of-vector-of-link inputs: the link triple (linkIndex, linkSGKey, outLink) is then expected as flat data columns suffixed .data, with one or more offset columns describing the per-particle nesting. The tool only needs to iterate the flat link range per event since the per-link merging is independent of which particle/sub-vector a link belongs to.

This tool only works in ColumnarModeArray, in xAOD mode links are directly represented by ElementLink objects.

Definition at line 44 of file ColumnarLinkTool.h.

Member Typedef Documentation

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ ColumnarLinkTool()

columnar::ColumnarLinkTool::ColumnarLinkTool ( const std::string & name)

Definition at line 72 of file ColumnarLinkTool.cxx.

74 : AsgTool (name)
75 {}
AsgTool(const std::string &name)
Constructor specifying the tool instance's name.
Definition AsgTool.cxx:58

Member Function Documentation

◆ callEvents()

void columnar::ColumnarLinkTool::callEvents ( EventContextRange events) const
overridevirtual

Definition at line 155 of file ColumnarLinkTool.cxx.

157 {
158 using CM = ColumnarModeArray;
159
160 for (EventContextId event : events)
161 {
162 void** dataArea = event.getDataArea();
163 const std::size_t eventIdx = event.getIndex();
164
165 // compute the flat-link range for this event by walking the
166 // source-particle offset and the nested-vector offset chain
167 const auto *srcPartOff = static_cast<const ColumnarOffsetType*>
168 (dataArea[m_srcContainerSlot.dataIndex]);
169 std::size_t flatStart = srcPartOff[eventIdx];
170 std::size_t flatEnd = srcPartOff[eventIdx + 1];
171 for (const auto& off : m_linkOffsetSlots)
172 {
173 const auto *a = static_cast<const ColumnarOffsetType*>
174 (dataArea[off.dataIndex]);
175 flatStart = a[flatStart];
176 flatEnd = a[flatEnd];
177 }
178
179 const auto *indexArr = static_cast<const CM::LinkIndexType*>
180 (dataArea[m_indexSlot.dataIndex]);
181 const auto *keyArr = static_cast<const SG::sgkey_t*>
182 (dataArea[m_keySlot.dataIndex]);
183 auto *outArr = static_cast<CM::LinkIndexType*>
184 (dataArea[m_outLinkSlot.dataIndex]);
185
186 for (std::size_t j = flatStart; j < flatEnd; ++ j)
187 {
188 const CM::LinkIndexType index = indexArr[j];
189 const SG::sgkey_t key = keyArr[j];
190
191 if (index == 0 && key == 0)
192 {
193 outArr[j] = CM::invalidLinkValue;
194 continue;
195 }
196
197 std::size_t t = 0;
198 while (t < m_targetSlots.size() && m_targetSlots[t].sgKey != key)
199 ++ t;
200
201 if (t == m_targetSlots.size())
202 {
203 if (m_errorOnUnknownKey.value())
204 {
205 throw std::runtime_error
206 ("ColumnarLinkTool: unknown sgkey " + std::to_string (key));
207 }
208 outArr[j] = CM::mergeLinkKeyIndex (0xfe, index);
209 continue;
210 }
211
212 const auto *targetOffsets = static_cast<const ColumnarOffsetType*>
213 (dataArea[m_targetSlots[t].dataIndex]);
214 const CM::LinkIndexType myIndex = index + targetOffsets[eventIdx];
215 if (myIndex >= targetOffsets[eventIdx + 1])
216 {
217 throw std::runtime_error
218 ("ColumnarLinkTool: link index " + std::to_string (index)
219 + " out of range for target "
220 + m_targetContainerNames.value().at (t));
221 }
222
223 outArr[j] = CM::mergeLinkKeyIndex (t, myIndex);
224 }
225 }
226 }
static Double_t a
std::vector< TargetSlot > m_targetSlots
ColumnSlot m_indexSlot
flat input column with the per-link index into the target container
std::vector< ColumnSlot > m_linkOffsetSlots
offset columns describing the nested-vector structure of the link triple; outermost first; size match...
ColumnSlot m_outLinkSlot
flat output column with the merged link
Gaudi::Property< bool > m_errorOnUnknownKey
ColumnSlot m_keySlot
flat input column with the raw sgkey identifying the target container
Gaudi::Property< std::vector< std::string > > m_targetContainerNames
ColumnSlot m_srcContainerSlot
per-event particle offsets of the source container
str index
Definition DeMoScan.py:362
uint32_t sgkey_t
Type used for hashed StoreGate key+CLID pairs.
Definition sgkey_t.h:32
float j(const xAOD::IParticle &, const xAOD::TrackMeasurementValidation &hit, const Eigen::Matrix3d &jab_inv)
ObjectId< EventContextDef > EventContextId
std::size_t ColumnarOffsetType
the type used for the size and offsets in the columnar data

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

◆ 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

◆ 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::Event 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::Event, 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::Event 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::Event, 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 columnar::ColumnarLinkTool::initialize ( void )
overridevirtual

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 79 of file ColumnarLinkTool.cxx.

81 {
82 if (m_targetContainerNames.empty())
83 {
84 ATH_MSG_ERROR ("targetContainerNames is empty");
85 return StatusCode::FAILURE;
86 }
87
89 for (std::size_t i = 0; i < m_targetContainerNames.size(); ++ i)
90 {
91 const auto& name = m_targetContainerNames.value()[i];
92 auto keyIter = knownSgKeys.find (name);
93 if (keyIter == knownSgKeys.end())
94 {
95 ATH_MSG_ERROR ("unknown target container name: " << name);
96 return StatusCode::FAILURE;
97 }
98
99 auto& slot = m_targetSlots[i];
100 slot.sgKey = keyIter->second;
101 slot.accessorData = std::make_unique<ColumnAccessorDataArray>
102 (&slot.dataIndex, &slot.accessorData,
104
105 ColumnInfo info;
106 info.offsetName = eventContextCIName;
107 info.isOffset = true;
108 addColumn (name, slot.accessorData.get(), std::move (info));
109 }
110
111 // source-container per-event particle offsets
112 registerColumn (*this, m_srcContainerSlot, sourceContainerName,
114 std::string (eventContextCIName), true);
115
116 // nested-vector offset columns; outermost first
117 const unsigned depth = m_nestingDepth.value();
118 m_linkOffsetSlots.resize (depth);
119 std::string parentOffsetName = sourceContainerName;
120 for (unsigned i = 0; i < depth; ++ i)
121 {
122 const std::string name = linkOffsetName (i, depth);
123 registerColumn (*this, m_linkOffsetSlots[i], name,
125 parentOffsetName, true);
126 parentOffsetName = name;
127 }
128
129 // the innermost offset name becomes the offset for the flat data
130 // columns
131 const std::string& innerOffsetName = parentOffsetName;
132 const std::string dataSuffix = (depth == 0u ? "" : ".data");
133
134 registerColumn (*this, m_indexSlot,
135 std::string ("Container.linkIndex") + dataSuffix,
137 ColumnAccessMode::input, innerOffsetName, false);
138 registerColumn (*this, m_keySlot,
139 std::string ("Container.linkSGKey") + dataSuffix,
140 &typeid (SG::sgkey_t),
141 ColumnAccessMode::input, innerOffsetName, false);
142 registerColumn (*this, m_outLinkSlot,
143 std::string ("Container.outLink") + dataSuffix,
145 ColumnAccessMode::output, innerOffsetName, false);
146
147 // give the base class a chance to initialize the column accessor
148 // backends
149 ANA_CHECK (initializeColumns());
150 return StatusCode::SUCCESS;
151 }
#define ATH_MSG_ERROR(x)
#define ANA_CHECK(EXP)
check whether the given expression was successful
Gaudi::Property< unsigned > m_nestingDepth
std::string depth
tag string for intendation
Definition fastadd.cxx:46
@ u
Enums for curvilinear frames.
Definition ParamDefs.h:77
const std::unordered_map< std::string, SG::sgkey_t > knownSgKeys
lookup table from container name to its sgkey hash
Definition KnownSgKeys.h:32
constexpr std::string_view eventContextCIName
the name for the event context container id
@ output
an output column
Definition ColumnInfo.h:25
@ input
an input column
Definition ColumnInfo.h:22
std::size_t LinkIndexType
the type used for columns that represent element links

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

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

void asg::AsgTool::print ( ) const
virtualinherited

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

Gaudi::Property<bool> columnar::ColumnarLinkTool::m_errorOnUnknownKey
Initial value:
{
this, "errorOnUnknownKey", true,
"whether an unknown sgkey should produce an error (true), or an invalid link (false)"}

Definition at line 64 of file ColumnarLinkTool.h.

64 {
65 this, "errorOnUnknownKey", true,
66 "whether an unknown sgkey should produce an error (true), or an invalid link (false)"};

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

ColumnSlot columnar::ColumnarLinkTool::m_indexSlot
private

flat input column with the per-link index into the target container

Definition at line 115 of file ColumnarLinkTool.h.

◆ m_keySlot

ColumnSlot columnar::ColumnarLinkTool::m_keySlot
private

flat input column with the raw sgkey identifying the target container

Definition at line 119 of file ColumnarLinkTool.h.

◆ m_linkOffsetSlots

std::vector<ColumnSlot> columnar::ColumnarLinkTool::m_linkOffsetSlots
private

offset columns describing the nested-vector structure of the link triple; outermost first; size matches m_nestingDepth

Definition at line 111 of file ColumnarLinkTool.h.

◆ m_nestingDepth

Gaudi::Property<unsigned> columnar::ColumnarLinkTool::m_nestingDepth
Initial value:
{
this, "nestingDepth", 0u,
"nesting depth of vector-of-link inputs (0 = scalar link per particle, 1 = vector of links per particle, 2 = vector of vector of links, ...)"}

Definition at line 68 of file ColumnarLinkTool.h.

68 {
69 this, "nestingDepth", 0u,
70 "nesting depth of vector-of-link inputs (0 = scalar link per particle, 1 = vector of links per particle, 2 = vector of vector of links, ...)"};

◆ m_outLinkSlot

ColumnSlot columnar::ColumnarLinkTool::m_outLinkSlot
private

flat output column with the merged link

Definition at line 122 of file ColumnarLinkTool.h.

◆ m_srcContainerSlot

ColumnSlot columnar::ColumnarLinkTool::m_srcContainerSlot
private

per-event particle offsets of the source container

Definition at line 106 of file ColumnarLinkTool.h.

◆ m_targetContainerNames

Gaudi::Property<std::vector<std::string> > columnar::ColumnarLinkTool::m_targetContainerNames
Initial value:
{
this, "targetContainerNames", {},
"names of the allowed target containers, in order of their columnar-key index"}

Definition at line 60 of file ColumnarLinkTool.h.

60 {
61 this, "targetContainerNames", {},
62 "names of the allowed target containers, in order of their columnar-key index"};

◆ m_targetSlots

std::vector<TargetSlot> columnar::ColumnarLinkTool::m_targetSlots
private

Definition at line 103 of file ColumnarLinkTool.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: