ATLAS Offline Software
TrigMuonTLAHypoAlg.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 TrigMuonTLAHypoAlg_H
6 #define TrigMuonTLAHypoAlg_H
7 
8 #include <string>
11 
12 
13 #include "TrigMuonEFHypoTool.h"
14 #include "xAODMuon/MuonContainer.h"
16 
17 class TrigMuonTLAHypoAlg : public HypoBase {
18 
19  public:
20  TrigMuonTLAHypoAlg( const std::string& name, ISvcLocator* pSvcLocator );
21 
22  virtual StatusCode initialize() override;
23  virtual StatusCode execute( const EventContext& context ) const override;
24 
25 
26  private:
27  // tmp HypoTools
28  ToolHandleArray<TrigMuonEFHypoTool> m_hypoTools {this, "HypoTools", {}, "Tools to perform selection"};
29 
30 
32  this, "TLAOutputName", "Muons", "TLA Muon container key"
33  };
34 
35  ToolHandle< GenericMonitoringTool > m_monTool { this, "MonTool", "", "Monitoring tool" };
36 
37 };
38 
39 #endif
40 
41 
TrigMuonTLAHypoAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition: TrigMuonTLAHypoAlg.cxx:31
TrigMuonTLAHypoAlg::m_hypoTools
ToolHandleArray< TrigMuonEFHypoTool > m_hypoTools
Definition: TrigMuonTLAHypoAlg.h:28
TrigMuonTLAHypoAlg::m_monTool
ToolHandle< GenericMonitoringTool > m_monTool
Definition: TrigMuonTLAHypoAlg.h:35
AthAlgorithm.h
GenericMonitoringTool.h
SG::WriteHandleKey
Property holding a SG store/key/clid from which a WriteHandle is made.
Definition: StoreGate/StoreGate/WriteHandleKey.h:40
TrigMuonEFHypoTool.h
TrigMuonTLAHypoAlg::TrigMuonTLAHypoAlg
TrigMuonTLAHypoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TrigMuonTLAHypoAlg.cxx:14
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
MuonContainer.h
TrigMuonTLAHypoAlg::initialize
virtual StatusCode initialize() override
Definition: TrigMuonTLAHypoAlg.cxx:16
HypoBase.h
TrigMuonTLAHypoAlg::m_TLAMuonsKey
SG::WriteHandleKey< xAOD::MuonContainer > m_TLAMuonsKey
Definition: TrigMuonTLAHypoAlg.h:31
TrigMuonTLAHypoAlg
Definition: TrigMuonTLAHypoAlg.h:17