ATLAS Offline Software
Loading...
Searching...
No Matches
CP::ParticleLevelOverlapRemovalAlg Class Reference

#include <ParticleLevelOverlapRemovalAlg.h>

Inheritance diagram for CP::ParticleLevelOverlapRemovalAlg:
Collaboration diagram for CP::ParticleLevelOverlapRemovalAlg:

Public Member Functions

virtual StatusCode initialize () final
virtual StatusCode execute (const EventContext &ctx) const final
 AnaReentrantAlgorithm (const std::string &name, ISvcLocator *pSvcLocator)
 constructor with parameters
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

virtual::StatusCode finalize ()
 finalize this algorithm
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

float dressedDeltaR (const xAOD::Jet *p1, TLorentzVector &p2, bool useRapidity) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

SG::ReadHandleKey< xAOD::JetContainerm_jetsKey
SG::ReadHandleKey< xAOD::TruthParticleContainerm_electronsKey
SG::ReadHandleKey< xAOD::TruthParticleContainerm_muonsKey
SG::ReadHandleKey< xAOD::TruthParticleContainerm_photonsKey
SG::WriteDecorHandleKey< xAOD::JetContainerm_decORjet
SG::WriteDecorHandleKey< xAOD::TruthParticleContainerm_decORelectron
SG::WriteDecorHandleKey< xAOD::TruthParticleContainerm_decORmuon
SG::WriteDecorHandleKey< xAOD::TruthParticleContainerm_decORphoton
CP::SelectionReadHandle m_jetSelection
CP::SelectionReadHandle m_electronSelection
CP::SelectionReadHandle m_muonSelection
CP::SelectionReadHandle m_photonSelection
Gaudi::Property< boolm_useRapidity
Gaudi::Property< boolm_useDressedProperties
Gaudi::Property< boolm_doJetElectronOR
Gaudi::Property< boolm_doJetMuonOR
Gaudi::Property< boolm_doJetPhotonOR
Gaudi::Property< std::string > m_decLabelOR
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 19 of file ParticleLevelOverlapRemovalAlg.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

◆ AnaReentrantAlgorithm()

EL::AnaReentrantAlgorithm::AnaReentrantAlgorithm ( const std::string & name,
ISvcLocator * pSvcLocator )

constructor with parameters

This matches the Athena algorithm constructor (for dual-use purposes). Within EventLoop the pSvcLocator will always be nullptr (unless we ever have dual-use services).

Guarantee
strong
Failures
out of memory II

Definition at line 67 of file AnaReentrantAlgorithm.cxx.

32 : AsgComponent (name)
33#else
34 : AthReentrantAlgorithm (name, pSvcLocator)
35#endif
36 {
37 ANA_MSG_DEBUG ("AnaReentrantAlgorithm: " << name);
38 }
#define ANA_MSG_DEBUG(xmsg)
Macro printing debug messages.

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

◆ dressedDeltaR()

float CP::ParticleLevelOverlapRemovalAlg::dressedDeltaR ( const xAOD::Jet * p1,
TLorentzVector & p2,
bool useRapidity ) const
private

Definition at line 47 of file ParticleLevelOverlapRemovalAlg.cxx.

49 {
50 if (useRapidity)
51 return xAOD::P4Helpers::deltaR(p1->rapidity(), p1->phi(), p2.Rapidity(),
52 p2.Phi());
53 else
54 return xAOD::P4Helpers::deltaR(p1->eta(), p1->phi(), p2.Eta(), p2.Phi());
55}
double deltaR(double rapidity1, double phi1, double rapidity2, double phi2)
from bare bare rapidity,phi

◆ 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 CP::ParticleLevelOverlapRemovalAlg::execute ( const EventContext & ctx) const
finalvirtual

Definition at line 57 of file ParticleLevelOverlapRemovalAlg.cxx.

57 {
58 SG::ReadHandle<xAOD::TruthParticleContainer> electrons, muons, photons;
61 if (m_doJetMuonOR)
62 muons = SG::makeHandle(m_muonsKey, ctx);
64 photons = SG::makeHandle(m_photonsKey, ctx);
65 SG::ReadHandle<xAOD::JetContainer> jets(m_jetsKey, ctx);
66
67 SG::WriteDecorHandle<xAOD::TruthParticleContainer, char> dec_electrons_OR(
68 m_decORelectron, ctx);
69 SG::WriteDecorHandle<xAOD::TruthParticleContainer, char> dec_muons_OR(
70 m_decORmuon, ctx);
71 SG::WriteDecorHandle<xAOD::TruthParticleContainer, char> dec_photons_OR(
72 m_decORphoton, ctx);
73 SG::WriteDecorHandle<xAOD::JetContainer, char> dec_jets_OR(m_decORjet, ctx);
74
75 // accessors
76 static const SG::ConstAccessor<float> acc_pt_dressed(
77 "pt_dressed");
78 static const SG::ConstAccessor<float> acc_eta_dressed(
79 "eta_dressed");
80 static const SG::ConstAccessor<float> acc_phi_dressed(
81 "phi_dressed");
82 static const SG::ConstAccessor<float> acc_e_dressed("e_dressed");
83
84 // Default decorations: all objects pass!
85 for (const auto* jet : *jets) {
87 dec_jets_OR(*jet) = m_jetSelection.getBool(*jet);
88 else
89 dec_jets_OR(*jet) = true;
90 }
92 for (const auto* electron : *electrons) {
94 dec_electrons_OR(*electron) = m_electronSelection.getBool(*electron);
95 else
96 dec_electrons_OR(*electron) = true;
97 }
98 }
99 if (m_doJetMuonOR) {
100 for (const auto* muon : *muons) {
101 if (m_muonSelection)
102 dec_muons_OR(*muon) = m_muonSelection.getBool(*muon);
103 else
104 dec_muons_OR(*muon) = true;
105 }
106 }
107 if (m_doJetPhotonOR) {
108 for (const auto* photon : *photons) {
110 dec_photons_OR(*photon) = m_photonSelection.getBool(*photon);
111 else
112 dec_photons_OR(*photon) = true;
113 }
114 }
115
116 // ----------------------
117 // OVERLAP REMOVAL
118 // ----------------------
119 // Removal Steps:
120 // 1. Jets & Muons:
121 // Remove Muons with dR < 0.4
122 // 2. Jets & Electrons:
123 // Remove Electrons with dR < 0.4
124 // 3. Photons & Jets:
125 // Remove Jets with dR < 0.4
126
127 for (const auto* jet : *jets) {
128 if (m_jetSelection && !m_jetSelection.getBool(*jet))
129 continue;
130 if (m_doJetMuonOR) {
131 for (const auto* muon : *muons) {
132 if (m_muonSelection && !m_muonSelection.getBool(*muon))
133 continue;
134 if (dec_muons_OR(*muon)) {
136 TLorentzVector dressed_muon;
137 dressed_muon.SetPtEtaPhiE(
138 acc_pt_dressed(*muon), acc_eta_dressed(*muon),
139 acc_phi_dressed(*muon), acc_e_dressed(*muon));
140 if (dressedDeltaR(jet, dressed_muon, m_useRapidity) < 0.4)
141 dec_muons_OR(*muon) = false;
142 } else {
144 dec_muons_OR(*muon) = false;
145 }
146 }
147 }
148 }
149 if (m_doJetElectronOR) {
150 for (const auto* electron : *electrons) {
152 continue;
153 if (dec_electrons_OR(*electron)) {
155 TLorentzVector dressed_electron;
156 dressed_electron.SetPtEtaPhiE(
157 acc_pt_dressed(*electron), acc_eta_dressed(*electron),
158 acc_phi_dressed(*electron), acc_e_dressed(*electron));
159 if (dressedDeltaR(jet, dressed_electron, m_useRapidity) < 0.4)
160 dec_electrons_OR(*electron) = false;
161 } else {
163 dec_electrons_OR(*electron) = false;
164 }
165 }
166 }
167 }
168 if (m_doJetPhotonOR) {
169 for (const auto* photon : *photons) {
171 continue;
172 if (dec_photons_OR(*photon)) {
173 if (xAOD::P4Helpers::deltaR(jet, photon) < 0.4)
174 dec_jets_OR(*jet) = false;
175 }
176 }
177 }
178 }
179
180 return StatusCode::SUCCESS;
181}
SG::ReadHandleKey< xAOD::TruthParticleContainer > m_photonsKey
SG::WriteDecorHandleKey< xAOD::TruthParticleContainer > m_decORmuon
SG::ReadHandleKey< xAOD::TruthParticleContainer > m_muonsKey
SG::ReadHandleKey< xAOD::JetContainer > m_jetsKey
float dressedDeltaR(const xAOD::Jet *p1, TLorentzVector &p2, bool useRapidity) const
SG::WriteDecorHandleKey< xAOD::TruthParticleContainer > m_decORphoton
SG::WriteDecorHandleKey< xAOD::TruthParticleContainer > m_decORelectron
SG::WriteDecorHandleKey< xAOD::JetContainer > m_decORjet
SG::ReadHandleKey< xAOD::TruthParticleContainer > m_electronsKey
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())

◆ 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

◆ finalize()

StatusCode EL::AnaReentrantAlgorithm::finalize ( )
protectedinherited

finalize this algorithm

This gets called after event processing has finished. The last event may no longer be in memory, and the code should not try to access it.

Definition at line 102 of file AnaReentrantAlgorithm.cxx.

104 {
105 return StatusCode::SUCCESS;
106 }

◆ initialize()

StatusCode CP::ParticleLevelOverlapRemovalAlg::initialize ( )
finalvirtual

Definition at line 15 of file ParticleLevelOverlapRemovalAlg.cxx.

15 {
16
17 ANA_CHECK(m_jetsKey.initialize());
21
22 if (!m_electronsKey.empty())
23 m_decORelectron = m_electronsKey.key() + "." + m_decLabelOR.value();
24 if (!m_muonsKey.empty())
25 m_decORmuon = m_muonsKey.key() + "." + m_decLabelOR.value();
26 if (!m_photonsKey.empty())
27 m_decORphoton = m_photonsKey.key() + "." + m_decLabelOR.value();
28 m_decORjet = m_jetsKey.key() + "." + m_decLabelOR.value();
29
33 ANA_CHECK(m_decORjet.initialize());
34
35 if (!m_jetSelection.empty())
36 ANA_CHECK(m_jetSelection.initialize());
37 if (!m_electronSelection.empty())
38 ANA_CHECK(m_electronSelection.initialize());
39 if (!m_muonSelection.empty())
40 ANA_CHECK(m_muonSelection.initialize());
41 if (!m_photonSelection.empty())
42 ANA_CHECK(m_photonSelection.initialize());
43
44 return StatusCode::SUCCESS;
45}
#define ANA_CHECK(EXP)
check whether the given expression was successful

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

Gaudi::Property<std::string> CP::ParticleLevelOverlapRemovalAlg::m_decLabelOR
private
Initial value:
{
this, "labelOR", "passesOR",
"decoration to apply to all particles for overlap removal"}

Definition at line 68 of file ParticleLevelOverlapRemovalAlg.h.

68 {
69 this, "labelOR", "passesOR",
70 "decoration to apply to all particles for overlap removal"};

◆ m_decORelectron

SG::WriteDecorHandleKey<xAOD::TruthParticleContainer> CP::ParticleLevelOverlapRemovalAlg::m_decORelectron
private
Initial value:
{
this, "decORelectron", "TruthElectrons.passesOR", ""}

Definition at line 36 of file ParticleLevelOverlapRemovalAlg.h.

36 {
37 this, "decORelectron", "TruthElectrons.passesOR", ""};

◆ m_decORjet

SG::WriteDecorHandleKey<xAOD::JetContainer> CP::ParticleLevelOverlapRemovalAlg::m_decORjet
private
Initial value:
{
this, "decORjet", "SetMe", ""}

Definition at line 34 of file ParticleLevelOverlapRemovalAlg.h.

34 {
35 this, "decORjet", "SetMe", ""};

◆ m_decORmuon

SG::WriteDecorHandleKey<xAOD::TruthParticleContainer> CP::ParticleLevelOverlapRemovalAlg::m_decORmuon
private
Initial value:
{
this, "decORmuon", "TruthMuons.passesOR", ""}

Definition at line 38 of file ParticleLevelOverlapRemovalAlg.h.

38 {
39 this, "decORmuon", "TruthMuons.passesOR", ""};

◆ m_decORphoton

SG::WriteDecorHandleKey<xAOD::TruthParticleContainer> CP::ParticleLevelOverlapRemovalAlg::m_decORphoton
private
Initial value:
{
this, "decORphoton", "TruthPhotons.passesOR", ""}

Definition at line 40 of file ParticleLevelOverlapRemovalAlg.h.

40 {
41 this, "decORphoton", "TruthPhotons.passesOR", ""};

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

Gaudi::Property<bool> CP::ParticleLevelOverlapRemovalAlg::m_doJetElectronOR
private
Initial value:
{
this, "doJetElectronOR", false,
"whether to perform jet-electron overlap removal"}

Definition at line 59 of file ParticleLevelOverlapRemovalAlg.h.

59 {
60 this, "doJetElectronOR", false,
61 "whether to perform jet-electron overlap removal"};

◆ m_doJetMuonOR

Gaudi::Property<bool> CP::ParticleLevelOverlapRemovalAlg::m_doJetMuonOR
private
Initial value:
{
this, "doJetMuonOR", false,
"whether to perform jet-muon overlap removal"}

Definition at line 62 of file ParticleLevelOverlapRemovalAlg.h.

62 {
63 this, "doJetMuonOR", false,
64 "whether to perform jet-muon overlap removal"};

◆ m_doJetPhotonOR

Gaudi::Property<bool> CP::ParticleLevelOverlapRemovalAlg::m_doJetPhotonOR
private
Initial value:
{
this, "doJetPhotonOR", false,
"whether to perform jet-photon overlap removal"}

Definition at line 65 of file ParticleLevelOverlapRemovalAlg.h.

65 {
66 this, "doJetPhotonOR", false,
67 "whether to perform jet-photon overlap removal"};

◆ m_electronSelection

CP::SelectionReadHandle CP::ParticleLevelOverlapRemovalAlg::m_electronSelection
private
Initial value:
{
this, "electronSelection", "",
"the selection on the input truth electrons"}

Definition at line 44 of file ParticleLevelOverlapRemovalAlg.h.

44 {
45 this, "electronSelection", "",
46 "the selection on the input truth electrons"};

◆ m_electronsKey

SG::ReadHandleKey<xAOD::TruthParticleContainer> CP::ParticleLevelOverlapRemovalAlg::m_electronsKey
private
Initial value:
{
this, "electrons", "", "the name of the input truth electrons container"}

Definition at line 28 of file ParticleLevelOverlapRemovalAlg.h.

28 {
29 this, "electrons", "", "the name of the input truth electrons container"};

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

CP::SelectionReadHandle CP::ParticleLevelOverlapRemovalAlg::m_jetSelection
private
Initial value:
{
this, "jetSelection", "", "the selection on the input truth jets"}

Definition at line 42 of file ParticleLevelOverlapRemovalAlg.h.

42 {
43 this, "jetSelection", "", "the selection on the input truth jets"};

◆ m_jetsKey

SG::ReadHandleKey<xAOD::JetContainer> CP::ParticleLevelOverlapRemovalAlg::m_jetsKey
private
Initial value:
{
this, "jets", "", "the name of the input truth jet container"}

Definition at line 26 of file ParticleLevelOverlapRemovalAlg.h.

26 {
27 this, "jets", "", "the name of the input truth jet container"};

◆ m_muonSelection

CP::SelectionReadHandle CP::ParticleLevelOverlapRemovalAlg::m_muonSelection
private
Initial value:
{
this, "muonSelection", "", "the selection on the input truth muons"}

Definition at line 47 of file ParticleLevelOverlapRemovalAlg.h.

47 {
48 this, "muonSelection", "", "the selection on the input truth muons"};

◆ m_muonsKey

SG::ReadHandleKey<xAOD::TruthParticleContainer> CP::ParticleLevelOverlapRemovalAlg::m_muonsKey
private
Initial value:
{
this, "muons", "", "the name of the input truth muons container"}

Definition at line 30 of file ParticleLevelOverlapRemovalAlg.h.

30 {
31 this, "muons", "", "the name of the input truth muons container"};

◆ m_photonSelection

CP::SelectionReadHandle CP::ParticleLevelOverlapRemovalAlg::m_photonSelection
private
Initial value:
{
this, "photonSelection", "", "the selection on the input truth photons"}

Definition at line 49 of file ParticleLevelOverlapRemovalAlg.h.

49 {
50 this, "photonSelection", "", "the selection on the input truth photons"};

◆ m_photonsKey

SG::ReadHandleKey<xAOD::TruthParticleContainer> CP::ParticleLevelOverlapRemovalAlg::m_photonsKey
private
Initial value:
{
this, "photons", "", "the name of the input truth photons container"}

Definition at line 32 of file ParticleLevelOverlapRemovalAlg.h.

32 {
33 this, "photons", "", "the name of the input truth photons container"};

◆ m_useDressedProperties

Gaudi::Property<bool> CP::ParticleLevelOverlapRemovalAlg::m_useDressedProperties
private
Initial value:
{
this, "useDressedProperties", true,
"whether to use dressed electron and muon kinematics rather than simple "
"P4 kinematics"}

Definition at line 55 of file ParticleLevelOverlapRemovalAlg.h.

55 {
56 this, "useDressedProperties", true,
57 "whether to use dressed electron and muon kinematics rather than simple "
58 "P4 kinematics"};

◆ m_useRapidity

Gaudi::Property<bool> CP::ParticleLevelOverlapRemovalAlg::m_useRapidity
private
Initial value:
{
this, "useRapidityForDeltaR", true,
"whether to use rapidity instead of pseudo-rapidity for the calculation "
"of DeltaR"}

Definition at line 51 of file ParticleLevelOverlapRemovalAlg.h.

51 {
52 this, "useRapidityForDeltaR", true,
53 "whether to use rapidity instead of pseudo-rapidity for the calculation "
54 "of DeltaR"};

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