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 35 of file LWTNNCondAlg.cxx.

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

◆ ~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 53 of file LWTNNCondAlg.cxx.

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

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

49 {
50 return StatusCode::SUCCESS;
51 }

◆ initialize()

StatusCode InDet::LWTNNCondAlg::initialize ( )
finaloverride

Definition at line 39 of file LWTNNCondAlg.cxx.

39 {
40
41 // Condition Handles
42 ATH_CHECK( m_readKey.initialize() );
43 ATH_CHECK( m_writeKey.initialize() );
44
45 return StatusCode::SUCCESS;
46 }
#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: