ATLAS Offline Software
TrigMuonEFIdtpHypoAlg.h
Go to the documentation of this file.
1 /*
2 # Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef TRIGMUONHYPO_TRIGMUONEFIDTPHYPOALG_H
6 #define TRIGMUONHYPO_TRIGMUONEFIDTPHYPOALG_H
7 
10 
11 
12 // --------------------------------------------------------------------------------
13 // --------------------------------------------------------------------------------
14 
16 {
17 public:
18 
19  TrigMuonEFIdtpHypoAlg( const std::string& name, ISvcLocator* pSvcLocator );
20 
21  virtual StatusCode initialize() override;
22  virtual StatusCode execute( const EventContext& context ) const override;
23 
24 private:
25 
26  ToolHandleArray<TrigMuonEFIdtpHypoTool> m_hypoTools {this, "HypoTools", {}, "Tools to perform selection"};
27 
28  SG::ReadHandleKey<xAOD::TrackParticleContainer> m_PTTracksKey {this, "PTTracks", "HLT_IDTrack_Muon_IDTrig", ""};
29  SG::ReadHandleKey<xAOD::TrackParticleContainer> m_FTFTracksKey{this, "FTFTracks", "HLT_IDTrack_Muon_FTF", ""};
30 
31  Gaudi::Property<bool> m_mapToPrevDec{ this, "MapToPreviousDecisions", false, "Map to decisions from previous decisions (needed if IM has mergeUsingFeature=True)"};
32 };
33 
34 #endif
TrigMuonEFIdtpHypoAlg
Definition: TrigMuonEFIdtpHypoAlg.h:16
TrigMuonEFIdtpHypoAlg::m_hypoTools
ToolHandleArray< TrigMuonEFIdtpHypoTool > m_hypoTools
Definition: TrigMuonEFIdtpHypoAlg.h:26
TrigMuonEFIdtpHypoTool.h
TrigMuonEFIdtpHypoAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition: TrigMuonEFIdtpHypoAlg.cxx:37
TrigMuonEFIdtpHypoAlg::m_PTTracksKey
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_PTTracksKey
Definition: TrigMuonEFIdtpHypoAlg.h:28
SG::ReadHandleKey< xAOD::TrackParticleContainer >
TrigMuonEFIdtpHypoAlg::m_mapToPrevDec
Gaudi::Property< bool > m_mapToPrevDec
Definition: TrigMuonEFIdtpHypoAlg.h:31
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TrigMuonEFIdtpHypoAlg::initialize
virtual StatusCode initialize() override
Definition: TrigMuonEFIdtpHypoAlg.cxx:21
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
HypoBase
Hypothesis algorithms take the output of reco algorithms and the decision from the preceeding InputMa...
Definition: HypoBase.h:13
TrigMuonEFIdtpHypoAlg::m_FTFTracksKey
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_FTFTracksKey
Definition: TrigMuonEFIdtpHypoAlg.h:29
HypoBase.h
TrigMuonEFIdtpHypoAlg::TrigMuonEFIdtpHypoAlg
TrigMuonEFIdtpHypoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TrigMuonEFIdtpHypoAlg.cxx:14