ATLAS Offline Software
Loading...
Searching...
No Matches
CmxCpTobByteStreamAuxCnv.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
5// ============================================================================
6// Includes
7// ============================================================================
8// STD
9// ============================================================================
10#include <vector>
11#include <cstdint>
12#include <memory>
13#include <algorithm>
14// ============================================================================
15// Athena
16// ============================================================================
19
22
24#include "GaudiKernel/DataObject.h"
25#include "GaudiKernel/IOpaqueAddress.h"
26#include "GaudiKernel/IRegistry.h"
27#include "GaudiKernel/ISvcLocator.h"
28#include "GaudiKernel/StatusCode.h"
29
33
34// ============================================================================
35// TrigT1
36// ============================================================================
38// ============================================================================
39// xAOD
40// ============================================================================
44// ============================================================================
45// Local
46// ============================================================================
49#include "../ToString.h"
50// ============================================================================
51
52namespace LVL1BS {
54 Converter(storageType(), classID(), svcloc),
55 AthMessaging(svcloc != 0 ? msgSvc() : 0, "CmxCpTobByteStreamAuxCnv"),
56 m_name("CmxCpTobByteStreamAuxCnv"),
57 m_readTool("LVL1BS::CpByteStreamV2Tool/CpByteStreamV2Tool")
58{
59}
60
64
69
70// Init method gets all necessary services etc.
71
73 ATH_MSG_DEBUG("Initializing " << m_name);
74
75 CHECK(Converter::initialize());
76 CHECK(m_readTool.retrieve());
77
78 return StatusCode::SUCCESS;
79}
80
81// createObj should create the RDO from bytestream.
82StatusCode CmxCpTobByteStreamAuxCnv::createObj(IOpaqueAddress* pAddr,
83 DataObject*& pObj) {
84 ATH_MSG_DEBUG("createObj() called");
85 // -------------------------------------------------------------------------
86 ByteStreamAddress *pBS_Addr = dynamic_cast<ByteStreamAddress *>(pAddr);
87 CHECK(pBS_Addr != nullptr);
88 // -------------------------------------------------------------------------
89 const std::string nm = *(pBS_Addr->par());
90 ATH_MSG_DEBUG("Creating Objects " << nm);
91
93 xAOD::CMXCPTobContainer cpmCollection;
94 cpmCollection.setStore(aux);
95 // -------------------------------------------------------------------------
96 DataVector<LVL1::CMXCPTob> cmxCpTobVector;
97 StatusCode sc = m_readTool->convert(nm, &cmxCpTobVector);
98 if (sc.isFailure()) {
99 ATH_MSG_ERROR("Failed to create objects");
100 delete aux;
101 return sc;
102 }
103
104 for (auto ct : cmxCpTobVector) {
105 xAOD::CMXCPTob* item = new xAOD::CMXCPTob();
106 cpmCollection.push_back(item);
107 std::vector<uint8_t> energyVec(ct->energyVec().begin(), ct->energyVec().end());
108 std::vector<uint8_t> isolationVec(ct->isolationVec().begin(), ct->isolationVec().end());
109 std::vector<uint32_t> errorVec(ct->errorVec().begin(), ct->errorVec().end());
110 std::vector<uint16_t> presenceMapVec(ct->presenceMapVec().begin(), ct->presenceMapVec().end());
111
112 item->initialize(ct->crate(), ct->cmx(),
113 ct->cpm(), ct->chip(), ct->location(),
114 energyVec,
115 isolationVec,
116 errorVec,
117 presenceMapVec,
118 ct->peak());
119 }
120
121 // -------------------------------------------------------------------------
122 //ATH_MSG_VERBOSE(ToString(cpmCollection));
123 ATH_MSG_DEBUG("Number of readed CMXCPTob: " << aux->size());
124 // -------------------------------------------------------------------------
125 pObj = SG::asStorable(aux);
126 return StatusCode::SUCCESS;
127}
128
129// createRep should create the bytestream from RDOs.
130StatusCode CmxCpTobByteStreamAuxCnv::createRep(DataObject* /*pObj*/,
131 IOpaqueAddress*& /*pAddr*/) {
132 return StatusCode::FAILURE;
133}
134
135} // end namespace
#define ATH_MSG_ERROR(x)
#define ATH_MSG_DEBUG(x)
a traits class that associates a CLID to a type T It also detects whether T inherits from Gaudi DataO...
Helpers for checking error return status codes and reporting errors.
#define CHECK(...)
Evaluate an expression and check for errors.
uint32_t CLID
The Class ID type.
static Double_t sc
Defines the ROB data entity. The ROB data is an abstract entity that is used to decouple the raw even...
convert to and from a SG storable
AthMessaging(IMessageSvc *msgSvc, const std::string &name)
Constructor.
IOpaqueAddress for ByteStreamCnvSvc, with ROB ids.
static constexpr long storageType()
Derived DataVector<T>.
Definition DataVector.h:795
value_type push_back(value_type pElem)
Add an element to the end of the collection.
virtual StatusCode createObj(IOpaqueAddress *pAddr, DataObject *&pObj)
Create TriggerTowers from ByteStream.
ToolHandle< CpByteStreamV2Tool > m_readTool
Do the main job - retrieve xAOD TriggerTowers from robs.
virtual StatusCode createRep(DataObject *pObj, IOpaqueAddress *&pAddr)
Create ByteStream from TriggerTowers.
DataObject * asStorable(SG::DataObjectSharedPtr< T > pObject)
CMXCPTobContainer_v1 CMXCPTobContainer
Define the latest version of the CMXCPTob class.
CMXCPTobAuxContainer_v1 CMXCPTobAuxContainer
Define the latest version of the CMXCPTob class.
CMXCPTob_v1 CMXCPTob
Define the latest version of the CMXCPTob class.