ATLAS Offline Software
Toggle main menu visibility
Loading...
Searching...
No Matches
Trigger
TrigT1
TrigT1CaloByteStream
src
xaod
JetElementByteStreamxAODCnv.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/JetElement.h
"
26
#include "
xAODTrigL1Calo/JetElementContainer.h
"
27
#include "
xAODTrigL1Calo/JetElementAuxContainer.h
"
28
29
#include "
JetElementByteStreamxAODCnv.h
"
30
31
namespace
LVL1BS
{
32
33
JetElementByteStreamxAODCnv::JetElementByteStreamxAODCnv
(ISvcLocator* svcloc) :
34
Converter
(
storageType
(),
classID
(), svcloc),
35
AthMessaging
(svcloc != 0 ? msgSvc() : 0,
"JetElementByteStreamxAODCnv"
),
36
m_name
(
"JetElementByteStreamxAODCnv"
)
37
{
38
39
}
40
41
// CLID
42
43
CLID
JetElementByteStreamxAODCnv::classID
() {
44
return
ClassID_traits<xAOD::JetElementContainer>::ID
();
45
}
46
47
long
JetElementByteStreamxAODCnv::storageType
()
48
{
49
return
ByteStreamAddress::storageType
();
50
}
51
52
// Init method gets all necessary services etc.
53
54
55
StatusCode
JetElementByteStreamxAODCnv::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
JetElementByteStreamxAODCnv::createObj
(IOpaqueAddress* pAddr,
66
DataObject*& pObj) {
67
ATH_MSG_DEBUG
(
"createObj() called"
);
68
// -------------------------------------------------------------------------
69
ByteStreamAddress
*pBS_Addr =
dynamic_cast<
ByteStreamAddress
*
>
(pAddr);
70
if
(not pBS_Addr)
return
StatusCode::FAILURE;
71
// -------------------------------------------------------------------------
72
const
std::string nm = *(pBS_Addr->par());
73
const
std::string nmAux = nm +
"Aux."
;
74
ATH_MSG_DEBUG
(
"Creating xAOD::JetElement interface objects '"
<< nm <<
"'"
);
75
76
xAOD::JetElementContainer
*
const
container =
77
new
xAOD::JetElementContainer
;
78
79
// Create link with AUX container
80
DataLink<xAOD::JetElementAuxContainer>
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::JetElement
());
85
}
86
// ==========================================================================
87
container->
setStore
(link);
88
pObj =
SG::asStorable
(container);
89
ATH_MSG_DEBUG
(
"Number of JetElements created: "
<< container->size());
90
91
return
StatusCode::SUCCESS;
92
}
93
94
// createRep should create the bytestream from RDOs.
95
96
StatusCode
JetElementByteStreamxAODCnv::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
JetElement.h
IROBDataProviderSvc.h
JetElementAuxContainer.h
JetElementByteStreamxAODCnv.h
JetElementContainer.h
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
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::JetElementByteStreamxAODCnv::storageType
static long storageType()
Definition
JetElementByteStreamxAODCnv.cxx:47
LVL1BS::JetElementByteStreamxAODCnv::createRep
virtual StatusCode createRep(DataObject *pObj, IOpaqueAddress *&pAddr)
Create ByteStream from TriggerTowers.
Definition
JetElementByteStreamxAODCnv.cxx:96
LVL1BS::JetElementByteStreamxAODCnv::initialize
virtual StatusCode initialize()
Definition
JetElementByteStreamxAODCnv.cxx:55
LVL1BS::JetElementByteStreamxAODCnv::JetElementByteStreamxAODCnv
JetElementByteStreamxAODCnv(ISvcLocator *svcloc)
Definition
JetElementByteStreamxAODCnv.cxx:33
LVL1BS::JetElementByteStreamxAODCnv::classID
static CLID classID()
Definition
JetElementByteStreamxAODCnv.cxx:43
LVL1BS::JetElementByteStreamxAODCnv::m_name
std::string m_name
Converter name.
Definition
JetElementByteStreamxAODCnv.h:53
LVL1BS::JetElementByteStreamxAODCnv::createObj
virtual StatusCode createObj(IOpaqueAddress *pAddr, DataObject *&pObj)
Create TriggerTowers from ByteStream.
Definition
JetElementByteStreamxAODCnv.cxx:65
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::JetElementContainer
JetElementContainer_v2 JetElementContainer
Define the latest version of the JetElement container.
Definition
JetElementContainer.h:15
xAOD::JetElement
JetElement_v2 JetElement
Define the latest version of the JetElement class.
Definition
Event/xAOD/xAODTrigL1Calo/xAODTrigL1Calo/JetElement.h:16
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