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.

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.

◆ doEGamma()

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

Inline method.

Definition at line 74 of file ThinTrkTrackAlg.cxx.

75{
76
77 // Prepare for the Thinning of Trk::Tracks
78 std::vector<bool> keptTracks;
79 SG::ThinningHandle<TrackCollection> trackPC(m_GSFTracksKey, ctx);
80 ATH_MSG_DEBUG("Number of " << m_GSFTracksKey.key() << " " << trackPC->size());
81 if (keptTracks.size() < trackPC->size()) {
82 keptTracks.resize(trackPC->size(), false);
83 }
84
85 size_t kept(0);
86
87 if (m_doElectrons) {
88 // Get the electrons
89 SG::ReadHandle<xAOD::ElectronContainer> electrons(m_electronsKey, ctx);
90
91 // Loop over electrons
92 for (const auto *el : *electrons) {
93 if (el->pt() < m_minptElectrons) {
94 continue;
95 }
96 size_t nel = el->nTrackParticles();
97 if (m_bestonlyElectrons && nel > 1) {
98 nel = 1;
99 }
100 for (size_t i = 0; i < nel; i++) {
101 const xAOD::TrackParticle* tp = el->trackParticle(i);
102 if (!tp || !tp->trackLink().isValid()) {
103 continue;
104 }
105 size_t index = tp->trackLink().index();
106 keptTracks[index] = true;
107 ++kept;
108 }
109 }
110 }
111
112 if (m_doPhotons) {
113 // Get the photons
114 SG::ReadHandle<xAOD::PhotonContainer> photons(m_photonsKey, ctx);
115
116 // Loop over photons
117 for (const auto *ph : *photons) {
118 if (ph->pt() < m_minptPhotons) {
119 continue;
120 }
121 size_t nvx = ph->nVertices();
122 if (m_bestonlyPhotons && nvx > 1) {
123 nvx = 1;
124 }
125 for (size_t i = 0; i < nvx; i++) {
126 const xAOD::Vertex* vx = ph->vertex(i);
127 if (vx) {
128 size_t ntp = vx->nTrackParticles();
129 for (size_t j = 0; j < ntp; j++) {
130 const xAOD::TrackParticle* tp = vx->trackParticle(j);
131 if (!tp || !tp->trackLink().isValid()) {
132 continue;
133 }
134 size_t index = tp->trackLink().index();
135 keptTracks[index] = true;
136 ++kept;
137 }
138 }
139 }
140 }
141 }
142
143 ATH_MSG_DEBUG("keep " << kept << " out of " << keptTracks.size());
144 ATH_MSG_DEBUG("Do the Thinning");
145 trackPC.keep(keptTracks);
146 return StatusCode::SUCCESS;
147}
#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
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
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 150 of file ThinTrkTrackAlg.cxx.

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

◆ 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 61 of file ThinTrkTrackAlg.cxx.

62{
63
65 CHECK(doEGamma(ctx));
66 }
67 if (m_doMuons) {
68 CHECK(doMuons(ctx));
69 }
70 return StatusCode::SUCCESS;
71}
#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.

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 ThinTrkTrackAlg::initialize ( )
finaloverridevirtual

Athena algorithm's initalize hook.

Definition at line 23 of file ThinTrkTrackAlg.cxx.

24{
25 ATH_MSG_DEBUG("Initializing " << name() << "...");
26
27 // Print out the used configuration
28 ATH_MSG_DEBUG(" using = " << m_streamName);
29
30 // Is truth thinning required?
31 if (m_doElectrons) {
32 ATH_MSG_INFO("Will thin " << m_electronsKey
33 << " Trk::Tracks with key (electrons) "
35 }
36 if (m_doPhotons) {
37 ATH_MSG_INFO("Will thin " << m_photonsKey
38 << " Trk::Tracks with key (photons) "
40 }
41 if (m_doMuons) {
42 ATH_MSG_INFO("Will thin " << m_muonsKey << " Trk::Tracks with key "
44 }
45
46 if (m_streamName.empty()) {
47 ATH_MSG_ERROR("StreamName property was not initialized");
48 return StatusCode::FAILURE;
49 }
54 ATH_CHECK(m_muonsKey.initialize(m_doMuons));
55
56 ATH_MSG_DEBUG("==> done with initialize " << name() << "...");
57 return StatusCode::SUCCESS;
58}
#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.

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_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: