ATLAS Offline Software
Loading...
Searching...
No Matches
LArRawCalibDataReadingAlg.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
13#include "eformat/Version.h"
14#include "eformat/index.h"
15
20
21#include "LArFebHeaderReader.h"
22
23LArRawCalibDataReadingAlg::LArRawCalibDataReadingAlg(const std::string& name, ISvcLocator* pSvcLocator) :
24 AthReentrantAlgorithm(name, pSvcLocator) {}
25
27
28 if (m_DigitKey.key().size()>0) {
29 ATH_CHECK(m_DigitKey.initialize());
30 m_doDigits=true;
31 }
32 else {
33 m_doDigits=false;
34 }
35
36 if (m_calibDigitKey.key().size()>0) {
37 ATH_CHECK(m_calibDigitKey.initialize());
38 m_doCalibDigits=true;
39 }
40 else {
41 m_doCalibDigits=false;
42 }
43
44 if (m_accDigitKey.key().size()>0) {
45 ATH_CHECK(m_accDigitKey.initialize());
46 m_doAccDigits=true;
47 }
48 else {
49 m_doAccDigits=false;
50 }
51
52 if (m_accCalibDigitKey.key().size()>0) {
53 ATH_CHECK(m_accCalibDigitKey.initialize());
55 }
56 else {
58 }
59
60 if (m_febHeaderKey.key().size()>0) {
61 ATH_CHECK(m_febHeaderKey.initialize());
62 m_doFebHeaders=true;
63 }
64 else {
65 m_doFebHeaders=false;
66 }
67
69 ATH_MSG_FATAL("Needs ether Digits or CalibDigits or AccDigits or AccCalibDigit Key");
70 return StatusCode::FAILURE;
71 }
72
74 ATH_MSG_FATAL("Could not have both CalibDigits, AccCalibDigits Key");
75 return StatusCode::FAILURE;
76 }
77
79 ATH_MSG_FATAL("Could not have AccDigits with Calib Key");
80 return StatusCode::FAILURE;
81 }
82
84 ATH_CHECK(detStore()->retrieve(m_onlineId,"LArOnlineID"));
85
86 ATH_CHECK(m_CLKey.initialize());
87
88
89 //Fill FT list if only Barrel/EC and side is given:
90 if (m_vBEPreselection.size() && m_vPosNegPreselection.size() && m_vFTPreselection.size()==0) {
91 std::set<unsigned> fts;
92 if (std::find(m_vBEPreselection.begin(),m_vBEPreselection.end(),0)!=m_vBEPreselection.end()) { //Barrel selected
93 fts.insert({0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31});
94 }
95 if (std::find(m_vBEPreselection.begin(),m_vBEPreselection.end(),1)!=m_vBEPreselection.end()) { //Endcap selected
96 fts.insert({0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24});
97 }
98 m_vFTPreselection.value().insert(m_vFTPreselection.begin(),fts.begin(),fts.end());
99 }
100
101 //Build list of preselected Feedthroughs
102 if (m_vBEPreselection.size() && m_vPosNegPreselection.size() && m_vFTPreselection.size()) {
103 ATH_MSG_INFO("Building list of selected feedthroughs");
104 for (const unsigned iBE : m_vBEPreselection) {
105 for (const unsigned iPN: m_vPosNegPreselection) {
106 for (const unsigned iFT: m_vFTPreselection) {
107 HWIdentifier finalFTId=m_onlineId->feedthrough_Id(iBE,iPN,iFT);
108 //unsigned int finalFTId32 = finalFTId.get_identifier32().get_compact();
109 ATH_MSG_INFO("Adding feedthrough Barrel/Endcap=" << iBE << " pos/neg=" << iPN << " FT=" << iFT
110 << " (0x" << std::hex << finalFTId.get_identifier32().get_compact() << std::dec << ")");
111 m_vFinalPreselection.insert(finalFTId);
112 }
113 }
114 }
115 }//end if something set
116
117 if (!m_subCaloPreselection.value().empty()) {
118 ATH_MSG_INFO("Adding list of selected subcalo"<<m_subCaloPreselection.value());
119 std::set<HWIdentifier> subcaloFTs;
120 if (m_subCaloPreselection.value().compare("EM")==0) {
121 for (auto febid : m_onlineId->feb_range()) {
122 if (m_onlineId->isEMBchannel(febid) || m_onlineId->isEMECchannel(febid)) {
123 subcaloFTs.insert(m_onlineId->feedthrough_Id(febid));
124 }
125 }
126 }
127 else if (m_subCaloPreselection.value().find("HEC")!=std::string::npos || m_subCaloPreselection.value().find("FCAL")!=std::string::npos) {
128 if (m_subCaloPreselection.value().find("HEC")!=std::string::npos) {
129 for (auto febid : m_onlineId->feb_range()) {
130 if (m_onlineId->isHECchannel(febid)) {
131 subcaloFTs.insert(m_onlineId->feedthrough_Id(febid));
132 }
133 }
134 }
135 if (m_subCaloPreselection.value().find("FCAL")!=std::string::npos) {
136 for (auto febid : m_onlineId->feb_range()) {
137 if (m_onlineId->isFCALchannel(febid)) {
138 subcaloFTs.insert(m_onlineId->feedthrough_Id(febid));
139 }
140 }
141 }
142 } else {
143 ATH_MSG_ERROR("Configuration problem, property 'SubCaloPreselection' set to " << m_subCaloPreselection.value() << ", expect 'EM', 'HEC' or 'FCAL'");
144 return StatusCode::FAILURE;
145 }
146 std::cout << "set sizes:" << subcaloFTs.size() << ", " << m_vFinalPreselection.size() << std::endl;
147 if (m_vFinalPreselection.size()>0) {
148 //Form the intersection of the preselection give as subdet and side/FT/slot
149 for(auto it = m_vFinalPreselection.begin(); it != m_vFinalPreselection.end(); ) {
150 if (subcaloFTs.find(*it)==subcaloFTs.end())
151 it=m_vFinalPreselection.erase(it);
152 else
153 ++it;
154 }
155 if (m_vFinalPreselection.empty()) {
156 ATH_MSG_WARNING("Apparently inconistent configuration of FT preselections. No preselection left after intersecting 'SubCaloPreselection' with 'PosNeg/BE/FT' preselection");
157 }
158 }
159 else {
160 m_vFinalPreselection.swap(subcaloFTs);
161 }
162 }//end if subCaloPreselection set
163
164 if (!m_vFinalPreselection.empty()) {
165 ATH_MSG_INFO("Give pre-selection covers " << m_vFinalPreselection.size() << " feedthroughts. Will ignore bytestream data from other feedthroughs.");
166 }
167
168 return StatusCode::SUCCESS;
169}
170
171StatusCode LArRawCalibDataReadingAlg::execute(const EventContext& ctx) const {
172 LArDigitContainer* digits=nullptr;
173 LArCalibDigitContainer* cdigits=nullptr;
174 LArAccumulatedDigitContainer* accdigits=nullptr;
175 LArAccumulatedCalibDigitContainer* caccdigits=nullptr;
176 LArFebHeaderContainer* febHeaders=nullptr;
177
178 if (m_doDigits) {
180 ATH_CHECK(digitsHdl.record(std::make_unique<LArDigitContainer>()));
181 digits=digitsHdl.ptr();
182 digits->reserve(200000); //Enough space for the full calo
183 }
184
185 if (m_doCalibDigits) {
187 ATH_CHECK(cdigitsHdl.record(std::make_unique<LArCalibDigitContainer>()));
188 cdigits=cdigitsHdl.ptr();
189 cdigits->reserve(200000); //Enough space for the full calo
190 }
191
192 if (m_doAccDigits) {
194 ATH_CHECK(accdigitsHdl.record(std::make_unique<LArAccumulatedDigitContainer>()));
195 accdigits=accdigitsHdl.ptr();
196 accdigits->reserve(200000); //Enough space for the full calo
197 }
198
199 if (m_doAccCalibDigits) {
201 ATH_CHECK(caccdigitsHdl.record(std::make_unique<LArAccumulatedCalibDigitContainer>()));
202 caccdigits=caccdigitsHdl.ptr();
203 caccdigits->reserve(200000); //Enough space for the full calo
204 }
205
206 if (m_doFebHeaders) {
208 ATH_CHECK(febHeadersHdl.record(std::make_unique<LArFebHeaderContainer>()));
209 febHeaders=febHeadersHdl.ptr();
210 febHeaders->reserve(1524); //Total number of LAr Front End Boards
211 }
212
213 //Get full events and filter out LAr ROBs
214 const RawEvent* fullEvent=m_robDataProviderSvc->getEvent(ctx);
215 std::map<eformat::SubDetectorGroup, std::vector<const uint32_t*> > rawEventTOC;
216 eformat::helper::build_toc(*fullEvent, rawEventTOC);
217 auto larRobs=rawEventTOC.find(eformat::LAR);
218 if (larRobs==rawEventTOC.end()) {
219 ATH_MSG_DEBUG("No LAr data found in this event.");
220 return StatusCode::SUCCESS;
221 }
222
223
224 std::unique_ptr<LArRodBlockStructure> rodBlock;
225 uint16_t rodMinorVersion=0x0;
226 uint32_t rodBlockType=0x0;
227
228 const LArCalibLineMapping *calibMap=nullptr;
229 if (m_doAccCalibDigits) {
231 calibMap = *clHdl;
232 if(!calibMap) {
233 ATH_MSG_ERROR( "Do not have calib line mapping !!!" );
234 return StatusCode::FAILURE;
235 }
236 }
237
238 for (const uint32_t* robPtr : larRobs->second) {
240 ATH_MSG_VERBOSE("Decoding ROB fragment 0x" << std::hex << rob.rob_source_id () << " with " << std::dec << rob.rod_fragment_size_word() << "ROB words");
241
242 if (rob.rod_fragment_size_word() <3) {
243 ATH_MSG_ERROR("Encountered corrupt ROD fragment, less than 3 words!");
244 if (m_failOnCorruption) {
245 return StatusCode::FAILURE;
246 }else
247 continue; //Jump to next ROD block
248 }else if(rob.rob_source_id()& 0x1000 ){
249 ATH_MSG_VERBOSE(" skip Latome fragment with source ID "<< std::hex << rob.rob_source_id());
250 rodBlock=nullptr;
251 continue;
252 }
253
254 eformat::helper::Version ver(rob.rod_version());
255 //(re-)init rodBlock only once per event or if (very unlikly or even impossible) some FEBs have a differnt firmware
256 if (rodBlock==nullptr || rodMinorVersion !=ver.minor_version() || rodBlockType!=(rob.rod_detev_type()&0xff)) {
257 rodMinorVersion=ver.minor_version();
258 rodBlockType=rob.rod_detev_type()&0xff;
259 ATH_MSG_VERBOSE("Found version " << rodMinorVersion << " of Rod Block Type " << rodBlockType);
260 if (rodBlockType==10) { // Accumulated digits
261 rodBlock.reset(new LArRodBlockAccumulatedV3);
262 }//end of rodBlockType ==10
263 else if (rodBlockType==7 || rodBlockType==2) { // Calib. digits
264 if(rodMinorVersion>=6) { // Accumulated calib. digits
265 rodBlock.reset(new LArRodBlockCalibrationV3);
266 } else {
267 ATH_MSG_ERROR("Found unsupported ROD Block version " << rodMinorVersion
268 << " of ROD block type " << rodBlockType);
269 return m_failOnCorruption ? StatusCode::FAILURE : StatusCode::SUCCESS;
270 }
271 } else {
272 ATH_MSG_ERROR("Found unsupported Rod block type " << rodBlockType << " in ROB sourceId: 0x" << std::hex << rob.rob_source_id () << std::dec
273 << ", ROD source ID: 0x" << rob.rod_source_id() << std::dec);
275 return StatusCode::FAILURE;
276 else
277 continue; //Jump to next ROD block
278 }
279 }//End if need to re-init RodBlock
280
281 const uint32_t* pData=rob.rod_data();
282 const uint32_t nData=rob.rod_ndata();
283 if (!rodBlock->setFragment(pData,nData)) {
284 ATH_MSG_ERROR("Failed to assign fragment pointer to LArRodBlockStructure");
285 return StatusCode::FAILURE;
286 }
287
288 if(m_verifyChecksum) {
289 const uint32_t onsum = rodBlock->onlineCheckSum();
290 const uint32_t offsum = rodBlock->offlineCheckSum();
291 if(onsum!=offsum) {
292 ATH_MSG_ERROR("Checksum error:");
293 ATH_MSG_ERROR("online checksum = 0x" << MSG::hex << onsum);
294 ATH_MSG_ERROR("offline checksum = 0x" << MSG::hex << offsum << MSG::dec);
296 return StatusCode::FAILURE;
297 else
298 continue; //Jump to the next ROD-block
299 }
300 }
301
302 //Loop over FEBs in ROD:
303 do {
304 HWIdentifier fId(Identifier32(rodBlock->getFEBID()));
305 if (!m_onlineId->isValidId(fId)) {
306 ATH_MSG_ERROR("Invalid FEB identifer 0x" << std::hex << fId.get_identifier32().get_compact());
308 return StatusCode::FAILURE;
309 else
310 continue;
311 }
312
313 if (m_vFinalPreselection.size()) {
314 const auto ftId=m_onlineId->feedthrough_Id(fId);
315 if (m_vFinalPreselection.find(ftId)==m_vFinalPreselection.end()) {
316 ATH_MSG_DEBUG("Feedthrough with id 0x" << MSG::hex << ftId << MSG::dec <<" not in preselection. Ignored.");
317 continue;
318 }
319 }
320
321
322 const int NthisFebChannel=m_onlineId->channelInSlotMax(fId);
323
324 //Decode LArDigits (if requested)
325 if (m_doDigits) {
326 uint32_t gain;
327 int fcNb;
328 std::vector<short> samples;
329 while (rodBlock->getNextRawData(fcNb,samples,gain)) {
330 if (fcNb>=NthisFebChannel)
331 continue;
332 if (samples.size()==0) continue; // Ignore missing cells
333 HWIdentifier cId = m_onlineId->channel_Id(fId,fcNb);
334 digits->emplace_back(new LArDigit(cId, (CaloGain::CaloGain)gain, std::move(samples)));
335 samples.clear();
336 }//end getNextRawData loop
337 }//end if m_doDigits
338
339 //Decode LArCalibDigits (if requested)
340 if (m_doCalibDigits) {
341 uint32_t gain;
342 uint16_t dac;
343 uint16_t delay;
344 bool ispulsed;
345 int fcNb;
346 std::vector<short> samples;
347 while (rodBlock->getNextRawData(fcNb,samples,gain)) {
348 if (fcNb>=NthisFebChannel)
349 continue;
350 if (samples.size()==0) continue; // Ignore missing cells
351 dac = rodBlock->getDAC();
352 delay = rodBlock->getDelay();
353 ispulsed = rodBlock->getPulsed(fcNb);
354 HWIdentifier cId = m_onlineId->channel_Id(fId,fcNb);
355 cdigits->emplace_back(new LArCalibDigit(cId, (CaloGain::CaloGain)gain, std::move(samples), dac, delay, ispulsed));
356 samples.clear();
357 }//end getNextRawData loop
358 }//end if m_doCalibDigits
359
360 //Decode LArAccumulatedDigits (if requested)
361 if (m_doAccDigits && rodBlockType==10) {
362 uint32_t gain;
363 int fcNb;
364 std::vector<uint64_t> samplesSum;
365 std::vector<uint64_t> samples2Sum;
366 uint32_t nTrigger;
367 while (rodBlock->getNextAccumulatedDigit(fcNb,samplesSum,samples2Sum,gain)) {
368 if (fcNb>=NthisFebChannel)
369 continue;
370 if (samplesSum.size()==0 || samples2Sum.size()==0) continue; // Ignore missing cells
371 nTrigger = rodBlock->getNTrigger();
372 HWIdentifier cId = m_onlineId->channel_Id(fId,fcNb);
373 accdigits->emplace_back(new LArAccumulatedDigit(cId, (CaloGain::CaloGain)gain, std::move(samplesSum), std::move(samples2Sum), nTrigger));
374 samplesSum.clear();
375 samples2Sum.clear();
376 }//end getNext loop
377 }//end if m_doAccDigits
378
379 //Decode LArAccumulatedCalibDigits (if requested)
380 if (m_doAccCalibDigits) {
381 uint32_t gain;
382 uint32_t itmp;
383 uint16_t dac;
384 uint16_t delay;
385 uint16_t nstep;
386 uint16_t istep;
387 bool ispulsed=false;
388 uint16_t ispulsed_int;
389 unsigned bitShift;
390 int fcNb;
391 std::vector<uint64_t> samplesSum;
392 std::vector<uint64_t> samples2Sum;
393 uint32_t nTrigger;
394 while (rodBlock->getNextAccumulatedCalibDigit(fcNb,samplesSum,samples2Sum,itmp,gain)) {
395 if (fcNb>=NthisFebChannel)
396 continue;
397 if (samplesSum.size()==0 || samples2Sum.size()==0) continue; // Ignore missing cells
398 ispulsed_int=0;
399 bitShift=0;
400 dac = rodBlock->getDAC();
401 delay = rodBlock->getDelay();
402 nTrigger = rodBlock->getNTrigger();
403 nstep = rodBlock->getNStep();
404 istep = rodBlock->getStepIndex();
405 HWIdentifier cId = m_onlineId->channel_Id(fId,fcNb);
406 const std::vector<HWIdentifier>& calibChannelIDs = calibMap->calibSlotLine(cId);
407 for(std::vector<HWIdentifier>::const_iterator csl_it=calibChannelIDs.begin(); csl_it!=calibChannelIDs.end();++csl_it){
408 uint32_t calibLine = m_onlineId->channel(*csl_it);
409 ispulsed=rodBlock->getPulsed(calibLine);
410 ispulsed_int=( ispulsed_int | ((uint16_t)ispulsed<<bitShift) );
411 bitShift++;
412 }
413 caccdigits->emplace_back(new LArAccumulatedCalibDigit(cId, (CaloGain::CaloGain)gain, std::move(samplesSum), std::move(samples2Sum), nTrigger, dac, delay, ispulsed_int, nstep, istep));
414 }//end getNext loop
415 caccdigits->setDelayScale(m_delayScale);
416 }//end if m_doAccDigits
417
418 //Decode FebHeaders (if requested)
419 if (m_doFebHeaders) {
420 std::unique_ptr<LArFebHeader> larFebHeader(new LArFebHeader(fId));
421 LArFebHeaderReader::fillFebHeader(larFebHeader.get(),rodBlock.get(),rob);
422 febHeaders->push_back(std::move(larFebHeader));
423 }//end if m_doFebHeaders
424
425 }while (rodBlock->nextFEB()); //Get NextFeb
426 } //end loop over ROBs
427 return StatusCode::SUCCESS;
428}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_FATAL(x)
#define ATH_MSG_INFO(x)
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
double delay(std::size_t d)
OFFLINE_FRAGMENTS_NAMESPACE::FullEventFragment RawEvent
data type for reading raw event
Definition RawEvent.h:37
const ServiceHandle< StoreGateSvc > & detStore() const
An algorithm that can be simultaneously executed in multiple threads.
void reserve(size_type n)
Attempt to preallocate enough memory for a specified number of elements.
value_type emplace_back(value_type pElem)
Add an element to the end of the collection.
value_type push_back(value_type pElem)
Add an element to the end of the collection.
value_type get_compact() const
Get the compact id.
Identifier32 get_identifier32() const
Get the 32-bit version Identifier, will be invalid if >32 bits needed.
Container class for LArAccumulatedCalibDigit.
void setDelayScale(const double scale)
set the delay Scale
Data class for calibration ADC samples preprocessed by the DSP.
Container class for LArAccumulatedDigit.
Data class for ADC samples and autocorr preprocessed by the DSP.
Container class for LArCalibDigit.
Base class for LArDigits taken during calibration runs.
const std::vector< HWIdentifier > & calibSlotLine(const HWIdentifier id) const
Container class for LArDigit.
Liquid Argon digit base class.
Definition LArDigit.h:25
Container class for LArFebHeader.
Holds information from the FEB Header.
SG::WriteHandleKey< LArAccumulatedCalibDigitContainer > m_accCalibDigitKey
SG::WriteHandleKey< LArDigitContainer > m_DigitKey
ServiceHandle< IROBDataProviderSvc > m_robDataProviderSvc
StatusCode execute(const EventContext &ctx) const override
SG::ReadCondHandleKey< LArCalibLineMapping > m_CLKey
Gaudi::Property< std::vector< unsigned > > m_vFTPreselection
SG::WriteHandleKey< LArAccumulatedDigitContainer > m_accDigitKey
LArRawCalibDataReadingAlg(const std::string &name, ISvcLocator *pSvcLocator)
SG::WriteHandleKey< LArFebHeaderContainer > m_febHeaderKey
Gaudi::Property< std::vector< unsigned > > m_vPosNegPreselection
Gaudi::Property< std::string > m_subCaloPreselection
Gaudi::Property< std::vector< unsigned > > m_vBEPreselection
std::set< HWIdentifier > m_vFinalPreselection
SG::WriteHandleKey< LArCalibDigitContainer > m_calibDigitKey
This class provides decoding/encoding from/to ROD format.
This class provides decoding/encoding from/to ROD format.
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
pointer_type ptr()
Dereference the pointer.
void fillFebHeader(LArFebHeader *lfh, const LArRodBlockStructure *bl, const ROBFragment &robFrag)
Fill info for one FEB Header.
eformat::ROBFragment< PointerType > ROBFragment
Definition RawEvent.h:27