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
|
/*
*
* \author G. Franzoni
*
*/
#include "CamacTBDataFormatter.h"
// pro-memo:
// "ff" = 1 Byte
// 64 bits = 8 Bytes = 16 hex carachters
// for now: event is ( 114 words x 32 bits ) = 448 Bytes
// size of unsigned long = 4 Bytes. Thus, 1 (32 bit) word = 1 (unsigned long)
struct hodo_fibre_index {
int nfiber;
int ndet;
};
// nHodoscopes = 2; nFibres = 64
const static struct hodo_fibre_index hodoFiberMap[2][64] = {{// Hodo 0
// unit 1A
{23, 44},
{29, 47},
{31, 48},
{21, 43},
{5, 35},
{15, 40},
{7, 36},
{13, 39},
{1, 33},
{11, 38},
{3, 34},
{9, 37},
{6, 3},
{16, 8},
{8, 4},
{14, 7},
// unit 1C
{17, 41},
{19, 42},
{27, 46},
{25, 45},
{32, 16},
{22, 11},
{24, 12},
{30, 15},
{12, 6},
{2, 1},
{4, 2},
{10, 5},
{28, 14},
{18, 9},
{20, 10},
{26, 13},
// unit 2A
{54, 27},
{56, 28},
{64, 32},
{62, 31},
{49, 57},
{59, 62},
{51, 58},
{57, 61},
{53, 59},
{63, 64},
{55, 60},
{61, 63},
{45, 55},
{39, 52},
{37, 51},
{47, 56},
// unit 2C
{34, 17},
{42, 21},
{44, 22},
{36, 18},
{50, 25},
{60, 30},
{58, 29},
{52, 26},
{38, 19},
{40, 20},
{48, 24},
{46, 23},
{41, 53},
{35, 50},
{33, 49},
{43, 54}},
{// Hodo 1
// unit 1A
{31, 48},
{29, 47},
{23, 44},
{21, 43},
{5, 35},
{7, 36},
{15, 40},
{13, 39},
{1, 33},
{3, 34},
{11, 38},
{9, 37},
{6, 3},
{8, 4},
{16, 8},
{14, 7},
// unit 1C
{17, 41},
{27, 46},
{19, 42},
{25, 45},
{24, 12},
{22, 11},
{32, 16},
{30, 15},
{4, 2},
{2, 1},
{12, 6},
{10, 5},
{20, 10},
{18, 9},
{28, 14},
{26, 13},
// unit 2A
{54, 27},
{64, 32},
{56, 28},
{62, 31},
{49, 57},
{51, 58},
{59, 62},
{57, 61},
{53, 59},
{55, 60},
{63, 64},
{61, 63},
{45, 55},
{47, 56},
{37, 51},
{39, 52},
// unit 2C
{34, 17},
{42, 21},
{36, 18},
{44, 22},
{50, 25},
{52, 26},
{58, 29},
{60, 30},
{38, 19},
{48, 24},
{40, 20},
{46, 23},
{41, 53},
{43, 54},
{33, 49},
{35, 50}}};
CamacTBDataFormatter::CamacTBDataFormatter() { nWordsPerEvent = 148; }
void CamacTBDataFormatter::interpretRawData(const FEDRawData& fedData,
EcalTBEventHeader& tbEventHeader,
EcalTBHodoscopeRawInfo& hodoRaw,
EcalTBTDCRawInfo& tdcRawInfo) {
const unsigned long* buffer = (reinterpret_cast<const unsigned long*>(fedData.data()));
int fedLenght = fedData.size(); // in Bytes
// check ultimate fed size and strip off fed-header and -trailer
if (fedLenght != (nWordsPerEvent * 4)) {
edm::LogError("CamacTBDataFormatter") << "CamacTBData has size " << fedLenght << " Bytes as opposed to expected "
<< (nWordsPerEvent * 4) << ". Returning.";
return;
}
unsigned long a = 1; // used to extract an 8 Bytes word from fed
unsigned long b = 1; // used to manipulate the 8 Bytes word and get what needed
// initializing array of statuses
for (int wordNumber = 0; wordNumber < nWordsPerEvent; wordNumber++) {
statusWords[wordNumber] = true;
}
// for (int wordNumber=0; wordNumber<nWordsPerEvent; wordNumber++)
// { checkStatus( buffer[wordNumber], wordNumber);}
// for (int wordNumber=0; wordNumber<nWordsPerEvent; wordNumber++)
// {
// if (! statusWords[wordNumber])
// {
// edm::LogError("CamacTBDataFormatter") << "bad status in some of the event words; returning;";
// }
// }
int wordCounter = 0;
wordCounter += 4;
// read first word
a = buffer[wordCounter];
wordCounter++;
LogDebug("CamacTBDataFormatter") << "\n\nword:\t" << a;
b = (a & 0xff000000);
b = b >> 24;
LogDebug("CamacTBDataFormatter") << "format ver:\t" << b;
b = (a & 0xff0000);
b = b >> 16;
LogDebug("CamacTBDataFormatter") << "major:\t" << b;
b = (a & 0xff00);
b = b >> 8;
LogDebug("CamacTBDataFormatter") << "minor:\t" << b;
LogDebug("CamacTBDataFormatter") << "\n\n word:\t" << a;
LogDebug("CamacTBDataFormatter") << "time stamp secs: " << a;
LogDebug("CamacTBDataFormatter") << "\n\n word:\t" << a;
LogDebug("CamacTBDataFormatter") << "time stamp musecs: " << a;
a = buffer[wordCounter];
wordCounter++;
LogDebug("CamacTBDataFormatter") << "\n\n word:\t" << a;
b = (a & 0xffffff);
LogDebug("CamacTBDataFormatter") << "LV1A: " << b;
int lv1 = b;
a = buffer[wordCounter];
wordCounter++;
LogDebug("CamacTBDataFormatter") << "\n\n word:\t" << a;
b = (a & 0xffff0000);
b = b >> 16;
LogDebug("CamacTBDataFormatter") << "run number: " << b;
int run = b;
b = (a & 0xffff);
LogDebug("CamacTBDataFormatter") << "spill number: " << b;
int spill = b;
a = buffer[wordCounter];
wordCounter++;
b = (a & 0xffff);
LogDebug("CamacTBDataFormatter") << "event number in spill: " << b;
a = buffer[wordCounter];
wordCounter++;
b = (a & 0xffffff);
LogDebug("CamacTBDataFormatter") << "internal event number: " << b;
a = buffer[wordCounter];
wordCounter++;
LogDebug("CamacTBDataFormatter") << "\n\n word:\t" << a;
b = (a & 0xffff0000);
b = b >> 16;
LogDebug("CamacTBDataFormatter") << "vme errors: " << b;
b = (a & 0xffff);
LogDebug("CamacTBDataFormatter") << "camac errors: " << b;
a = buffer[wordCounter];
wordCounter++;
LogDebug("CamacTBDataFormatter") << "\n\n word:\t" << a;
b = a;
LogDebug("CamacTBDataFormatter") << "extended (32 bits) run number: " << b;
// skip 1 reserved words
wordCounter += 1;
/**********************************
// acessing the hodoscope block
**********************************/
// getting 16 words buffer and checking words statuses
unsigned long bufferHodo[16];
bool hodoAreGood = true;
for (int hodo = 0; hodo < 16; hodo++) {
hodoAreGood = hodoAreGood && checkStatus(buffer[wordCounter], wordCounter);
a = buffer[wordCounter];
bufferHodo[hodo] = buffer[wordCounter];
wordCounter++;
b = (a & 0xffffff);
LogDebug("CamacTBDataFormatter") << "hodo: " << hodo << "\t: " << b;
}
hodoRaw.setPlanes(0);
// unpacking the hodo data
if (hodoAreGood) {
for (int iplane = 0; iplane < nHodoPlanes; iplane++) {
int detType = 1; // new mapping for electronics channels
for (int fiber = 0; fiber < nHodoFibers; fiber++) {
hodoHits[iplane][fiber] = 0;
}
int ch = 0;
// loop on [4-24bits words] = 1 plane
for (int j = 0; j < hodoRawLen; j++) {
int word = bufferHodo[j + iplane * hodoRawLen] & 0xffff;
for (int i = 1; i < 0x10000; i <<= 1) {
if (word & i) {
// map electronics channel to No of fibre
hodoHits[iplane][hodoFiberMap[detType][ch].nfiber - 1]++;
}
ch++;
}
}
}
// building the hodo infos (returning decoded hodoscope hits information)
hodoRaw.setPlanes((unsigned int)nHodoPlanes);
for (int ipl = 0; ipl < nHodoPlanes; ipl++) {
EcalTBHodoscopePlaneRawHits theHodoPlane;
theHodoPlane.setChannels((unsigned int)nHodoFibers);
for (int fib = 0; fib < nHodoFibers; fib++) {
theHodoPlane.setHit((unsigned int)fib, (bool)hodoHits[ipl][fib]);
}
hodoRaw.setPlane((unsigned int)ipl, theHodoPlane);
}
} else {
edm::LogWarning("CamacTBDataFormatter")
<< "hodoscope block has hardware problems or is partly unused at LV1: " << lv1 << " spill: " << spill
<< "run: " << run << ". Skipping digi.";
}
/**********************************
// acessing the scalers block
**********************************/
// getting 72 words buffer and checking words statuses
scalers_.clear();
scalers_.reserve(36);
bool scalersAreGood = true;
for (int scaler = 0; scaler < 72; scaler++) {
scalersAreGood = scalersAreGood && checkStatus(buffer[wordCounter], wordCounter);
a = buffer[wordCounter];
wordCounter++;
b = (a & 0xffffff);
LogDebug("CamacTBDataFormatter") << "scaler: " << scaler << "\t: " << b;
// filling vector container with scalers words
if ((scaler % 2) == 0)
scalers_.push_back(b);
}
if (scalersAreGood) {
tbEventHeader.setScalers(scalers_);
} else {
edm::LogWarning("CamacTBDataFormatter")
<< "scalers block has hardware problems or is partly unused at LV1: " << lv1 << " spill: " << spill
<< "run: " << run;
}
/**********************************
// acessing the fingers block
**********************************/
LogDebug("CamacTBDataFormatter") << "\n";
bool fingersAreGood = true;
for (int finger = 0; finger < 2; finger++) {
fingersAreGood = fingersAreGood && checkStatus(buffer[wordCounter], wordCounter);
a = buffer[wordCounter];
wordCounter++;
b = (a & 0xffffff);
LogDebug("CamacTBDataFormatter") << "finger: " << finger << "\t: " << b;
}
if (fingersAreGood) {
;
} else {
edm::LogWarning("CamacTBDataFormatter")
<< "fingers block has hardware problems or is partly unused at LV1: " << lv1 << " spill: " << spill
<< "run: " << run;
}
/**********************************
// acessing the multi stop TDC block
**********************************/
a = buffer[wordCounter];
wordCounter++;
LogDebug("CamacTBDataFormatter") << "\n\n word:\t" << a;
b = (a & 0x000000ff);
LogDebug("CamacTBDataFormatter") << "number of words used in multi stop TDC words: " << b;
int numberTDCwords = 16;
bool multiStopTDCIsGood = true;
for (int tdc = 0; tdc < numberTDCwords; tdc++) {
multiStopTDCIsGood = multiStopTDCIsGood && checkStatus(buffer[wordCounter], wordCounter);
a = buffer[wordCounter];
wordCounter++;
b = a;
LogDebug("CamacTBDataFormatter") << "tdc: " << tdc << "\t: " << b;
}
if (multiStopTDCIsGood) {
;
} else {
edm::LogWarning("CamacTBDataFormatter")
<< "multi stop TDC block has hardware problems or is partly unused at LV1: " << lv1 << " spill: " << spill
<< "run: " << run;
}
// skip the unused words in multi stop TDC block
wordCounter += (16 - numberTDCwords);
/**********************************
// acessing table in position bit
**********************************/
a = buffer[wordCounter];
wordCounter++;
b = (a & 0x00000001); //1= table is in position; 0=table is moving
bool tableIsMoving;
if (b) {
LogDebug("CamacTBDataFormatter") << " table is in position.";
tableIsMoving = false;
} else {
LogDebug("CamacTBDataFormatter") << " table is moving.";
tableIsMoving = true;
}
tbEventHeader.setTableIsMoving(tableIsMoving);
wordCounter += 3;
/**********************************
// acessing ADC block
**********************************/
// skip 10 reserved words
wordCounter += 10;
bool ADCIsGood = true;
a = buffer[wordCounter];
wordCounter++; // NOT read out
b = (a & 0x00ffffff);
LogDebug("CamacTBDataFormatter") << "ADC word1: " << a << "\t ADC2: " << b << " word is: " << (wordCounter - 1);
// ADCIsGood = true;
// ADCIsGood = ADCIsGood && checkStatus(buffer[wordCounter], wordCounter);
ADCIsGood = checkStatus(buffer[wordCounter], wordCounter);
a = buffer[wordCounter];
wordCounter++; // read out
b = (a & 0xffffff);
LogDebug("CamacTBDataFormatter") << "ADC word2, adc channel 11, ampli S6: " << a << "\t ADC2: " << b;
if (ADCIsGood)
tbEventHeader.setS6ADC(b);
else
tbEventHeader.setS6ADC(-1);
/**********************************
// acessing TDC block
**********************************/
// skip 6 reserved words
wordCounter += 6;
ADCIsGood&& checkStatus(buffer[wordCounter], wordCounter);
a = buffer[wordCounter];
wordCounter++;
b = (a & 0xfffff);
LogDebug("CamacTBDataFormatter") << "TDC word1: " << a << "\t TDC2: " << b;
ADCIsGood&& checkStatus(buffer[wordCounter], wordCounter);
a = buffer[wordCounter];
wordCounter++;
b = (a & 0xfffff);
LogDebug("CamacTBDataFormatter") << "TDC word2: (ext_val_trig - LHC_clock) " << a
<< "\t (ext_val_trig - LHC_clock): " << b;
tdcRawInfo.setSize(1);
int sampleNumber = 1;
EcalTBTDCSample theTdc(sampleNumber, b);
tdcRawInfo.setSample(0, theTdc);
a = buffer[wordCounter];
wordCounter++;
LogDebug("CamacTBDataFormatter") << "\n\n word:\t" << a;
b = a;
LogDebug("CamacTBDataFormatter") << "last word of event: " << b;
}
// given a data word with 8 msb as status, checks status
bool CamacTBDataFormatter::checkStatus(unsigned long word, int wordNumber) {
if (wordNumber < 1 || wordNumber > nWordsPerEvent) {
edm::LogWarning("CamacTBDataFormatter::checkStatus")
<< "checking word number: " << wordNumber << " which is out of allowed range (" << nWordsPerEvent << ")";
return false;
}
bool isOk = true;
if (word & 0x80000000) // daq item not used
{
edm::LogWarning("CamacTBDataFormatter::checkStatus") << "daq item not used at word: " << wordNumber;
statusWords[wordNumber - 1] = false;
isOk = false;
}
if (word & 0x40000000) // vme error on data
{
edm::LogWarning("CamacTBDataFormatter::checkStatus") << "vme error on word: " << wordNumber;
statusWords[wordNumber - 1] = false;
isOk = false;
}
if (word & 0x20000000) // vme error on status
{
edm::LogWarning("CamacTBDataFormatter::checkStatus") << "vme status error at word: " << wordNumber;
statusWords[wordNumber - 1] = false;
isOk = false;
}
if (word & 0x10000000) // camac error (no X)
{
edm::LogWarning("CamacTBDataFormatter::checkStatus") << "camac error (no X) at word: " << wordNumber;
statusWords[wordNumber - 1] = false;
isOk = false;
}
if (word & 0x08000000) // camac error (no Q)
{
edm::LogWarning("CamacTBDataFormatter::checkStatus") << "camac error (no Q) at word: " << wordNumber;
statusWords[wordNumber - 1] = false;
isOk = false;
}
// camac error check not done on purpose from Aug 8, to speed up Camac communication. This bit status is now ignored.
// if (word & 0x04000000) // no camac check error
// {
//edm::LogWarning("CamacTBDataFormatter::checkStatus") << "no camac check error at word: "<< wordNumber;
//statusWords[wordNumber -1] = false;
//isOk = false;
// }
return isOk;
}
|