ATLAS Offline Software
CpByteStreamV2Cnv.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 
6 #include <vector>
7 
10 
12 #include "ByteStreamData/ROBData.h"
13 
15 
16 #include "GaudiKernel/DataObject.h"
17 #include "GaudiKernel/IOpaqueAddress.h"
18 #include "GaudiKernel/IRegistry.h"
19 #include "GaudiKernel/ISvcLocator.h"
20 #include "GaudiKernel/StatusCode.h"
21 
25 
27 
28 #include "CpByteStreamV2Cnv.h"
29 #include "CpByteStreamV2Tool.h"
30 
31 namespace LVL1BS {
32 
34  : AthConstConverter( storageType(), classID(), svcloc, "CpByteStreamV2Cnv" ),
35  m_tool("LVL1BS::CpByteStreamV2Tool/CpByteStreamV2Tool")
36 {
37 }
38 
40 {
41 }
42 
43 // CLID
44 
46 {
48 }
49 
51 {
53 }
54 
55 // Init method gets all necessary services etc.
56 
57 
59 {
61  ATH_CHECK( sc.isFailure() );
62  ATH_CHECK( m_tool.retrieve() );
63 
64  return StatusCode::SUCCESS;
65 }
66 
67 // createRep should create the bytestream from RDOs.
68 
70  IOpaqueAddress*& pAddr ) const
71 {
73  if( !SG::fromStorable( pObj, cp ) ) {
74  ATH_MSG_ERROR( " Cannot cast to CPBSCollectionV2" );
75  return StatusCode::FAILURE;
76  }
77 
78  const std::string nm = pObj->registry()->name();
79 
80  ByteStreamAddress* addr = new ByteStreamAddress( classID(), nm, "" );
81 
82  pAddr = addr;
83 
84  // Convert to ByteStream
85  return m_tool->convert( cp );
86 }
87 
88 } // end namespace
LVL1BS::CpByteStreamV2Cnv::classID
static const CLID & classID()
Definition: CpByteStreamV2Cnv.cxx:45
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
LVL1BS::CpByteStreamV2Cnv::storageType
static long storageType()
Definition: CpByteStreamV2Cnv.cxx:50
ROBData.h
Defines the ROB data entity. The ROB data is an abstract entity that is used to discase the raw event...
initialize
void initialize()
Definition: run_EoverP.cxx:894
CpByteStreamV2Cnv.h
LVL1BS::CpByteStreamV2Cnv::~CpByteStreamV2Cnv
virtual ~CpByteStreamV2Cnv()
Definition: CpByteStreamV2Cnv.cxx:39
IByteStreamEventAccess.h
AthConstConverter
Gaudi converter base class with const interfaces.
Definition: AthConstConverter.h:33
LVL1BS::CpByteStreamV2Cnv::CpByteStreamV2Cnv
CpByteStreamV2Cnv(ISvcLocator *svcloc)
Definition: CpByteStreamV2Cnv.cxx:33
AthenaPoolTestRead.sc
sc
Definition: AthenaPoolTestRead.py:27
CPBSCollectionV2.h
LVL1::CPBSCollectionV2
Cluster Processor container for writing bytestream.
Definition: CPBSCollectionV2.h:24
LVL1BS::CpByteStreamV2Cnv::initialize
virtual StatusCode initialize() override
Definition: CpByteStreamV2Cnv.cxx:58
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
ClassID_traits.h
a traits class that associates a CLID to a type T It also detects whether T inherits from Gaudi DataO...
RawEvent.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
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
ByteStreamAddress::storageType
static constexpr long storageType()
Definition: ByteStreamAddress.h:51
errorcheck.h
Helpers for checking error return status codes and reporting errors.
LArNewCalib_PedestalAutoCorr.cp
cp
Definition: LArNewCalib_PedestalAutoCorr.py:175
LVL1BS::CpByteStreamV2Cnv::createRepConst
virtual StatusCode createRepConst(DataObject *pObj, IOpaqueAddress *&pAddr) const override
Create ByteStream from Cp Container.
Definition: CpByteStreamV2Cnv.cxx:69
LVL1BS::CpByteStreamV2Cnv::m_tool
ToolHandle< LVL1BS::CpByteStreamV2Tool > m_tool
Tool that does the actual work.
Definition: CpByteStreamV2Cnv.h:50
DataVector.h
An STL vector of pointers that by default owns its pointed-to elements.
CalibCoolCompareRT.nm
nm
Definition: CalibCoolCompareRT.py:110
LVL1BS
Definition: ZdcByteStreamReadV1V2Tool.h:47
CpByteStreamV2Tool.h