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
|
// PROGRAM: dduBinExaminer v 1
// Authors: V. Barashko, A. Korytov, K. Kotov, July 13, 2004
//=============================================================================================
// This program checks DDU binary datafile for event format integrity.
// It reads a requested binary file and:
// 1) searches for Control Words (Headers, Trailers or other Signatures)
// 2) checks for their proper sequence
// 3) counts words and checks for consistency with
// a) the expected nominal count (CFEB samples, ALCT, TMB)
// b) the number of words counted by various boards (ALCT, TMB, DDU)
// 4) prints out structure for each event (can be suppressed by redirecting it to /dev/null)
// 5) prints out warnings for each event (can be suppressed by redirecting it to /dev/null)
// 6) print out errors for each event
// 6) prints out the finals statistics of errors and warnings for the whole file
// 7) produces a few histograms (ad hoc feature)
//==============================================================================================
// To compile: g++ -DLOCAL_UNPACK -o dduBinExaminerTest dduBinExaminerTest.cpp -I../src -I../interface/ -I../../../
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <map>
#include <set>
#include <vector>
#include <getopt.h>
#include "CSCDCCExaminer.cc"
using namespace std;
// == Prints four 16bits words in Hex
void printb(unsigned short* buf){
for (int i=0; i<4; i++)
cout << " " << setw(4)<< setfill('0') << hex << buf[i];
cout << dec << endl;
}
// == Main =======================================================================================
int main(int argc, char **argv){
CSCDCCExaminer examiner;
examiner.modeDDU(true);
//typedef int32_t ERRARR[examiner.nERRORS];
//typedef int32_t WRNARR[examiner.nWARNINGS];
int32_t cntERROR[examiner.nERRORS], cntWARNING[examiner.nWARNINGS], cntBadEvent=0, unknownChamber=0;
map< int, map<int,int32_t> > cntChambERROR;
map< int, map<int,int32_t> > cntChambWARNING;
map< int, map<int,int32_t> > cntChambPAYLOAD;
map< int, map<int,int32_t> > cntChambSTATUS;
// set ERROR and WARNING counters and flags to zero
bzero(cntERROR, sizeof(cntERROR) );
bzero(cntWARNING, sizeof(cntWARNING));
examiner.output1().show();
examiner.crcALCT(true);
examiner.crcTMB (true);
examiner.crcCFEB(true);
// For error's timelines
const int tlbinsize=100;
vector<int> *tlerror[examiner.nERRORS], *tlwarn[examiner.nWARNINGS];
bzero(tlerror,sizeof(tlerror));
for(int nerr=0; nerr<examiner.nERRORS; nerr++) tlerror[nerr] = new vector<int>(1000000/tlbinsize);
for(int nwrn=0; nwrn<examiner.nWARNINGS; nwrn++) tlwarn [nwrn] = new vector<int>(1000000/tlbinsize);
string datafile="";
string rootfile="dduBinExaminer.root";
// == Process command line options
if( argc<2 ) { printf("Nothing to be done\nType -h for help\n"); exit(0); } else { datafile = argv[1]; }
ofstream log_stat;
ofstream log_err [examiner.nERRORS], log_warn [examiner.nWARNINGS];
set<int> errEvent[examiner.nERRORS], warnEvent[examiner.nWARNINGS], badEvent;
static struct option options[] = {
{"help" ,0, 0, 'h'}, {"statistic" ,0, 0, 's'}, {"error" ,1, 0, 'e'},
{"warning" ,1, 0, 'w'}, {"datafile" ,1, 0, 'd'}, {"rootfile" ,1, 0, 'r'},
{"noALCTCRC" ,0, 0, 'n'}, {"noCFEBCRC" ,0, 0, 'n'}, {"noTMBCRC" ,0, 0, 'n'},
{0, 0, 0, 0}
};
while (1) {
int index=0; char *tmp,*token; int errnum,warnnum; string tmpname;
int c = getopt_long(argc, argv, "nhse:w:d:r:",options, &index);
if (c == -1) break;
switch (c){
case 'h':
printf("Usage:\n");
printf("-h , --help shows this message\n");
printf("-d INPUT , --datafile=INPUT raw DDU file\n");
printf("-r OUTPUT , --rootfile=OUTPUT output with histograms\n");
printf("-s [NAME] , --statistic=[NAME] log information about bad events into runErrStat.all or [NAME] if specified\n");
printf("-e E1,..,En, --error=E1,..En log information about particular errors into runErrStat.[NUMBER]\n");
printf("-w W1,..,Wn, --warning=W1,..Wn log information about particular warnings into runWarnStat.[NUMBER]\n");
printf("--noALCTCRC disable ALCT CRC code\n");
printf("--noCFEBCRC disable CFEB CRC code\n");
printf("--noTMBCRC disable TMB CRC code\n");
printf("\nFirst two non-key arguments are considered to be 'datafile' and 'rootfile'");
printf("\n");
exit(0);
case 's':
tmpname = ( optarg && strlen(optarg) ? optarg : "runErrStat.all" ) ;
log_stat.open(tmpname.c_str());
break;
case 'e':
token = tmp = strdup(optarg);
while(1){
if((token = strrchr(tmp,','))) *token++ = '\0'; else token = tmp;
if(!strlen(token)) continue;
errnum = atoi(token);
if( errnum<0 || errnum>=19 ){
printf("Wrong error number: %s ( 0 <= sould_be <= 19 )\n",token);
exit(0);
}
tmpname = "runErrStat.";
tmpname.append(token);
log_err[errnum].open(tmpname.c_str());
if(token == tmp)break;
}
free(tmp);
break;
case 'w':
token = tmp = strdup(optarg);
while(1){
if((token = strrchr(tmp,','))) *token++ = '\0'; else token = tmp;
if(!strlen(token)) continue;
warnnum = atoi(token);
if( warnnum<0 || warnnum>=5 ){
printf("Wrong warning number: %s ( 0 <= sould_be <= 5 )\n",token);
exit(0);
}
tmpname = "runWarnStat.";
tmpname.append(token);
log_warn[warnnum].open(tmpname.c_str());
if(token == tmp)break;
}
free(tmp);
break;
case 'd': datafile = optarg; break;
case 'r': rootfile = optarg; break;
case 'n': break;
default : printf("Type -h for help\n"); return 0;
}
}
for(int arg=1; arg<argc; arg++){
if( !strcmp("--noALCTCRC",argv[arg]) )
examiner.crcALCT(false);
if( !strcmp("--noTMBCRC", argv[arg]) )
examiner.crcTMB(false);
if( !strcmp("--noCFEBCRC",argv[arg]) )
examiner.crcCFEB(false);
}
// == Open input data file
ifstream input(datafile.c_str());
if (!input) { perror(datafile.c_str()); return -1; }
cerr << datafile << " Opened" << endl;
const int bufferSize = 116384;
unsigned short buffer[bufferSize];
unsigned long iteration=1;
//------------------------------------------------------------------------------------------------
// == Read from datafile 4 16bit words into buf till end-of-file found
while(!input.eof()){
input.read((char *)(buffer), bufferSize*sizeof(short));
const unsigned short *buf = buffer;
int32_t length = input.gcount()/sizeof(short);
while( (length = examiner.check(buf,length)) >= 0 ){
// increment statistics Errors and Warnings
for(int err=0; err<examiner.nERRORS; err++){
set<int> chamb_err = examiner.chambersWithError(err);
set<int>::const_iterator chamber = chamb_err.begin();
while( chamber != chamb_err.end() ) cntChambERROR[*chamber++][err]++;
if( examiner.error(err) ){
cntERROR[err]++;
errEvent[err].insert(iteration);
}
badEvent.insert(iteration);
}
for(int wrn=0; wrn<examiner.nWARNINGS; wrn++){
set<int> chamb_wrn = examiner.chambersWithWarning(wrn);
set<int>::const_iterator chamber = chamb_wrn.begin();
while( chamber != chamb_wrn.end() ) cntChambWARNING[*chamber++][wrn]++;
if( examiner.warning(wrn) ){
cntWARNING[wrn]++;
warnEvent[wrn].insert(iteration);
}
}
// std::map<int,long> payloads = examiner.payloadDetailed();
std::map<CSCIdType, ExaminerStatusType> payloads = examiner.payloadDetailed();
for(std::map<CSCIdType, ExaminerStatusType>::const_iterator csc=payloads.begin(); csc!=payloads.end(); csc++)
for(int bit=0; bit<examiner.nPAYLOADS; bit++)
if( csc->second & (1<<bit) ) cntChambPAYLOAD[csc->first][bit]++;
// std::map<int,long> statuses = examiner.statusDetailed();
std::map<CSCIdType, ExaminerStatusType> statuses = examiner.statusDetailed();
for(std::map<CSCIdType, ExaminerStatusType>::const_iterator csc=statuses.begin(); csc!=statuses.end(); csc++)
for(int bit=0; bit<examiner.nSTATUSES; bit++)
if( csc->second & (1<<bit) ) cntChambSTATUS[csc->first][bit]++;
if( examiner.errors() ) cntBadEvent++;
if( examiner.errorsForChamber(-2) ) unknownChamber++;
if( iteration % tlbinsize == 0 )
for(int err=0; err<examiner.nERRORS; err++){
if( tlerror[err] && tlerror[err]->size() <= iteration/tlbinsize )
tlerror[err]->resize( tlerror[err]->size() + iteration/tlbinsize );
if( tlerror[err] ) (*tlerror[err])[iteration/tlbinsize] = cntERROR[err];
}
if( iteration % tlbinsize == 0 )
for(int wrn=0; wrn<examiner.nWARNINGS; wrn++){
if( tlwarn[wrn] && tlwarn[wrn]->size() <= iteration/tlbinsize )
tlwarn[wrn]->resize( tlwarn[wrn]->size() + iteration/tlbinsize );
if( tlwarn[wrn] ) (*tlwarn [wrn])[iteration/tlbinsize] = cntWARNING[wrn];
}
// == Print some intermediate stats after so many trailers read
if( (iteration%5000)==0 ){
cerr << endl << "DDU Headers: " << examiner.cntDDU_Headers << endl;
//cerr << "Trailers: " << cntDDU_Trailers << endl;
cerr << "Bad Events: " << cntBadEvent
<< " or " << (cntBadEvent/examiner.cntDDU_Headers) << " x Number of DDU Headers" << endl;
for(int err=0; err<examiner.nERRORS; err++)
if( cntERROR[err] != 0 )
cerr << "ERROR " << err << " " << examiner.errName(err) << " " << cntERROR[err] << endl;
for(int wrn=0; wrn<examiner.nWARNINGS; wrn++)
if( cntWARNING[wrn] != 0 )
cerr << "WARNING " << wrn << " " << examiner.wrnName(wrn) << " " << cntWARNING[wrn] << endl;
}
if( examiner.error(18) ) cout<<"ERROR 18"<<endl;
iteration++;
}
}
// == Print out the final stats
cerr << endl << endl << " " << datafile << endl;
cerr << endl << endl << "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" << endl;
cerr << " DDU Headers: " << examiner.cntDDU_Headers << endl;
cerr << " DDUTrailers: " << examiner.cntDDU_Trailers << endl;
cerr << " Bad Events: " << cntBadEvent
<< " or " << (float(cntBadEvent)/examiner.cntDDU_Headers) << " x Number of DDU Headers" << endl;
const char *descr;
cerr << endl << " NUMBER OF EVENTS WITH FOLLOWING ERRORS: " << endl;
for(int err=0; err<examiner.nERRORS; err++)
if( (descr=examiner.errName(err)) && strlen(descr) )
cerr << " ERROR " << err << " " << descr << " " << cntERROR[err] << endl;
cerr << endl << " NUMBER OF EVENTS WITH FOLLOWING WARNINGS: " << endl;
for(int wrn=0; wrn<examiner.nWARNINGS; wrn++)
if( (descr=examiner.wrnName(wrn)) && strlen(descr) )
cerr << " WARNING " << wrn << " " << descr << " " << cntWARNING[wrn] << endl;
cerr << "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" << endl << endl;
// == Close input data file
input.close();
cerr << datafile << " Closed" << endl;
//hash_map< int, hash_map<int,int32_t> >::iterator chamber = cntChambERROR.begin();
//while( chamber != cntChambERROR.end() ){
std::map<CSCIdType, ExaminerStatusType>::const_iterator chamber = examiner.cntCHAMB_Headers.begin();
while( chamber != examiner.cntCHAMB_Headers.end() ){
cerr << endl << endl << endl;
cerr << "-------------------------------------------------------------------------" << endl << endl;
cerr << " Chamber: "<< chamber->first << " ( crate: " << (chamber->first>>4) << " slot: " << (chamber->first&0x0F) << " )" << endl;
cerr << chamber->first << "DMB Headers: " << examiner.cntCHAMB_Headers[chamber->first] << endl;
cerr << chamber->first << "DMBTrailers: " << examiner.cntCHAMB_Trailers[chamber->first] << endl;
//cerr << " Bad Events: " << cntBadEvent
// << " or " << (float(cntBadEvent)/examiner.cntDDU_Headers) << " x Number of DDU Headers" << endl;
const char *descr;
cerr << endl << " NUMBER OF EVENTS WITH FOLLOWING ERRORS: " << endl;
if( (descr=examiner.errName(0)) && strlen(descr) )
cerr << chamber->first << " ERROR " << 0 << " " << descr << " " << cntChambERROR[chamber->first][0] << endl;
for(int err=5; err<24; err++){
if( err==19 ) continue;
if( (descr=examiner.errName(err)) && strlen(descr) )
cerr << chamber->first << " ERROR " << err << " " << descr << " " << cntChambERROR[chamber->first][err] << endl;
}
// cerr << endl << " NUMBER OF EVENTS WITH FOLLOWING WARNINGS: " << endl;
// for(int wrn=1; wrn<examiner.nWARNINGS; wrn++)
// if( (descr=examiner.wrnName(wrn)) && strlen(descr) )
// cerr << chamber->first << " WARNING " << wrn << " " << descr << " " << cntChambWARNING[chamber->first][wrn] << endl;
cerr << endl << " NUMBER OF EVENTS WITH FOLLOWING PAYLOADS: " << endl;
for(int pl=0; pl<examiner.nPAYLOADS; pl++){
if( (descr=examiner.payloadName(pl)) && strlen(descr) )
cerr << chamber->first << " PAYLOAD " << pl << " " << std::setw(50) << std::left << descr << cntChambPAYLOAD[chamber->first][pl] << endl;
}
cerr << endl << " NUMBER OF EVENTS WITH FOLLOWING STATUSES: " << endl;
for(int st=0; st<examiner.nSTATUSES; st++){
if( (descr=examiner.statusName(st)) && strlen(descr) )
cerr << chamber->first << " STATUS " << st << " " << std::setw(50) << std::left << descr << cntChambSTATUS[chamber->first][st] << endl;
}
chamber++;
}
cerr << endl << endl << endl;
cerr << "-------------------------------------------------------------------------" << endl << endl;
cerr << " Chamber: -1" << endl;
cerr << "-1DMB Headers: " << unknownChamber << endl;
cerr << "-1DMBTrailers: " << unknownChamber << endl;
//const char *descr;
cerr << endl << " NUMBER OF EVENTS WITH FOLLOWING ERRORS: " << endl;
if( (descr=examiner.errName(0)) && strlen(descr) )
cerr << "-1 ERROR " << 0 << " " << descr << " " << cntChambERROR[-2][0] << endl;
for(int err=5; err<24; err++){
if( err==19 ) continue;
if( (descr=examiner.errName(err)) && strlen(descr) )
cerr << "-1 ERROR " << err << " " << descr << " " << cntChambERROR[-2][err] << endl;
}
cerr << endl << " NUMBER OF EVENTS WITH FOLLOWING WARNINGS: " << endl;
for(int wrn=1; wrn<examiner.nWARNINGS; wrn++)
if( (descr=examiner.wrnName(wrn)) && strlen(descr) )
cerr << "-1 WARNING " << wrn << " " << descr << " " << cntChambWARNING[-2][wrn] << endl;
cerr << "-------------------------------------------------------------------------" << endl << endl;
////////////////////////////// output files
for(int err=0; err<examiner.nERRORS; err++){ // Errors
if( log_err[err].is_open() ){
set<int>::const_iterator iter = errEvent[err].begin();
while( iter != errEvent[err].end() ){ log_err[err]<<(*iter)<<endl; iter++; }
}
}
for(int wrn=0; wrn<examiner.nWARNINGS; wrn++){ // Warnings
if( log_warn[wrn].is_open() ){
set<int>::const_iterator iter = warnEvent[wrn].begin();
while( iter != warnEvent[wrn].end() ){ log_warn[wrn]<<(*iter)<<endl; iter++; }
}
}
if( log_stat.is_open() ){
set<int>::const_iterator iter = badEvent.begin();
while( iter != badEvent.end() ){
log_stat<<(*iter)<<" ";
for(int err=0; err<examiner.nERRORS; err++){ // Errors
set<int>::const_iterator occurance = errEvent[err].find((*iter));
if( occurance != errEvent[err].end() ) log_stat<<"*"; else log_stat<<".";
}
log_stat<<endl;
iter++;
}
}
// == Exit from program
return 0;
}
|