ATLAS Offline Software
Loading...
Searching...
No Matches
TgcDigitToTgcRDO.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TGCDIGITTOTGCRDO_H
6#define TGCDIGITTOTGCRDO_H
7
11#include "MuonRDO/TgcRdo.h"
14
16
18public:
19 using AthReentrantAlgorithm::AthReentrantAlgorithm;
20 virtual ~TgcDigitToTgcRDO() = default;
21 virtual StatusCode initialize() override final;
22 virtual StatusCode execute(const EventContext& ctx) const override final;
23
25 BooleanProperty m_isNewTgcDigit{this, "isNewTgcDigit", true}; // to select new TgcDigit (bcTag added)
26
27 SG::ReadCondHandleKey<Muon::TgcCablingMap> m_cablingKey{this, "CablingKey", "MuonTgc_CablingMap"};
28 SG::WriteHandleKey<TgcRdoContainer> m_rdoContainerKey{this, "OutputObjectName", "TGCRDO", "WriteHandleKey for Output TgcRdoContainer"};
29 SG::ReadHandleKey<TgcDigitContainer> m_digitContainerKey{this, "InputObjectName", "TGC_DIGITS",
30 "ReadHandleKey for Input TgcDigitContainer"};
31 ServiceHandle<Muon::IMuonIdHelperSvc> m_idHelperSvc{this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"};
32
33};
34
35#endif
An algorithm that can be simultaneously executed in multiple threads.
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.
virtual StatusCode initialize() override final
BooleanProperty m_isNewTgcDigit
SG::WriteHandleKey< TgcRdoContainer > m_rdoContainerKey
SG::ReadHandleKey< TgcDigitContainer > m_digitContainerKey
SG::ReadCondHandleKey< Muon::TgcCablingMap > m_cablingKey
virtual ~TgcDigitToTgcRDO()=default
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
virtual StatusCode execute(const EventContext &ctx) const override final
#define private