ATLAS Offline Software
Toggle main menu visibility
Loading...
Searching...
No Matches
Trigger
TrigT1
TrigT1CaloByteStream
src
xaod
RodHeaderByteStreamxAODCnv.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
#include <vector>
6
#include <stdint.h>
7
8
#include "
ByteStreamCnvSvcBase/ByteStreamAddress.h
"
9
#include "
ByteStreamCnvSvcBase/IROBDataProviderSvc.h
"
10
11
#include "
ByteStreamData/RawEvent.h
"
12
#include "
ByteStreamData/ROBData.h
"
13
14
#include "
AthenaKernel/errorcheck.h
"
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 "
StoreGate/StoreGateSvc.h
"
24
25
#include "
xAODTrigL1Calo/RODHeader.h
"
26
#include "
xAODTrigL1Calo/RODHeaderContainer.h
"
27
#include "
xAODTrigL1Calo/RODHeaderAuxContainer.h
"
28
29
#include "
RodHeaderByteStreamxAODCnv.h
"
30
31
namespace
LVL1BS
{
32
33
RodHeaderByteStreamxAODCnv::RodHeaderByteStreamxAODCnv
(ISvcLocator* svcloc) :
34
Converter
(
storageType
(),
classID
(), svcloc),
35
AthMessaging
(svcloc != 0 ? msgSvc() : 0,
"RodHeaderByteStreamxAODCnv"
),
36
m_name
(
"RodHeaderByteStreamxAODCnv"
)
37
{
38
39
}
40
41
// CLID
42
43
CLID
RodHeaderByteStreamxAODCnv::classID
() {
44
return
ClassID_traits<xAOD::RODHeaderContainer>::ID
();
45
}
46
47
long
RodHeaderByteStreamxAODCnv::storageType
()
48
{
49
return
ByteStreamAddress::storageType
();
50
}
51
52
// Init method gets all necessary services etc.
53
54
55
StatusCode
RodHeaderByteStreamxAODCnv::initialize
() {
56
ATH_MSG_DEBUG
(
"Initializing "
<<
m_name
);
57
58
CHECK
(Converter::initialize());
59
//CHECK(m_readTool.retrieve());
60
return
StatusCode::SUCCESS;
61
}
62
63
// createObj should create the RDO from bytestream.
64
65
StatusCode
RodHeaderByteStreamxAODCnv::createObj
(IOpaqueAddress* pAddr,
66
DataObject*& pObj) {
67
ATH_MSG_DEBUG
(
"createObj() called"
);
68
// -------------------------------------------------------------------------
69
ByteStreamAddress
*pBS_Addr =
dynamic_cast<
ByteStreamAddress
*
>
(pAddr);
70
CHECK
(pBS_Addr !=
nullptr
);
71
// -------------------------------------------------------------------------
72
const
std::string nm = *(pBS_Addr->par());
73
const
std::string nmAux = nm +
"Aux."
;
74
ATH_MSG_DEBUG
(
"Creating xAOD::RODHeader interface objects '"
<< nm <<
"'"
);
75
76
xAOD::RODHeaderContainer
*
const
container =
77
new
xAOD::RODHeaderContainer
;
78
79
// Create link with AUX container
80
DataLink<xAOD::RODHeaderAuxContainer>
link(nmAux);
81
ATH_MSG_DEBUG
(
"Creating store with data link to '"
<< nmAux);
82
83
for
(
size_t
i=0; i < link->size(); ++i){
84
container->push_back(
new
xAOD::RODHeader
());
85
}
86
// ==========================================================================
87
container->
setStore
(link);
88
pObj =
SG::asStorable
(container);
89
ATH_MSG_DEBUG
(
"Number of RodHeaders created: "
<< container->size());
90
91
return
StatusCode::SUCCESS;
92
}
93
94
// createRep should create the bytestream from RDOs.
95
96
StatusCode
RodHeaderByteStreamxAODCnv::createRep
(DataObject*
/*pObj*/
,
97
IOpaqueAddress*&
/*pAddr*/
) {
98
return
StatusCode::FAILURE;
99
}
100
101
}
// end namespace
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition
AthMsgStreamMacros.h:29
ByteStreamAddress.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.
CHECK
#define CHECK(...)
Evaluate an expression and check for errors.
Definition
Control/AthenaKernel/AthenaKernel/errorcheck.h:422
CLID
uint32_t CLID
The Class ID type.
Definition
Event/xAOD/xAODCore/xAODCore/ClassID_traits.h:47
RODHeader.h
IROBDataProviderSvc.h
ROBData.h
Defines the ROB data entity. The ROB data is an abstract entity that is used to decouple the raw even...
RODHeaderAuxContainer.h
RODHeaderContainer.h
RawEvent.h
RodHeaderByteStreamxAODCnv.h
StorableConversions.h
convert to and from a SG storable
StoreGateSvc.h
AthMessaging::AthMessaging
AthMessaging(IMessageSvc *msgSvc, const std::string &name)
Constructor.
Definition
AthMessaging.cxx:13
ByteStreamAddress
IOpaqueAddress for ByteStreamCnvSvc, with ROB ids.
Definition
ByteStreamAddress.h:28
ByteStreamAddress::storageType
static constexpr long storageType()
Definition
ByteStreamAddress.h:51
Converter::Converter
Converter()
Definition
Converter.h:29
DataLink
Object reference supporting deferred reading from StoreGate.
Definition
AthLinks/DataLink.h:93
LVL1BS::RodHeaderByteStreamxAODCnv::createRep
virtual StatusCode createRep(DataObject *pObj, IOpaqueAddress *&pAddr)
Create ByteStream from TriggerTowers.
Definition
RodHeaderByteStreamxAODCnv.cxx:96
LVL1BS::RodHeaderByteStreamxAODCnv::initialize
virtual StatusCode initialize()
Definition
RodHeaderByteStreamxAODCnv.cxx:55
LVL1BS::RodHeaderByteStreamxAODCnv::RodHeaderByteStreamxAODCnv
RodHeaderByteStreamxAODCnv(ISvcLocator *svcloc)
Definition
RodHeaderByteStreamxAODCnv.cxx:33
LVL1BS::RodHeaderByteStreamxAODCnv::m_name
std::string m_name
Converter name.
Definition
RodHeaderByteStreamxAODCnv.h:53
LVL1BS::RodHeaderByteStreamxAODCnv::classID
static CLID classID()
Definition
RodHeaderByteStreamxAODCnv.cxx:43
LVL1BS::RodHeaderByteStreamxAODCnv::createObj
virtual StatusCode createObj(IOpaqueAddress *pAddr, DataObject *&pObj)
Create TriggerTowers from ByteStream.
Definition
RodHeaderByteStreamxAODCnv.cxx:65
LVL1BS::RodHeaderByteStreamxAODCnv::storageType
static long storageType()
Definition
RodHeaderByteStreamxAODCnv.cxx:47
SG::AuxVectorData::setStore
void setStore(SG::IAuxStore *store)
Set the store associated with this object.
Definition
AuxVectorData.cxx:116
LVL1BS
Definition
ZdcModifySlices.h:10
SG::asStorable
DataObject * asStorable(SG::DataObjectSharedPtr< T > pObject)
Definition
DataObjectSharedPtr.h:31
xAOD::RODHeaderContainer
RODHeaderContainer_v2 RODHeaderContainer
Define the latest version of the RODHeader container.
Definition
RODHeaderContainer.h:14
xAOD::RODHeader
RODHeader_v2 RODHeader
Define the latest version of the RODHeader class.
Definition
Event/xAOD/xAODTrigL1Calo/xAODTrigL1Calo/RODHeader.h:14
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