/[PAMELA software]/YodaProfiler/src/YodaProfiler.cpp
ViewVC logotype

Contents of /YodaProfiler/src/YodaProfiler.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.17 - (show annotations) (download)
Wed Jan 31 16:15:04 2007 UTC (17 years, 10 months ago) by mocchiut
Branch: MAIN
CVS Tags: v3r00
Changes since 1.16: +6 -0 lines
V3R00 - add DB reconnection capability

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

  ViewVC Help
Powered by ViewVC 1.1.23