ATLAS Offline Software
RpcPadContByteStreamCnv.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 
7 #include <string>
8 
13 
15  AthConstConverter(storageType(), classID(), svcloc, "RpcPadContByteStreamCnv"), m_tool("Muon::RpcPadContByteStreamTool") {}
16 
18 
20 
22  ATH_MSG_DEBUG(" initialize ");
24  ATH_CHECK(m_tool.retrieve());
25  return StatusCode::SUCCESS;
26 }
27 
28 StatusCode RpcPadContByteStreamCnv::createRepConst(DataObject* pObj, IOpaqueAddress*& pAddr) const {
29  RpcPadContainer* cont = nullptr;
30  SG::fromStorable(pObj, cont);
31  if (!cont) {
32  ATH_MSG_ERROR(" Can not cast to RpcPadContainer ");
33  return StatusCode::FAILURE;
34  }
35 
36  std::string nm = pObj->registry()->name();
37  pAddr = new ByteStreamAddress(classID(), nm, "");
38  return m_tool->convert(cont);
39 }
AthCheckMacros.h
SG::fromStorable
bool fromStorable(DataObject *pDObj, T *&pTrans, bool quiet=false, IRegisterTransient *irt=0, bool isConst=true)
Definition: StorableConversions.h:180
StorableConversions.h
convert to and from a SG storable
initialize
void initialize()
Definition: run_EoverP.cxx:894
AthConstConverter
Gaudi converter base class with const interfaces.
Definition: AthConstConverter.h:33
ClassID_traits::ID
static const CLID & ID()
the CLID of T
Definition: Control/AthenaKernel/AthenaKernel/ClassID_traits.h:50
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
RpcPadContByteStreamCnv::storageType
static long storageType()
Definition: RpcPadContByteStreamCnv.cxx:19
RpcPadContByteStreamCnv::classID
static const CLID & classID()
Definition: RpcPadContByteStreamCnv.cxx:17
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
ByteStreamAddress
IOpaqueAddress for ByteStreamCnvSvc, with ROB ids.
Definition: ByteStreamAddress.h:28
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
ByteStreamAddress.h
CLID
uint32_t CLID
The Class ID type.
Definition: Event/xAOD/xAODCore/xAODCore/ClassID_traits.h:47
RpcPadContByteStreamCnv::m_tool
ToolHandle< Muon::IRPC_RDOtoByteStreamTool > m_tool
Definition: RpcPadContByteStreamCnv.h:31
ByteStreamAddress::storageType
static constexpr long storageType()
Definition: ByteStreamAddress.h:51
RpcPadContByteStreamCnv.h
CalibCoolCompareRT.nm
nm
Definition: CalibCoolCompareRT.py:110
RpcPadContainer.h
RpcPadContByteStreamCnv::initialize
virtual StatusCode initialize() override
Definition: RpcPadContByteStreamCnv.cxx:21
RpcPadContByteStreamCnv::createRepConst
virtual StatusCode createRepConst(DataObject *pObj, IOpaqueAddress *&pAddr) const override
Convert the transient object to the requested representation.
Definition: RpcPadContByteStreamCnv.cxx:28
RpcPadContByteStreamCnv::RpcPadContByteStreamCnv
RpcPadContByteStreamCnv(ISvcLocator *svcloc)
Definition: RpcPadContByteStreamCnv.cxx:14
RpcPadContainer
Use IdentifiableContainer with RpcPad.
Definition: RpcPadContainer.h:23