ATLAS Offline Software
MergeEFMuonsAlg.h
Go to the documentation of this file.
1 /*
2  Merge inside-out and outside-in muon trigger containers
3 
4  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
5 */
6 
7 #ifndef TRIGMUONEF_MERGEEFMUONSALG_H
8 #define TRIGMUONEF_MERGEEFMUONSALG_H
9 
12 #include "xAODMuon/MuonContainer.h"
13 
15 {
16  public :
17 
19  MergeEFMuonsAlg( const std::string& name, ISvcLocator* pSvcLocator );
20 
22  virtual StatusCode initialize() override;
23 
25  virtual StatusCode execute(const EventContext& ctx) const override;
26 
27 
28  private :
29 
30  SG::ReadHandleKey<xAOD::MuonContainer> m_muonCBContainerKey{this,"MuonCBContainerLocation", "MuonsCB", "CB Muon Container"};
31  SG::ReadHandleKey<xAOD::MuonContainer> m_muonInsideOutContainerKey{this,"MuonInsideOutContainerLocation", "MuonsInsideOut", "InsideOut Muon Container"};
32  SG::WriteHandleKey<xAOD::MuonContainer> m_muonOutputKey{this,"MuonOutputLocation", "MuonsOut", "Output Muon Container"};
33 
34 };
35 
36 #endif
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
MergeEFMuonsAlg::execute
virtual StatusCode execute(const EventContext &ctx) const override
execute the filter alg
Definition: MergeEFMuonsAlg.cxx:24
MergeEFMuonsAlg::MergeEFMuonsAlg
MergeEFMuonsAlg(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.
Definition: MergeEFMuonsAlg.cxx:10
SG::ReadHandleKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition: StoreGate/StoreGate/ReadHandleKey.h:39
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:83
MergeEFMuonsAlg::m_muonInsideOutContainerKey
SG::ReadHandleKey< xAOD::MuonContainer > m_muonInsideOutContainerKey
Definition: MergeEFMuonsAlg.h:31
SG::WriteHandleKey
Property holding a SG store/key/clid from which a WriteHandle is made.
Definition: StoreGate/StoreGate/WriteHandleKey.h:40
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
MergeEFMuonsAlg::m_muonOutputKey
SG::WriteHandleKey< xAOD::MuonContainer > m_muonOutputKey
Definition: MergeEFMuonsAlg.h:32
AthReentrantAlgorithm.h
private
#define private
Definition: DetDescrConditionsDict_dict_fixes.cxx:13
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
MuonContainer.h
MergeEFMuonsAlg::initialize
virtual StatusCode initialize() override
initialize
Definition: MergeEFMuonsAlg.cxx:15
MergeEFMuonsAlg
Definition: MergeEFMuonsAlg.h:15
MergeEFMuonsAlg::m_muonCBContainerKey
SG::ReadHandleKey< xAOD::MuonContainer > m_muonCBContainerKey
Definition: MergeEFMuonsAlg.h:30