1 |
// |
2 |
#include <iostream> |
3 |
#include <sstream> |
4 |
#include <errno.h> |
5 |
// |
6 |
#include <TSystem.h> |
7 |
// |
8 |
#include <PamelaDBOperations.h> |
9 |
#include <YodaProfilerVerl2.h> |
10 |
// |
11 |
using namespace std; |
12 |
// |
13 |
// Usage subroutine |
14 |
// |
15 |
void usage(){ |
16 |
printf("\nUsage:\n"); |
17 |
printf("\n YodaProfiler [options] -rawFile raw_filename -yodaFile yoda_filename \n"); |
18 |
printf("\n -rawFile full path to the raw file\n"); |
19 |
printf( " -yodaFile full path to the YODA file\n"); |
20 |
printf("\n Options are:\n\n"); |
21 |
printf(" --version print informations about compilation and exit\n"); |
22 |
printf(" -h | --help print this help and exit \n"); |
23 |
printf(" -v | --verbose be verbose [default]\n"); |
24 |
printf(" -s | --silent print nothing on STDOUT\n"); |
25 |
printf(" -g | --debug be very verbose [default: no]\n"); |
26 |
printf(" -boot number CPU boot number [default = taken from VarDump]\n"); |
27 |
printf(" -autoboot if no VarDump found try to determine the BOOT number\n"); |
28 |
printf(" looking at timesync [default]\n"); |
29 |
printf(" -no-autoboot disable previous check\n"); |
30 |
printf(" -tsync number timesync (s) [default = taken from data]\n"); |
31 |
printf(" -obt0 number obt at timesync (ms) [default = taken from data]\n"); |
32 |
printf(" -clean number number in seconds after which the fragment table\n"); |
33 |
printf(" can be cleaned and runs validated [default = -1 do not clean],\n"); |
34 |
printf(" if 0 force cleaning immediatly, if negative do not clean\n"); |
35 |
printf(" -remove file remove file and all related runs and calibrations from DB\n"); |
36 |
printf(" file must be the YODA filename (full path is not needed)\n"); |
37 |
printf(" 'same' can be used if in conjuction with -yodaFile\n"); |
38 |
printf(" -validate file validates runs between the two closest calibration to file \n"); |
39 |
printf(" not belonging to file itself. File must be the YODA filename\n"); |
40 |
printf(" 'same' can be used if in conjuction with -yodaFile\n"); |
41 |
printf(" -cleanfrag file clean run fragments for file only\n"); |
42 |
printf(" File must be the YODA filename\n"); |
43 |
printf(" 'same' can be used if in conjuction with -yodaFile\n"); |
44 |
printf(" -nofrag do not leave runs in the fragment table and look for fragments\n"); |
45 |
printf(" in the GL_RUN table.\n"); |
46 |
printf(" -force to be used to reprocess a file or to process a file\n"); |
47 |
printf(" when already validated the surroundings, it is equivalent to:\n"); |
48 |
printf(" -remove same -validate same -cleanfrag same -nofrag\n"); |
49 |
printf(" -check performs some test on the GL_RUN table to check its consistency\n"); |
50 |
printf(" -host name of the DB host [default = $PAM_DBHOST or mysql://localhost/pamelaprod]\n"); |
51 |
printf(" -user username for the DB connection [default = $PAM_DBUSER or \"anonymous\"] \n"); |
52 |
printf(" -psw password for the DB connection [default = $PAM_DBPSW or \"\"]\n"); |
53 |
printf(" -tle <file> ascii file containing TLE obtained from celestrak.org or space-track.org [default = no]\n"); |
54 |
printf("\n The order of input files and options does not matter. \n"); |
55 |
printf("\n Example: \n"); |
56 |
printf(" YodaProfiler -yodaFile /path/to/raw/files/000_000_00000_cln2.pam -rawFile /path/to/filesfromyoda/000_000_00000_cln2.root -v \n\n"); |
57 |
}; |
58 |
// |
59 |
int main(int numinp, char *inps[]){ |
60 |
// |
61 |
// Variables booking |
62 |
// |
63 |
Int_t signal = 0; |
64 |
Int_t nul = 0; |
65 |
UInt_t boot = 0; |
66 |
UInt_t tsync = 0; |
67 |
UInt_t obt0 = 0; |
68 |
Long64_t olderthan = -1LL; |
69 |
// |
70 |
// |
71 |
TString filerawname = ""; |
72 |
TString filerootname = ""; |
73 |
// |
74 |
TString host = "mysql://localhost/pamelaprod"; |
75 |
TString user = "anonymous"; |
76 |
TString password = ""; |
77 |
// |
78 |
TString tlefilename = ""; |
79 |
// |
80 |
const char *pamdbhost = gSystem->Getenv("PAM_DBHOST"); |
81 |
const char *pamdbuser = gSystem->Getenv("PAM_DBUSER"); |
82 |
const char *pamdbpsw = gSystem->Getenv("PAM_DBPSW"); |
83 |
if ( !pamdbhost ) pamdbhost = ""; |
84 |
if ( !pamdbuser ) pamdbuser = ""; |
85 |
if ( !pamdbpsw ) pamdbpsw = ""; |
86 |
if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
87 |
if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
88 |
if ( strcmp(pamdbpsw,"") ) password = pamdbpsw; |
89 |
// |
90 |
// |
91 |
Bool_t beverbose = true; |
92 |
Bool_t debug = false; |
93 |
Bool_t autoboot = true; |
94 |
// |
95 |
Bool_t remove = false; |
96 |
TString remfile = ""; |
97 |
// |
98 |
Bool_t forceclean = false; |
99 |
TString fcleanfile = ""; |
100 |
// |
101 |
Bool_t validate = false; |
102 |
TString validfile = ""; |
103 |
// |
104 |
Bool_t nofrag = false; |
105 |
// |
106 |
Bool_t force = false; |
107 |
// |
108 |
Bool_t check = false; |
109 |
// |
110 |
Int_t i = 0; |
111 |
// |
112 |
if ( numinp > 1 ){ |
113 |
while ( i < numinp ){ |
114 |
if ( !strcmp(inps[i],"--version") ){ |
115 |
YodaProfilerInfo(true); |
116 |
exit(0); |
117 |
}; |
118 |
if ( !strcmp(inps[i],"-h") || !strcmp(inps[i],"--help") ){ |
119 |
|
120 |
usage(); |
121 |
exit(0); |
122 |
}; |
123 |
if ( !strcmp(inps[i],"-rawFile") ) { |
124 |
if ( numinp-1 < i+1 ){ |
125 |
usage(); |
126 |
exit(1); |
127 |
}; |
128 |
filerawname = (TString)inps[i+1]; |
129 |
}; |
130 |
if ( !strcmp(inps[i],"-yodaFile") ) { |
131 |
if ( numinp-1 < i+1 ){ |
132 |
usage(); |
133 |
exit(1); |
134 |
}; |
135 |
filerootname = (TString)inps[i+1]; |
136 |
}; |
137 |
if ( !strcmp(inps[i],"-remove") ) { |
138 |
if ( numinp-1 < i+1 ){ |
139 |
usage(); |
140 |
exit(1); |
141 |
}; |
142 |
remfile = (TString)inps[i+1]; |
143 |
remove = true; |
144 |
}; |
145 |
if ( !strcmp(inps[i],"-cleanfrag") ) { |
146 |
if ( numinp-1 < i+1 ){ |
147 |
usage(); |
148 |
exit(1); |
149 |
}; |
150 |
fcleanfile = (TString)inps[i+1]; |
151 |
forceclean = true; |
152 |
}; |
153 |
if ( !strcmp(inps[i],"-validate") ) { |
154 |
if ( numinp-1 < i+1 ){ |
155 |
usage(); |
156 |
exit(1); |
157 |
}; |
158 |
validfile = (TString)inps[i+1]; |
159 |
validate = true; |
160 |
}; |
161 |
if ( !strcmp(inps[i],"-autoboot") ) { |
162 |
autoboot = true; |
163 |
}; |
164 |
if ( !strcmp(inps[i],"-no-autoboot") ) { |
165 |
autoboot = false; |
166 |
}; |
167 |
if ( !strcmp(inps[i],"-boot") ) { |
168 |
if ( numinp-1 < i+1 ){ |
169 |
usage(); |
170 |
exit(1); |
171 |
}; |
172 |
boot = atoi(inps[i+1]); |
173 |
}; |
174 |
if ( !strcmp(inps[i],"-tsync") ) { |
175 |
if ( numinp-1 < i+1 ){ |
176 |
usage(); |
177 |
exit(1); |
178 |
}; |
179 |
tsync = (UInt_t)atoll(inps[i+1]); |
180 |
}; |
181 |
if ( !strcmp(inps[i],"-obt0") ) { |
182 |
if ( numinp-1 < i+1 ){ |
183 |
usage(); |
184 |
exit(1); |
185 |
}; |
186 |
obt0 = (UInt_t)atoll(inps[i+1]); |
187 |
}; |
188 |
if ( !strcmp(inps[i],"-clean") ) { |
189 |
if ( numinp-1 < i+1 ){ |
190 |
usage(); |
191 |
exit(1); |
192 |
}; |
193 |
olderthan = (Long64_t)atoll(inps[i+1]); |
194 |
}; |
195 |
if ( !strcmp(inps[i],"-host") ) { |
196 |
if ( numinp-1 < i+1 ){ |
197 |
usage(); |
198 |
exit(1); |
199 |
}; |
200 |
host = (TString)inps[i+1]; |
201 |
}; |
202 |
if ( !strcmp(inps[i],"-user") ) { |
203 |
if ( numinp-1 < i+1 ){ |
204 |
usage(); |
205 |
exit(1); |
206 |
}; |
207 |
user = (TString)inps[i+1]; |
208 |
}; |
209 |
if ( !strcmp(inps[i],"-psw") ) { |
210 |
if ( numinp-1 < i+1 ){ |
211 |
usage(); |
212 |
exit(1); |
213 |
}; |
214 |
password = (TString)inps[i+1]; |
215 |
}; |
216 |
if ( !strcmp(inps[i],"-tle") ) { |
217 |
if ( numinp-1 < i+1 ){ |
218 |
usage(); |
219 |
exit(1); |
220 |
}; |
221 |
tlefilename = (TString)inps[i+1]; |
222 |
}; |
223 |
// |
224 |
if ( !strcmp(inps[i],"-v") || !strcmp(inps[i],"--verbose") ) beverbose = true; |
225 |
// |
226 |
if ( !strcmp(inps[i],"-s") || !strcmp(inps[i],"--silent") ) beverbose = false; |
227 |
// |
228 |
if ( !strcmp(inps[i],"-g") || !strcmp(inps[i],"--debug") ) debug = true; |
229 |
// |
230 |
if ( !strcmp(inps[i],"-f") || !strcmp(inps[i],"-force") ) force = true; |
231 |
// |
232 |
if ( !strcmp(inps[i],"-nofrag") ) nofrag = true; |
233 |
// |
234 |
if ( !strcmp(inps[i],"-check") ) check = true; |
235 |
// |
236 |
i++; |
237 |
}; |
238 |
} else { |
239 |
// |
240 |
// no input parameters exit with error, we need at least the run id. |
241 |
// |
242 |
cout << "\n ERROR: NO INPUT PARAMETERS \n"; |
243 |
usage(); |
244 |
exit(1); |
245 |
}; |
246 |
|
247 |
// |
248 |
// If not in verbose mode redirect to /dev/null the stdout and stderr |
249 |
// |
250 |
if ( !beverbose ){ |
251 |
nul = open("/dev/null", O_CREAT | O_RDWR,S_IREAD | S_IWRITE); |
252 |
dup2(nul,1); |
253 |
dup2(nul,2); |
254 |
}; |
255 |
// |
256 |
if ( !strcmp(filerootname.Data(),"") ){ |
257 |
if ( (validate && !strcmp(validfile.Data(),"same")) || |
258 |
(remove && !strcmp(remfile.Data(),"same")) || |
259 |
(forceclean && !strcmp(fcleanfile.Data(),"same")) || force ){ |
260 |
printf("\n ERROR IN INPUT PARAMETERS \n"); |
261 |
usage(); |
262 |
exit(1); |
263 |
}; |
264 |
} else { |
265 |
if ( validate && !strcmp(validfile.Data(),"same") ) validfile = (TString)gSystem->BaseName(filerootname.Data()); |
266 |
if ( remove && !strcmp(remfile.Data(),"same") ) remfile = (TString)gSystem->BaseName(filerootname.Data()); |
267 |
if ( forceclean && !strcmp(fcleanfile.Data(),"same") ) fcleanfile = (TString)gSystem->BaseName(filerootname.Data()); |
268 |
}; |
269 |
// |
270 |
if ( force ){ |
271 |
nofrag = true; |
272 |
forceclean = true; |
273 |
remove = true; |
274 |
validate = true; |
275 |
fcleanfile = (TString)gSystem->BaseName(filerootname.Data()); |
276 |
remfile = fcleanfile; |
277 |
validfile = fcleanfile; |
278 |
}; |
279 |
// |
280 |
// Start: |
281 |
// |
282 |
TString message; |
283 |
char *version = YodaProfilerInfo(false); |
284 |
PamelaDBOperations *pamDB = 0; |
285 |
UInt_t sizeofwar = 12; |
286 |
UInt_t WAR[12]; |
287 |
memset(WAR, 0, sizeofwar*sizeof(UInt_t)); |
288 |
// |
289 |
printf("\n Welcome to the PAMELA YodaProfiler, version %s \n\n",version); |
290 |
try{ |
291 |
// |
292 |
//------------------------------------------------------------------------------------------- |
293 |
// Create pamDB object and open SQL connection |
294 |
//------------------------------------------------------------------------------------------- |
295 |
if ( beverbose ) printf(" 1 => Initialize and open SQL connection \n"); |
296 |
pamDB = new PamelaDBOperations(host,user,password,filerawname,filerootname,boot,tsync,obt0,debug,tlefilename); |
297 |
pamDB->CheckConnection(); |
298 |
//------------------------------------------------------------------------------------------- |
299 |
// |
300 |
pamDB->SetNoFrag(nofrag); |
301 |
pamDB->SetAutoBoot(autoboot); |
302 |
// |
303 |
if ( remove ){ |
304 |
//------------------------------------------------------------------------------------------- |
305 |
// Remove a file and, on cascade, all that follows from the DB |
306 |
//------------------------------------------------------------------------------------------- |
307 |
if ( beverbose ) printf(" X => Remove file %s from DB \n",((TString)gSystem->BaseName(remfile)).Data()); |
308 |
WAR[11] = pamDB->removeFile((TString)gSystem->BaseName(remfile.Data())); |
309 |
//------------------------------------------------------------------------------------------- |
310 |
}; |
311 |
// |
312 |
if( pamDB->InsertRaw() ){ |
313 |
//------------------------------------------------------------------------------------------- |
314 |
//Insert a Raw file in GL_RAW |
315 |
//------------------------------------------------------------------------------------------- |
316 |
if ( beverbose ) printf(" 2 => Insert a RAW file in GL_RAW \n"); |
317 |
WAR[0] = pamDB->insertPamelaRawFile(); |
318 |
//------------------------------------------------------------------------------------------- |
319 |
}; |
320 |
// |
321 |
if( pamDB->InsertRoot() ){ |
322 |
// |
323 |
if( !pamDB->InsertRaw() )printf("=> RAW file not inserted --- the DB might not ( yet ) be filled correctly \n"); |
324 |
pamDB->CheckFile(); |
325 |
// |
326 |
//------------------------------------------------------------------------------------------- |
327 |
//Insert an entry in GL_TIMESYNC |
328 |
//------------------------------------------------------------------------------------------- |
329 |
if ( beverbose ) printf(" 3 => Insert an entry in GL_TIMESYNC \n"); |
330 |
WAR[1] = pamDB->insertPamelaGL_TIMESYNC(); |
331 |
//------------------------------------------------------------------------------------------- |
332 |
// |
333 |
//------------------------------------------------------------------------------------------- |
334 |
//Update a single GL_RAW record with its BOOT_NUMBER |
335 |
//------------------------------------------------------------------------------------------- |
336 |
if ( beverbose ) printf(" 4 => Update a single GL_RAW record with its BOOT_NUMBER \n"); |
337 |
WAR[3] = pamDB->assignBOOT_NUMBER(); |
338 |
if ( WAR[3] && WAR[3] != 1 && WAR[3] != 8 ) throw -9; |
339 |
//------------------------------------------------------------------------------------------- |
340 |
// |
341 |
//------------------------------------------------------------------------------------------- |
342 |
//Insert unpack ROOT file in GL_ROOT |
343 |
//------------------------------------------------------------------------------------------- |
344 |
if ( beverbose ) printf(" 5 => Insert unpack ROOT file in GL_ROOT \n"); |
345 |
WAR[2] = pamDB->insertPamelaRootFile(); |
346 |
//------------------------------------------------------------------------------------------- |
347 |
// |
348 |
//------------------------------------------------------------------------------------------- |
349 |
//Insert in GL_RUN runs information records relative to a single unpack |
350 |
//------------------------------------------------------------------------------------------- |
351 |
if ( beverbose ) printf(" 6 => Scan physics and store runs in the GL_RUN table\n"); |
352 |
WAR[4] = pamDB->insertPamelaRUN(); |
353 |
//------------------------------------------------------------------------------------------- |
354 |
|
355 |
//------------------------------------------------------------------------------------------- |
356 |
//Insert in GL_CALO_CALIB calibration information records relative to a single unpack |
357 |
//------------------------------------------------------------------------------------------- |
358 |
if ( beverbose ) printf(" 7 => Insert calorimeter calibrations in the GL_CALO_CALIB table\n"); |
359 |
WAR[5] = pamDB->insertCALO_CALIB(); |
360 |
//------------------------------------------------------------------------------------------- |
361 |
|
362 |
//------------------------------------------------------------------------------------------- |
363 |
//Insert in GL_TRK_CALIB calibration information records relative to a single unpack |
364 |
//------------------------------------------------------------------------------------------- |
365 |
if ( beverbose ) printf(" 8 => Insert tracker calibrations in the GL_TRK_CALIB table\n"); |
366 |
WAR[6] = pamDB->insertTRK_CALIB(); |
367 |
//------------------------------------------------------------------------------------------- |
368 |
|
369 |
//------------------------------------------------------------------------------------------- |
370 |
//Insert in GL_S4_CALIB calibration information records relative to a single unpack |
371 |
//------------------------------------------------------------------------------------------- |
372 |
if ( beverbose ) printf(" 9 => Insert S4 calibrations in the GL_S4_CALIB table\n"); |
373 |
WAR[7] = pamDB->insertS4_CALIB(); |
374 |
//------------------------------------------------------------------------------------------- |
375 |
}; |
376 |
// |
377 |
if ( forceclean ){ |
378 |
//------------------------------------------------------------------------------------------- |
379 |
//Clean the GL_RUN_FRAGMENTS for the given file |
380 |
//------------------------------------------------------------------------------------------- |
381 |
if ( beverbose ) printf(" 10 => Clean the GL_RUN_FRAGMENTS table for file %s \n",fcleanfile.Data()); |
382 |
WAR[8] = pamDB->CleanGL_RUN_FRAGMENTS((TString)gSystem->BaseName(fcleanfile.Data())); |
383 |
}; |
384 |
// |
385 |
// |
386 |
if ( validate ){ |
387 |
//------------------------------------------------------------------------------------------- |
388 |
//Validate runs |
389 |
//------------------------------------------------------------------------------------------- |
390 |
if ( beverbose ) printf(" 11 => Validate runs table for file %s \n",validfile.Data()); |
391 |
WAR[9] = pamDB->ValidateRuns((TString)gSystem->BaseName(validfile.Data())); |
392 |
//------------------------------------------------------------------------------------------- |
393 |
}; |
394 |
// |
395 |
pamDB->CheckValidate(olderthan); |
396 |
// |
397 |
if( pamDB->Validate() ){ |
398 |
//------------------------------------------------------------------------------------------- |
399 |
//Clean the GL_RUN_FRAGMENTS |
400 |
//------------------------------------------------------------------------------------------- |
401 |
if ( beverbose ) printf(" 10 => Clean the GL_RUN_FRAGMENTS table (earlier than %s) \n",pamDB->GetCleanTime() ); |
402 |
WAR[8] = pamDB->CleanGL_RUN_FRAGMENTS(); |
403 |
//------------------------------------------------------------------------------------------- |
404 |
//------------------------------------------------------------------------------------------- |
405 |
//Validate runs |
406 |
//------------------------------------------------------------------------------------------- |
407 |
if ( beverbose ) printf(" 11 => Validate runs (earlier than %s)\n",pamDB->GetCleanTime()); |
408 |
WAR[9] = pamDB->ValidateRuns(); |
409 |
//------------------------------------------------------------------------------------------- |
410 |
}; |
411 |
|
412 |
if(! tlefilename.IsNull() ) { |
413 |
//---------------------------------------------- |
414 |
//Populate GL_TLE table using the file provided |
415 |
//---------------------------------------------- |
416 |
if ( beverbose ) printf(" 12 => Insert TLE elements in the GL_TLE table from file %s \n",tlefilename.Data()); |
417 |
WAR[10] = pamDB->populateTLE(); |
418 |
} |
419 |
|
420 |
if ( check ){ |
421 |
//---------------------------------------------- |
422 |
//Check GL_RUN table consistency |
423 |
//---------------------------------------------- |
424 |
if ( beverbose ) printf(" 13 => Check GL_RUN table consistency\n"); |
425 |
UInt_t ch = pamDB->Check(); |
426 |
if ( !ch ){ |
427 |
printf(" GL_RUN table seems ok!\n"); |
428 |
} else { |
429 |
printf(" Problems found in the GL_RUN table!\n"); |
430 |
}; |
431 |
}; |
432 |
|
433 |
} catch (Int_t exc) { |
434 |
signal = exc; |
435 |
switch(exc){ |
436 |
case -1: message += " DB connection failure"; break; |
437 |
case -2: message += " Connection failure"; break; |
438 |
case -3: message += " Cannot determine the timesync, use the -tsync and -obt0 options to override"; break; |
439 |
case -4: message += " Error querying DB"; break; |
440 |
case -5: message += " Inconsistent OBT/pkt_num"; break; |
441 |
case -6: message += " The file is not in the database"; break; |
442 |
case -7: message += " Cannot open TLE file"; break; |
443 |
case -8: message += " Event file is empty"; break; |
444 |
case -9: message += " No VarDump no BOOT number, use the -boot option to override"; break; |
445 |
case -10: message += " No results from DB"; break; |
446 |
case -11: message += " Raw file not found"; break; |
447 |
case -12: message += " Cannot open Level0 file"; break; |
448 |
case -13: message += " No consistent OBT/PKT_NUM information"; break; |
449 |
case -14: message += " Not supported yet: run with no events, no runtrailer, no runheader"; break; |
450 |
case -15: message += " Not supported yet: run with no runheader at the beginning/end of file not recognized as run fragment"; break; |
451 |
case -16: message += " No Physics tree in Level0 file"; break; |
452 |
case -17: message += " No RunHeader tree in Level0 file"; break; |
453 |
case -18: message += " No RunTrailer tree in Level0 file"; break; |
454 |
case -19: message += " No Mcmd tree in Level0 file"; break; |
455 |
case -20: message += " No VarDump tree in Level0 file"; break; |
456 |
case -21: message += " No CalibCalPed tree in Level0 file"; break; |
457 |
case -22: message += " No CalibTrk1 tree in Level0 file"; break; |
458 |
case -23: message += " No CalibTrk2 tree in Level0 file"; break; |
459 |
case -24: message += " No CalibS4 tree in Level0 file"; break; |
460 |
case -25: message += " Cannot find the run just inserted"; break; |
461 |
case -26: message += " Raw file not found looking for VarDump"; break; |
462 |
case -27: message += " Cannot determine downlink orbit, wrong filename format?"; break; |
463 |
case -28: message += " Cannot assign a RUN ID unique number!"; break; |
464 |
case -29: message += " No VarDump and impossible to find a consistent BOOT number, use the -boot option to override"; break; |
465 |
default: message += " Unidentified error"; break; |
466 |
}; |
467 |
printf("\n"); |
468 |
printf(" ERROR (%i) %s \n",exc,message.Data()); |
469 |
printf("\n"); |
470 |
} |
471 |
// |
472 |
// warnings handlers |
473 |
// |
474 |
Bool_t printwarning = false; |
475 |
message=""; |
476 |
for (UInt_t j=0; j<sizeofwar; j++){ |
477 |
if ( WAR[j] ){ |
478 |
printwarning = true; |
479 |
// |
480 |
if ( j == 0 ){ // insertPamelaRaw warnings |
481 |
for (UInt_t bit=0; bit<32; bit++){ |
482 |
if ( WAR[j] & (1 << bit) ){ |
483 |
if ( bit == 0 ) message += "=> RAW file already inserted\n"; |
484 |
else message += "=> Unidentified insertPamelaRaw warning\n"; |
485 |
}; |
486 |
}; |
487 |
}; |
488 |
// |
489 |
if ( j == 1 ){ // insertTimeSync warnings |
490 |
for (UInt_t bit=0; bit<32; bit++){ |
491 |
if ( WAR[j] & (1 << bit) ){ |
492 |
if ( bit == 0 ) message += "=> TIMESYNC already inserted\n"; |
493 |
else if ( bit == 1 ) message += "=> No mcmd timesync in the file\n"; |
494 |
else if ( bit == 2 ) message += "=> No runheaders in the file\n"; |
495 |
else if ( bit == 3 ) message += "=> No runtrailers in the file\n"; |
496 |
else if ( bit == 4 ) message += "=> No mcmd inclination in the file\n"; |
497 |
else message += "=> Unidentified insertTimeSync warning\n"; |
498 |
}; |
499 |
}; |
500 |
}; |
501 |
// |
502 |
if ( j == 2 ){ // insertPamelaRoot warnings |
503 |
for (UInt_t bit=0; bit<32; bit++){ |
504 |
if ( WAR[j] & (1 << bit) ){ |
505 |
if ( bit == 0 ) message += "=> ROOT file already inserted\n"; |
506 |
else message += "=> Unidentified insertPamelaRoot warning\n"; |
507 |
}; |
508 |
}; |
509 |
}; |
510 |
// |
511 |
if ( j == 3 ){ // assignBOOTnumber warnings |
512 |
for (UInt_t bit=0; bit<32; bit++){ |
513 |
if ( WAR[j] & (1 << bit) ){ |
514 |
if ( bit == 0 ) message += "=> BOOT number already inserted\n";// |
515 |
else if ( bit == 1 ) message += "=> VarDump event tree is empty, use the -boot option to override\n";// |
516 |
else if ( bit == 2 ) message += "=> No BOOT number in VarDump(!), use the -boot option to override\n";// |
517 |
else if ( bit == 3 ) message += "=> No VarDump! autoboot option used\n";// |
518 |
else if ( bit == 4 ) message += "=> The file is not in the database looking for VarDump, use the -boot option to override\n";// |
519 |
else message += "=> Unidentified assignBOOTnumber warning\n"; |
520 |
}; |
521 |
}; |
522 |
}; |
523 |
// |
524 |
if ( j == 4 ){ // insertPamelaRUN |
525 |
for (UInt_t bit=0; bit<32; bit++){ |
526 |
if ( WAR[j] & (1 << bit) ){ |
527 |
if ( bit == 0 ) message += "=> Inconsistent PKT/OBT sequence\n"; |
528 |
else if ( bit == 1 ) message += "=> No physics events in the file\n"; |
529 |
else if ( bit == 2 ) message += "=> Less than 2 physics events in the file\n"; |
530 |
else message += "=> Unidentified insertPamelaRun warning\n"; |
531 |
}; |
532 |
}; |
533 |
}; |
534 |
// |
535 |
if ( j == 5 ){ // insertCALO_CALIB |
536 |
for (UInt_t bit=0; bit<32; bit++){ |
537 |
if ( WAR[j] & (1 << bit) ){ |
538 |
if ( bit == 0 ) message += "=> No calorimeter calibrations in the file\n"; |
539 |
else message += "=> Unidentified insertCaloCalib warning\n"; |
540 |
}; |
541 |
}; |
542 |
}; |
543 |
// |
544 |
// |
545 |
if ( j == 6 ){ // insertTRACKER_CALIB |
546 |
for (UInt_t bit=0; bit<32; bit++){ |
547 |
if ( WAR[j] & (1 << bit) ){ |
548 |
if ( bit == 0 ) message += "=> No tracker calibrations in the file\n"; |
549 |
else message += "=> Unidentified insertTrkCalib warning\n"; |
550 |
}; |
551 |
}; |
552 |
}; |
553 |
// |
554 |
// |
555 |
if ( j == 7 ){ // insertS4_CALIB |
556 |
for (UInt_t bit=0; bit<32; bit++){ |
557 |
if ( WAR[j] & (1 << bit) ){ |
558 |
if ( bit == 0 ) message += "=> No s4 calibrations in the file\n"; |
559 |
else message += "=> Unidentified insertS4calib warning\n"; |
560 |
}; |
561 |
}; |
562 |
}; |
563 |
// |
564 |
// |
565 |
if ( j == 8 ){ // CleanGL_RUN_FRAGMENTS |
566 |
for (UInt_t bit=0; bit<32; bit++){ |
567 |
if ( WAR[j] & (1 << bit) ){ |
568 |
if ( bit == 0 ) message += "=> Skip the GL_RUN_FRAGMENTS table cleaning\n"; |
569 |
if ( bit == 1 ) message += "=> Problems retrieving ROOT ID from DB\n"; |
570 |
else message += "=> Unidentified CleanGL_RUN_FRAGMENTS warning\n"; |
571 |
}; |
572 |
}; |
573 |
}; |
574 |
// |
575 |
if ( j == 9 ){ // ValidateRuns |
576 |
for (UInt_t bit=0; bit<32; bit++){ |
577 |
if ( WAR[j] & (1 << bit) ){ |
578 |
if ( bit == 0 ) message += "=> Skip the run validation \n"; |
579 |
if ( bit == 1 ) message += "=> Problems retrieving ROOT ID from DB\n"; |
580 |
else message += "=> Unidentified ValidateRuns warning\n"; |
581 |
}; |
582 |
}; |
583 |
}; |
584 |
// |
585 |
if ( j == 10 ){ // populateTLE |
586 |
for (UInt_t bit=0; bit<32; bit++){ |
587 |
if ( WAR[j] & (1 << bit) ){ |
588 |
if ( bit == 0 ) message += "=> TLE insertion failed\n"; |
589 |
if ( bit == 1 ) message += "=> No new TLE available\n"; |
590 |
else message += "=> Unidentified populateTle warning\n"; |
591 |
}; |
592 |
}; |
593 |
}; |
594 |
// |
595 |
if ( j == 11 ){ // removeFile |
596 |
for (UInt_t bit=0; bit<32; bit++){ |
597 |
if ( WAR[j] & (1 << bit) ){ |
598 |
if ( bit == 0 ) message += "=> No file to delete from DB \n"; |
599 |
else message += "=> Unidentified populateTle warning\n"; |
600 |
}; |
601 |
}; |
602 |
}; |
603 |
}; |
604 |
}; |
605 |
// |
606 |
if ( printwarning ){ |
607 |
printf("\n"); |
608 |
printf(" WARNING(s):\n%s\n",message.Data()); |
609 |
printf("\n"); |
610 |
if ( !signal ) signal = 1; |
611 |
}; |
612 |
// |
613 |
//--------------------------------------------------------------------------------------- |
614 |
// Close and exit |
615 |
//--------------------------------------------------------------------------------------- |
616 |
if ( beverbose ) printf(" 13 => Free objects and close SQL connection \n"); |
617 |
pamDB->Close(); |
618 |
// |
619 |
printf("\n"); |
620 |
printf(" Finished, exiting...\n"); |
621 |
printf("\n"); |
622 |
// |
623 |
// Close redirection if the case. |
624 |
// |
625 |
if ( !beverbose ) close(nul); |
626 |
// |
627 |
exit(signal); |
628 |
// |
629 |
} |