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

Annotation of /YodaProfiler/src/YodaProfiler.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.18 - (hide annotations) (download)
Mon Feb 12 13:32:19 2007 UTC (17 years, 9 months ago) by mocchiut
Branch: MAIN
Changes since 1.17: +10 -1 lines
-boot bug fixed, introduced -dworbit option, small bugs fixed

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

  ViewVC Help
Powered by ViewVC 1.1.23