ATLAS Offline Software
Toggle main menu visibility
Loading...
Searching...
No Matches
Trigger
TrigT1
TrigT1CaloByteStream
src
CpByteStreamV2Cnv.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
6
#include <vector>
7
8
#include "
ByteStreamCnvSvcBase/ByteStreamAddress.h
"
9
10
#include "
ByteStreamData/RawEvent.h
"
11
#include "
ByteStreamData/ROBData.h
"
12
13
#include "
AthContainers/DataVector.h
"
14
15
#include "GaudiKernel/DataObject.h"
16
#include "GaudiKernel/IOpaqueAddress.h"
17
#include "GaudiKernel/IRegistry.h"
18
#include "GaudiKernel/ISvcLocator.h"
19
#include "GaudiKernel/StatusCode.h"
20
21
#include "
AthenaKernel/ClassID_traits.h
"
22
#include "
AthenaKernel/StorableConversions.h
"
23
#include "
AthenaKernel/errorcheck.h
"
24
25
#include "
TrigT1CaloEvent/CPBSCollectionV2.h
"
26
27
#include "
CpByteStreamV2Cnv.h
"
28
#include "
CpByteStreamV2Tool.h
"
29
30
namespace
LVL1BS
{
31
32
CpByteStreamV2Cnv::CpByteStreamV2Cnv
( ISvcLocator* svcloc )
33
:
AthConstConverter
(
storageType
(),
classID
(), svcloc,
"CpByteStreamV2Cnv"
),
34
m_tool
(
"LVL1BS::CpByteStreamV2Tool/CpByteStreamV2Tool"
)
35
{
36
}
37
38
CpByteStreamV2Cnv::~CpByteStreamV2Cnv
()
39
{
40
}
41
42
// CLID
43
44
CLID
CpByteStreamV2Cnv::classID
()
45
{
46
return
ClassID_traits<LVL1::CPBSCollectionV2>::ID
();
47
}
48
49
long
CpByteStreamV2Cnv::storageType
()
50
{
51
return
ByteStreamAddress::storageType
();
52
}
53
54
// Init method gets all necessary services etc.
55
56
57
StatusCode
CpByteStreamV2Cnv::initialize
()
58
{
59
StatusCode
sc
= Converter::initialize();
60
ATH_CHECK
(
sc
.isFailure() );
61
ATH_CHECK
(
m_tool
.retrieve() );
62
63
return
StatusCode::SUCCESS;
64
}
65
66
// createRep should create the bytestream from RDOs.
67
68
StatusCode
CpByteStreamV2Cnv::createRepConst
( DataObject* pObj,
69
IOpaqueAddress*& pAddr )
const
70
{
71
LVL1::CPBSCollectionV2
* cp = 0;
72
if
( !
SG::fromStorable
( pObj, cp ) ) {
73
ATH_MSG_ERROR
(
" Cannot cast to CPBSCollectionV2"
);
74
return
StatusCode::FAILURE;
75
}
76
77
const
std::string nm = pObj->registry()->name();
78
79
ByteStreamAddress
* addr =
new
ByteStreamAddress
(
classID
(), nm,
""
);
80
81
pAddr = addr;
82
83
// Convert to ByteStream
84
return
m_tool
->convert( cp );
85
}
86
87
}
// end namespace
ATH_CHECK
#define ATH_CHECK
Evaluate an expression and check for errors.
Definition
AthCheckMacros.h:40
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition
AthMsgStreamMacros.h:33
ByteStreamAddress.h
CPBSCollectionV2.h
ClassID_traits.h
a traits class that associates a CLID to a type T It also detects whether T inherits from Gaudi DataO...
errorcheck.h
Helpers for checking error return status codes and reporting errors.
CpByteStreamV2Cnv.h
CpByteStreamV2Tool.h
DataVector.h
An STL vector of pointers that by default owns its pointed-to elements.
CLID
uint32_t CLID
The Class ID type.
Definition
Event/xAOD/xAODCore/xAODCore/ClassID_traits.h:47
sc
static Double_t sc
Definition
LArPhysWaveHECTool.cxx:37
ROBData.h
Defines the ROB data entity. The ROB data is an abstract entity that is used to decouple the raw even...
RawEvent.h
StorableConversions.h
convert to and from a SG storable
AthConstConverter::AthConstConverter
AthConstConverter(long storage_type, const CLID &class_type, ISvcLocator *svc, const std::string &name)
Definition
AthConstConverter.h:35
ByteStreamAddress
IOpaqueAddress for ByteStreamCnvSvc, with ROB ids.
Definition
ByteStreamAddress.h:28
ByteStreamAddress::storageType
static constexpr long storageType()
Definition
ByteStreamAddress.h:51
LVL1BS::CpByteStreamV2Cnv::createRepConst
virtual StatusCode createRepConst(DataObject *pObj, IOpaqueAddress *&pAddr) const override
Create ByteStream from Cp Container.
Definition
CpByteStreamV2Cnv.cxx:68
LVL1BS::CpByteStreamV2Cnv::storageType
static long storageType()
Definition
CpByteStreamV2Cnv.cxx:49
LVL1BS::CpByteStreamV2Cnv::CpByteStreamV2Cnv
CpByteStreamV2Cnv(ISvcLocator *svcloc)
Definition
CpByteStreamV2Cnv.cxx:32
LVL1BS::CpByteStreamV2Cnv::initialize
virtual StatusCode initialize() override
Definition
CpByteStreamV2Cnv.cxx:57
LVL1BS::CpByteStreamV2Cnv::~CpByteStreamV2Cnv
virtual ~CpByteStreamV2Cnv()
Definition
CpByteStreamV2Cnv.cxx:38
LVL1BS::CpByteStreamV2Cnv::m_tool
ToolHandle< LVL1BS::CpByteStreamV2Tool > m_tool
Tool that does the actual work.
Definition
CpByteStreamV2Cnv.h:49
LVL1BS::CpByteStreamV2Cnv::classID
static CLID classID()
Definition
CpByteStreamV2Cnv.cxx:44
LVL1::CPBSCollectionV2
Cluster Processor container for writing bytestream.
Definition
CPBSCollectionV2.h:24
LVL1BS
Definition
ZdcModifySlices.h:10
SG::fromStorable
bool fromStorable(DataObject *pDObj, T *&pTrans, bool quiet=false, IRegisterTransient *irt=0, bool isConst=true)
Definition
StorableConversions.h:169
ClassID_traits::ID
static constexpr CLID ID()
Definition
Control/AthenaKernel/AthenaKernel/ClassID_traits.h:44
Generated on
for ATLAS Offline Software by
1.17.0