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

Annotation of /YodaProfiler/src/YodaProfiler.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.19 - (hide annotations) (download)
Tue Feb 13 11:16:46 2007 UTC (17 years, 9 months ago) by mocchiut
Branch: MAIN
Changes since 1.18: +15 -1 lines
gpamela shortcut added

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

  ViewVC Help
Powered by ViewVC 1.1.23