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
|
/* CSCDDUEventData.cc
* Modified 4/21/03 to get rid of arrays and store all CSC data
* in vectors.
* A.Tumanov
*/
#include "EventFilter/CSCRawToDigi/interface/CSCDDUEventData.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include <iostream>
#include <cstdio>
#include "EventFilter/CSCRawToDigi/interface/bitset_append.h"
#ifdef LOCAL_UNPACK
bool CSCDDUEventData::debug = false;
uint32_t CSCDDUEventData::errMask = 0xFFFFFFFF;
#else
#include <atomic>
std::atomic<bool> CSCDDUEventData::debug{false};
std::atomic<uint32_t> CSCDDUEventData::errMask{0xFFFFFFFF};
#endif
CSCDDUEventData::CSCDDUEventData(const CSCDDUHeader& header) { theDDUHeader = header; }
CSCDDUEventData::CSCDDUEventData(const uint16_t* buf, CSCDCCExaminer* examiner) { unpack_data(buf, examiner); }
CSCDDUEventData::~CSCDDUEventData() {}
void CSCDDUEventData::add(CSCEventData& cscData, int dmbId, int dduInput, unsigned format_version) {
theDDUHeader.setDMBDAV(dduInput);
//@@ Tim: The following sets the word which is supposed to be CSCs in error, with bit 15 set for DMB Full
//@@ so I think sim should not set it at all
//@@ theDDUTrailer.setDMBDAV(dmbId);
theDDUHeader.setDMBDAV(dduInput);
cscData.dmbHeader()->setdmbID(dmbId);
cscData.setEventInformation(theDDUHeader.bxnum(), theDDUHeader.lvl1num());
theData.push_back(cscData);
}
void CSCDDUEventData::decodeStatus() const { this->decodeStatus(theDDUTrailer.errorstat()); }
void CSCDDUEventData::decodeStatus(int code) const {
// JRG is Jason Gilmore
// JRG, low-order 16-bit status (most serious errors):
if ((code & errMask) > 0) { ///this is a mask for printing out errors
// JRG, low-order 16-bit status (most serious errors):
if ((code & 0x0000F000) > 0) {
if ((0x00008000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Critical Error, ** needs reset **";
if ((0x00004000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Single Error, bad event";
if ((0x00002000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Single Warning";
if ((0x00001000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Near Full Warning";
}
if ((code & 0x00000F00) > 0) {
if ((0x00000800 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU 64-bit Alignment Error";
if ((0x00000400 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Control DLL Error occured";
if ((0x00000200 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU DMB Error occurred";
if ((0x00000100 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Lost In Event Error";
}
if ((code & 0x000000F0) > 0) {
if ((0x00000080 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Lost In Data Error occurred";
if ((0x00000040 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Timeout Error";
if ((0x00000020 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " TMB or ALCT CRC Error";
if ((0x00000010 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Multiple Transmit Errors";
}
if ((code & 0x0000000F) > 0) {
if ((0x00000008 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Sync Lost or FIFO Full Error";
if ((0x00000004 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Fiber/FIFO Connection Error";
if ((0x00000002 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU L1A Match Error";
if ((0x00000001 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU DMB or CFEB CRC Error";
}
if ((code & 0xF0000000) > 0) {
// JRG, high-order 16-bit status (not-so-serious errors):
if ((0x80000000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU DMB LCT/DAV/Movlp Mismatch";
if ((0x40000000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU-CFEB L1 Mismatch";
if ((0x20000000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU saw no good DMB CRCs";
if ((0x10000000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU CFEB Count Error";
}
if ((code & 0x0F000000) > 0) {
if ((0x08000000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU FirstDat Error";
if ((0x04000000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU L1A-FIFO Full Error";
if ((0x02000000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Data Stuck in FIFO";
if ((0x01000000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU NoLiveFibers Error";
}
if ((code & 0x00F00000) > 0) {
if ((0x00800000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Spwd single-bit Warning";
if ((0x00400000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Input FPGA Error";
if ((0x00200000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU DAQ Stop bit set";
if ((0x00100000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU DAQ says Not Ready";
if ((0x00300000 & code) == 0x00200000)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU DAQ Applied Backpressure";
}
if ((code & 0x000F0000) > 0) {
if ((0x00080000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU TMB Error";
if ((0x00040000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU ALCT Error";
if ((0x00020000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Trigger Readout Wordcount Error";
if ((0x00010000 & code) > 0)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " DDU Trigger L1A Match Error";
}
}
}
void CSCDDUEventData::unpack_data(const uint16_t* buf, CSCDCCExaminer* examiner) {
// just to calculate length
const uint16_t* inputBuf = buf;
const uint16_t* inputBuf0 = buf; /// To pack trailer 0
theData.clear();
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi") << "CSCDDUEventData::unpack_data() is called";
if (debug)
for (int i = 0; i < 6; ++i) {
LogTrace("CSCDDUEventData|CSCRawToDigi")
<< i << std::hex << buf[4 * i + 3] << buf[4 * i + 2] << buf[4 * i + 1] << buf[4 * i];
std::cout << i << " " << std::hex << buf[4 * i + 3] << " " << buf[4 * i + 2] << " " << buf[4 * i + 1] << " "
<< buf[4 * i] << std::endl;
}
theDDUHeader.setFromBuffer(buf);
if (debug) {
LogTrace("CSCDDUEventData|CSCRawToDigi") << "size of ddu header in words = " << theDDUHeader.sizeInWords();
LogTrace("CSCDDUEventData|CSCRawToDigi") << "sizeof(DDUHeader) = " << sizeof(theDDUHeader);
}
buf += theDDUHeader.sizeInWords();
// if (theDDUHeader.format_version() >= 0x6)
if (theDDUHeader.format_version() == 0x7) /// New Data Format 2013
{
theFormatVersion = 2013;
} else if (theDDUHeader.format_version() <= 0x6) /// Older Data format before 2013
{
theFormatVersion = 2005;
} else // Add handling for any other format version
{
theFormatVersion = 2013;
}
// we really don't want to copy CSCEventData's while filling the vec
theData.clear();
theData.reserve(theDDUHeader.ncsc());
if (examiner != nullptr) { // Use selective unpacking mode
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi") << "selective unpacking starting";
// Find this DDU in examiner's DDUs list
DDUIdType dduID = theDDUHeader.source_id();
std::map<DDUIdType, std::map<CSCIdType, const uint16_t*> > ddus = examiner->DMB_block();
std::map<DDUIdType, std::map<CSCIdType, const uint16_t*> >::iterator ddu_itr = ddus.find(dduID);
const uint16_t* dduBlock = (const uint16_t*)((examiner->DDU_block())[dduID]);
uint32_t dduBufSize = (examiner->DDU_size())[dduID];
if (ddu_itr != ddus.end() && dduBufSize != 0 && dduBlock == inputBuf) {
std::map<CSCIdType, const uint16_t*>& cscs = ddu_itr->second;
std::map<CSCIdType, const uint16_t*>::iterator csc_itr;
for (csc_itr = cscs.begin(); csc_itr != cscs.end(); ++csc_itr) {
short cscid = csc_itr->first;
if (cscid != -1) {
const uint16_t* pos = (const uint16_t*)csc_itr->second;
if (pos == nullptr) {
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi")
<< "skip unpacking of CSC " << cscid << " due to format errors (NULL pointer to chamber data)";
continue;
}
ExaminerStatusType errors = examiner->errorsForChamber(cscid);
if ((errors & examiner->getMask()) > 0) {
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi")
<< "skip unpacking of CSC " << cscid << " due to format errors: 0x" << std::hex << errors << std::dec;
continue;
}
theData.push_back(CSCEventData(pos, theFormatVersion));
}
}
if (debug) {
LogTrace("CSCDDUEventData|CSCRawToDigi") << "size of vector of cscData = " << theData.size();
}
// decode ddu tail
theDDUTrailer.setFromBuffer(inputBuf + dduBufSize);
// memcpy(&theDDUTrailer, dduBlock+(dduBufSize-theDDUTrailer.sizeInWords())*2, theDDUTrailer.sizeInWords()*2);
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi") << theDDUTrailer.check();
errorstat = theDDUTrailer.errorstat();
if ((errorstat & errMask) != 0) {
if (theDDUTrailer.check()) {
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi")
<< "+++ CSCDDUEventData warning: DDU Trailer errors = " << std::hex << errorstat << " +++ ";
if (debug)
decodeStatus(errorstat);
} else {
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi")
<< " Unpacking lost DDU trailer - check() failed and 8 8 ffff 8 was not found ";
}
}
if (debug) {
LogTrace("CSCDDUEventData|CSCRawToDigi") << " Final errorstat " << std::hex << errorstat << std::dec;
}
// the trailer counts in 64-bit words
// theSizeInWords = dduBufSize;
// buf=inputBuf+dduBufSize;
}
theSizeInWords = dduBufSize + 12;
} else {
while ((((buf[0] & 0xf000) == 0x9000) || ((buf[0] & 0xf000) == 0xa000)) && (buf[3] != 0x8000)) {
// ++i;
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi") << "unpack csc data loop started";
theData.push_back(CSCEventData(buf, theFormatVersion));
buf += (theData.back()).size();
if (debug) {
LogTrace("CSCDDUEventData|CSCRawToDigi") << "size of vector of cscData = " << theData.size();
}
}
if (debug) {
LogTrace("CSCDDUEventData|CSCRawToDigi") << "unpacking ddu trailer ";
LogTrace("CSCDDUEventData|CSCRawToDigi") << std::hex << buf[3] << " " << buf[2] << " " << buf[1] << " " << buf[0];
}
// decode ddu tail
theDDUTrailer.setFromBuffer(buf);
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi") << theDDUTrailer.check();
errorstat = theDDUTrailer.errorstat();
if ((errorstat & errMask) != 0) {
if (theDDUTrailer.check()) {
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi")
<< "+++ CSCDDUEventData warning: DDU Trailer errors = " << std::hex << errorstat << " +++ ";
if (debug)
decodeStatus(errorstat);
} else {
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi")
<< " Unpacking lost DDU trailer - check() failed and 8 8 ffff 8 was not found ";
}
}
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi") << " Final errorstat " << std::hex << errorstat << std::dec;
// the trailer counts in 64-bit words
buf += theDDUTrailer.sizeInWords();
theSizeInWords = buf - inputBuf;
}
/// Pack Trailer 0 (to access TTS)
theDDUTrailer0 = inputBuf0[theSizeInWords - 4];
}
bool CSCDDUEventData::check() const {
// the trailer counts in 64-bit words
if (debug) {
LogTrace("CSCDDUEventData|CSCRawToDigi") << sizeInWords();
LogTrace("CSCDDUEventData|CSCRawToDigi") << "wordcount = " << theDDUTrailer.wordcount() * 4;
}
return theDDUHeader.check() && theDDUTrailer.check();
}
boost::dynamic_bitset<> CSCDDUEventData::pack() {
boost::dynamic_bitset<> result =
bitset_utilities::ushortToBitset(theDDUHeader.sizeInWords() * 16, theDDUHeader.data());
//std::cout <<"SANDRIK inside DDUEvdata check = ";
//theDDUHeader.check();
//std::cout <<std::endl;
//std::cout <<"printing out ddu header words"<<std::endl;
//for (unsigned int i=0;i<theDDUHeader.sizeInWords();i++) {
// unsigned short * buf = theDDUHeader.data();
// printf("%04x %04x %04x %04x\n",buf[i+3],buf[i+2],buf[i+1],buf[i]);
// i+=3;
//}
//std::cout <<"printing out ddu header words via bitset"<<std::endl;
//bitset_utilities::printWords(result);
for (unsigned int i = 0; i < theData.size(); ++i) {
result = bitset_utilities::append(result, theData[i].pack());
}
theSizeInWords = result.size() / 16 + theDDUTrailer.sizeInWords();
// 64-bit word count
theDDUTrailer.setWordCount(theSizeInWords / 4);
boost::dynamic_bitset<> dduTrailer =
bitset_utilities::ushortToBitset(theDDUTrailer.sizeInWords() * 16, theDDUTrailer.data());
result = bitset_utilities::append(result, dduTrailer);
return result;
}
|