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

Retrieves all Jet objects (JetEvent/Jet) More...

#include <AODJetRetriever.h>

Inheritance diagram for JiveXML::AODJetRetriever:
Collaboration diagram for JiveXML::AODJetRetriever:

Public Member Functions

 AODJetRetriever (const std::string &type, const std::string &name, const IInterface *parent)
 Standard Constructor.
virtual StatusCode retrieve (ToolHandle< IFormatTool > &FormatTool)
 Retrieve all the data.
const DataMap getData (const JetCollection *)
 Rretrieve basic parameters, mainly four-vectors.
virtual std::string dataTypeName () const
 Return the name of the data type.
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 std::string m_typeName
 The data type that is generated by this retriever.
std::string m_sgKeyFavourite
std::vector< std::string > m_otherKeys
bool m_doWriteHLT
bool m_writeJetQuality
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 Jet objects (JetEvent/Jet)

  • Properties
    • FavouriteJetCollection
    • OtherJetCollections
    • DoWriteHLT
  • Retrieved Data
    • Usual four-vector: phi, eta, et, mass, energy, px, py, pz . - Some extras for jet: flavourTagWeight, charge
    • No cells in AOD Jets.

Definition at line 33 of file AODJetRetriever.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

◆ AODJetRetriever()

JiveXML::AODJetRetriever::AODJetRetriever ( 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 20 of file AODJetRetriever.cxx.

20 :
21 AthAlgTool(type,name,parent),
22 m_typeName("Jet"){
23
24 //Only declare the interface
25 declareInterface<IDataRetriever>(this);
26
27 declareProperty("FavouriteJetCollection" ,m_sgKeyFavourite = "AntiKt4TopoEMJets" ,
28 "Collection to be first in output, shown in Atlantis without switching");
29 declareProperty("OtherJetCollections" ,m_otherKeys,
30 "Other collections to be retrieved. If list left empty, all available retrieved");
31 declareProperty("DoWriteHLT", m_doWriteHLT = false,"Ignore HLTAutokey object by default."); // ignore HLTAutoKey objects
32 declareProperty("WriteJetQuality", m_writeJetQuality = false,"Don't write extended jet quality details by default.");
33 }
AthAlgTool()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
std::vector< std::string > m_otherKeys
const std::string m_typeName
The data type that is generated by this retriever.

Member Function Documentation

◆ dataTypeName()

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

Return the name of the data type.

Implements JiveXML::IDataRetriever.

Definition at line 46 of file AODJetRetriever.h.

46{ return m_typeName; };

◆ 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

◆ getData()

const DataMap JiveXML::AODJetRetriever::getData ( const JetCollection * jets)

Rretrieve basic parameters, mainly four-vectors.

AOD Jets have no cells (trying to access them without back-navigation causes Athena crash).

Parameters
FormatToolthe tool that will create formated output from the DataMap

Definition at line 114 of file AODJetRetriever.cxx.

114 {
115
116 if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "retrieve()" << endmsg;
117
119
120 DataVect phi; phi.reserve(jets->size());
121 DataVect eta; eta.reserve(jets->size());
122 DataVect et; et.reserve(jets->size());
123 DataVect pt; pt.reserve(jets->size());
124/* need to be added to AtlantisJava/event.dtd !
125 DataVect flavourTagWeight; flavourTagWeight.reserve(jets->size());
126 DataVect charge; charge.reserve(jets->size());
127*/
128 DataVect energy; energy.reserve(jets->size());
129 DataVect mass; mass.reserve(jets->size());
130 DataVect px; px.reserve(jets->size());
131 DataVect py; py.reserve(jets->size());
132 DataVect pz; pz.reserve(jets->size());
133 DataVect idVec; idVec.reserve(jets->size());
134
135 DataVect bTagName; bTagName.reserve(jets->size());
136 DataVect bTagValue; bTagValue.reserve(jets->size());
137
138 // jet quality variables:
139 DataVect quality; quality.reserve(jets->size());
140 DataVect qualityLAr; qualityLAr.reserve(jets->size());
141 DataVect qualityTile; qualityTile.reserve(jets->size());
142 DataVect time; time.reserve(jets->size());
143 DataVect timeClusters; timeClusters.reserve(jets->size());
144 DataVect n90cells; n90cells.reserve(jets->size());
145 DataVect n90const; n90const.reserve(jets->size());
146 DataVect hecf; hecf.reserve(jets->size());
147 DataVect emfrac; emfrac.reserve(jets->size());
148 DataVect tileGap3f; tileGap3f.reserve(jets->size());
149 DataVect fcorCell; fcorCell.reserve(jets->size());
150 DataVect fcorDotx; fcorDotx.reserve(jets->size());
151 DataVect fcorJet; fcorJet.reserve(jets->size());
152 DataVect fcorJetForCell; fcorJetForCell.reserve(jets->size());
153 DataVect nbadcells; nbadcells.reserve(jets->size());
154 DataVect fracSamplingMax; fracSamplingMax.reserve(jets->size());
155 DataVect sMax; sMax.reserve(jets->size());
156 DataVect OutOfTimeEfrac; OutOfTimeEfrac.reserve(jets->size());
157 DataVect isGood; isGood.reserve(jets->size());
158 DataVect isBad; isBad.reserve(jets->size());
159 DataVect isUgly; isUgly.reserve(jets->size());
160 DataVect jvf; jvf.reserve(jets->size());
161
162 int id = 0;
163
164 JetCollection::const_iterator itr = jets->begin();
165 for (; itr != jets->end(); ++itr) {
166 phi.push_back(DataType((*itr)->phi()));
167 eta.push_back(DataType((*itr)->eta()));
168 et.push_back(DataType((*itr)->et()/CLHEP::GeV));
169 pt.push_back(DataType((*itr)->pt()/CLHEP::GeV));
170 idVec.push_back( DataType( ++id ));
171
172//from: http://alxr.usatlas.bnl.gov/lxr/source/atlas/PhysicsAnalysis/AnalysisCommon/AnalysisExamples/src/JetTagAna.cxx
173//
174 // bjet tagger values
175 bTagName.push_back( DataType( "JetFitterCOMBNN" ));
176 bTagValue.push_back( DataType( (*itr)->getFlavourTagWeight("JetFitterCOMBNN") ));
177 bTagName.push_back( DataType( "JetFitterTagNN" ));
178 bTagValue.push_back( DataType( (*itr)->getFlavourTagWeight("JetFitterTagNN") ));
179 bTagName.push_back( DataType( "IP3D+SV1" ));
180 bTagValue.push_back( DataType( (*itr)->getFlavourTagWeight() ));
181 bTagName.push_back( DataType( "IP2D" ));
182 bTagValue.push_back( DataType( (*itr)->getFlavourTagWeight("IP2D") ));
183 bTagName.push_back( DataType( "IP3D" ));
184 bTagValue.push_back( DataType( (*itr)->getFlavourTagWeight("IP3D") ));
185 bTagName.push_back( DataType( "SV1" ));
186 bTagValue.push_back( DataType( (*itr)->getFlavourTagWeight("SV1") ));
187 bTagName.push_back( DataType( "SV2" ));
188 bTagValue.push_back( DataType( (*itr)->getFlavourTagWeight("SV2") ));
189 bTagName.push_back( DataType( "MV1" ));
190 bTagValue.push_back( DataType( (*itr)->getFlavourTagWeight("MV1") ));
191 bTagName.push_back( DataType( "MV2" ));
192 bTagValue.push_back( DataType( (*itr)->getFlavourTagWeight("MV2") ));
193
194 // basic jet quality
195 quality.push_back(DataType((*itr)->getMoment("LArQuality")));
196
197 isGood.push_back(DataType( 1 ));
198 isBad.push_back(DataType( 0 ));
199 isUgly.push_back(DataType( 0 ));
200 emfrac.push_back(DataType( 0.5 ));
201
202
203 jvf.push_back( DataType((*itr)->getMoment("JVF") ));
204
205 energy.push_back( DataType((*itr)->e()/CLHEP::GeV ) );
206 mass.push_back(DataType((*itr)->m()/CLHEP::GeV));
207 px.push_back( DataType((*itr)->px()/CLHEP::GeV ) );
208 py.push_back( DataType((*itr)->py()/CLHEP::GeV ) );
209 pz.push_back( DataType((*itr)->pz()/CLHEP::GeV ) );
210 }
211
212 // Start with mandatory entries
213 const auto n = phi.size();
214 DataMap["phi"] = std::move(phi);
215 DataMap["eta"] = std::move(eta);
216 DataMap["et"] = std::move(et);
217 DataMap["pt"] = std::move(pt);
218 DataMap["id"] = std::move(idVec);
219
220 DataMap["bTagName multiple=\"9\""] = std::move(bTagName); // assigned by hand !
221 DataMap["bTagValue multiple=\"9\""] = std::move(bTagValue);
222
223 // basic jet quality
224 DataMap["quality"] = std::move(quality);
225 DataMap["isGood"] = std::move(isGood);
226 DataMap["isBad"] = std::move(isBad);
227 DataMap["isUgly"] = std::move(isUgly);
228 DataMap["emfrac"] = std::move(emfrac);
229
230 DataMap["jvf"] = std::move(jvf);
231
232 if (m_writeJetQuality){ // extended jet quality
233 DataMap["qualityLAr"] = std::move(qualityLAr);
234 DataMap["qualityTile"] = std::move(qualityTile);
235 DataMap["time"] = std::move(time);
236 DataMap["timeClusters"] = std::move(timeClusters);
237 DataMap["n90cells"] = std::move(n90cells);
238 DataMap["n90const"] = std::move(n90const);
239 DataMap["hecf"] = std::move(hecf);
240 DataMap["tileGap3f"] = std::move(tileGap3f);
241 DataMap["fcorCell"] = std::move(fcorCell);
242 DataMap["fcorDotx"] = std::move(fcorDotx);
243 DataMap["fcorJet"] = std::move(fcorJet);
244 DataMap["fcorJetForCell"] = std::move(fcorJetForCell);
245 DataMap["nbadcells"] = std::move(nbadcells);
246 DataMap["fracSamplingMax"] = std::move(fracSamplingMax);
247 DataMap["sMax"] = std::move(sMax);
248 DataMap["OutOfTimeEfrac"] = std::move(OutOfTimeEfrac);
249 } // writeJetQuality
250
251 // further details
252 // four-vectors
253
254 DataMap["mass"] = std::move(mass);
255 DataMap["px"] = std::move(px);
256 DataMap["py"] = std::move(py);
257 DataMap["pz"] = std::move(pz);
258 DataMap["energy"] = std::move(energy);
259
260 if (msgLvl(MSG::DEBUG)) {
261 msg(MSG::DEBUG) << dataTypeName() << " (AOD, no cells), collection: " << dataTypeName();
262 msg(MSG::DEBUG) << " retrieved with " << n << " entries"<< endmsg;
263 }
264
265 //All collections retrieved okay
266 return DataMap;
267
268 } // retrieve
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
#define endmsg
OFFLINE_FRAGMENTS_NAMESPACE::PointerType DataType
float et(const xAOD::jFexSRJetRoI *j)
bool msgLvl(const MSG::Level lvl) const
MsgStream & msg() const
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
virtual std::string dataTypeName() const
Return the name of the data type.
time(flags, cells_name, *args, **kw)
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

◆ 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::AODJetRetriever::retrieve ( ToolHandle< IFormatTool > & FormatTool)
virtual

Retrieve all the data.

For each jet collections retrieve basic parameters.

'Favourite' jet collection first, then 'Other' jet collections.

Implements JiveXML::IDataRetriever.

Definition at line 39 of file AODJetRetriever.cxx.

39 {
40
41 if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "in retrieveAll()" << endmsg;
42
43 SG::ConstIterator<JetCollection> iterator, end;
44 const JetCollection* jets;
45
46 //obtain the default collection first
47 if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Trying to retrieve " << dataTypeName() << " (" << m_sgKeyFavourite << ")" << endmsg;
48 StatusCode sc = evtStore()->retrieve(jets, m_sgKeyFavourite);
49 if (sc.isFailure() ) {
50 if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << "Collection " << m_sgKeyFavourite << " not found in SG " << endmsg;
51 }else{
52 DataMap data = getData(jets);
53 if ( FormatTool->AddToEvent(dataTypeName(), m_sgKeyFavourite+"_AOD", &data).isFailure()){
54 if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << "Collection " << m_sgKeyFavourite << " not found in SG " << endmsg;
55 }else{
56 if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << dataTypeName() << " (" << m_sgKeyFavourite << ") AODJet retrieved" << endmsg;
57 }
58 }
59
60 if ( m_otherKeys.empty() ) {
61 //obtain all other collections from StoreGate
62 if (( evtStore()->retrieve(iterator, end)).isFailure()){
63 if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << "Unable to retrieve iterator for Jet collection" << endmsg;
64// return false;
65 }
66
67 for (; iterator!=end; ++iterator) {
68
69 std::string::size_type position = iterator.key().find("HLTAutoKey",0);
70 if ( m_doWriteHLT ){ position = 99; } // override SG key find
71
72// if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << " AODJet: HLTAutoKey in " << iterator.key() << " at position "
73// << position << endmsg;
74 if ( position != 0 ){ // SG key doesn't contain HLTAutoKey
75 if (iterator.key()!=m_sgKeyFavourite) {
76 if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Trying to retrieve all " << dataTypeName() << " (" << iterator.key() << ")" << endmsg;
77 DataMap data = getData(&(*iterator));
78 if ( FormatTool->AddToEvent(dataTypeName(), iterator.key()+"_AOD", &data).isFailure()){
79 if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << "Collection " << iterator.key() << " not found in SG " << endmsg;
80 }else{
81 if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << dataTypeName() << " (" << iterator.key() << ") AODJet retrieved" << endmsg;
82 }
83 }
84 }
85 }
86 }else {
87 //obtain all collections with the given keys
88 std::vector<std::string>::const_iterator keyIter;
89 for ( keyIter=m_otherKeys.begin(); keyIter!=m_otherKeys.end(); ++keyIter ){
90 if ( !evtStore()->contains<JetCollection>( (*keyIter) ) ){ continue; } // skip if not in SG
91 StatusCode sc = evtStore()->retrieve( jets, (*keyIter) );
92 if (!sc.isFailure()) {
93 if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Trying to retrieve selected " << dataTypeName() << " (" << (*keyIter) << ")" << endmsg;
94 DataMap data = getData(jets);
95 if ( FormatTool->AddToEvent(dataTypeName(), (*keyIter)+"_AOD", &data).isFailure()){
96 if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << "Collection " << (*keyIter) << " not found in SG " << endmsg;
97 }else{
98 if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << dataTypeName() << " (" << (*keyIter) << ") retrieved" << endmsg;
99 }
100 }
101 }
102 }
103 //All collections retrieved okay
104 return StatusCode::SUCCESS;
105 }
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11
JetCollection
static Double_t sc
ServiceHandle< StoreGateSvc > & evtStore()
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
Retrieve all the data.
const DataMap getData(const JetCollection *)
Rretrieve basic parameters, mainly four-vectors.
bool contains(const std::string &s, const std::string &regx)
does a string contain the substring
Definition hcg.cxx:114
::StatusCode StatusCode
StatusCode definition for legacy code.
JetConstituentVector::iterator iterator

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

bool JiveXML::AODJetRetriever::m_doWriteHLT
private

Definition at line 54 of file AODJetRetriever.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_otherKeys

std::vector<std::string> JiveXML::AODJetRetriever::m_otherKeys
private

Definition at line 53 of file AODJetRetriever.h.

◆ m_sgKeyFavourite

std::string JiveXML::AODJetRetriever::m_sgKeyFavourite
private

Definition at line 52 of file AODJetRetriever.h.

◆ m_typeName

const std::string JiveXML::AODJetRetriever::m_typeName
private

The data type that is generated by this retriever.

Definition at line 50 of file AODJetRetriever.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.

◆ m_writeJetQuality

bool JiveXML::AODJetRetriever::m_writeJetQuality
private

Definition at line 55 of file AODJetRetriever.h.


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