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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
|
/**
* \class L1GlobalTriggerEvmRawToDigi
*
*
* Description: unpack raw data into digitized data.
*
* Implementation:
* <TODO: enter implementation details>
*
* \author: Vasile Mihai Ghete - HEPHY Vienna
*
*
*/
// this class header
#include "EventFilter/L1GlobalTriggerRawToDigi/interface/L1GlobalTriggerEvmRawToDigi.h"
// system include files
#include <iostream>
#include <iomanip>
#include <algorithm>
// user include files
#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerReadoutSetup.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerEvmReadoutRecord.h"
#include "DataFormats/FEDRawData/interface/FEDNumbering.h"
#include "DataFormats/FEDRawData/interface/FEDHeader.h"
#include "DataFormats/FEDRawData/interface/FEDTrailer.h"
#include "DataFormats/FEDRawData/interface/FEDRawDataCollection.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GtfeWord.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GtfeExtWord.h"
#include "DataFormats/L1GlobalTrigger/interface/L1TcsWord.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GtFdlWord.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/MessageLogger/interface/MessageDrop.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "CondFormats/L1TObjects/interface/L1GtFwd.h"
#include "CondFormats/L1TObjects/interface/L1GtBoard.h"
// constructor(s)
L1GlobalTriggerEvmRawToDigi::L1GlobalTriggerEvmRawToDigi(const edm::ParameterSet& pSet)
:
// input tag for EVM GT record
m_evmGtInputTag(pSet.getParameter<edm::InputTag>("EvmGtInputTag")),
// FED Id for GT EVM record
// default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc
// default value: assume the EVM record is the first GT record
m_evmGtFedId(pSet.getUntrackedParameter<int>("EvmGtFedId", FEDNumbering::MINTriggerGTPFEDID)),
/// EventSetup Token for L1GtBoardMaps
m_l1GtBMToken(esConsumes<L1GtBoardMaps, L1GtBoardMapsRcd>()),
// mask for active boards
m_activeBoardsMaskGt(pSet.getParameter<unsigned int>("ActiveBoardsMask")),
// number of bunch crossing to be unpacked
m_unpackBxInEvent(pSet.getParameter<int>("UnpackBxInEvent")),
m_lowSkipBxInEvent(0),
m_uppSkipBxInEvent(0),
m_recordLength0(0),
m_recordLength1(0),
m_totalBxInEvent(0),
// length of BST record (in bytes)
m_bstLengthBytes(pSet.getParameter<int>("BstLengthBytes")),
m_verbosity(pSet.getUntrackedParameter<int>("Verbosity", 0)),
m_isDebugEnabled(edm::isDebugEnabled())
{
produces<L1GlobalTriggerEvmReadoutRecord>();
if (m_verbosity && m_isDebugEnabled) {
LogDebug("L1GlobalTriggerEvmRawToDigi")
<< "\nInput tag for EVM GT record: " << m_evmGtInputTag
<< "\nFED Id for EVM GT record: " << m_evmGtFedId
<< "\nMask for active boards (hex format): " << std::hex << std::setw(sizeof(m_activeBoardsMaskGt) * 2)
<< std::setfill('0') << m_activeBoardsMaskGt << std::dec << std::setfill(' ')
<< "\nNumber of bunch crossing to be unpacked: " << m_unpackBxInEvent
<< "\nLength of BST message [bytes]: " << m_bstLengthBytes << "\n"
<< std::endl;
}
if ((m_unpackBxInEvent > 0) && ((m_unpackBxInEvent % 2) == 0)) {
m_unpackBxInEvent = m_unpackBxInEvent - 1;
if (m_verbosity) {
edm::LogInfo("L1GlobalTriggerEvmRawToDigi")
<< "\nWARNING: Number of bunch crossing to be unpacked rounded to: " << m_unpackBxInEvent
<< "\n The number must be an odd number!\n"
<< std::endl;
}
}
// create GTFE, TCS, FDL cards once per analyzer
// content will be reset whenever needed
m_gtfeWord = new L1GtfeExtWord();
m_tcsWord = new L1TcsWord();
m_gtFdlWord = new L1GtFdlWord();
consumes<FEDRawDataCollection>(m_evmGtInputTag);
/// EventSetup Token for L1GtParameters
if (m_bstLengthBytes < 0) {
m_l1GtParamToken = esConsumes<L1GtParameters, L1GtParametersRcd>();
}
}
// destructor
L1GlobalTriggerEvmRawToDigi::~L1GlobalTriggerEvmRawToDigi() {
delete m_gtfeWord;
delete m_tcsWord;
delete m_gtFdlWord;
}
// member functions
// method called to produce the data
void L1GlobalTriggerEvmRawToDigi::produce(edm::Event& iEvent, const edm::EventSetup& evSetup) {
// get records from EventSetup
// board maps
edm::ESHandle<L1GtBoardMaps> l1GtBM = evSetup.getHandle(m_l1GtBMToken);
const std::vector<L1GtBoard> boardMaps = l1GtBM->gtBoardMaps();
int boardMapsSize = boardMaps.size();
typedef std::vector<L1GtBoard>::const_iterator CItBoardMaps;
// create an ordered vector for the GT EVM record
// header (pos 0 in record) and trailer (last position in record)
// not included, as they are not in board list
std::vector<L1GtBoard> gtRecordMap;
gtRecordMap.reserve(boardMapsSize);
for (int iPos = 0; iPos < boardMapsSize; ++iPos) {
for (CItBoardMaps itBoard = boardMaps.begin(); itBoard != boardMaps.end(); ++itBoard) {
if (itBoard->gtPositionEvmRecord() == iPos) {
gtRecordMap.push_back(*itBoard);
break;
}
}
}
// raw collection
edm::Handle<FEDRawDataCollection> fedHandle;
iEvent.getByLabel(m_evmGtInputTag, fedHandle);
if (!fedHandle.isValid()) {
if (m_verbosity) {
edm::LogWarning("L1GlobalTriggerEvmRawToDigi")
<< "\nWarning: FEDRawDataCollection with input tag " << m_evmGtInputTag
<< "\nrequested in configuration, but not found in the event."
<< "\nQuit unpacking this event" << std::endl;
}
produceEmptyProducts(iEvent);
return;
}
// retrieve data for Global Trigger EVM FED
const FEDRawData& raw = (fedHandle.product())->FEDData(m_evmGtFedId);
int gtSize = raw.size();
// get a const pointer to the beginning of the data buffer
const unsigned char* ptrGt = raw.data();
// get a const pointer to the end of the data buffer
const unsigned char* endPtrGt = ptrGt + gtSize;
//
if (m_verbosity && m_isDebugEnabled) {
LogTrace("L1GlobalTriggerEvmRawToDigi") << "\n Size of raw data: " << gtSize << "\n" << std::endl;
std::ostringstream myCoutStream;
dumpFedRawData(ptrGt, gtSize, myCoutStream);
LogTrace("L1GlobalTriggerEvmRawToDigi") << "\n Dump FEDRawData\n" << myCoutStream.str() << "\n" << std::endl;
}
// unpack header
int headerSize = 8;
if ((ptrGt + headerSize) > endPtrGt) {
edm::LogError("L1GlobalTriggerEvmRawToDigi") << "\nError: Pointer after header greater than end pointer."
<< "\n Put empty products in the event!"
<< "\n Quit unpacking this event." << std::endl;
produceEmptyProducts(iEvent);
return;
}
FEDHeader cmsHeader(ptrGt);
FEDTrailer cmsTrailer(ptrGt + gtSize - headerSize);
unpackHeader(ptrGt, cmsHeader);
ptrGt += headerSize; // advance with header size
// unpack first GTFE to find the length of the record and the active boards
// here GTFE assumed immediately after the header
bool gtfeUnpacked = false;
// get the length of the BST message from parameter set or from event setup
int bstLengthBytes = 0;
if (m_bstLengthBytes < 0) {
// length from event setup // TODO cache it, if too slow
edm::ESHandle<L1GtParameters> l1GtPar = evSetup.getHandle(m_l1GtParamToken);
const L1GtParameters* m_l1GtPar = l1GtPar.product();
bstLengthBytes = static_cast<int>(m_l1GtPar->gtBstLengthBytes());
} else {
// length from parameter set
bstLengthBytes = m_bstLengthBytes;
}
if (m_verbosity) {
LogTrace("L1GlobalTriggerEvmRawToDigi") << "\n Length of BST message (in bytes): " << bstLengthBytes << "\n"
<< std::endl;
}
for (CItBoardMaps itBoard = boardMaps.begin(); itBoard != boardMaps.end(); ++itBoard) {
if (itBoard->gtBoardType() == GTFE) {
// unpack GTFE
if (itBoard->gtPositionEvmRecord() == 1) {
// resize to the right size before unapacking
m_gtfeWord->resize(bstLengthBytes);
m_gtfeWord->unpack(ptrGt);
ptrGt += m_gtfeWord->getSize(); // advance with GTFE block size
gtfeUnpacked = true;
if (m_verbosity && m_isDebugEnabled) {
std::ostringstream myCoutStream;
m_gtfeWord->print(myCoutStream);
LogTrace("L1GlobalTriggerEvmRawToDigi") << myCoutStream.str() << "\n" << std::endl;
}
// break the loop - GTFE was found
break;
} else {
if (m_verbosity) {
edm::LogWarning("L1GlobalTriggerEvmRawToDigi")
<< "\nWarning: GTFE block found in raw data does not follow header."
<< "\nAssumed start position of the block is wrong!"
<< "\nQuit unpacking this event" << std::endl;
}
produceEmptyProducts(iEvent);
return;
}
}
}
// quit if no GTFE found
if (!gtfeUnpacked) {
if (m_verbosity) {
edm::LogWarning("L1GlobalTriggerEvmRawToDigi")
<< "\nWarning: no GTFE block found in raw data."
<< "\nCan not find the record length (BxInEvent) and the active boards!"
<< "\nQuit unpacking this event" << std::endl;
}
produceEmptyProducts(iEvent);
return;
}
// life normal here, GTFE found
// get list of active blocks
// blocks not active are not written to the record
cms_uint16_t activeBoardsGtInitial = m_gtfeWord->activeBoards();
cms_uint16_t altNrBxBoardInitial = m_gtfeWord->altNrBxBoard();
// mask some boards, if needed
cms_uint16_t activeBoardsGt = activeBoardsGtInitial & m_activeBoardsMaskGt;
m_gtfeWord->setActiveBoards(activeBoardsGt);
if (m_verbosity) {
LogDebug("L1GlobalTriggerEvmRawToDigi")
<< "\nActive boards before masking(hex format): " << std::hex << std::setw(sizeof(activeBoardsGtInitial) * 2)
<< std::setfill('0') << activeBoardsGtInitial << std::dec << std::setfill(' ')
<< "\nActive boards after masking(hex format): " << std::hex << std::setw(sizeof(activeBoardsGt) * 2)
<< std::setfill('0') << activeBoardsGt << std::dec << std::setfill(' ') << " \n"
<< std::endl;
}
// loop over other blocks in the raw record, count them if they are active
int numberFdlBoards = 0;
for (CItBoardMaps itBoard = boardMaps.begin(); itBoard != boardMaps.end(); ++itBoard) {
int iActiveBit = itBoard->gtBitEvmActiveBoards();
bool activeBoardToUnpack = false;
if (iActiveBit >= 0) {
activeBoardToUnpack = activeBoardsGt & (1 << iActiveBit);
} else {
// board not in the ActiveBoards for the record
continue;
}
if (activeBoardToUnpack) {
switch (itBoard->gtBoardType()) {
case GTFE:
break;
case FDL: {
numberFdlBoards++;
}
break;
case PSB:
break;
case GMT:
break;
case TCS:
break;
case TIM:
break;
default: {
// do nothing, all blocks are given in GtBoardType enum
if (m_verbosity) {
LogDebug("L1GlobalTriggerEvmRawToDigi")
<< "\nBoard of type " << itBoard->gtBoardType() << " not expected in record.\n"
<< std::endl;
}
}
break;
}
}
}
// produce the L1GlobalTriggerEvmReadoutRecord now, after we found how many
// BxInEvent the record has and how many boards are active
//LogDebug("L1GlobalTriggerEvmRawToDigi")
//<< "\nL1GlobalTriggerEvmRawToDigi: producing L1GlobalTriggerEvmReadoutRecord\n"
//<< std::endl;
// get number of Bx in the event from GTFE block corresponding to alternative 0 and 1 in
m_recordLength0 = m_gtfeWord->recordLength();
m_recordLength1 = m_gtfeWord->recordLength1();
int maxBxInEvent = std::max(m_recordLength0, m_recordLength1);
std::unique_ptr<L1GlobalTriggerEvmReadoutRecord> gtReadoutRecord(
new L1GlobalTriggerEvmReadoutRecord(maxBxInEvent, numberFdlBoards));
// ... then unpack modules other than GTFE, if requested
for (CItBoardMaps itBoard = gtRecordMap.begin(); itBoard != gtRecordMap.end(); ++itBoard) {
int iActiveBit = itBoard->gtBitEvmActiveBoards();
bool activeBoardToUnpack = false;
bool activeBoardInitial = false;
int altNrBxBoardVal = -1;
if (iActiveBit >= 0) {
activeBoardInitial = activeBoardsGtInitial & (1 << iActiveBit);
activeBoardToUnpack = activeBoardsGt & (1 << iActiveBit);
altNrBxBoardVal = (altNrBxBoardInitial & (1 << iActiveBit)) >> iActiveBit;
if (altNrBxBoardVal == 1) {
m_totalBxInEvent = m_recordLength1;
} else if (altNrBxBoardVal == 0) {
m_totalBxInEvent = m_recordLength0;
} else {
if (m_verbosity) {
edm::LogWarning("L1GlobalTriggerEvmRawToDigi")
<< "\n\nWARNING: Wrong value altNrBxBoardVal = " << altNrBxBoardVal << " for board " << std::hex
<< (itBoard->gtBoardId()) << std::dec << "\n iActiveBit = " << iActiveBit
<< "\n altNrBxBoardInitial = 0x" << std::hex << altNrBxBoardInitial << std::dec
<< "\n activeBoardsGt = 0x" << std::hex << activeBoardsGt << std::dec
<< "\n activeBoardInitial = " << activeBoardInitial
<< "\n activeBoardToUnpack = " << activeBoardToUnpack << "\n Set altNrBxBoardVal tentatively to "
<< m_recordLength0 << "\n Job may crash or produce wrong results!\n\n"
<< std::endl;
}
m_totalBxInEvent = m_recordLength0;
}
// number of BX required to be unpacked
if (m_unpackBxInEvent > m_totalBxInEvent) {
if (m_verbosity) {
LogDebug("L1GlobalTriggerEvmRawToDigi")
<< "\nWARNING: Number of available bunch crosses for board" << (itBoard->gtBoardId())
<< " in the record ( " << m_totalBxInEvent
<< " ) \n is smaller than the number of bunch crosses requested to be unpacked (" << m_unpackBxInEvent
<< " )!!! \n Unpacking only " << m_totalBxInEvent << " bunch crosses.\n"
<< std::endl;
}
m_lowSkipBxInEvent = 0;
m_uppSkipBxInEvent = m_totalBxInEvent;
} else if (m_unpackBxInEvent < 0) {
m_lowSkipBxInEvent = 0;
m_uppSkipBxInEvent = m_totalBxInEvent;
if (m_verbosity) {
LogDebug("L1GlobalTriggerEvmRawToDigi")
<< "\nUnpacking all " << m_totalBxInEvent << " bunch crosses available."
<< "\n"
<< std::endl;
}
} else if (m_unpackBxInEvent == 0) {
m_lowSkipBxInEvent = m_totalBxInEvent;
m_uppSkipBxInEvent = m_totalBxInEvent;
if (m_verbosity) {
LogDebug("L1GlobalTriggerEvmRawToDigi")
<< "\nNo bxInEvent required to be unpacked from " << m_totalBxInEvent << " bunch crosses available."
<< "\n"
<< std::endl;
}
// change RecordLength
// cast int to cms_uint16_t (there are normally 3 or 5 BxInEvent)
m_gtfeWord->setRecordLength(static_cast<cms_uint16_t>(m_unpackBxInEvent));
m_gtfeWord->setRecordLength1(static_cast<cms_uint16_t>(m_unpackBxInEvent));
} else {
m_lowSkipBxInEvent = (m_totalBxInEvent - m_unpackBxInEvent) / 2;
m_uppSkipBxInEvent = m_totalBxInEvent - m_lowSkipBxInEvent;
if (m_verbosity) {
LogDebug("L1GlobalTriggerEvmRawToDigi") << "\nUnpacking " << m_unpackBxInEvent << " bunch crosses from "
<< m_totalBxInEvent << " bunch crosses available."
<< "\n"
<< std::endl;
}
// change RecordLength
// cast int to cms_uint16_t (there are normally 3 or 5 BxInEvent)
m_gtfeWord->setRecordLength(static_cast<cms_uint16_t>(m_unpackBxInEvent));
m_gtfeWord->setRecordLength1(static_cast<cms_uint16_t>(m_unpackBxInEvent));
}
} else {
// board not in the ActiveBoards for the record
continue;
}
if (!activeBoardInitial) {
if (m_verbosity) {
LogDebug("L1GlobalTriggerEvmRawToDigi") << "\nBoard of type " << itBoard->gtBoardName() << " with index "
<< itBoard->gtBoardIndex() << " not active initially in raw data.\n"
<< std::endl;
}
continue;
}
// active board initially, could unpack it
switch (itBoard->gtBoardType()) {
case TCS: {
// if pointer after TCS payload is greater than pointer at
// the end of GT payload, produce empty products and quit unpacking
if ((ptrGt + m_tcsWord->getSize()) > endPtrGt) {
edm::LogError("L1GlobalTriggerEvmRawToDigi") << "\nError: Pointer after TCS "
<< " greater than end pointer."
<< "\n Put empty products in the event!"
<< "\n Quit unpacking this event." << std::endl;
produceEmptyProducts(iEvent);
return;
}
// unpack only if requested, otherwise skip it
if (activeBoardToUnpack) {
m_tcsWord->unpack(ptrGt);
// add 1 to the GT luminosity number to use the same convention as
// offline, where LS number starts with 1;
// in GT hardware, LS starts with 0
cms_uint16_t lsNr = m_tcsWord->luminositySegmentNr() + 1;
m_tcsWord->setLuminositySegmentNr(lsNr);
// add TCS block to GT EVM readout record
gtReadoutRecord->setTcsWord(*m_tcsWord);
if (m_verbosity && m_isDebugEnabled) {
std::ostringstream myCoutStream;
m_tcsWord->print(myCoutStream);
LogTrace("L1GlobalTriggerEvmRawToDigi") << myCoutStream.str() << "\n" << std::endl;
}
// ... and reset it
m_tcsWord->reset();
}
ptrGt += m_tcsWord->getSize(); // advance with TCS block size
} break;
case FDL: {
for (int iFdl = 0; iFdl < m_totalBxInEvent; ++iFdl) {
// if pointer after FDL payload is greater than pointer at
// the end of GT payload, produce empty products and quit unpacking
if ((ptrGt + m_gtFdlWord->getSize()) > endPtrGt) {
edm::LogError("L1GlobalTriggerEvmRawToDigi")
<< "\nError: Pointer after FDL " << iFdl << " greater than end pointer."
<< "\n Put empty products in the event!"
<< "\n Quit unpacking this event." << std::endl;
produceEmptyProducts(iEvent);
return;
}
// unpack only if requested, otherwise skip it
if (activeBoardToUnpack) {
// unpack only bxInEvent requested, otherwise skip it
if ((iFdl >= m_lowSkipBxInEvent) && (iFdl < m_uppSkipBxInEvent)) {
m_gtFdlWord->unpack(ptrGt);
// add 1 to the GT luminosity number to use the same convention as
// offline, where LS number starts with 1;
// in GT hardware, LS starts with 0
cms_uint16_t lsNr = m_gtFdlWord->lumiSegmentNr() + 1;
m_gtFdlWord->setLumiSegmentNr(lsNr);
// add FDL block to GT readout record
gtReadoutRecord->setGtFdlWord(*m_gtFdlWord);
if (m_verbosity && m_isDebugEnabled) {
std::ostringstream myCoutStream;
m_gtFdlWord->print(myCoutStream);
LogTrace("L1GlobalTriggerEvmRawToDigi") << myCoutStream.str() << "\n" << std::endl;
}
// ... and reset it
m_gtFdlWord->reset();
}
}
ptrGt += m_gtFdlWord->getSize(); // advance with FDL block size
}
}
break;
default: {
// do nothing, all blocks are given in GtBoardType enum
if (m_verbosity) {
LogDebug("L1GlobalTriggerEvmRawToDigi")
<< "\nBoard of type " << itBoard->gtBoardType() << " not expected in record.\n"
<< std::endl;
}
} break;
}
}
// add GTFE block to GT readout record, after updating active boards and record length
gtReadoutRecord->setGtfeWord(*m_gtfeWord);
// ... and reset it
m_gtfeWord->reset();
// unpack trailer
int trailerSize = 8;
// if pointer after trailer is greater than pointer at
// the end of GT payload, produce empty products and quit unpacking
if ((ptrGt + trailerSize) > endPtrGt) {
edm::LogError("L1GlobalTriggerEvmRawToDigi") << "\nError: Pointer after trailer "
<< " greater than end pointer."
<< "\n Put empty products in the event!"
<< "\n Quit unpacking this event." << std::endl;
produceEmptyProducts(iEvent);
return;
}
unpackTrailer(ptrGt, cmsTrailer);
if (m_verbosity && m_isDebugEnabled) {
std::ostringstream myCoutStream;
gtReadoutRecord->print(myCoutStream);
LogTrace("L1GlobalTriggerEvmRawToDigi") << "\n The following L1 GT EVM readout record was unpacked.\n"
<< myCoutStream.str() << "\n"
<< std::endl;
}
// put records into event
iEvent.put(std::move(gtReadoutRecord));
}
// unpack header
void L1GlobalTriggerEvmRawToDigi::unpackHeader(const unsigned char* gtPtr, FEDHeader& cmsHeader) {
// TODO if needed in another format
// print the header info
if (edm::isDebugEnabled()) {
const cms_uint64_t* payload = reinterpret_cast<cms_uint64_t*>(const_cast<unsigned char*>(gtPtr));
std::ostringstream myCoutStream;
// one word only
int iWord = 0;
myCoutStream << std::setw(4) << iWord << " " << std::hex << std::setfill('0') << std::setw(16) << payload[iWord]
<< std::dec << std::setfill(' ') << "\n"
<< std::endl;
myCoutStream << " Event_type: " << std::hex << " hex: "
<< " " << std::setw(1) << std::setfill('0') << cmsHeader.triggerType() << std::setfill(' ')
<< std::dec << " dec: " << cmsHeader.triggerType() << std::endl;
myCoutStream << " LVL1_Id: " << std::hex << " hex: "
<< "" << std::setw(6) << std::setfill('0') << cmsHeader.lvl1ID() << std::setfill(' ') << std::dec
<< " dec: " << cmsHeader.lvl1ID() << std::endl;
myCoutStream << " BX_Id: " << std::hex << " hex: "
<< " " << std::setw(3) << std::setfill('0') << cmsHeader.bxID() << std::setfill(' ') << std::dec
<< " dec: " << cmsHeader.bxID() << std::endl;
myCoutStream << " Source_Id: " << std::hex << " hex: "
<< " " << std::setw(3) << std::setfill('0') << cmsHeader.sourceID() << std::setfill(' ') << std::dec
<< " dec: " << cmsHeader.sourceID() << std::endl;
myCoutStream << " FOV: " << std::hex << " hex: "
<< " " << std::setw(1) << std::setfill('0') << cmsHeader.version() << std::setfill(' ') << std::dec
<< " dec: " << cmsHeader.version() << std::endl;
myCoutStream << " H: " << std::hex << " hex: "
<< " " << std::setw(1) << std::setfill('0') << cmsHeader.moreHeaders() << std::setfill(' ')
<< std::dec << " dec: " << cmsHeader.moreHeaders() << std::endl;
LogDebug("L1GlobalTriggerEvmRawToDigi") << "\n CMS Header \n" << myCoutStream.str() << "\n" << std::endl;
}
}
// unpack trailer word
// trPtr pointer to the beginning of trailer obtained from gtPtr
void L1GlobalTriggerEvmRawToDigi::unpackTrailer(const unsigned char* trlPtr, FEDTrailer& cmsTrailer) {
// TODO if needed in another format
// print the trailer info
if (m_verbosity && m_isDebugEnabled) {
const cms_uint64_t* payload = reinterpret_cast<cms_uint64_t*>(const_cast<unsigned char*>(trlPtr));
std::ostringstream myCoutStream;
// one word only
int iWord = 0;
myCoutStream << std::setw(4) << iWord << " " << std::hex << std::setfill('0') << std::setw(16) << payload[iWord]
<< std::dec << std::setfill(' ') << "\n"
<< std::endl;
myCoutStream << " Event_length: " << std::hex << " hex: "
<< "" << std::setw(6) << std::setfill('0') << cmsTrailer.fragmentLength() << std::setfill(' ')
<< std::dec << " dec: " << cmsTrailer.fragmentLength() << std::endl;
myCoutStream << " CRC: " << std::hex << " hex: "
<< " " << std::setw(4) << std::setfill('0') << cmsTrailer.crc() << std::setfill(' ') << std::dec
<< " dec: " << cmsTrailer.crc() << std::endl;
myCoutStream << " Event_status: " << std::hex << " hex: "
<< " " << std::setw(2) << std::setfill('0') << cmsTrailer.evtStatus() << std::setfill(' ')
<< std::dec << " dec: " << cmsTrailer.evtStatus() << std::endl;
myCoutStream << " TTS_bits: " << std::hex << " hex: "
<< " " << std::setw(1) << std::setfill('0') << cmsTrailer.ttsBits() << std::setfill(' ')
<< std::dec << " dec: " << cmsTrailer.ttsBits() << std::endl;
myCoutStream << " More trailers: " << std::hex << " hex: "
<< " " << std::setw(1) << std::setfill('0') << cmsTrailer.moreTrailers() << std::setfill(' ')
<< std::dec << " dec: " << cmsTrailer.moreTrailers() << std::endl;
LogDebug("L1GlobalTriggerEvmRawToDigi") << "\n CMS Trailer \n" << myCoutStream.str() << "\n" << std::endl;
}
}
// produce empty products in case of problems
void L1GlobalTriggerEvmRawToDigi::produceEmptyProducts(edm::Event& iEvent) {
std::unique_ptr<L1GlobalTriggerEvmReadoutRecord> gtReadoutRecord(new L1GlobalTriggerEvmReadoutRecord());
// put empty records into event
iEvent.put(std::move(gtReadoutRecord));
}
// dump FED raw data
void L1GlobalTriggerEvmRawToDigi::dumpFedRawData(const unsigned char* gtPtr, int gtSize, std::ostream& myCout) {
LogDebug("L1GlobalTriggerEvmRawToDigi") << "\nDump FED raw data.\n" << std::endl;
int wLength = L1GlobalTriggerReadoutSetup::WordLength;
int uLength = L1GlobalTriggerReadoutSetup::UnitLength;
int gtWords = gtSize / uLength;
LogTrace("L1GlobalTriggerEvmRawToDigi") << "\nFED GT words (" << wLength << " bits):" << gtWords << "\n" << std::endl;
const cms_uint64_t* payload = reinterpret_cast<cms_uint64_t*>(const_cast<unsigned char*>(gtPtr));
for (unsigned int i = 0; i < gtSize / sizeof(cms_uint64_t); i++) {
myCout << std::setw(4) << i << " " << std::hex << std::setfill('0') << std::setw(16) << payload[i] << std::dec
<< std::setfill(' ') << std::endl;
}
}
// static class members
|