ATLAS Offline Software
Loading...
Searching...
No Matches
xAODReader::xAODTruthReader Class Reference

Algorithm demonstrating reading of xAOD truth, and printing to screen. More...

#include <xAODTruthReader.h>

Inheritance diagram for xAODReader::xAODTruthReader:
Collaboration diagram for xAODReader::xAODTruthReader:

Public Member Functions

 xAODTruthReader (const std::string &name, ISvcLocator *svcLoc)
 Regular algorithm constructor.
virtual StatusCode initialize ()
 Function initialising the algorithm.
virtual StatusCode execute (const EventContext &ctx) const
 Function executing the algorithm.
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

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Static Private Member Functions

static void printEvent (const xAOD::TruthEventBase *evt, bool do4momPtEtaPhi)
static void printVertex (const xAOD::TruthVertex *vtx, bool do4momPtEtaPhi)
static void printParticle (const xAOD::TruthParticle *part, bool do4momPtEtaPhi)

Private Attributes

SG::ReadHandleKey< xAOD::TruthEventContainerm_xaodTruthEventContainerKey
 The keys for the input xAOD truth containers.
Gaudi::Property< bool > m_doPUEventPrintout {this, "DoPUEventPrintout", false}
Gaudi::Property< bool > m_do4momPtEtaPhi {this, "Do4momPtEtaPhi", false}
 Flag to printout in pt,eta,phi instead of px,py,pz.
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

Algorithm demonstrating reading of xAOD truth, and printing to screen.

Author
James Catmore James.nosp@m..Cat.nosp@m.more@.nosp@m.cern.nosp@m..ch
Andy Buckley Andy..nosp@m.Buck.nosp@m.ley@c.nosp@m.ern..nosp@m.ch

Definition at line 19 of file xAODTruthReader.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

◆ xAODTruthReader()

xAODReader::xAODTruthReader::xAODTruthReader ( const std::string & name,
ISvcLocator * svcLoc )

Regular algorithm constructor.

Definition at line 30 of file xAODTruthReader.cxx.

31 : AthReentrantAlgorithm(name, svcLoc)
32 {}

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}

◆ 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 xAODReader::xAODTruthReader::execute ( const EventContext & ctx) const
virtual

Function executing the algorithm.

Todo
Can the main truth event be a singleton, not a container?

Definition at line 46 of file xAODTruthReader.cxx.

46 {
47 // Retrieve the xAOD truth:
49
50 SG::ReadHandle<xAOD::TruthEventContainer> xTruthEventContainer(m_xaodTruthEventContainerKey, ctx);
51 if (xTruthEventContainer.isValid()) {
53 }
54 else {
55 ATH_MSG_ERROR("Could NOT find " << m_xaodTruthEventContainerKey.key());
56 return StatusCode::FAILURE;
57 }
58
59 ATH_MSG_INFO("Number of signal events in this Athena event: " << xTruthEventContainer->size());
60
61 // Signal process loop
62 ATH_MSG_INFO("Printing signal event...");
63 for (const xAOD::TruthEvent* evt : *xTruthEventContainer) {
64 cout << endl << endl;
65
66 // Print hard-scattering info
67 const xAOD::TruthVertex* vtx = evt->signalProcessVertex();
68 ATH_MSG_INFO("Signal process vertex: " << vtx);
69 if (vtx) ATH_MSG_INFO("Poistion = (" << vtx->x() << ", " << vtx->y() << ", " << vtx->z() << ")");
70 else ATH_MSG_INFO("Position n.a.");
71 // Print the event particle/vtx contents
73
74 }
75
76 // if (m_doPUEventPrintout) {
77
78 // SG::ReadHandle<xAOD::TruthPileupEventContainer> xTruthPUEventContainer(m_xaodTruthPUEventContainerKey, ctx);
79 // if (!xTruthPUEventContainer.isValid()) {
80 // ATH_MSG_INFO("Found " << m_xaodTruthPUEventContainerKey.key());
81 // }
82 // else {
83 // ATH_MSG_ERROR("Could NOT find " << m_xaodTruthPUEventContainerKey.key());
84 // return StatusCode::FAILURE;
85 // }
86
87 // ATH_MSG_INFO("Number of pile-up events in this Athena event: " << xTruthPUEventContainer->size());
88
89 // // Pile-up loop
90 // ATH_MSG_INFO("Printing pileup events...");
91 // for (const xAOD::TruthPileupEvent* evt : *xTruthPUEventContainer) {
92 // cout << endl << endl;
93 // printEvent(evt, m_do4momPtEtaPhi);
94 // }
95 // }
96
97 return StatusCode::SUCCESS;
98 }
#define ATH_MSG_ERROR(x)
#define ATH_MSG_INFO(x)
static void printEvent(const xAOD::TruthEventBase *evt, bool do4momPtEtaPhi)
SG::ReadHandleKey< xAOD::TruthEventContainer > m_xaodTruthEventContainerKey
The keys for the input xAOD truth containers.
Gaudi::Property< bool > m_do4momPtEtaPhi
Flag to printout in pt,eta,phi instead of px,py,pz.
float z() const
Vertex longitudinal distance along the beam line form the origin.
float y() const
Vertex y displacement.
float x() const
Vertex x displacement.
TruthVertex_v1 TruthVertex
Typedef to implementation.
Definition TruthVertex.h:15
TruthEvent_v1 TruthEvent
Typedef to implementation.
Definition TruthEvent.h:17

◆ 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

◆ initialize()

StatusCode xAODReader::xAODTruthReader::initialize ( )
virtual

Function initialising the algorithm.

Definition at line 35 of file xAODTruthReader.cxx.

35 {
36
37 // initialize handles
38 ATH_MSG_INFO("TruthContainerKey = " << m_xaodTruthEventContainerKey.key() );
40 // ATH_MSG_INFO("TruthPileupContainerKey = " << m_xaodTruthPUEventContainerKey.key() );
41 // ATH_CHECK(m_xaodTruthPUEventContainerKey.initialize());
42 return StatusCode::SUCCESS;
43
44 }
#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()

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

◆ printEvent()

void xAODReader::xAODTruthReader::printEvent ( const xAOD::TruthEventBase * evt,
bool do4momPtEtaPhi )
staticprivate

Definition at line 103 of file xAODTruthReader.cxx.

103 {
104 cout << "--------------------------------------------------------------------------------\n";
105 cout << "GenEvent: #" << "NNN" << "\n";
106 cout << " Entries this event: " << event->nTruthVertices() << " vertices, " << event->nTruthParticles() << " particles.\n";
107 cout << " GenParticle Legend\n";
108 if (do4momPtEtaPhi) cout << " UniqueID PDG ID ( pt, eta, phi, E ) Stat DecayVtx\n";
109 else cout << " UniqueID PDG ID ( Px, Py, Pz, E ) Stat DecayVtx\n";
110 cout << "--------------------------------------------------------------------------------\n";
111 for (unsigned int iv = 0; iv < event->nTruthVertices(); ++iv) {
112 printVertex(event->truthVertex(iv), do4momPtEtaPhi);
113 }
114 cout << "--------------------------------------------------------------------------------\n";
115 }
static void printVertex(const xAOD::TruthVertex *vtx, bool do4momPtEtaPhi)

◆ printParticle()

void xAODReader::xAODTruthReader::printParticle ( const xAOD::TruthParticle * part,
bool do4momPtEtaPhi )
staticprivate

Definition at line 218 of file xAODTruthReader.cxx.

218 {
219 std::ios::fmtflags f( cout.flags() );
220 if (particle) {
221 cout << " ";
222 cout.width(9);
223 cout << HepMC::uniqueID(particle);
224 cout.width(9);
225 cout << particle->pdgId() << " ";
226 cout.width(9);
227 cout.precision(2);
228 cout.setf(ios::scientific, ios::floatfield);
229 cout.setf(ios_base::showpos);
230 if (do4momPtEtaPhi) cout << particle->pt() << ",";
231 else cout << particle->px() << ",";
232 cout.width(9);
233 cout.precision(2);
234 if (do4momPtEtaPhi) cout << particle->eta() << ",";
235 else cout << particle->py() << ",";
236 cout.width(9);
237 cout.precision(2);
238 if (do4momPtEtaPhi) cout << particle->phi() << ",";
239 else cout << particle->pz() << ",";
240 cout.width(9);
241 cout.precision(2);
242 cout << particle->e() << " ";
243 cout.setf(ios::fmtflags(0), ios::floatfield);
244 cout.unsetf(ios_base::showpos);
245 if ( particle->hasDecayVtx() ) {
246 if ( HepMC::uniqueID(particle->decayVtx()) != HepMC::UNDEFINED_ID ) {
247 cout.width(3);
248 cout << particle->status() << " ";
249 cout.width(9);
250 cout << HepMC::uniqueID(particle->decayVtx());
251 }
252 } else {
253 cout.width(3);
254 cout << particle->status();
255 }
256 }
257 cout << endl;
258 cout.flags(f);
259 }
int uniqueID(const T &p)
constexpr int UNDEFINED_ID
constexpr ParticleHypothesis particle[PARTICLEHYPOTHESES]
the array of masses

◆ printVertex()

void xAODReader::xAODTruthReader::printVertex ( const xAOD::TruthVertex * vtx,
bool do4momPtEtaPhi )
staticprivate

Definition at line 119 of file xAODTruthReader.cxx.

119 {
120 std::ios::fmtflags f( cout.flags() );
121 if (vertex) {
122 cout << "TruthVertex:";
123 if (HepMC::uniqueID(vertex) != HepMC::UNDEFINED_ID) {
124 if (vertex->x() != 0.0 && vertex->y() != 0.0 && vertex->z() != 0.0) {
125 cout.width(9);
126 cout << HepMC::uniqueID(vertex);
127 cout << " Status:";
128 cout.width(5);
129 cout << HepMC::status(vertex);
130 cout << " (X,cT)=";
131 cout.width(9);
132 cout.precision(2);
133 cout.setf(ios::scientific, ios::floatfield);
134 cout.setf(ios_base::showpos);
135 cout << vertex->x() << ",";
136 cout.width(9);
137 cout.precision(2);
138 cout << vertex->y() << ",";
139 cout.width(9);
140 cout.precision(2);
141 cout << vertex->z() << ",";
142 cout.width(9);
143 cout.precision(2);
144 cout << vertex->t();
145 cout.setf(ios::fmtflags(0), ios::floatfield);
146 cout.unsetf(ios_base::showpos);
147 cout << endl;
148 } else {
149 cout.width(9);
150 cout << HepMC::uniqueID(vertex);
151 cout << " Status:";
152 cout.width(5);
153 cout << HepMC::status(vertex);
154 cout << " (X,cT): 0";
155 cout << endl;
156 }
157 } else {
158 // If the vertex doesn't have a unique ID assigned, then
159 // we print its memory address instead... so that the
160 // print out gives us a unique tag for the particle.
161 if (vertex->x() != 0.0 && vertex->y() != 0.0 && vertex->z() != 0.0) {
162 cout.width(9);
163 cout << (void*)vertex;
164 cout << " Status:";
165 cout.width(5);
166 cout << HepMC::status(vertex);
167 cout << " (X,cT)=";
168 cout.width(9);
169 cout.precision(2);
170 cout.setf(ios::scientific, ios::floatfield);
171 cout.setf(ios_base::showpos);
172 cout << vertex->x();
173 cout.width(9);
174 cout.precision(2);
175 cout << vertex->y();
176 cout.width(9);
177 cout.precision(2);
178 cout << vertex->z();
179 cout.width(9);
180 cout.precision(2);
181 cout << vertex->t();
182 cout.setf(ios::fmtflags(0), ios::floatfield);
183 cout.unsetf(ios_base::showpos);
184 cout << endl;
185 } else {
186 cout.width(9);
187 cout << (void*)vertex;
188 cout << " Status:";
189 cout.width(5);
190 cout << HepMC::status(vertex);
191 cout << " (X,cT):0";
192 cout << endl;
193 }
194 }
195 // Print out all the incoming, then outgoing particles
196 for (unsigned int iPIn = 0; iPIn<vertex->nIncomingParticles(); ++iPIn) {
197 if ( iPIn == 0 ) {
198 cout << " I: ";
199 cout.width(2);
200 cout << vertex->nIncomingParticles();
201 } else cout << " ";
202 printParticle(vertex->incomingParticle(iPIn), do4momPtEtaPhi);
203 }
204 for (unsigned int iPOut = 0; iPOut<vertex->nOutgoingParticles(); ++iPOut) {
205 if ( iPOut == 0 ) {
206 cout << " O: ";
207 cout.width(2);
208 cout << vertex->nOutgoingParticles();
209 } else cout << " ";
210 printParticle(vertex->outgoingParticle(iPOut), do4momPtEtaPhi);
211 }
212 }
213 cout.flags(f);
214 }
static void printParticle(const xAOD::TruthParticle *part, bool do4momPtEtaPhi)
int status(const T &p)

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

Gaudi::Property<bool> xAODReader::xAODTruthReader::m_do4momPtEtaPhi {this, "Do4momPtEtaPhi", false}
private

Flag to printout in pt,eta,phi instead of px,py,pz.

Definition at line 42 of file xAODTruthReader.h.

42{this, "Do4momPtEtaPhi", false};

◆ m_doPUEventPrintout

Gaudi::Property<bool> xAODReader::xAODTruthReader::m_doPUEventPrintout {this, "DoPUEventPrintout", false}
private

Definition at line 39 of file xAODTruthReader.h.

39{this, "DoPUEventPrintout", false};

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

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

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

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

Definition at line 398 of file AthCommonDataStore.h.

◆ m_xaodTruthEventContainerKey

SG::ReadHandleKey<xAOD::TruthEventContainer> xAODReader::xAODTruthReader::m_xaodTruthEventContainerKey
private
Initial value:
{
this, "xAODTruthEventContainerKey", "TruthEvents", "The input TruthEventContainer"}

The keys for the input xAOD truth containers.

Definition at line 35 of file xAODTruthReader.h.

35 {
36 this, "xAODTruthEventContainerKey", "TruthEvents", "The input TruthEventContainer"};

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