ATLAS Offline Software
Loading...
Searching...
No Matches
NSWSimulation.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4#ifndef L0MUONNSW_NSWSIMULATION_H
5#define L0MUONNSW_NSWSIMULATION_H
6
9
12
16
21
22namespace L0Muon {
23
25 public:
26 using AthReentrantAlgorithm::AthReentrantAlgorithm;
27 virtual ~NSWSimulation() = default;
28
29 virtual StatusCode initialize() override;
30 virtual StatusCode execute(const EventContext& ctx) const override;
31
32 private:
34 SG::ReadHandleKey<MmDigitContainer> m_keyMmDigit{this, "MMDigits", "MM_DIGITS", "Input MM digit container"};
36 SG::ReadHandleKey<sTgcDigitContainer> m_keySTgcDigit{this, "sTGCDigits", "sTGC_DIGITS", "Input sTGC digit container"};
38 SG::WriteHandleKey<xAOD::NSWCandDataContainer> m_outputKey{ this, "OutputNSWCandidates", "L0MuonNSWCandidates", "Output NSW trigger candidates"};
39
40 ToolHandle<GenericMonitoringTool> m_monTool{this, "MonTool", "", "Monitoring Tool"};
41
42 };
43
44} // end of namespace
45
46#endif // L0MUONNSW_NSWSIMULATION_H
47
Header file to be included by clients of the Monitored infrastructure.
An algorithm that can be simultaneously executed in multiple threads.
SG::WriteHandleKey< xAOD::NSWCandDataContainer > m_outputKey
Output NSW trigger candidate container.
ToolHandle< GenericMonitoringTool > m_monTool
SG::ReadHandleKey< sTgcDigitContainer > m_keySTgcDigit
sTGC digits
virtual ~NSWSimulation()=default
virtual StatusCode initialize() override
SG::ReadHandleKey< MmDigitContainer > m_keyMmDigit
MM Digit container.
virtual StatusCode execute(const EventContext &ctx) const override
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid from which a WriteHandle is made.