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 30 of file SiSpacePointRetriever.cxx.

30 :
31 AthAlgTool(type,name,parent)
32 {
33
34 //Declare the interface
35 declareInterface<IDataRetriever>(this);
36
37 //And the properties
38 declareProperty("PixelSpacePoints" , m_PixelSPContainerName = std::string("PixelSpacePoints"));
39 declareProperty("SCTSpacePoints" , m_SCTSPContainerName = std::string("SCT_SpacePoints"));
40 declareProperty("PRD_TruthPixel" , m_PixelPRDTruthName = std::string("PRD_MultiTruthPixel"));
41 declareProperty("PRD_TruthSCT" , m_SCTPRDTruthName = std::string("PRD_MultiTruthSCT"));
42 }
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 261 of file SiSpacePointRetriever.cxx.

261 {
262 // Read Handle Key
263 ATH_CHECK(m_PixelSPContainerName.initialize());
264 ATH_CHECK(m_SCTSPContainerName.initialize());
267 m_useSCTTruthMap = !m_SCTPRDTruthName.key().empty();
269
270 return m_geo.retrieve();
271 }
#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 109 of file SiSpacePointRetriever.cxx.

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