ATLAS Offline Software
Loading...
Searching...
No Matches
NrpcDigitToNrpcRDO.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef NrpcDigitToNrpcRDO_H
6#define NrpcDigitToNrpcRDO_H
7
8#include <unordered_set>
11
15
17
18
19
21namespace Muon{
23 public:
24 using AthReentrantAlgorithm::AthReentrantAlgorithm;
25 virtual ~NrpcDigitToNrpcRDO() = default;
26 virtual StatusCode initialize() override final;
27 virtual StatusCode execute(const EventContext& ctx) const override final;
28
29 private:
30 Gaudi::Property<std::vector<std::string>> m_convStat{this, "ConvertHitsFromStations",
31 {"BIS"}, "Only hits from these RPC stations are converted to RDOs" };
32
33 SG::ReadCondHandleKey<RpcCablingMap> m_cablingKey{this, "CablingKey", "MuonNRPC_CablingMap", "Key of MuonNRPC_CablingMap"};
34
35 SG::ReadHandleKey<RpcDigitContainer> m_digitContainerKey{this, "RpcDigitContainer", "RPC_DIGITS",
36 "ReadHandleKey for Input RpcDigitContainer"};
37
38 SG::WriteHandleKey<xAOD::NRPCRDOContainer> m_NrpcContainerKey{this, "NrpcRdoKey", "NRPCRDO", "WriteHandleKey for Output AOD::NRPCRDOContainer"};
39
40 ServiceHandle<IMuonIdHelperSvc> m_idHelperSvc{this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"};
41
42 std::unordered_set<int> m_selectedStations{};
43 };
44}
45#endif
An algorithm that can be simultaneously executed in multiple threads.
virtual StatusCode execute(const EventContext &ctx) const override final
SG::WriteHandleKey< xAOD::NRPCRDOContainer > m_NrpcContainerKey
SG::ReadHandleKey< RpcDigitContainer > m_digitContainerKey
ServiceHandle< IMuonIdHelperSvc > m_idHelperSvc
virtual ~NrpcDigitToNrpcRDO()=default
SG::ReadCondHandleKey< RpcCablingMap > m_cablingKey
std::unordered_set< int > m_selectedStations
virtual StatusCode initialize() override final
Gaudi::Property< std::vector< std::string > > m_convStat
Support class for PropertyMgr.
Definition Property.h:23
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.
=============================================================================
NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.
STL namespace.
#define private