ATLAS Offline Software
Loading...
Searching...
No Matches
TileRawChannelContByteStreamCnv.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// Gaudi includes
6#include "GaudiKernel/MsgStream.h"
7#include "GaudiKernel/StatusCode.h"
8#include "GaudiKernel/DataObject.h"
9#include "GaudiKernel/IRegistry.h"
10#include "GaudiKernel/IToolSvc.h"
11#include "GaudiKernel/ServiceHandle.h"
12
13// Athena includes
16
21
24
25// Tile includes
31
32
33#include <string>
34#include <stdint.h>
35
37 : AthConstConverter(storageType(), classID(), svcloc, "TileRawChannelContByteStreamCnv")
38 , m_tool("TileRawChannelContByteStreamTool")
39 , m_byteStreamCnvSvc("ByteStreamCnvSvc", name())
40 , m_robSvc("ROBDataProviderSvc", name())
41 , m_decoder("TileROD_Decoder")
42 , m_hid2re(0)
43{
44}
45
47
49
51
52 ATH_MSG_DEBUG(" initialize ");
53
54 ATH_CHECK(Converter::initialize());
55
56 // Get ByteStreamCnvSvc
57 ATH_CHECK( m_byteStreamCnvSvc.retrieve() );
58
59 // retrieve Tool
60 ATH_CHECK( m_decoder.retrieve() );
61 m_hid2re = m_decoder->getHid2re();
62
63 ATH_CHECK( m_tool.retrieve() );
64
65 ATH_CHECK( m_robSvc.retrieve() );
66
67 return StatusCode::SUCCESS;
68}
69
70StatusCode TileRawChannelContByteStreamCnv::createObjConst(IOpaqueAddress* pAddr, DataObject*& pObj) const
71{
72 ATH_MSG_DEBUG(" Executing createObj method ");
73
74 ByteStreamAddress* pRE_Addr{};
75 ATH_CHECK( (pRE_Addr = dynamic_cast<ByteStreamAddress*>(pAddr)) != nullptr );
76
77 const EventContext& ctx = pRE_Addr->getEventContext();
78
79 const std::string containerName(*(pRE_Addr->par()));
80 bool isTMDB(containerName == std::string("MuRcvRawChCnt"));
81
82 uint32_t newrob = 0x0;
83
84
85 std::vector<uint32_t> robid(1);
86 robid[0] = 0;
87 std::vector<const ROBDataProviderSvc::ROBF*> robf;
88
89 TileMutableRawChannelContainer* cont = m_queue.get (true);
90 ATH_CHECK( cont->status() );
91
92 if (isTMDB) {
94 } else {
96 }
97
98 std::unordered_map<uint32_t,int> bsflags;
99 uint32_t flag;
100
101 // iterate over all collections in a container and fill them
102 for (IdentifierHash hash : cont->GetAllCurrentHashes()) {
103 TileRawChannelCollection* rawChannelCollection = cont->indexFindPtr (hash);
104 rawChannelCollection->clear();
105 TileRawChannelCollection::ID collID = rawChannelCollection->identify();
106
107 // find ROB
108 if (isTMDB) {
109 newrob = m_hid2re->getRobFromTileMuRcvFragID(collID);
110 } else {
111 newrob = m_hid2re->getRobFromFragID(collID);
112 }
113
114 if (newrob != robid[0]) {
115 robid[0] = newrob;
116 robf.clear();
117 m_robSvc->getROBData(ctx, robid, robf);
118 }
119
120 // unpack ROB data
121 if (robf.size() > 0 ) {
122 if (isTMDB) {// reid for TMDB 0x5x010x
123 m_decoder->fillCollection_TileMuRcv_RawChannel(robf[0], *rawChannelCollection);
124 } else {
125 m_decoder->fillCollection(robf[0], *rawChannelCollection, cont);
126 }
127 flag = cont->get_bsflags();
128 auto result = bsflags.insert(std::pair<uint32_t, int>(flag, 1));
129 if (result.second == false) result.first->second++;
130 } else {
131 ATH_MSG_DEBUG( "ROB for " << ((isTMDB)?"TMDB ":"") << "drawer 0x" << MSG::hex << collID << MSG::dec << " not found in BS" );
133 rawChannelCollection->setFragGlobalCRC(status);
134 ATH_MSG_DEBUG( "Status for " << ((isTMDB)?"TMDB ":"") << "drawer 0x" << MSG::hex << collID << " is 0x" << status << MSG::dec);
135 }
136 }
137
138 if (bsflags.size() > 1) {
139 int n=0;
140 for (const auto & elem : bsflags) {
141 if (elem.second > n) {
142 n = elem.second;
143 flag = elem.first;
144 }
145 }
146
147 if (flag != cont->get_bsflags()) {
148
149 uint32_t unit = ((flag & 0xC0000000) >> 30);
150 if ((flag & 0x30000000) < 0x30000000) unit += TileRawChannelUnit::OnlineOffset; // Online units in real data
151
152 ATH_MSG_DEBUG( "Changing units for " << ((isTMDB)?"TMDB ":"") << "RawChannelContainer from "
153 << cont->get_unit() << " to " << unit << MSG::hex
154 << " and BS flags from 0x" << cont->get_bsflags() << " to 0x" << flag << MSG::dec);
155
157 cont->set_bsflags(flag);
158 }
159 }
160
161 ATH_MSG_DEBUG( "Creating raw channel container: " << containerName );
162
163 TileRawChannelContainer* basecont = cont;
164 pObj = SG::asStorable( basecont );
165
166
167 return StatusCode::SUCCESS;
168}
169
170StatusCode TileRawChannelContByteStreamCnv::createRepConst(DataObject* pObj, IOpaqueAddress*& pAddr) const
171{
172 // convert TileRawChannels in the container into ByteStream
173
174 ATH_MSG_DEBUG(" Executing createRep method ");
175
176 // uint32_t runnum = re->header()->specific_part()->run_no();
177
178 std::string key("Tile");
179
180 // get Full Event Assembler
182 ATH_CHECK( m_byteStreamCnvSvc->getFullEventAssembler(fea, key) );
183
184 // create TileRawChannelContainer
185 TileRawChannelContainer* rccont(0) ;
186 SG::fromStorable(pObj, rccont );
187 if(!rccont){
188 ATH_MSG_ERROR(" Can not cast to TileRawChannelContainer ");
189 return StatusCode::FAILURE;
190 }
191
192 std::string name = pObj->registry()->name();
193
194 if ( pAddr != nullptr ) pAddr->release();
195 ByteStreamAddress* addr = new ByteStreamAddress(classID(), name, "");
196 pAddr = addr;
197 pAddr->addRef();
198
199 ATH_CHECK( m_tool->convert(rccont, fea) );
200
201 return StatusCode::SUCCESS;
202}
203
205{
206 return Converter::finalize();
207}
208
const PlainObject unit() const
This is a plugin that makes Eigen look like CLHEP & defines some convenience methods.
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_DEBUG(x)
macros to associate a CLID to a type
Helpers for checking error return status codes and reporting errors.
uint32_t CLID
The Class ID type.
convert to and from a SG storable
Incident sent after a store is cleared.
TileMutableDataContainer< TileRawChannelContainer > TileMutableRawChannelContainer
AthConstConverter(long storage_type, const CLID &class_type, ISvcLocator *svc, const std::string &name)
const std::string & name() const
IOpaqueAddress for ByteStreamCnvSvc, with ROB ids.
const EventContext & getEventContext() const
static constexpr long storageType()
Template class for assembling a full atlas raw event from subfragments.
virtual std::vector< IdentifierHash > GetAllCurrentHashes() const override final
Returns a collection of all hashes availiable in this IDC.
This is a "hash" representation of an Identifier.
StatusCode status() const
Return the error status from the constructors.
Collection * indexFindPtr(IdentifierHash hash)
Look up a (non-const) collection via hash.
void setFragGlobalCRC(uint32_t globalcrc)
Various set methods.
void clear()
Clear everything for next event.
ToolHandle< TileROD_Decoder > m_decoder
Pointer to TileROD_Decoder.
ServiceHandle< IROBDataProviderSvc > m_robSvc
Pointer to IROBDataProviderSvc.
virtual StatusCode createObjConst(IOpaqueAddress *pAddr, DataObject *&pObj) const override
Create the transient representation of an object.
virtual StatusCode createRepConst(DataObject *pObj, IOpaqueAddress *&pAddr) const override
Convert the transient object to the requested representation.
ServiceHandle< IByteStreamCnvSvc > m_byteStreamCnvSvc
ToolHandle< TileRawChannelContByteStreamTool > m_tool
const TileHid2RESrcID * m_hid2re
Pointer to TileHid2RESrcID.
void set_bsflags(uint32_t bsflags)
uint32_t get_bsflags() const
bool fromStorable(DataObject *pDObj, T *&pTrans, bool quiet=false, IRegisterTransient *irt=0, bool isConst=true)
DataObject * asStorable(SG::DataObjectSharedPtr< T > pObject)