ATLAS Offline Software
Loading...
Searching...
No Matches
InDet::LWTNNCondAlg Class Reference

#include <LWTNNCondAlg.h>

Inheritance diagram for InDet::LWTNNCondAlg:
Collaboration diagram for InDet::LWTNNCondAlg:

Public Member Functions

 LWTNNCondAlg (const std::string &name, ISvcLocator *pSvcLocator)
 ~LWTNNCondAlg ()=default
StatusCode initialize () override final
StatusCode execute (const EventContext &ctx) const override final
StatusCode finalize () override final
virtual bool isReEntrant () const override
 Avoid scheduling algorithm multiple times.
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
virtual unsigned int cardinality () const override
 Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
virtual bool filterPassed (const EventContext &ctx) const
virtual void setFilterPassed (bool state, const EventContext &ctx) 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 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

StatusCode configureLwtnn (std::unique_ptr< lwt::atlas::FastGraph > &thisNN, const std::string &thisJson) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

SG::ReadCondHandleKey< CondAttrListCollectionm_readKey {this, "ReadKey", "/PIXEL/PixelClustering/PixelNNCalibJSON", "Cool folder name for the cluster NN input histogram file."}
SG::WriteCondHandleKey< LWTNNCollectionm_writeKey {this, "WriteKey", "PixelClusterNNJSON", "The conditions statore key for the pixel cluster NNs"}
Gaudi::Property< std::vector< std::string > > m_variableOrder
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
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 31 of file LWTNNCondAlg.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ LWTNNCondAlg()

InDet::LWTNNCondAlg::LWTNNCondAlg ( const std::string & name,
ISvcLocator * pSvcLocator )

Definition at line 34 of file LWTNNCondAlg.cxx.

35 : ::AthCondAlgorithm( name, pSvcLocator )
36 {}

◆ ~LWTNNCondAlg()

InDet::LWTNNCondAlg::~LWTNNCondAlg ( )
default

Member Function Documentation

◆ cardinality()

unsigned int AthCommonReentrantAlgorithm< Gaudi::Algorithm >::cardinality ( ) const
overridevirtualinherited

Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.

Override this to return 0 for reentrant algorithms.

Definition at line 75 of file AthCommonReentrantAlgorithm.cxx.

64{
65 return 0;
66}

◆ configureLwtnn()

StatusCode InDet::LWTNNCondAlg::configureLwtnn ( std::unique_ptr< lwt::atlas::FastGraph > & thisNN,
const std::string & thisJson ) const
private

Definition at line 52 of file LWTNNCondAlg.cxx.

53 {
54
55 // Read DNN weights from input json config
56 lwt::GraphConfig config;
57 try {
58 std::istringstream input_cfg( thisJson );
59 config = lwt::parse_json_graph(input_cfg);
60 } catch (boost::property_tree::ptree_error& err) {
61 ATH_MSG_ERROR("NN file unreadable!");
62 return StatusCode::FAILURE;
63 }
64
65 // pass the input order for the FastGraph
66 lwt::atlas::InputOrder order;
67 order.scalar.emplace_back("NNinputs", m_variableOrder );
68 // sequence not needed for NN (more for RNN, but set anyway)
69 order.sequence.emplace_back("NNinputs", m_variableOrder );
70
71 // Build the network
72 try {
73 thisNN = std::make_unique<lwt::atlas::FastGraph>(config, order, "merge_1");
74 } catch (lwt::NNConfigurationException& exc) {
75 ATH_MSG_ERROR("NN configuration problem: " << exc.what());
76 return StatusCode::FAILURE;
77 }
78
79 return StatusCode::SUCCESS;
80
81 }
#define ATH_MSG_ERROR(x)
Gaudi::Property< std::vector< std::string > > m_variableOrder
order
Configure Herwig7.

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode InDet::LWTNNCondAlg::execute ( const EventContext & ctx) const
finaloverride

Definition at line 83 of file LWTNNCondAlg.cxx.

83 {
84
85 SG::WriteCondHandle<LWTNNCollection> NnWriteHandle{m_writeKey, ctx};
86 if (NnWriteHandle.isValid()) {
87 ATH_MSG_DEBUG("Write CondHandle "<< NnWriteHandle.fullKey() << " is already valid");
88 return StatusCode::SUCCESS;
89 }
90
91 SG::ReadCondHandle<CondAttrListCollection> readHandle{m_readKey, ctx};
92 if(!readHandle.isValid()) {
93 ATH_MSG_ERROR("Invalid read handle " << m_readKey.key());
94 return StatusCode::FAILURE;
95 }
96 const CondAttrListCollection* atrcol{*readHandle};
97 assert( atrcol != nullptr);
98
99 // So now we have the string containing the json. Access it.
100 // Retrieve channel 0 (only channel there is)
101 const coral::AttributeList& attrList=atrcol->attributeList(0);
102
103 // Check that it is filled as expected
104 if ((attrList["NNConfigurations"]).isNull()) {
105 ATH_MSG_ERROR( "NNConfigurations is NULL !" );
106 return StatusCode::FAILURE;
107 }
108
109 // Retrieve the string
110 // This is for a single LOB when it is all a giant block
111 const std::string megajson = attrList["NNConfigurations"].data<cool::String16M>();
112
113 // Parse the large json to extract the individual configurations for the NNs
114 std::istringstream initializerStream(megajson);
115 namespace pt = boost::property_tree;
116 pt::ptree parentTree;
117 pt::read_json(initializerStream, parentTree);
118 std::ostringstream configStream;
119
120 // This is for handling IOVs
121 EventIDRange cdo_iov;
122 if(!readHandle.range(cdo_iov)) {
123 ATH_MSG_ERROR("Failed to get valid validity range from " << readHandle.key());
124 return StatusCode::FAILURE;
125 }
126
127 // Here I create a pointer to the object I want to write
128 // And what I want to write is the map with my lwtnn networks.
129 std::unique_ptr<LWTNNCollection> writeCdo{std::make_unique<LWTNNCollection>()};
130
131 // First, extract configuration for the number network.
132 pt::ptree subtreeNumberNetwork = parentTree.get_child("NumberNetwork");
133 writeCdo->insert(std::make_pair(0,std::unique_ptr<lwt::atlas::FastGraph>(nullptr)));
134 // If this json is empty, just fill a null pointer.
135 if(subtreeNumberNetwork.empty()) {
136 ATH_MSG_ERROR("You are trying to use lwtnn for the number network but have an empty configuration file; this should never happen!");
137 return StatusCode::FAILURE;
138 }
139 // Otherwise, set up lwtnn.
140 else {
141 ATH_MSG_DEBUG("Setting up lwtnn for number network...");
142 pt::write_json(configStream, subtreeNumberNetwork);
143 std::string numberNetworkConfig = configStream.str();
144 if ((configureLwtnn(writeCdo->at(0), numberNetworkConfig)).isFailure())
145 return StatusCode::FAILURE;
146 }
147
148 // Now extract configuration for each position network.
149 // For simplicity, we'll require all three configurations
150 // in order to use lwtnn for positions.
151 for (int i=1; i<4; i++) {
152 const std::string key = "PositionNetwork_N"+std::to_string(i);
153 configStream.str("");
154 pt::ptree subtreePosNetwork = parentTree.get_child(key);
155 pt::write_json(configStream, subtreePosNetwork);
156 std::string posNetworkConfig = configStream.str();
157
158 // Put a lwt network into the map
159 writeCdo->insert(std::make_pair(i,std::unique_ptr<lwt::atlas::FastGraph>(nullptr)));
160
161 // Now do empty check: if any one of these is empty we won't use lwtnn
162 if(subtreePosNetwork.empty()) {
163 ATH_MSG_ERROR("You are trying to use lwtnn for the position networks but have an empty configuration file; this should never happen!");
164 return StatusCode::FAILURE;
165 } else {
166 // Otherwise, set up lwtnn
167 ATH_MSG_DEBUG("Setting up lwtnn for n = " << i << " position network...");
168 if ((configureLwtnn(writeCdo->at(i), posNetworkConfig)).isFailure())
169 return StatusCode::FAILURE;
170 }
171
172 }
173
174 // Write the networks to the store
175
176 if(NnWriteHandle.record(cdo_iov,std::move(writeCdo)).isFailure()) {
177 ATH_MSG_ERROR("Failed to record Trained network collection to "
178 << NnWriteHandle.key()
179 << " with IOV " << cdo_iov );
180 return StatusCode::FAILURE;
181 }
182
183 return StatusCode::SUCCESS;
184 }
#define ATH_MSG_DEBUG(x)
const AttributeList & attributeList(ChanNum chanNum) const
attribute list for a given channel number
SG::ReadCondHandleKey< CondAttrListCollection > m_readKey
StatusCode configureLwtnn(std::unique_ptr< lwt::atlas::FastGraph > &thisNN, const std::string &thisJson) const
SG::WriteCondHandleKey< LWTNNCollection > m_writeKey
bool range(EventIDRange &r)
const std::string & key() const
const std::string & key() const
StatusCode record(const EventIDRange &range, T *t)
record handle, with explicit range DEPRECATED
const DataObjID & fullKey() const

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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

◆ extraOutputDeps()

const DataObjIDColl & AthCommonReentrantAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.

90{
91 // If we didn't find any symlinks to add, just return the collection
92 // from the base class. Otherwise, return the extended collection.
93 if (!m_extendedExtraObjects.empty()) {
95 }
97}
An algorithm that can be simultaneously executed in multiple threads.

◆ filterPassed()

virtual bool AthCommonReentrantAlgorithm< Gaudi::Algorithm >::filterPassed ( const EventContext & ctx) const
inlinevirtualinherited

Definition at line 96 of file AthCommonReentrantAlgorithm.h.

96 {
97 return execState( ctx ).filterPassed();
98 }
virtual bool filterPassed(const EventContext &ctx) const

◆ finalize()

StatusCode InDet::LWTNNCondAlg::finalize ( )
finaloverride

Definition at line 47 of file LWTNNCondAlg.cxx.

48 {
49 return StatusCode::SUCCESS;
50 }

◆ initialize()

StatusCode InDet::LWTNNCondAlg::initialize ( )
finaloverride

Definition at line 38 of file LWTNNCondAlg.cxx.

38 {
39
40 // Condition Handles
41 ATH_CHECK( m_readKey.initialize() );
42 ATH_CHECK( m_writeKey.initialize() );
43
44 return StatusCode::SUCCESS;
45 }
#define ATH_CHECK
Evaluate an expression and check for errors.

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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.

◆ isClonable()

◆ isReEntrant()

virtual bool AthCondAlgorithm::isReEntrant ( ) const
inlineoverridevirtualinherited

Avoid scheduling algorithm multiple times.

With multiple concurrent events, conditions objects often expire simultaneously for all slots. To avoid that the scheduler runs the CondAlg in each slot, we declare it as "non-reentrant". This ensures that the conditions objects are only created once.

In case a particular CondAlg should behave differently, it can override this method again and return true.

See also
ATEAM-836

Definition at line 39 of file AthCondAlgorithm.h.

39{ return false; }

◆ msg()

MsgStream & AthCommonMsg< Gaudi::Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

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

◆ msgLvl()

bool AthCommonMsg< Gaudi::Algorithm >::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< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonReentrantAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Definition at line 100 of file AthCommonReentrantAlgorithm.h.

100 {
102 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const

◆ sysExecute()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysExecute ( const EventContext & ctx)
overridevirtualinherited

Execute an algorithm.

We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.

Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.

77{
78 return BaseAlg::sysExecute (ctx);
79}

◆ sysInitialize()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.

Reimplemented in HypoBase, and InputMakerBase.

Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.

107 {
109
110 if (sc.isFailure()) {
111 return sc;
112 }
113
114 ServiceHandle<ICondSvc> cs("CondSvc",name());
115 for (auto h : outputHandles()) {
116 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
117 // do this inside the loop so we don't create the CondSvc until needed
118 if ( cs.retrieve().isFailure() ) {
119 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
120 return StatusCode::SUCCESS;
121 }
122 if (cs->regHandle(this,*h).isFailure()) {
124 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
125 << " with CondSvc");
126 }
127 }
128 }
129 return sc;
130}
#define ATH_MSG_WARNING(x)
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::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 }

Member Data Documentation

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthCommonReentrantAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 114 of file AthCommonReentrantAlgorithm.h.

◆ m_readKey

SG::ReadCondHandleKey<CondAttrListCollection> InDet::LWTNNCondAlg::m_readKey {this, "ReadKey", "/PIXEL/PixelClustering/PixelNNCalibJSON", "Cool folder name for the cluster NN input histogram file."}
private

Definition at line 48 of file LWTNNCondAlg.h.

49{this, "ReadKey", "/PIXEL/PixelClustering/PixelNNCalibJSON", "Cool folder name for the cluster NN input histogram file."};

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_variableOrder

Gaudi::Property< std::vector<std::string> > InDet::LWTNNCondAlg::m_variableOrder
private

Definition at line 56 of file LWTNNCondAlg.h.

57 {this, "VariableOrder", {
58 "NN_matrix0",
59 "NN_matrix1",
60 "NN_matrix2",
61 "NN_matrix3",
62 "NN_matrix4",
63 "NN_matrix5",
64 "NN_matrix6",
65 "NN_matrix7",
66 "NN_matrix8",
67 "NN_matrix9",
68 "NN_matrix10",
69 "NN_matrix11",
70 "NN_matrix12",
71 "NN_matrix13",
72 "NN_matrix14",
73 "NN_matrix15",
74 "NN_matrix16",
75 "NN_matrix17",
76 "NN_matrix18",
77 "NN_matrix19",
78 "NN_matrix20",
79 "NN_matrix21",
80 "NN_matrix22",
81 "NN_matrix23",
82 "NN_matrix24",
83 "NN_matrix25",
84 "NN_matrix26",
85 "NN_matrix27",
86 "NN_matrix28",
87 "NN_matrix29",
88 "NN_matrix30",
89 "NN_matrix31",
90 "NN_matrix32",
91 "NN_matrix33",
92 "NN_matrix34",
93 "NN_matrix35",
94 "NN_matrix36",
95 "NN_matrix37",
96 "NN_matrix38",
97 "NN_matrix39",
98 "NN_matrix40",
99 "NN_matrix41",
100 "NN_matrix42",
101 "NN_matrix43",
102 "NN_matrix44",
103 "NN_matrix45",
104 "NN_matrix46",
105 "NN_matrix47",
106 "NN_matrix48",
107 "NN_pitches0",
108 "NN_pitches1",
109 "NN_pitches2",
110 "NN_pitches3",
111 "NN_pitches4",
112 "NN_pitches5",
113 "NN_pitches6",
114 "NN_layer",
115 "NN_barrelEC",
116 "NN_phi",
117 "NN_theta"},
118 "List of training variables for the LWTNN networks in the order they are fed to evaluate the networks"};

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.

◆ m_writeKey

SG::WriteCondHandleKey<LWTNNCollection> InDet::LWTNNCondAlg::m_writeKey {this, "WriteKey", "PixelClusterNNJSON", "The conditions statore key for the pixel cluster NNs"}
private

Definition at line 51 of file LWTNNCondAlg.h.

52{this, "WriteKey", "PixelClusterNNJSON", "The conditions statore key for the pixel cluster NNs"};

The documentation for this class was generated from the following files: