ATLAS Offline Software
Loading...
Searching...
No Matches
ThinTrkTrackAlg Class Reference

#include <ThinTrkTrackAlg.h>

Inheritance diagram for ThinTrkTrackAlg:
Collaboration diagram for ThinTrkTrackAlg:

Public Member Functions

virtual StatusCode initialize () override final
 Athena algorithm's initalize hook.
virtual StatusCode execute (const EventContext &ctx) const override final
 Athena algorithm's execute hook.
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 doEGamma (const EventContext &ctx) const
 Inline method.
StatusCode doMuons (const EventContext &ctx) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

StringProperty m_streamName
SG::ReadHandleKey< xAOD::MuonContainerm_muonsKey
 Should the thinning run?
SG::ReadHandleKey< xAOD::ElectronContainerm_electronsKey
SG::ReadHandleKey< xAOD::PhotonContainerm_photonsKey
SG::ThinningHandleKey< TrackCollectionm_CombinedMuonsTracksKey
 Containers to thin.
SG::ThinningHandleKey< TrackCollectionm_GSFTracksKey
Gaudi::Property< bool > m_doElectrons { this, "doElectrons", true }
Gaudi::Property< bool > m_doPhotons { this, "doPhotons", true }
Gaudi::Property< bool > m_doMuons { this, "doMuons", true }
Gaudi::Property< bool > m_bestonlyElectrons { this, "OnlyBestElectrons", true }
Gaudi::Property< bool > m_bestonlyPhotons { this, "OnlyBestPhotons", true }
Gaudi::Property< double > m_minptElectrons { this, "minptElectrons", 4000. }
Gaudi::Property< double > m_minptPhotons { this, "minptPhotons", 4000. }
Gaudi::Property< double > m_minptMuons { this, "minptMuons", 4000. }
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 29 of file ThinTrkTrackAlg.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.

62{
63 return 0;
64}

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

◆ doEGamma()

StatusCode ThinTrkTrackAlg::doEGamma ( const EventContext & ctx) const
private

Inline method.

Definition at line 73 of file ThinTrkTrackAlg.cxx.

74{
75
76 // Prepare for the Thinning of Trk::Tracks
77 std::vector<bool> keptTracks;
78 SG::ThinningHandle<TrackCollection> trackPC(m_GSFTracksKey, ctx);
79 ATH_MSG_DEBUG("Number of " << m_GSFTracksKey.key() << " " << trackPC->size());
80 if (keptTracks.size() < trackPC->size()) {
81 keptTracks.resize(trackPC->size(), false);
82 }
83
84 size_t kept(0);
85
86 if (m_doElectrons) {
87 // Get the electrons
88 SG::ReadHandle<xAOD::ElectronContainer> electrons(m_electronsKey, ctx);
89
90 // Loop over electrons
91 for (const auto *el : *electrons) {
92 if (el->pt() < m_minptElectrons) {
93 continue;
94 }
95 size_t nel = el->nTrackParticles();
96 if (m_bestonlyElectrons && nel > 1) {
97 nel = 1;
98 }
99 for (size_t i = 0; i < nel; i++) {
100 const xAOD::TrackParticle* tp = el->trackParticle(i);
101 if (!tp || !tp->trackLink().isValid()) {
102 continue;
103 }
104 size_t index = tp->trackLink().index();
105 keptTracks[index] = true;
106 ++kept;
107 }
108 }
109 }
110
111 if (m_doPhotons) {
112 // Get the photons
113 SG::ReadHandle<xAOD::PhotonContainer> photons(m_photonsKey, ctx);
114
115 // Loop over photons
116 for (const auto *ph : *photons) {
117 if (ph->pt() < m_minptPhotons) {
118 continue;
119 }
120 size_t nvx = ph->nVertices();
121 if (m_bestonlyPhotons && nvx > 1) {
122 nvx = 1;
123 }
124 for (size_t i = 0; i < nvx; i++) {
125 const xAOD::Vertex* vx = ph->vertex(i);
126 if (vx) {
127 size_t ntp = vx->nTrackParticles();
128 for (size_t j = 0; j < ntp; j++) {
129 const xAOD::TrackParticle* tp = vx->trackParticle(j);
130 if (!tp || !tp->trackLink().isValid()) {
131 continue;
132 }
133 size_t index = tp->trackLink().index();
134 keptTracks[index] = true;
135 ++kept;
136 }
137 }
138 }
139 }
140 }
141
142 ATH_MSG_DEBUG("keep " << kept << " out of " << keptTracks.size());
143 ATH_MSG_DEBUG("Do the Thinning");
144 trackPC.keep(keptTracks);
145 return StatusCode::SUCCESS;
146}
#define ATH_MSG_DEBUG(x)
SG::ReadHandleKey< xAOD::PhotonContainer > m_photonsKey
Gaudi::Property< bool > m_bestonlyPhotons
SG::ThinningHandleKey< TrackCollection > m_GSFTracksKey
Gaudi::Property< bool > m_bestonlyElectrons
Gaudi::Property< double > m_minptPhotons
Gaudi::Property< double > m_minptElectrons
SG::ReadHandleKey< xAOD::ElectronContainer > m_electronsKey
Gaudi::Property< bool > m_doElectrons
Gaudi::Property< bool > m_doPhotons
const ElementLink< TrackCollection > & trackLink() const
Returns a link (which can be invalid) to the Trk::Track which was used to make this TrackParticle.
size_t nTrackParticles() const
Get the number of tracks associated with this vertex.
const TrackParticle * trackParticle(size_t i) const
Get the pointer to a given track that was used in vertex reco.
str index
Definition DeMoScan.py:362
float j(const xAOD::IParticle &, const xAOD::TrackMeasurementValidation &hit, const Eigen::Matrix3d &jab_inv)
TrackParticle_v1 TrackParticle
Reference the current persistent version:
Vertex_v1 Vertex
Define the latest version of the vertex class.

◆ doMuons()

StatusCode ThinTrkTrackAlg::doMuons ( const EventContext & ctx) const
private

Definition at line 149 of file ThinTrkTrackAlg.cxx.

150{
151
152 // Prepare for the Thinning of Trk::Tracks
153 std::vector<bool> keptTracks;
154 SG::ThinningHandle<TrackCollection> trackPC(m_CombinedMuonsTracksKey, ctx);
155 ATH_MSG_DEBUG("Number of " << m_CombinedMuonsTracksKey.key() << " "
156 << trackPC->size());
157 if (keptTracks.size() < trackPC->size()) {
158 keptTracks.resize(trackPC->size(), false);
159 }
160
161 // Get the muons
162 SG::ReadHandle<xAOD::MuonContainer> muons(m_muonsKey, ctx);
163
164 // Loop over muons
165 size_t kept(0);
166 for (const auto *mu : *muons) {
167 if (mu->pt() < m_minptMuons) {
168 continue;
169 }
170 const static SG::AuxElement::Accessor<
171 ElementLink<xAOD::TrackParticleContainer>>
172 acc("combinedTrackParticleLink");
173 if (!acc.isAvailable(*mu)) {
174 continue;
175 }
176 const ElementLink<xAOD::TrackParticleContainer>& link = acc(*mu);
177 if (!link.isValid()) {
178 continue;
179 }
180 const xAOD::TrackParticle* tp = (*link);
181 if (!tp || !tp->trackLink().isValid()) {
182 continue;
183 }
184 size_t index = tp->trackLink().index();
185 keptTracks[index] = true;
186 ++kept;
187 }
188
189 ATH_MSG_DEBUG("keep " << kept << " out of " << keptTracks.size());
190 ATH_MSG_DEBUG("Do the Thinning");
191 trackPC.keep(keptTracks);
192 return StatusCode::SUCCESS;
193}
Gaudi::Property< double > m_minptMuons
SG::ReadHandleKey< xAOD::MuonContainer > m_muonsKey
Should the thinning run?
SG::ThinningHandleKey< TrackCollection > m_CombinedMuonsTracksKey
Containers to thin.
pointer & link(pointer p) const
Return a reference to the link for an element.

◆ 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 ThinTrkTrackAlg::execute ( const EventContext & ctx) const
finaloverridevirtual

Athena algorithm's execute hook.

Definition at line 60 of file ThinTrkTrackAlg.cxx.

61{
62
64 CHECK(doEGamma(ctx));
65 }
66 if (m_doMuons) {
67 CHECK(doMuons(ctx));
68 }
69 return StatusCode::SUCCESS;
70}
#define CHECK(...)
Evaluate an expression and check for errors.
Gaudi::Property< bool > m_doMuons
StatusCode doEGamma(const EventContext &ctx) const
Inline method.
StatusCode doMuons(const EventContext &ctx) 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.

88{
89 // If we didn't find any symlinks to add, just return the collection
90 // from the base class. Otherwise, return the extended collection.
91 if (!m_extendedExtraObjects.empty()) {
93 }
95}
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 ThinTrkTrackAlg::initialize ( )
finaloverridevirtual

Athena algorithm's initalize hook.

Definition at line 22 of file ThinTrkTrackAlg.cxx.

23{
24 ATH_MSG_DEBUG("Initializing " << name() << "...");
25
26 // Print out the used configuration
27 ATH_MSG_DEBUG(" using = " << m_streamName);
28
29 // Is truth thinning required?
30 if (m_doElectrons) {
31 ATH_MSG_INFO("Will thin " << m_electronsKey
32 << " Trk::Tracks with key (electrons) "
34 }
35 if (m_doPhotons) {
36 ATH_MSG_INFO("Will thin " << m_photonsKey
37 << " Trk::Tracks with key (photons) "
39 }
40 if (m_doMuons) {
41 ATH_MSG_INFO("Will thin " << m_muonsKey << " Trk::Tracks with key "
43 }
44
45 if (m_streamName.empty()) {
46 ATH_MSG_ERROR("StreamName property was not initialized");
47 return StatusCode::FAILURE;
48 }
53 ATH_CHECK(m_muonsKey.initialize(m_doMuons));
54
55 ATH_MSG_DEBUG("==> done with initialize " << name() << "...");
56 return StatusCode::SUCCESS;
57}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_INFO(x)
StringProperty m_streamName

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

75{
76 return BaseAlg::sysExecute (ctx);
77}

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

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

Gaudi::Property<bool> ThinTrkTrackAlg::m_bestonlyElectrons { this, "OnlyBestElectrons", true }
private

Definition at line 90 of file ThinTrkTrackAlg.h.

90{ this, "OnlyBestElectrons", true };

◆ m_bestonlyPhotons

Gaudi::Property<bool> ThinTrkTrackAlg::m_bestonlyPhotons { this, "OnlyBestPhotons", true }
private

Definition at line 91 of file ThinTrkTrackAlg.h.

91{ this, "OnlyBestPhotons", true };

◆ m_CombinedMuonsTracksKey

SG::ThinningHandleKey<TrackCollection> ThinTrkTrackAlg::m_CombinedMuonsTracksKey
private
Initial value:
{
this,
"CombinedMuonsTrackKey",
"CombinedMuonTracks",
"StoreGate key for combined muons Trk::Track container"
}

Containers to thin.

Definition at line 73 of file ThinTrkTrackAlg.h.

73 {
74 this,
75 "CombinedMuonsTrackKey",
76 "CombinedMuonTracks",
77 "StoreGate key for combined muons Trk::Track container"
78 };

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

Gaudi::Property<bool> ThinTrkTrackAlg::m_doElectrons { this, "doElectrons", true }
private

Definition at line 87 of file ThinTrkTrackAlg.h.

87{ this, "doElectrons", true };

◆ m_doMuons

Gaudi::Property<bool> ThinTrkTrackAlg::m_doMuons { this, "doMuons", true }
private

Definition at line 89 of file ThinTrkTrackAlg.h.

89{ this, "doMuons", true };

◆ m_doPhotons

Gaudi::Property<bool> ThinTrkTrackAlg::m_doPhotons { this, "doPhotons", true }
private

Definition at line 88 of file ThinTrkTrackAlg.h.

88{ this, "doPhotons", true };

◆ m_electronsKey

SG::ReadHandleKey<xAOD::ElectronContainer> ThinTrkTrackAlg::m_electronsKey
private
Initial value:
{
this,
"ElectronsKey",
"Electrons",
"StoreGate key for electrons container"
}

Definition at line 58 of file ThinTrkTrackAlg.h.

58 {
59 this,
60 "ElectronsKey",
61 "Electrons",
62 "StoreGate key for electrons container"
63 };

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

SG::ThinningHandleKey<TrackCollection> ThinTrkTrackAlg::m_GSFTracksKey
private
Initial value:
{
this,
"GSFTrackKey",
"GSFTracks",
"StoreGate key for GSF Trk::Track container"
}

Definition at line 80 of file ThinTrkTrackAlg.h.

80 {
81 this,
82 "GSFTrackKey",
83 "GSFTracks",
84 "StoreGate key for GSF Trk::Track container"
85 };

◆ m_minptElectrons

Gaudi::Property<double> ThinTrkTrackAlg::m_minptElectrons { this, "minptElectrons", 4000. }
private

Definition at line 92 of file ThinTrkTrackAlg.h.

92{ this, "minptElectrons", 4000. };

◆ m_minptMuons

Gaudi::Property<double> ThinTrkTrackAlg::m_minptMuons { this, "minptMuons", 4000. }
private

Definition at line 94 of file ThinTrkTrackAlg.h.

94{ this, "minptMuons", 4000. };

◆ m_minptPhotons

Gaudi::Property<double> ThinTrkTrackAlg::m_minptPhotons { this, "minptPhotons", 4000. }
private

Definition at line 93 of file ThinTrkTrackAlg.h.

93{ this, "minptPhotons", 4000. };

◆ m_muonsKey

SG::ReadHandleKey<xAOD::MuonContainer> ThinTrkTrackAlg::m_muonsKey
private
Initial value:
{
this,
"MuonsKey",
"Muons",
"StoreGate key for muons container"
}

Should the thinning run?

The containers of Objects of interest Electron/Muon

Definition at line 51 of file ThinTrkTrackAlg.h.

51 {
52 this,
53 "MuonsKey",
54 "Muons",
55 "StoreGate key for muons container"
56 };

◆ m_photonsKey

SG::ReadHandleKey<xAOD::PhotonContainer> ThinTrkTrackAlg::m_photonsKey
private
Initial value:
{
this,
"PhotonsKey",
"Photons",
"StoreGate key for photon container"
}

Definition at line 65 of file ThinTrkTrackAlg.h.

65 {
66 this,
67 "PhotonsKey",
68 "Photons",
69 "StoreGate key for photon container"
70 };

◆ m_streamName

StringProperty ThinTrkTrackAlg::m_streamName
private
Initial value:
{ this,
"StreamName",
"",
"Name of the stream being thinned" }

Definition at line 44 of file ThinTrkTrackAlg.h.

44 { this,
45 "StreamName",
46 "",
47 "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: