ATLAS Offline Software
Loading...
Searching...
No Matches
IRPC_RDO_Decoder.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef MUONRPC_CNVTOOL_IRPC_RDO_Decoder_H
6#define MUONRPC_CNVTOOL_IRPC_RDO_Decoder_H
7
8#include "GaudiKernel/IAlgTool.h"
9
10class Identifier;
11class RpcDigit;
12class RpcFiredChannel;
14
15namespace Muon {
16
19
20 class IRPC_RDO_Decoder : virtual public IAlgTool {
21 public:
23
24 virtual std::vector<std::unique_ptr<RpcDigit>> getDigit(const RpcFiredChannel* fChan, uint16_t& sectorID, uint16_t& padId, uint16_t& cmaId,
25 const RpcCablingCondData* rpcCab) const = 0;
26
27 virtual std::vector<Identifier> getOfflineData(const RpcFiredChannel* fChan, uint16_t& sectorID, uint16_t& padId, uint16_t& cmaId,
28 double& time, const RpcCablingCondData* rpcCab) const = 0;
29 };
30
31} // namespace Muon
32
33#endif
This class provides conversion from RDO data to RPC RDO.
virtual std::vector< std::unique_ptr< RpcDigit > > getDigit(const RpcFiredChannel *fChan, uint16_t &sectorID, uint16_t &padId, uint16_t &cmaId, const RpcCablingCondData *rpcCab) const =0
virtual std::vector< Identifier > getOfflineData(const RpcFiredChannel *fChan, uint16_t &sectorID, uint16_t &padId, uint16_t &cmaId, double &time, const RpcCablingCondData *rpcCab) const =0
DeclareInterfaceID(IRPC_RDO_Decoder, 1, 0)
NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.