Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
TGCSimulation.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 #ifndef L0MUONS1TGC_TGCSIMULATION_H
5 #define L0MUONS1TGC_TGCSIMULATION_H
6 
9 
11 
13 
14 #include "MuonTGC_Cabling/MuonTGC_CablingSvc.h" // TODO: to be updated for phase-II
15 
16 namespace L0Muon {
17 
19  public:
20  using AthReentrantAlgorithm::AthReentrantAlgorithm;
21  virtual ~TGCSimulation() = default;
22 
23  virtual StatusCode initialize() override;
24  virtual StatusCode execute(const EventContext& ctx) const override;
25 
26  private:
28  SG::ReadHandleKey<TgcDigitContainer> m_keyTgcDigit{this, "InputDigit", "TGC_DIGITS", "Location of input TgcDigitContainer"};
30  SG::WriteHandleKey<xAOD::MuonRoIContainer> m_outputMuonRoIKey{this, "L0MuonEndcapKey", "L0MuonEndcapRoI", "key for LVL0 Muon RoIs in the barrel" };
31 
33  ServiceHandle<MuonTGC_CablingSvc> m_cabling{this, "TGCCablingSvc", "MuonTGC_CablingSvc","Key of MuonTGC_CablingSvc"};
34 
35  ToolHandle<GenericMonitoringTool> m_monTool{this, "MonTool", "", "Monitoring Tool"};
36 
37 };
38 
39 } // end of namespace
40 
41 #endif // L0MUONS1TGC_TGCSIMULATION_H
42 
L0Muon::TGCSimulation::initialize
virtual StatusCode initialize() override
Definition: TGCSimulation.cxx:11
MuonTGC_CablingSvc.h
MuonRoIContainer.h
SG::ReadHandleKey< TgcDigitContainer >
L0Muon::TGCSimulation::m_monTool
ToolHandle< GenericMonitoringTool > m_monTool
Definition: TGCSimulation.h:35
L0Muon::TGCSimulation
Definition: TGCSimulation.h:18
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:74
L0Muon
Definition: L0MuonSmearingAlg.cxx:13
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
Monitored.h
Header file to be included by clients of the Monitored infrastructure.
L0Muon::TGCSimulation::m_outputMuonRoIKey
SG::WriteHandleKey< xAOD::MuonRoIContainer > m_outputMuonRoIKey
Output RoIs.
Definition: TGCSimulation.h:30
AthReentrantAlgorithm.h
L0Muon::TGCSimulation::m_keyTgcDigit
SG::ReadHandleKey< TgcDigitContainer > m_keyTgcDigit
RPC Digit container.
Definition: TGCSimulation.h:28
L0Muon::TGCSimulation::~TGCSimulation
virtual ~TGCSimulation()=default
L0Muon::TGCSimulation::execute
virtual StatusCode execute(const EventContext &ctx) const override
Definition: TGCSimulation.cxx:31
TgcDigitContainer.h
L0Muon::TGCSimulation::m_cabling
ServiceHandle< MuonTGC_CablingSvc > m_cabling
TGC cabling map.
Definition: TGCSimulation.h:33
ServiceHandle< MuonTGC_CablingSvc >