ATLAS Offline Software
Loading...
Searching...
No Matches
ThinTRTStandaloneTrackAlg Class Referencefinal

Thin TRT standalone tracks. More...

#include <ThinTRTStandaloneTrackAlg.h>

Inheritance diagram for ThinTRTStandaloneTrackAlg:
Collaboration diagram for ThinTRTStandaloneTrackAlg:

Public Member Functions

StatusCode initialize () override final
 initialize method
StatusCode execute (const EventContext &ctx) const override final
 execute method
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>

Private Attributes

Gaudi::Property< bool > m_doElectron { this, "doElectron", true }
 Thin electron tracks.
Gaudi::Property< bool > m_doPhoton { this, "doPhoton", true }
 Thin photon tracks.
Gaudi::Property< bool > m_doTau { this, "doTau", true }
 Thin tau tracks.
Gaudi::Property< bool > m_doTauEleRM { this, "doTauEleRM", true }
 Thin electron removal tau tracks.
Gaudi::Property< bool > m_doMuon {this, "doMuon", true}
SG::ThinningHandleKey< xAOD::TrackParticleContainerm_InDetTrackParticlesKey { this, "InDetTrackParticleContainerName", "InDetTrackParticles", "Name of the TrackParticle container to thin" }
 Track Particle container to thin.
StringProperty m_streamName { this, "StreamName", "StreamAOD", "Name of the stream being thinned" }
 Name of the stream being thinned.
SG::ReadHandleKey< xAOD::ElectronContainerm_InputElectronContainerKey { this, "InputElectronContainerName", "Electrons", "Name of the input electron container" }
 electron collection input name
SG::ReadHandleKey< xAOD::PhotonContainerm_InputPhotonContainerKey { this, "InputPhotonContainerName", "Photons", "Name of the input photon container" }
 photon collection input name
SG::ReadHandleKey< xAOD::TauJetContainerm_InputTauJetContainerKey { this, "InputTauJetContainerName", "TauJets", "Name of the input tau container" }
 TauJets collection input name.
SG::ReadHandleKey< xAOD::TauJetContainerm_InputTauJet_EleRMContainerKey { this, "InputTauJet_EleRMContainerName", "TauJets_EleRM", "Name of the input electron removal tau container" }
 TauJets_EleRM collection input name.
SG::ReadHandleKey< xAOD::MuonContainerm_inputMuonContainerKey
 Muon collection input name.
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

Thin TRT standalone tracks.

Algorithm that thins TRT standalone tracks that are neither used by egamma nor by taus

Definition at line 24 of file ThinTRTStandaloneTrackAlg.h.

Member Typedef Documentation

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

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 ThinTRTStandaloneTrackAlg::execute ( const EventContext & ctx) const
finaloverride

execute method

Execute the algorithm.

Parameters
ctxCurrent event context.

SaF muons have the ID link to the InDetForwardTrackParticles

Definition at line 30 of file ThinTRTStandaloneTrackAlg.cxx.

31{
32 // Retrieve InDet TrackParticles
33 SG::ThinningHandle<xAOD::TrackParticleContainer> indetTrackPC(
35
36 if (!indetTrackPC.isValid()) {
37 ATH_MSG_FATAL("Failed to retrieve " << m_InDetTrackParticlesKey.key());
38 return StatusCode::FAILURE;
39 }
40 ATH_MSG_DEBUG("Number of InDet TrackParticles " << indetTrackPC->size());
41
42 // We set to false ONLY the TRT standalone track particles
43 // We then reset to true whatever is to be kept
44 // from the domains
45 std::vector<bool> keptInDetTrackParticles;
46 keptInDetTrackParticles.resize(indetTrackPC->size(), true);
47 for (const auto* track : *indetTrackPC) {
48 if (track->patternRecoInfo().test(xAOD::TRTStandalone)) {
49 keptInDetTrackParticles[track->index()] = false;
50 }
51 }
52
53 if (m_doElectron) {
54 // Retrieve electrons
55 SG::ReadHandle<xAOD::ElectronContainer> electrons(
57 if (!electrons.isValid()) {
58 ATH_MSG_FATAL("Failed to retrieve " << m_InputElectronContainerKey.key());
59 return StatusCode::FAILURE;
60 }
61
62 // Loop over electrons
63 for (const xAOD::Electron* electron : *electrons) {
64 auto trackParticleLinks = electron->trackParticleLinks();
65 for (const auto& link : trackParticleLinks) {
66 if (!link.isValid()) {
67 continue;
68 }
70 "Electons : Keeping InDet Track Particle with index : "
72 ->index());
73 keptInDetTrackParticles
75 ->index()] = true;
76 }
77 }
78 }
79
80 if (m_doPhoton) {
81 // Retrieve photons
82 SG::ReadHandle<xAOD::PhotonContainer> photons(m_InputPhotonContainerKey,
83 ctx);
84 if (!photons.isValid()) {
85 ATH_MSG_FATAL("Failed to retrieve " << m_InputPhotonContainerKey.key());
86 return StatusCode::FAILURE;
87 }
88
89 // Loop over photons
90 for (const xAOD::Photon* photon : *photons) {
91 auto vertexLinks = photon->vertexLinks();
92 for (const auto& vxlink : vertexLinks) {
93 if (!vxlink.isValid()) {
94 continue;
95 }
96 const xAOD::Vertex* vx = *(vxlink);
97 if (!vx) {
98 continue;
99 }
101 for (const auto& link : trackParticleLinks) {
102 if (!link.isValid()) {
103 continue;
104 }
106 "Photons : Keeping InDet Track Particle with index : "
108 ->index());
109 keptInDetTrackParticles
111 ->index()] = true;
112 }
113 }
114 }
115 }
116
117 if (m_doTau) {
118 // Retrieve taus
119 SG::ReadHandle<xAOD::TauJetContainer> taus(m_InputTauJetContainerKey, ctx);
120 if (!taus.isValid()) {
121 ATH_MSG_FATAL("Failed to retrieve " << m_InputTauJetContainerKey.key());
122 return StatusCode::FAILURE;
123 }
124 static const SG::AuxElement::ConstAccessor<char> acc_passThinning(
125 "passThinning");
126
127 // Loop over taus
128 for (const xAOD::TauJet* tau : *taus) {
129 if (!acc_passThinning(*tau)) {
130 continue;
131 }
132 for (const xAOD::TauTrack* track : tau->allTracks()) {
133 // LRTs are not in the InDetTrackParticles container, so skip them
134 if (!track->flag(
136 keptInDetTrackParticles[track->track()->index()] = true;
137 }
138 }
139 }
140 }
141
142 if (m_doTauEleRM) {
143 // Retrieve ele rm taus
144 SG::ReadHandle<xAOD::TauJetContainer> taus_elerm(m_InputTauJet_EleRMContainerKey, ctx);
145 if (!taus_elerm.isValid()) {
146 ATH_MSG_FATAL("Failed to retrieve " << m_InputTauJet_EleRMContainerKey.key());
147 return StatusCode::FAILURE;
148 }
149 static const SG::AuxElement::ConstAccessor<char> acc_passThinning(
150 "passThinning");
151
152 // Loop over taus
153 for (const xAOD::TauJet* elerm_tau : *taus_elerm) {
154 if (!acc_passThinning(*elerm_tau)) {
155 continue;
156 }
157 for (const xAOD::TauTrack* erm_track : elerm_tau->allTracks()) {
158 // LRTs are not in the InDetTrackParticles container, so skip them
159 if (!erm_track->flag(
161 keptInDetTrackParticles[erm_track->track()->index()] = true;
162 }
163 }
164 }
165 }
166
167 if (m_doMuon) {
168 SG::ReadHandle<xAOD::MuonContainer> muons(m_inputMuonContainerKey, ctx);
169 if (!muons.isValid()) {
170 ATH_MSG_FATAL("Failed to retrieve " << m_inputMuonContainerKey.key());
171 return StatusCode::FAILURE;
172 }
173 for (const xAOD::Muon* muon : *muons) {
174 const xAOD::TrackParticle* trk =
175 muon->trackParticle(xAOD::Muon::InnerDetectorTrackParticle);
177 if (muon->muonType() != xAOD::Muon::SiliconAssociatedForwardMuon && trk)
178 keptInDetTrackParticles[trk->index()] = true;
179 }
180 }
181
182 // Do the thinning
183 indetTrackPC.keep(keptInDetTrackParticles);
184
185 return StatusCode::SUCCESS;
186}
#define ATH_MSG_FATAL(x)
#define ATH_MSG_DEBUG(x)
static Double_t taus
size_t index() const
Return the index of this element within its container.
SG::ThinningHandleKey< xAOD::TrackParticleContainer > m_InDetTrackParticlesKey
Track Particle container to thin.
SG::ReadHandleKey< xAOD::TauJetContainer > m_InputTauJet_EleRMContainerKey
TauJets_EleRM collection input name.
Gaudi::Property< bool > m_doPhoton
Thin photon tracks.
Gaudi::Property< bool > m_doElectron
Thin electron tracks.
SG::ReadHandleKey< xAOD::ElectronContainer > m_InputElectronContainerKey
electron collection input name
SG::ReadHandleKey< xAOD::PhotonContainer > m_InputPhotonContainerKey
photon collection input name
Gaudi::Property< bool > m_doTau
Thin tau tracks.
SG::ReadHandleKey< xAOD::TauJetContainer > m_InputTauJetContainerKey
TauJets collection input name.
Gaudi::Property< bool > m_doTauEleRM
Thin electron removal tau tracks.
SG::ReadHandleKey< xAOD::MuonContainer > m_inputMuonContainerKey
Muon collection input name.
const TrackParticleLinks_t & trackParticleLinks() const
Get all the particles associated with the vertex.
str index
Definition DeMoScan.py:362
const xAOD::TrackParticle * getOriginalTrackParticleFromGSF(const xAOD::TrackParticle *trkPar)
Helper function for getting the "Original" Track Particle (i.e before GSF) via the GSF Track Particle...
std::vector< ElementLink< xAOD::TrackParticleContainer > > trackParticleLinks(const xAOD::TauJet *tau, xAOD::TauJetParameters::TauTrackFlag flag=xAOD::TauJetParameters::TauTrackFlag::classifiedCharged)
TrackParticle_v1 TrackParticle
Reference the current persistent version:
Vertex_v1 Vertex
Define the latest version of the vertex class.
TauTrack_v1 TauTrack
Definition of the current version.
Definition TauTrack.h:16
TauJet_v3 TauJet
Definition of the current "tau version".
Muon_v1 Muon
Reference the current persistent version:
Photon_v1 Photon
Definition of the current "egamma version".
Electron_v1 Electron
Definition of the current "egamma version".
@ TRTStandalone
TRT Standalone.

◆ 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 ThinTRTStandaloneTrackAlg::initialize ( )
finaloverride

initialize method

Gaudi initialize method.

Definition at line 13 of file ThinTRTStandaloneTrackAlg.cxx.

14{
16
22 return StatusCode::SUCCESS;
23}
#define ATH_CHECK
Evaluate an expression and check for errors.
StringProperty m_streamName
Name of the stream being thinned.

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

◆ 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_ERROR(x)
#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_doElectron

Gaudi::Property<bool> ThinTRTStandaloneTrackAlg::m_doElectron { this, "doElectron", true }
private

Thin electron tracks.

Definition at line 40 of file ThinTRTStandaloneTrackAlg.h.

40{ this, "doElectron", true };

◆ m_doMuon

Gaudi::Property<bool> ThinTRTStandaloneTrackAlg::m_doMuon {this, "doMuon", true}
private

Definition at line 51 of file ThinTRTStandaloneTrackAlg.h.

51{this, "doMuon", true};

◆ m_doPhoton

Gaudi::Property<bool> ThinTRTStandaloneTrackAlg::m_doPhoton { this, "doPhoton", true }
private

Thin photon tracks.

Definition at line 43 of file ThinTRTStandaloneTrackAlg.h.

43{ this, "doPhoton", true };

◆ m_doTau

Gaudi::Property<bool> ThinTRTStandaloneTrackAlg::m_doTau { this, "doTau", true }
private

Thin tau tracks.

Definition at line 46 of file ThinTRTStandaloneTrackAlg.h.

46{ this, "doTau", true };

◆ m_doTauEleRM

Gaudi::Property<bool> ThinTRTStandaloneTrackAlg::m_doTauEleRM { this, "doTauEleRM", true }
private

Thin electron removal tau tracks.

Definition at line 49 of file ThinTRTStandaloneTrackAlg.h.

49{ this, "doTauEleRM", true };

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

SG::ThinningHandleKey<xAOD::TrackParticleContainer> ThinTRTStandaloneTrackAlg::m_InDetTrackParticlesKey { this, "InDetTrackParticleContainerName", "InDetTrackParticles", "Name of the TrackParticle container to thin" }
private

Track Particle container to thin.

Definition at line 53 of file ThinTRTStandaloneTrackAlg.h.

54{ this, "InDetTrackParticleContainerName", "InDetTrackParticles", "Name of the TrackParticle container to thin" };

◆ m_InputElectronContainerKey

SG::ReadHandleKey<xAOD::ElectronContainer> ThinTRTStandaloneTrackAlg::m_InputElectronContainerKey { this, "InputElectronContainerName", "Electrons", "Name of the input electron container" }
private

electron collection input name

Definition at line 61 of file ThinTRTStandaloneTrackAlg.h.

62{ this, "InputElectronContainerName", "Electrons", "Name of the input electron container" };

◆ m_inputMuonContainerKey

SG::ReadHandleKey<xAOD::MuonContainer> ThinTRTStandaloneTrackAlg::m_inputMuonContainerKey
private
Initial value:
{
this, "InputMuonContainerName", "Muons", "Name of the input muon container"
}

Muon collection input name.

Definition at line 77 of file ThinTRTStandaloneTrackAlg.h.

77 {
78 this, "InputMuonContainerName", "Muons", "Name of the input muon container"
79 };

◆ m_InputPhotonContainerKey

SG::ReadHandleKey<xAOD::PhotonContainer> ThinTRTStandaloneTrackAlg::m_InputPhotonContainerKey { this, "InputPhotonContainerName", "Photons", "Name of the input photon container" }
private

photon collection input name

Definition at line 65 of file ThinTRTStandaloneTrackAlg.h.

66{ this, "InputPhotonContainerName", "Photons", "Name of the input photon container" };

◆ m_InputTauJet_EleRMContainerKey

SG::ReadHandleKey<xAOD::TauJetContainer> ThinTRTStandaloneTrackAlg::m_InputTauJet_EleRMContainerKey { this, "InputTauJet_EleRMContainerName", "TauJets_EleRM", "Name of the input electron removal tau container" }
private

TauJets_EleRM collection input name.

Definition at line 73 of file ThinTRTStandaloneTrackAlg.h.

74{ this, "InputTauJet_EleRMContainerName", "TauJets_EleRM", "Name of the input electron removal tau container" };

◆ m_InputTauJetContainerKey

SG::ReadHandleKey<xAOD::TauJetContainer> ThinTRTStandaloneTrackAlg::m_InputTauJetContainerKey { this, "InputTauJetContainerName", "TauJets", "Name of the input tau container" }
private

TauJets collection input name.

Definition at line 69 of file ThinTRTStandaloneTrackAlg.h.

70{ this, "InputTauJetContainerName", "TauJets", "Name of the input tau container" };

◆ m_streamName

StringProperty ThinTRTStandaloneTrackAlg::m_streamName { this, "StreamName", "StreamAOD", "Name of the stream being thinned" }
private

Name of the stream being thinned.

Definition at line 57 of file ThinTRTStandaloneTrackAlg.h.

58{ this, "StreamName", "StreamAOD", "Name of the stream being thinned" };

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


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