ATLAS Offline Software
TrigMuonEFHypoAlg.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef TRIGMUONHYPO_TRIGMUONEFHYPOALG_H
6 #define TRIGMUONHYPO_TRIGMUONEFHYPOALG_H 1
7 
8 #include "TrigMuonEFHypoTool.h"
10 
11 
12 // --------------------------------------------------------------------------------
13 // --------------------------------------------------------------------------------
14 
16  : public ::HypoBase
17 {
18  public:
19 
20  TrigMuonEFHypoAlg( const std::string& name, ISvcLocator* pSvcLocator );
21 
22  virtual StatusCode initialize() override;
23  virtual StatusCode execute( const EventContext& context ) const override;
24 
25  private:
26 
27  ToolHandleArray<TrigMuonEFHypoTool> m_hypoTools {this, "HypoTools", {}, "Tools to perform selection"};
28 
30  this, "MuonDecisions", "MuonEFCombiner_MuonData", "Name of the input data on xAOD::MuonContainer produced by MuonCreatorAlg"};
31  Gaudi::Property<bool> m_mapToPrevDec{
32  this, "MapToPreviousDecisions", false, "Map to decisions from previous decisions (needed if IM has mergeUsingFeature=True)"};
33  Gaudi::Property<bool> m_inclSAmuons{
34  this, "IncludeSAmuons", false, "Include SA muons for SA hypo alg, but not for CB hypo alg"};
35 
36 
37 };
38 
39 #endif
TrigMuonEFHypoAlg
Definition: TrigMuonEFHypoAlg.h:17
TrigMuonEFHypoAlg::m_inclSAmuons
Gaudi::Property< bool > m_inclSAmuons
Definition: TrigMuonEFHypoAlg.h:33
TrigMuonEFHypoAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition: TrigMuonEFHypoAlg.cxx:36
TrigMuonEFHypoAlg::m_hypoTools
ToolHandleArray< TrigMuonEFHypoTool > m_hypoTools
Definition: TrigMuonEFHypoAlg.h:27
SG::ReadHandleKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition: StoreGate/StoreGate/ReadHandleKey.h:39
TrigMuonEFHypoAlg::initialize
virtual StatusCode initialize() override
Definition: TrigMuonEFHypoAlg.cxx:23
TrigMuonEFHypoAlg::m_muonKey
SG::ReadHandleKey< xAOD::MuonContainer > m_muonKey
Definition: TrigMuonEFHypoAlg.h:29
TrigMuonEFHypoTool.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
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
HypoBase.h
TrigMuonEFHypoAlg::m_mapToPrevDec
Gaudi::Property< bool > m_mapToPrevDec
Definition: TrigMuonEFHypoAlg.h:31
TrigMuonEFHypoAlg::TrigMuonEFHypoAlg
TrigMuonEFHypoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TrigMuonEFHypoAlg.cxx:13