ATLAS Offline Software
Loading...
Searching...
No Matches
FPGATrackSimGNNEdgeClassifierTool Class Reference

#include <FPGATrackSimGNNEdgeClassifierTool.h>

Inheritance diagram for FPGATrackSimGNNEdgeClassifierTool:
Collaboration diagram for FPGATrackSimGNNEdgeClassifierTool:

Public Member Functions

 FPGATrackSimGNNEdgeClassifierTool (const std::string &, const std::string &, const IInterface *)
virtual StatusCode initialize () override
virtual StatusCode scoreEdges (const std::vector< std::shared_ptr< FPGATrackSimGNNHit > > &hits, std::vector< std::shared_ptr< FPGATrackSimGNNEdge > > &edges)
int regionNum () 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 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

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

std::vector< float > getNodeFeatures (const std::vector< std::shared_ptr< FPGATrackSimGNNHit > > &hits)
std::vector< int64_t > getEdgeList (const std::vector< std::shared_ptr< FPGATrackSimGNNEdge > > &edges)
std::vector< float > getEdgeFeatures (std::vector< std::shared_ptr< FPGATrackSimGNNEdge > > &edges, const std::vector< float > &gNodeFeatures)
void computeEdgeFeatures (std::shared_ptr< FPGATrackSimGNNEdge > &edge, const int &hit1_index, const int &hit2_index, const std::vector< float > &gNodeFeatures)
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ToolHandle< AthOnnx::IOnnxRuntimeInferenceToolm_GNNInferenceTool {this, "GNNInferenceTool", "AthOnnx::OnnxRuntimeInferenceTool"}
Gaudi::Property< int > m_regionNum {this, "regionNum", -1, "Region number for this GNNEdgeClassifierTool"}
Gaudi::Property< bool > m_doGNNPixelSeeding { this, "doGNNPixelSeeding", false, "Flag to configure for GNN Pixel Seeding" }
StringArrayProperty m_gnnFeatureNamesVec
FloatArrayProperty m_gnnFeatureScalesVec
StringArrayProperty m_gnnFeatureNamesVec_pixelOnly
FloatArrayProperty m_gnnFeatureScalesVec_pixelOnly
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 25 of file FPGATrackSimGNNEdgeClassifierTool.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

◆ FPGATrackSimGNNEdgeClassifierTool()

FPGATrackSimGNNEdgeClassifierTool::FPGATrackSimGNNEdgeClassifierTool ( const std::string & algname,
const std::string & name,
const IInterface * ifc )

Definition at line 11 of file FPGATrackSimGNNEdgeClassifierTool.cxx.

12 : AthAlgTool(algname, name, ifc) {}
AthAlgTool()
Default constructor:

Member Function Documentation

◆ computeEdgeFeatures()

void FPGATrackSimGNNEdgeClassifierTool::computeEdgeFeatures ( std::shared_ptr< FPGATrackSimGNNEdge > & edge,
const int & hit1_index,
const int & hit2_index,
const std::vector< float > & gNodeFeatures )
private

Definition at line 139 of file FPGATrackSimGNNEdgeClassifierTool.cxx.

140{
141 size_t num_features = m_doGNNPixelSeeding ? m_gnnFeatureNamesVec_pixelOnly.size() : m_gnnFeatureNamesVec.size();
142
143 std::map<std::string, float> hit1_features;
144 std::map<std::string, float> hit2_features;
145
147 // Fill only pixel-only features
148 for (size_t i = 0; i < m_gnnFeatureNamesVec_pixelOnly.size(); i++) {
149 hit1_features[m_gnnFeatureNamesVec_pixelOnly[i]] = gNodeFeatures[hit1_index * num_features + i];
150 hit2_features[m_gnnFeatureNamesVec_pixelOnly[i]] = gNodeFeatures[hit2_index * num_features + i];
151 }
152 } else {
153 // Fill full feature set (including clusters)
154 for (size_t i = 0; i < m_gnnFeatureNamesVec.size(); i++) {
155 hit1_features[m_gnnFeatureNamesVec[i]] = gNodeFeatures[hit1_index * num_features + i];
156 hit2_features[m_gnnFeatureNamesVec[i]] = gNodeFeatures[hit2_index * num_features + i];
157 }
158 }
159
160 // Now compute differences using only the common "physics" features
161 float deta = hit2_features["eta"] - hit1_features["eta"];
162 float dz = hit2_features["z"] - hit1_features["z"];
163 float dr = hit2_features["r"] - hit1_features["r"];
164 float dphi = P4Helpers::deltaPhi(hit2_features["phi"], hit1_features["phi"]);
165 float phislope = dr == 0. ? 0. : dphi / dr;
166 float rphislope = 0.5 * (hit2_features["r"] + hit1_features["r"]) * phislope;
167
168 edge->setEdgeDR(dr);
169 edge->setEdgeDPhi(dphi);
170 edge->setEdgeDZ(dz);
171 edge->setEdgeDEta(deta);
172 edge->setEdgePhiSlope(phislope);
173 edge->setEdgeRPhiSlope(rphislope);
174}
double deltaPhi(double phiA, double phiB)
delta Phi in range [-pi,pi[
Definition P4Helpers.h:34

◆ 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

◆ getEdgeFeatures()

std::vector< float > FPGATrackSimGNNEdgeClassifierTool::getEdgeFeatures ( std::vector< std::shared_ptr< FPGATrackSimGNNEdge > > & edges,
const std::vector< float > & gNodeFeatures )
private

Definition at line 121 of file FPGATrackSimGNNEdgeClassifierTool.cxx.

122{
123 std::vector<float> gEdgeFeatures;
124
125 for (auto& edge : edges) {
126 computeEdgeFeatures(edge, edge->getEdgeIndex1(), edge->getEdgeIndex2(), gNodeFeatures);
127
128 gEdgeFeatures.push_back(edge->getEdgeDR());
129 gEdgeFeatures.push_back(edge->getEdgeDPhi());
130 gEdgeFeatures.push_back(edge->getEdgeDZ());
131 gEdgeFeatures.push_back(edge->getEdgeDEta());
132 gEdgeFeatures.push_back(edge->getEdgePhiSlope());
133 gEdgeFeatures.push_back(edge->getEdgeRPhiSlope());
134 }
135
136 return gEdgeFeatures;
137}
void computeEdgeFeatures(std::shared_ptr< FPGATrackSimGNNEdge > &edge, const int &hit1_index, const int &hit2_index, const std::vector< float > &gNodeFeatures)

◆ getEdgeList()

std::vector< int64_t > FPGATrackSimGNNEdgeClassifierTool::getEdgeList ( const std::vector< std::shared_ptr< FPGATrackSimGNNEdge > > & edges)
private

Definition at line 104 of file FPGATrackSimGNNEdgeClassifierTool.cxx.

105{
106 std::vector<int64_t> rowIndices;
107 std::vector<int64_t> colIndices;
108 std::vector<int64_t> edgesList(edges.size() * 2);
109
110 for(const auto& edge : edges) {
111 rowIndices.push_back(edge->getEdgeIndex1());
112 colIndices.push_back(edge->getEdgeIndex2());
113 }
114
115 std::copy(rowIndices.begin(), rowIndices.end(), edgesList.begin());
116 std::copy(colIndices.begin(), colIndices.end(), edgesList.begin() + edges.size());
117
118 return edgesList;
119}

◆ getNodeFeatures()

std::vector< float > FPGATrackSimGNNEdgeClassifierTool::getNodeFeatures ( const std::vector< std::shared_ptr< FPGATrackSimGNNHit > > & hits)
private

Definition at line 57 of file FPGATrackSimGNNEdgeClassifierTool.cxx.

58{
59 std::vector<float> gNodeFeatures;
60
61 // For GNN model, we use phi-folding to [2pi/16,3pi/16], so all hit.phi needs to be rotated to the right region
62 const float phi_binSize = M_PI / 16.0;
63 int phiBin = m_regionNum & 0x1f;
64 float regionMin = phi_binSize * phiBin;
65 float referenceMin = 2.0 * M_PI / 16.0;
66 float deltaPhi = referenceMin - regionMin;
67
68 // For GNN model, I am going to assume eta symmetry for testing purposes, so negative eta should be flipped to positive eta
69 int etaSide = (m_regionNum >> 5) & 0x1; // 1 is positive side, 0 negative side
70 bool flipEta = (etaSide == 0);
71
72 for(const auto& hit : hits) {
73 std::map<std::string, float> features;
74 features["r"] = hit->getR();
75 features["phi"] = std::remainder(hit->getPhi() + deltaPhi, 2*M_PI); // Add the deltaPhi to shift the phi to the trained-region
76 features["z"] = flipEta ? -hit->getZ() : hit->getZ();
77 features["eta"] = flipEta ? -hit->getEta() : hit->getEta();
78 if (m_doGNNPixelSeeding) { // Do not use cluster features for pixelOnly
79 for(size_t i = 0; i < m_gnnFeatureNamesVec_pixelOnly.size(); i++){
80 gNodeFeatures.push_back(
82 }
83 }
84 else { // Use cluster features and the standard feature vectors and scales
85 features["cluster_r_1"] = hit->getCluster1R();
86 features["cluster_phi_1"] = std::remainder(hit->getCluster1Phi() + deltaPhi, 2*M_PI);
87 features["cluster_z_1"] = flipEta ? -hit->getCluster1Z() : hit->getCluster1Z();
88 features["cluster_eta_1"] = flipEta ? -hit->getCluster1Eta() : hit->getCluster1Eta();
89 features["cluster_r_2"] = hit->getCluster2R();
90 features["cluster_phi_2"] = std::remainder(hit->getCluster2Phi() + deltaPhi, 2*M_PI);
91 features["cluster_z_2"] = flipEta ? -hit->getCluster2Z() : hit->getCluster2Z();
92 features["cluster_eta_2"] = flipEta ? -hit->getCluster2Eta() : hit->getCluster2Eta();
93
94 for(size_t i = 0; i < m_gnnFeatureNamesVec.size(); i++){
95 gNodeFeatures.push_back(
97 }
98 }
99 }
100
101 return gNodeFeatures;
102}
#define M_PI
Scalar deltaPhi(const MatrixBase< Derived > &vec) const
setSAddress setEtaMS setDirPhiMS setDirZMS setBarrelRadius setEndcapAlpha setEndcapRadius setPhiMap phiBin

◆ initialize()

StatusCode FPGATrackSimGNNEdgeClassifierTool::initialize ( )
overridevirtual

Definition at line 14 of file FPGATrackSimGNNEdgeClassifierTool.cxx.

15{
16 ATH_CHECK( m_GNNInferenceTool.retrieve() );
17 m_GNNInferenceTool->printModelInfo();
18 assert(m_gnnFeatureNamesVec.size() == m_gnnFeatureScalesVec.size());
20
21 return StatusCode::SUCCESS;
22}
#define ATH_CHECK
Evaluate an expression and check for errors.
ToolHandle< AthOnnx::IOnnxRuntimeInferenceTool > m_GNNInferenceTool

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

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

◆ regionNum()

int FPGATrackSimGNNEdgeClassifierTool::regionNum ( ) const
inline

Definition at line 40 of file FPGATrackSimGNNEdgeClassifierTool.h.

40{ return m_regionNum; }

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

◆ scoreEdges()

StatusCode FPGATrackSimGNNEdgeClassifierTool::scoreEdges ( const std::vector< std::shared_ptr< FPGATrackSimGNNHit > > & hits,
std::vector< std::shared_ptr< FPGATrackSimGNNEdge > > & edges )
virtual

Definition at line 27 of file FPGATrackSimGNNEdgeClassifierTool.cxx.

28{
29 std::vector<float> edge_scores;
30
31 std::vector<float> gNodeFeatures = getNodeFeatures(hits);
32 std::vector<int64_t> edgeList = getEdgeList(edges);
33 std::vector<float> gEdgeFeatures = getEdgeFeatures(edges, gNodeFeatures);
34
35 std::vector<Ort::Value> gInputTensor;
36 ATH_CHECK( m_GNNInferenceTool->addInput(gInputTensor, gNodeFeatures, 0, hits.size()) );
37 ATH_CHECK( m_GNNInferenceTool->addInput(gInputTensor, edgeList, 1, edges.size()) );
38 ATH_CHECK( m_GNNInferenceTool->addInput(gInputTensor, gEdgeFeatures, 2, edges.size()) );
39
40 std::vector<float> gOutputData;
41 std::vector<Ort::Value> gOutputTensor;
42 ATH_CHECK( m_GNNInferenceTool->addOutput(gOutputTensor, edge_scores, 0, edges.size()) );
43
44 ATH_CHECK( m_GNNInferenceTool->inference(gInputTensor, gOutputTensor) );
45 // apply sigmoid to the gnn output data
46 for(auto& v : edge_scores) {
47 v = 1.f / (1.f + std::exp(-v));
48 };
49
50 for (size_t i = 0; i < edges.size(); i++) {
51 edges[i]->setEdgeScore(edge_scores[i]);
52 }
53
54 return StatusCode::SUCCESS;
55}
std::vector< int64_t > getEdgeList(const std::vector< std::shared_ptr< FPGATrackSimGNNEdge > > &edges)
std::vector< float > getEdgeFeatures(std::vector< std::shared_ptr< FPGATrackSimGNNEdge > > &edges, const std::vector< float > &gNodeFeatures)
std::vector< float > getNodeFeatures(const std::vector< std::shared_ptr< FPGATrackSimGNNHit > > &hits)

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

Gaudi::Property<bool> FPGATrackSimGNNEdgeClassifierTool::m_doGNNPixelSeeding { this, "doGNNPixelSeeding", false, "Flag to configure for GNN Pixel Seeding" }
private

Definition at line 49 of file FPGATrackSimGNNEdgeClassifierTool.h.

49{ this, "doGNNPixelSeeding", false, "Flag to configure for GNN Pixel Seeding" };

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

StringArrayProperty FPGATrackSimGNNEdgeClassifierTool::m_gnnFeatureNamesVec
private
Initial value:
{
this, "GNNFeatureNames",
{"r", "phi", "z", "eta", "cluster_r_1", "cluster_phi_1", "cluster_z_1", "cluster_eta_1", "cluster_r_2", "cluster_phi_2", "cluster_z_2", "cluster_eta_2"},
"Feature names for the GNN model"}

Definition at line 59 of file FPGATrackSimGNNEdgeClassifierTool.h.

59 {
60 this, "GNNFeatureNames",
61 {"r", "phi", "z", "eta", "cluster_r_1", "cluster_phi_1", "cluster_z_1", "cluster_eta_1", "cluster_r_2", "cluster_phi_2", "cluster_z_2", "cluster_eta_2"},
62 "Feature names for the GNN model"};

◆ m_gnnFeatureNamesVec_pixelOnly

StringArrayProperty FPGATrackSimGNNEdgeClassifierTool::m_gnnFeatureNamesVec_pixelOnly
private
Initial value:
{
this, "GNNFeatureNames",
{"r", "phi", "z", "eta"},
"Feature names for the GNN model"}

Definition at line 68 of file FPGATrackSimGNNEdgeClassifierTool.h.

68 {
69 this, "GNNFeatureNames",
70 {"r", "phi", "z", "eta"},
71 "Feature names for the GNN model"};

◆ m_gnnFeatureScalesVec

FloatArrayProperty FPGATrackSimGNNEdgeClassifierTool::m_gnnFeatureScalesVec
private
Initial value:
{
this, "GNNFeatureScales",
{1000.0, 3.14159265359, 1000.0, 1.0, 1000.0, 3.14159265359, 1000.0, 1.0, 1000.0, 3.14159265359, 1000.0, 1.0},
"Feature scales for the GNN model"}

Definition at line 63 of file FPGATrackSimGNNEdgeClassifierTool.h.

63 {
64 this, "GNNFeatureScales",
65 {1000.0, 3.14159265359, 1000.0, 1.0, 1000.0, 3.14159265359, 1000.0, 1.0, 1000.0, 3.14159265359, 1000.0, 1.0},
66 "Feature scales for the GNN model"};

◆ m_gnnFeatureScalesVec_pixelOnly

FloatArrayProperty FPGATrackSimGNNEdgeClassifierTool::m_gnnFeatureScalesVec_pixelOnly
private
Initial value:
{
this, "GNNFeatureScales",
{1000.0, 3.14159265359, 1000.0, 1.0},
"Feature scales for the GNN model"}

Definition at line 72 of file FPGATrackSimGNNEdgeClassifierTool.h.

72 {
73 this, "GNNFeatureScales",
74 {1000.0, 3.14159265359, 1000.0, 1.0},
75 "Feature scales for the GNN model"};

◆ m_GNNInferenceTool

ToolHandle<AthOnnx::IOnnxRuntimeInferenceTool> FPGATrackSimGNNEdgeClassifierTool::m_GNNInferenceTool {this, "GNNInferenceTool", "AthOnnx::OnnxRuntimeInferenceTool"}
private

Definition at line 47 of file FPGATrackSimGNNEdgeClassifierTool.h.

47{this, "GNNInferenceTool", "AthOnnx::OnnxRuntimeInferenceTool"};

◆ m_regionNum

Gaudi::Property<int> FPGATrackSimGNNEdgeClassifierTool::m_regionNum {this, "regionNum", -1, "Region number for this GNNEdgeClassifierTool"}
private

Definition at line 48 of file FPGATrackSimGNNEdgeClassifierTool.h.

48{this, "regionNum", -1, "Region number for this GNNEdgeClassifierTool"};

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