ATLAS Offline Software
Loading...
Searching...
No Matches
JiveXML::SiSpacePointRetriever Class Reference

Retrieves all InDet::SpacePoint data for Pixel and SCT. More...

#include <SiSpacePointRetriever.h>

Inheritance diagram for JiveXML::SiSpacePointRetriever:
Collaboration diagram for JiveXML::SiSpacePointRetriever:

Public Member Functions

 SiSpacePointRetriever (const std::string &type, const std::string &name, const IInterface *parent)
 Standard Constructor.
virtual StatusCode retrieve (ToolHandle< IFormatTool > &FormatTool)
 Retrieve all the data.
virtual std::string dataTypeName () const
 Return the name of the data type.
virtual StatusCode initialize ()
 Only retrieve geo tool in initialize.
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

Static Public Member Functions

static const InterfaceID & interfaceID ()
 Return the interface identifier.

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

const ToolHandle< IInDetGeoModelToolm_geo {this,"GeoModelTool","JiveXML::InDetGeoModelTool/InDetGeoModelTool",""}
 A tool handle to the geo model tool.
SG::ReadHandleKey< SpacePointContainerm_PixelSPContainerName
 StoreGate key for Pixel space points.
SG::ReadHandleKey< SpacePointContainerm_SCTSPContainerName
 StoreGate key for SCT space points.
bool m_usePixelTruthMap = false
 StoreGate key for pixel PRD_MultiTruth.
SG::ReadHandleKey< PRD_MultiTruthCollectionm_PixelPRDTruthName
bool m_useSCTTruthMap = false
 StoreGate key for SCT PRD_MultiTruth.
SG::ReadHandleKey< PRD_MultiTruthCollectionm_SCTPRDTruthName
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

Retrieves all InDet::SpacePoint data for Pixel and SCT.

  • Properties

    • PixelSpacePoints = 'PixelSpacePoints':
    • SCT_SpacePoints = 'SCTSpacePoints':
    • PRD_TruthPixel = 'PRD_MultiTruthPixel': m_PixelPRDTruthName;
    • PRD_TruthSCT = 'PRD_MultiTruthSCT':
  • Retrieved Data
    • x,y,z: coordinates of the spacePoint
    • clusters: identifier of first (and second for SCT) associated cluster
    • phiModule,etaModule: \(\eta\) and \(\phi\) of module in detector coordinates
    • numBarcodes: number of truth particles associated with this SpacePoint
    • barcodes: barcodes of associated truth particles

Definition at line 35 of file SiSpacePointRetriever.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

◆ SiSpacePointRetriever()

JiveXML::SiSpacePointRetriever::SiSpacePointRetriever ( const std::string & type,
const std::string & name,
const IInterface * parent )

Standard Constructor.

This is the standard AthAlgTool constructor.

Parameters
typeAlgTool type name
nameAlgTool instance name
parentAlgTools parent owning this tool

Definition at line 29 of file SiSpacePointRetriever.cxx.

29 :
30 AthAlgTool(type,name,parent)
31 {
32
33 //Declare the interface
34 declareInterface<IDataRetriever>(this);
35
36 //And the properties
37 declareProperty("PixelSpacePoints" , m_PixelSPContainerName = std::string("PixelSpacePoints"));
38 declareProperty("SCTSpacePoints" , m_SCTSPContainerName = std::string("SCT_SpacePoints"));
39 declareProperty("PRD_TruthPixel" , m_PixelPRDTruthName = std::string("PRD_MultiTruthPixel"));
40 declareProperty("PRD_TruthSCT" , m_SCTPRDTruthName = std::string("PRD_MultiTruthSCT"));
41 }
AthAlgTool()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
SG::ReadHandleKey< SpacePointContainer > m_PixelSPContainerName
StoreGate key for Pixel space points.
SG::ReadHandleKey< SpacePointContainer > m_SCTSPContainerName
StoreGate key for SCT space points.
SG::ReadHandleKey< PRD_MultiTruthCollection > m_SCTPRDTruthName
SG::ReadHandleKey< PRD_MultiTruthCollection > m_PixelPRDTruthName

Member Function Documentation

◆ dataTypeName()

virtual std::string JiveXML::SiSpacePointRetriever::dataTypeName ( ) const
inlinevirtual

Return the name of the data type.

Implements JiveXML::IDataRetriever.

Definition at line 47 of file SiSpacePointRetriever.h.

47{ return "S3D"; };

◆ 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

◆ initialize()

StatusCode JiveXML::SiSpacePointRetriever::initialize ( )
virtual

Only retrieve geo tool in initialize.

Definition at line 260 of file SiSpacePointRetriever.cxx.

260 {
261 // Read Handle Key
262 ATH_CHECK(m_PixelSPContainerName.initialize());
263 ATH_CHECK(m_SCTSPContainerName.initialize());
266 m_useSCTTruthMap = !m_SCTPRDTruthName.key().empty();
268
269 return m_geo.retrieve();
270 }
#define ATH_CHECK
Evaluate an expression and check for errors.
bool m_usePixelTruthMap
StoreGate key for pixel PRD_MultiTruth.
bool m_useSCTTruthMap
StoreGate key for SCT PRD_MultiTruth.
const ToolHandle< IInDetGeoModelTool > m_geo
A tool handle to the geo model tool.

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

◆ interfaceID()

const InterfaceID & JiveXML::IDataRetriever::interfaceID ( )
inlinestaticinherited

Return the interface identifier.

Definition at line 40 of file IDataRetriever.h.

40{ return IID_IDataRetriever; }
static const InterfaceID IID_IDataRetriever("JiveXML::IDataRetriever", 3, 0)

◆ msg()

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

Definition at line 24 of file AthCommonMsg.h.

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

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

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

◆ retrieve()

StatusCode JiveXML::SiSpacePointRetriever::retrieve ( ToolHandle< IFormatTool > & FormatTool)
virtual

Retrieve all the data.

Implementation of DataRetriever interface.

Parameters
FormatToolthe tool that will create formated output from the DataMap

Try to retrieve all the relevant collections

Now make a list of SpacePoint - PRDTruth collection pairs to run over

Found out how much space we will need

Declare all the data we want to retrieve

Now fill in all the data

Implements JiveXML::IDataRetriever.

Definition at line 108 of file SiSpacePointRetriever.cxx.

108 {
109
110 //be verbose
111 ATH_MSG_DEBUG( "Retrieving " << dataTypeName() );
112
116
117 SG::ReadHandle<SpacePointContainer> PixelSPContainer(m_PixelSPContainerName);
118 if ( not PixelSPContainer.isValid() )
119 ATH_MSG_WARNING( "Unable to retrieve SpacePoint container with name " << m_PixelSPContainerName.key() );
120
121 SG::ReadHandle<PRD_MultiTruthCollection> PixelPRDTruthColl;
122 if (m_usePixelTruthMap) {
123 PixelPRDTruthColl = SG::makeHandle(m_PixelPRDTruthName);
124 if ( not PixelPRDTruthColl.isValid() )
125 ATH_MSG_WARNING( "Unable to retrieve PRD_MultiTruth collection with name " << m_PixelPRDTruthName.key() );
126 }
127
128 SG::ReadHandle<SpacePointContainer> SCTSPContainer(m_SCTSPContainerName);
129 if ( not SCTSPContainer.isValid() )
130 ATH_MSG_WARNING( "Unable to retrieve SpacePoint container with name " << m_SCTSPContainerName.key() );
131
132 SG::ReadHandle<PRD_MultiTruthCollection> SCTPRDTruthColl;
133 if (m_useSCTTruthMap) {
134 SCTPRDTruthColl = SG::makeHandle(m_SCTPRDTruthName);
135 if ( not SCTPRDTruthColl.isValid() )
136 ATH_MSG_WARNING( "Unable to retrieve PRD_MultiTruth collection with name " << m_SCTPRDTruthName.key() );
137 }
138
142 using SpacePointTruthPair = std::pair<const SpacePointContainer *, const PRD_MultiTruthCollection *>;
143 std::vector<SpacePointTruthPair> SpacePointTruthPairList;
144
145 //Add Pixel if there is a collection
146 if (PixelSPContainer.isValid())
147 SpacePointTruthPairList.emplace_back(PixelSPContainer.cptr(), m_usePixelTruthMap ? PixelPRDTruthColl.cptr() : nullptr);
148
149 //Add SCT if there is a collection
150 if (SCTSPContainer.isValid())
151 SpacePointTruthPairList.emplace_back(SCTSPContainer.cptr(), m_useSCTTruthMap ? SCTPRDTruthColl.cptr() : nullptr);
152
156 int NSpacePoints = 0;
157 //Loop over all SpacePoint - PRDTruth pairs
158 for (const auto &SPTruthPair : SpacePointTruthPairList) {
159
160 //Add up the size of the SpacePoint collections in the container
161 for (const auto SpacePoint : *(SPTruthPair.first))
162 NSpacePoints += SpacePoint->size();
163 }
164
165 ATH_MSG_DEBUG( "Counted " << NSpacePoints << " in total" );
166
170 DataVect x; x.reserve(NSpacePoints);
171 DataVect y; y.reserve(NSpacePoints);
172 DataVect z; z.reserve(NSpacePoints);
173 DataVect clusters; clusters.reserve(NSpacePoints*2);
174 DataVect phiModule; phiModule.reserve(NSpacePoints);
175 DataVect etaModule; etaModule.reserve(NSpacePoints);
176 DataVect numBarcodes; numBarcodes.reserve(NSpacePoints);
177 DataVect barcodes; barcodes.reserve(NSpacePoints); // Usually less then one per space point
178
182
183 //Loop over all SpacePoint - PRDTruth pairs
184 for (const auto &SPTruthPair : SpacePointTruthPairList) {
185
186 // Loop over SpacePoint Collections in the SpacePoint container
187 for (const auto SpacePointColl : *(SPTruthPair.first)){
188
189 //Loop over SpacePoints themselves
190 for (const auto SpacePoint : *SpacePointColl) {
191
192 //Get the position of the space point
194
195 //Store position in units of centimeters
196 x.push_back(DataType(point.x() * CLHEP::mm/CLHEP::cm));
197 y.push_back(DataType(point.y() * CLHEP::mm/CLHEP::cm));
198 z.push_back(DataType(point.z() * CLHEP::mm/CLHEP::cm));
199
200 //Get the cluster list for the Space point (first and second)
201 const std::pair<const Trk::PrepRawData*, const Trk::PrepRawData*> clusterList = SpacePoint->clusterList();
202
203 //Get the identifiers of the first and second cluster
204 Identifier idFirst = clusterList.first->identify();
205 Identifier idSecond = (clusterList.second != NULL) ? clusterList.second->identify() : Identifier();
206
207 //Get phi and eta of the module in detector coordinates of the first cluster
208 if (clusterList.first->type(Trk::PrepRawDataType::SCT_Cluster)) {
209 phiModule.push_back(DataType(m_geo->SCTIDHelper()->phi_module(idFirst)));
210 etaModule.push_back(DataType(m_geo->SCTIDHelper()->eta_module(idFirst)));
211 }
212 else {
213 phiModule.push_back(DataType(m_geo->PixelIDHelper()->phi_module(idFirst)));
214 etaModule.push_back(DataType(m_geo->PixelIDHelper()->eta_module(idFirst)));
215 }
216
217 // Store the cluster(s) identifier (pair)
218 clusters.push_back(DataType(idFirst.get_compact()));
219 clusters.push_back((idSecond.is_valid()) ? DataType(idSecond.get_compact()) : DataType(-1));
220
221 //Stop here if there is no truth
222 const PRD_MultiTruthCollection* PRDTruthColl = SPTruthPair.second;
223 if ( PRDTruthColl == nullptr ) continue ;
224
225 // Finally get barcodes of associated truth particles
226 numBarcodes.push_back(SiSpacePointRetrieverHelpers::getTruthBarcodes(idFirst, idSecond, PRDTruthColl, barcodes));
227
228 ATH_MSG_VERBOSE( "Found " << numBarcodes.back() << " common barcodes, now "
229 << barcodes.size() << " in total" );
230
231 } // loop over SpacePoint collection
232 } // loop over SpacePoint container
233 } //loop over SpacePoint - TruthMap collection pairs
234
235 //Now put together the DataMap
237 const auto sz = x.size();
238 dataMap["x"] = std::move(x);
239 dataMap["y"] = std::move(y);
240 dataMap["z"] = std::move(z);
241 dataMap["clusters multiple=\"2\""] = std::move(clusters);
242 dataMap["phiModule"] = std::move(phiModule);
243 dataMap["etaModule"] = std::move(etaModule);
244
245 //Only store truth associations if we retrieved them
246 if ( numBarcodes.size() > 0 ){
247 //Add barcodes counter
248 dataMap["numBarcodes"] = numBarcodes;
249 // Compute the "multiple" and put the barcodes vector in the map.
250 std::string bctag = "barcodes multiple=\""+DataType(barcodes.size()/double(numBarcodes.size())).toString()+"\"";
251 dataMap[bctag] = std::move(barcodes);
252 }
253
254 ATH_MSG_DEBUG( dataTypeName() << ": "<< sz );
255
256 //forward data to formating tool and return
257 return FormatTool->AddToEvent(dataTypeName(), "", &dataMap);
258 }
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
OFFLINE_FRAGMENTS_NAMESPACE::PointerType DataType
static Double_t sz
#define y
#define x
#define z
bool is_valid() const
Check if id is in a valid state.
value_type get_compact() const
Get the compact id.
virtual std::string dataTypeName() const
Return the name of the data type.
virtual bool isValid() override final
Can the handle be successfully dereferenced?
const_pointer_type cptr()
Dereference the pointer.
ConstVectorMap globalPosition() const
Returns the global position of the pixel cluster.
Eigen::Matrix< double, 3, 1 > Vector3D
unsigned int getTruthBarcodes(const Identifier idFirst, const Identifier idSecond, const PRD_MultiTruthCollection *truthColl, DataVect &barcodes)
Get the barcodes of associated truth particles for a SpacePoint ( we require both clusters,...
std::map< std::string, DataVect > DataMap
Definition DataType.h:59
std::vector< DataType > DataVect
Defines a map with a key and a vector of DataType objects e.g.
Definition DataType.h:58
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
@ phiModule
Definition HitInfo.h:80
barcodes(beg, end, sz)
Definition Dumpers.py:2831

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

const ToolHandle<IInDetGeoModelTool> JiveXML::SiSpacePointRetriever::m_geo {this,"GeoModelTool","JiveXML::InDetGeoModelTool/InDetGeoModelTool",""}
private

A tool handle to the geo model tool.

Definition at line 55 of file SiSpacePointRetriever.h.

56{this,"GeoModelTool","JiveXML::InDetGeoModelTool/InDetGeoModelTool",""};

◆ m_PixelPRDTruthName

SG::ReadHandleKey<PRD_MultiTruthCollection> JiveXML::SiSpacePointRetriever::m_PixelPRDTruthName
private

Definition at line 66 of file SiSpacePointRetriever.h.

◆ m_PixelSPContainerName

SG::ReadHandleKey<SpacePointContainer> JiveXML::SiSpacePointRetriever::m_PixelSPContainerName
private

StoreGate key for Pixel space points.

Definition at line 59 of file SiSpacePointRetriever.h.

◆ m_SCTPRDTruthName

SG::ReadHandleKey<PRD_MultiTruthCollection> JiveXML::SiSpacePointRetriever::m_SCTPRDTruthName
private

Definition at line 70 of file SiSpacePointRetriever.h.

◆ m_SCTSPContainerName

SG::ReadHandleKey<SpacePointContainer> JiveXML::SiSpacePointRetriever::m_SCTSPContainerName
private

StoreGate key for SCT space points.

Definition at line 62 of file SiSpacePointRetriever.h.

◆ m_usePixelTruthMap

bool JiveXML::SiSpacePointRetriever::m_usePixelTruthMap = false
private

StoreGate key for pixel PRD_MultiTruth.

Definition at line 65 of file SiSpacePointRetriever.h.

◆ m_useSCTTruthMap

bool JiveXML::SiSpacePointRetriever::m_useSCTTruthMap = false
private

StoreGate key for SCT PRD_MultiTruth.

Definition at line 69 of file SiSpacePointRetriever.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: