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

#include <TrigMuonEFTrackIsolationAlg.h>

Inheritance diagram for TrigMuonEFTrackIsolationAlg:
Collaboration diagram for TrigMuonEFTrackIsolationAlg:

Public Member Functions

 TrigMuonEFTrackIsolationAlg (const std::string &name, ISvcLocator *pSvcLocator)
 Constructor.
 ~TrigMuonEFTrackIsolationAlg ()
 Destructor.
virtual StatusCode initialize () override
 initialize.
virtual StatusCode execute (const EventContext &ctx) const override
 execute execute the combined muon FEX.
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

ToolHandle< IMuonEFTrackIsolationToolm_onlineEfIsoTool
 Tool handle for isolation tool.
SG::ReadHandleKey< xAOD::TrackParticleContainerm_trackParticleKey
SG::ReadHandleKey< xAOD::MuonContainerm_efMuonContainerKey
SG::WriteHandleKey< xAOD::MuonContainerm_muonContainerKey
SG::WriteDecorHandleKey< xAOD::MuonContainerm_muonIso20Key
SG::WriteDecorHandleKey< xAOD::MuonContainerm_muonIso30Key
Gaudi::Property< bool > m_requireCombined { this, "requireCombinedMuon", true, "Require that EF Muons are combined"}
Gaudi::Property< bool > m_useVarIso { this, "useVarIso", true, "Use offline isolation variables"}
std::vector< double > m_coneSizes
ToolHandle< GenericMonitoringToolm_monTool { this, "MonTool", "", "Monitoring tool" }
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 24 of file TrigMuonEFTrackIsolationAlg.h.

Member Typedef Documentation

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ TrigMuonEFTrackIsolationAlg()

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

Constructor.

Definition at line 9 of file TrigMuonEFTrackIsolationAlg.cxx.

11 :AthReentrantAlgorithm(name, pSvcLocator),
13{
14 // cone sizes are hard-coded to ensure the correct result goes to the edm
15 m_coneSizes.push_back(0.2);
16 m_coneSizes.push_back(0.3);
17}

◆ ~TrigMuonEFTrackIsolationAlg()

TrigMuonEFTrackIsolationAlg::~TrigMuonEFTrackIsolationAlg ( )
inline

Destructor.

Definition at line 31 of file TrigMuonEFTrackIsolationAlg.h.

31{};

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

execute execute the combined muon FEX.

Definition at line 49 of file TrigMuonEFTrackIsolationAlg.cxx.

50{
51 ATH_MSG_DEBUG("Execution");
52
53
54 // variables to initialize and keep values for monitoring variables
55 std::vector<double> ini_cone2(0);
56 std::vector<double> ini_cone3(0);
57 std::vector<double> ini_trkdz(0);
58 std::vector<double> ini_trkdr(0);
59 std::vector<double> ini_selfpt(0);
60 std::vector<double> ini_removedpt(0);
61 std::vector<double> ini_combinedpt(0);
62 std::vector<int> ini_ntrks(0);
63
64 // Monitoring histogram
65 auto trkptiso_cone2 = Monitored::Collection("trks_trkptiso_cone2", ini_cone2);
66 auto trkptiso_cone3 = Monitored::Collection("trks_trkptiso_cone3", ini_cone3);
67 auto trkdz = Monitored::Collection("trks_trkdz", ini_trkdz);
68 auto trkdr = Monitored::Collection("trks_trksdr", ini_trkdr);
69 auto muon_selfpt = Monitored::Collection("muon_selfpt", ini_selfpt);
70 auto muon_removedpt = Monitored::Collection("muon_removedpt", ini_removedpt);
71 auto muon_combinedpt = Monitored::Collection("muon_combinedpt", ini_combinedpt);
72 auto n_trks = Monitored::Collection("n_trks", ini_ntrks);
73
74 auto monitorIt = Monitored::Group( m_monTool, trkptiso_cone2, trkptiso_cone3, trkdz, trkdr,
75 muon_selfpt, muon_removedpt, muon_combinedpt, n_trks );
76
77 // get input objects
78 const xAOD::TrackParticleContainer *idTrackParticles = nullptr;
79 const xAOD::MuonContainer *efMuonContainer = nullptr;
80
81 auto idTrackHandle = SG::makeHandle( m_trackParticleKey, ctx );
82 if( !idTrackHandle.isValid() ) {
83 ATH_MSG_ERROR("Failed to retrieve inner detector track particles");
84 return StatusCode::FAILURE;
85 }
86 idTrackParticles = idTrackHandle.cptr();
87 ATH_MSG_DEBUG("Inner detector track particles retrieved with size : " << idTrackHandle->size() << "...");
88
89 auto efMuonHandle = SG::makeHandle( m_efMuonContainerKey, ctx );
90 if ( !efMuonHandle.isValid() ) {
91 ATH_MSG_ERROR("Failed to retrieve EF Muon Container " << m_efMuonContainerKey.key());
92 return StatusCode::FAILURE;
93 }
94 efMuonContainer = efMuonHandle.cptr();
95 ATH_MSG_DEBUG("EF Muons retrieved with size : " << efMuonHandle->size());
96
97
98 // start calculation
99 // prepare output
101
102 StatusCode result = StatusCode::SUCCESS;
103 std::vector<double> isoResults;
104 std::vector<double> dzvals; // for monitoring
105 std::vector<double> drvals; // for monitoring
106 std::vector<double> selfremoval;
107
108 SG::WriteHandle<xAOD::MuonContainer> muonOutput(m_muonContainerKey, ctx);
109 ATH_CHECK(muonOutput.record(std::make_unique<xAOD::MuonContainer>(), std::make_unique<xAOD::MuonAuxContainer>()));
110 ATH_MSG_DEBUG("Record EF isolation muon : " << m_muonContainerKey.key());
111 muonContainer = muonOutput.ptr();
112
113 SG::WriteDecorHandle<xAOD::MuonContainer, double> muonptCone20(m_muonIso20Key, ctx);
114 SG::WriteDecorHandle<xAOD::MuonContainer, double> muonptCone30(m_muonIso30Key, ctx);
115
116 for ( auto muon : *efMuonContainer ) {
117 const xAOD::Muon::MuonType muonType = muon->muonType();
118 if ( muonType!=xAOD::Muon::MuonType::Combined) {
119 if ( m_requireCombined ) {
120 ATH_MSG_DEBUG("Not a combined or muon & requiredCombined = true, so ignore this muon");
121 continue;
122 } else {
123 if ( muonType!=xAOD::Muon::MuonType::MuonStandAlone ) {
124 ATH_MSG_DEBUG("EF muon hsa neither combined, segment tagged, nor standalone muon");
125 continue;
126 }
127 }
128 }
129 result = m_onlineEfIsoTool->calcTrackIsolation( muon, idTrackParticles, m_coneSizes, isoResults, &dzvals, &drvals, &selfremoval );
130
131 ini_trkdz.insert( ini_trkdz.begin(), dzvals.begin(), dzvals.end());
132 ini_trkdr.insert( ini_trkdr.begin(), drvals.begin(), drvals.end());
133 if ( selfremoval.size()==2 ) {
134 ini_selfpt.push_back(selfremoval[0]*1e-3); // convert to GeV
135 ini_combinedpt.push_back(selfremoval[1]*1e-3); // convert to GeV
136 }
137
138 if ( result.isFailure() || isoResults.size()!=2 ) {
139 ATH_MSG_WARNING("Isolation will not be set for this muon. result.isFailure: "<<result.isFailure()<<" isoResults.size: "<<isoResults.size());
140 }
141 else { // isolation tool was ok - store results
142 muonContainer->push_back( new xAOD::Muon(*muon) );
143 xAOD::Muon* outputmuon = muonContainer->back();
144 muonptCone20(*outputmuon) = isoResults[0];
145 muonptCone30(*outputmuon) = isoResults[1];
146 ini_cone2.push_back(isoResults[0]*1e-3); // convert to GeV
147 ini_cone3.push_back(isoResults[1]*1e-3); // convert to GeV
148 }
149 }//loop over muons
150
151
152 return StatusCode::SUCCESS;
153}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
xAOD::MuonContainer * muonContainer
const T * back() const
Access the last element in the collection as an rvalue.
value_type push_back(value_type pElem)
Add an element to the end of the collection.
SG::WriteDecorHandleKey< xAOD::MuonContainer > m_muonIso20Key
ToolHandle< GenericMonitoringTool > m_monTool
SG::ReadHandleKey< xAOD::MuonContainer > m_efMuonContainerKey
SG::WriteHandleKey< xAOD::MuonContainer > m_muonContainerKey
SG::WriteDecorHandleKey< xAOD::MuonContainer > m_muonIso30Key
ToolHandle< IMuonEFTrackIsolationTool > m_onlineEfIsoTool
Tool handle for isolation tool.
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_trackParticleKey
Gaudi::Property< bool > m_requireCombined
::StatusCode StatusCode
StatusCode definition for legacy code.
ValuesCollection< T > Collection(std::string name, const T &collection)
Declare a monitored (double-convertible) collection.
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
TrackParticleContainer_v1 TrackParticleContainer
Definition of the current "TrackParticle container version".
Muon_v1 Muon
Reference the current persistent version:
MuonContainer_v1 MuonContainer
Definition of the current "Muon container version".

◆ 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 TrigMuonEFTrackIsolationAlg::initialize ( )
overridevirtual

initialize.

Called by the Steering.

Definition at line 20 of file TrigMuonEFTrackIsolationAlg.cxx.

21{
22 ATH_MSG_DEBUG("Initialization");
23
24 ATH_MSG_DEBUG("*** Properties set as follows ***");
25 ATH_MSG_DEBUG("Track isolation tool : " << m_onlineEfIsoTool);
26 ATH_MSG_DEBUG("TrackParticles : " << m_trackParticleKey.key());
27 ATH_MSG_DEBUG("EFMuonParticles : " << m_efMuonContainerKey.key());
28 ATH_MSG_DEBUG("requireCombinedMuon : " << m_requireCombined);
29 ATH_MSG_DEBUG("useVarIso : " << m_useVarIso);
30
31 ATH_CHECK( m_trackParticleKey.initialize() );
32 ATH_CHECK( m_efMuonContainerKey.initialize() );
33 ATH_CHECK( m_muonContainerKey.initialize() );
34 ATH_CHECK( m_muonIso20Key.initialize() );
35 ATH_CHECK( m_muonIso30Key.initialize() );
36
37
38
39 ATH_CHECK( m_onlineEfIsoTool.retrieve() );
40
41 if ( not m_monTool.name().empty() ) {
42 ATH_CHECK( m_monTool.retrieve() );
43 }
44
45 return StatusCode::SUCCESS;
46}

◆ 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}
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_coneSizes

std::vector<double> TrigMuonEFTrackIsolationAlg::m_coneSizes
private

Definition at line 70 of file TrigMuonEFTrackIsolationAlg.h.

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

SG::ReadHandleKey<xAOD::MuonContainer> TrigMuonEFTrackIsolationAlg::m_efMuonContainerKey
private
Initial value:
{
this, "MuonEFContainer", "Muons", "Name of EF Muons container" }

Definition at line 50 of file TrigMuonEFTrackIsolationAlg.h.

50 {
51 this, "MuonEFContainer", "Muons", "Name of EF Muons 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_monTool

ToolHandle< GenericMonitoringTool > TrigMuonEFTrackIsolationAlg::m_monTool { this, "MonTool", "", "Monitoring tool" }
private

Definition at line 73 of file TrigMuonEFTrackIsolationAlg.h.

73{ this, "MonTool", "", "Monitoring tool" };

◆ m_muonContainerKey

SG::WriteHandleKey<xAOD::MuonContainer> TrigMuonEFTrackIsolationAlg::m_muonContainerKey
private
Initial value:
{
this, "MuonContName", "MuonEFInfo", "Name of output objects for EF" }

Definition at line 53 of file TrigMuonEFTrackIsolationAlg.h.

53 {
54 this, "MuonContName", "MuonEFInfo", "Name of output objects for EF" };

◆ m_muonIso20Key

SG::WriteDecorHandleKey<xAOD::MuonContainer> TrigMuonEFTrackIsolationAlg::m_muonIso20Key
private
Initial value:
{
this, "ptcone02Name", "Muons.ptcone02", "Isolation for ptcone 0.2" }

Definition at line 56 of file TrigMuonEFTrackIsolationAlg.h.

56 {
57 this, "ptcone02Name", "Muons.ptcone02", "Isolation for ptcone 0.2" };

◆ m_muonIso30Key

SG::WriteDecorHandleKey<xAOD::MuonContainer> TrigMuonEFTrackIsolationAlg::m_muonIso30Key
private
Initial value:
{
this, "ptcone03Name", "Muons.ptcone03", "Isolation for ptcone 0.3" }

Definition at line 59 of file TrigMuonEFTrackIsolationAlg.h.

59 {
60 this, "ptcone03Name", "Muons.ptcone03", "Isolation for ptcone 0.3" };

◆ m_onlineEfIsoTool

ToolHandle<IMuonEFTrackIsolationTool> TrigMuonEFTrackIsolationAlg::m_onlineEfIsoTool
private
Initial value:
{
this, "OnlineIsolationTool", "TrigMuonEFTrackIsolationTool/TrigMuonEFTrackIsolationTool", "Select online muon isolation tool you want to use"}

Tool handle for isolation tool.

Definition at line 43 of file TrigMuonEFTrackIsolationAlg.h.

43 {
44 this, "OnlineIsolationTool", "TrigMuonEFTrackIsolationTool/TrigMuonEFTrackIsolationTool", "Select online muon isolation tool you want to use"};

◆ m_requireCombined

Gaudi::Property<bool> TrigMuonEFTrackIsolationAlg::m_requireCombined { this, "requireCombinedMuon", true, "Require that EF Muons are combined"}
private

Definition at line 64 of file TrigMuonEFTrackIsolationAlg.h.

64{ this, "requireCombinedMuon", true, "Require that EF Muons are combined"};

◆ m_trackParticleKey

SG::ReadHandleKey<xAOD::TrackParticleContainer> TrigMuonEFTrackIsolationAlg::m_trackParticleKey
private
Initial value:
{
this, "IdTrackParticles", "InDetTrigTrackingxAODCnv_Muon_FTF", "Name of ID Track Particle container" }

Definition at line 47 of file TrigMuonEFTrackIsolationAlg.h.

47 {
48 this, "IdTrackParticles", "InDetTrigTrackingxAODCnv_Muon_FTF", "Name of ID Track Particle container" };

◆ m_useVarIso

Gaudi::Property<bool> TrigMuonEFTrackIsolationAlg::m_useVarIso { this, "useVarIso", true, "Use offline isolation variables"}
private

Definition at line 67 of file TrigMuonEFTrackIsolationAlg.h.

67{ this, "useVarIso", true, "Use offline isolation variables"};

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