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

Diff of /YodaProfiler/src/YodaProfiler.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by mocchiut, Mon Sep 11 19:52:42 2006 UTC revision 1.17 by mocchiut, Wed Jan 31 16:15:04 2007 UTC
# Line 5  Line 5 
5  //  //
6  #include <TSystem.h>  #include <TSystem.h>
7  //  //
8    #include <GLTables.h>
9  #include <PamelaDBOperations.h>  #include <PamelaDBOperations.h>
10  #include <YodaProfilerVerl2.h>  #include <YodaProfilerVerl2.h>
11  //  //
# Line 16  void usage(){ Line 17  void usage(){
17    printf("\nUsage:\n");    printf("\nUsage:\n");
18    printf("\n YodaProfiler [options] -rawFile raw_filename -yodaFile yoda_filename \n");    printf("\n YodaProfiler [options] -rawFile raw_filename -yodaFile yoda_filename \n");
19    printf("\n -rawFile        full path to the raw file\n");    printf("\n -rawFile        full path to the raw file\n");
20    printf("\n -yodaFile       full path to the YODA file\n");    printf(  " -yodaFile       full path to the YODA file\n");
21    printf("\n Options can be: \n");    printf("\n Options are:\n\n");
22    printf("\n --version       print informations about compilation and exit\n");    printf(" --version       print informations about compilation and exit\n");
23    printf("\n -h | --help     print this help and exit \n");    printf(" -h | --help     print this help and exit \n");
24    printf("\n -v | --verbose  be verbose [default]\n");    printf(" -v | --verbose  be verbose [default]\n");
25    printf("\n -s | --silent   print nothing on STDOUT\n");    printf(" -s | --silent   print nothing on STDOUT\n");
26    printf("\n -g | --debug    be very verbose [default: no]\n");    printf(" -g | --debug    be very verbose [default: no]\n");
27    printf("\n -boot number    CPU boot number [default = taken from VarDump]\n");    printf(" -boot number    CPU boot number [default = taken from VarDump]\n");
28    printf("\n -tsync number   timesync (s) [default = taken from data]\n");    printf(" -autoboot       if no VarDump found try to determine the BOOT number\n");
29    printf("\n -obt0 number    obt at timesync (ms) [default = taken from data]\n");    printf("                 looking at timesync [default]\n");
30    printf("\n -clean number   number in seconds after which the fragment table\n");    printf(" -no-autoboot    disable previous check\n");
31    printf("\n                 can be cleaned and runs validated [default = -1 do not clean],\n");    printf(" -tsync number   timesync (s) [default = taken from data]\n");
32    printf("\n                 if 0 force cleaning immediatly, if negative do not clean\n");    printf(" -obt0 number    obt at timesync (ms) [default = taken from data]\n");
33    printf("\n -host           name for the host [default = $PAM_DBHOST or mysql://localhost/pamelaprod]\n");    printf(" -clean number   number in seconds after which the fragment table\n");
34    printf("\n -user           username for the DB [default = $PAM_DBUSER or \"anonymous\"] \n");    printf("                 can be cleaned and runs validated [default = -1 do not clean],\n");
35    printf("\n -psw            password for the DB [default = $PAM_DBPSW or \"\"]\n");    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");    printf("\n The order of input files and options does not matter. \n");
56    printf("\nExample: \n");    printf("\n Example: \n");
57    printf("\n YodaProfiler -yodaFile /path/to/raw/files/000_000_00000_cln2.pam -rawFile /path/to/filesfromyoda/000_000_00000_cln2.root -v \n\n");    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[]){  int main(int numinp, char *inps[]){
# Line 46  int main(int numinp, char *inps[]){ Line 66  int main(int numinp, char *inps[]){
66    UInt_t boot = 0;    UInt_t boot = 0;
67    UInt_t tsync = 0;    UInt_t tsync = 0;
68    UInt_t obt0 = 0;    UInt_t obt0 = 0;
69    //  Long64_t olderthan = 864000LL;    Long64_t olderthan = -1LL;  
   Long64_t olderthan = -1LL;  
     
70    //    //
71    //    //
72    TString filerawname  = "";    TString filerawname  = "";
# Line 58  int main(int numinp, char *inps[]){ Line 76  int main(int numinp, char *inps[]){
76    TString user = "anonymous";    TString user = "anonymous";
77    TString password = "";    TString password = "";
78    //    //
79    const char *pamdbhost=gSystem->Getenv("PAM_DBHOST");    TString tlefilename = "";
80    const char *pamdbuser=gSystem->Getenv("PAM_DBUSER");    //
81    const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW");    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;    if ( strcmp(pamdbhost,"") ) host = pamdbhost;
88    if ( strcmp(pamdbuser,"") ) user = pamdbuser;    if ( strcmp(pamdbuser,"") ) user = pamdbuser;
89    if ( strcmp(pamdbpsw,"") ) password = pamdbpsw;    if ( strcmp(pamdbpsw,"") ) password = pamdbpsw;
# Line 68  int main(int numinp, char *inps[]){ Line 91  int main(int numinp, char *inps[]){
91    //        //    
92    Bool_t beverbose = true;    Bool_t beverbose = true;
93    Bool_t debug = false;    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;    Int_t i = 0;
112    //    //
113    if ( numinp > 1 ){    if ( numinp > 1 ){
# Line 95  int main(int numinp, char *inps[]){ Line 135  int main(int numinp, char *inps[]){
135          };          };
136          filerootname = (TString)inps[i+1];                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") ) {        if ( !strcmp(inps[i],"-boot") ) {
169          if ( numinp-1 < i+1 ){          if ( numinp-1 < i+1 ){
170            usage();            usage();
# Line 144  int main(int numinp, char *inps[]){ Line 214  int main(int numinp, char *inps[]){
214          };          };
215          password = (TString)inps[i+1];            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;        if ( !strcmp(inps[i],"-v") || !strcmp(inps[i],"--verbose") ) beverbose = true;
226        //        //
# Line 151  int main(int numinp, char *inps[]){ Line 228  int main(int numinp, char *inps[]){
228        //        //
229        if ( !strcmp(inps[i],"-g") || !strcmp(inps[i],"--debug") ) debug = true;        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++;        i++;
238      };      };
239    } else {    } else {
# Line 171  int main(int numinp, char *inps[]){ Line 254  int main(int numinp, char *inps[]){
254      dup2(nul,2);      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:    // Start:
282    //    //
283      GL_TABLES *glt = new GL_TABLES(host,user,password);
284      //
285    TString message;    TString message;
286    char *version = YodaProfilerInfo(false);    char *version = YodaProfilerInfo(false);
287    PamelaDBOperations *pamDB = 0;    PamelaDBOperations *pamDB = 0;
288    UInt_t sizeofwar = 10;    UInt_t sizeofwar = 12;
289    UInt_t WAR[10];    UInt_t WAR[12];
290    memset(WAR, 0, 10*sizeof(UInt_t));    memset(WAR, 0, sizeofwar*sizeof(UInt_t));
291    //    //
292    printf("\n Welcome to the PAMELA YodaProfiler, version %s \n\n",version);    printf("\n Welcome to the PAMELA YodaProfiler, version %s \n\n",version);
293    try{    try{
# Line 187  int main(int numinp, char *inps[]){ Line 296  int main(int numinp, char *inps[]){
296      // Create pamDB object and open SQL connection      // Create pamDB object and open SQL connection
297      //-------------------------------------------------------------------------------------------      //-------------------------------------------------------------------------------------------
298      if ( beverbose ) printf(" 1 => Initialize and open SQL connection \n");      if ( beverbose ) printf(" 1 => Initialize and open SQL connection \n");
299      pamDB = new PamelaDBOperations(host,user,password,filerawname,filerootname,boot,tsync,obt0,debug,olderthan);      pamDB = new PamelaDBOperations(host,user,password,filerawname,filerootname,boot,tsync,obt0,debug,tlefilename);
300          pamDB->CheckConnection();      pamDB->CheckConnection();
301                //-------------------------------------------------------------------------------------------
 //      pamDB->SetOlderThan(olderthan);//deve stare qui?  
         //-------------------------------------------------------------------------------------------  
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          if(pamDB->InsertRaw()){        //-------------------------------------------------------------------------------------------
359                  //-------------------------------------------------------------------------------------------        //Insert in GL_CALO_CALIB calibration information records relative to a single unpack
360                  //Insert a Raw file in GL_RAW        //-------------------------------------------------------------------------------------------
361                  //-------------------------------------------------------------------------------------------        if ( beverbose ) printf(" 7 => Insert calorimeter calibrations in the GL_CALO_CALIB table\n");
362                  if ( beverbose ) printf(" 2 => Insert a RAW file in GL_RAW \n");        WAR[5] = pamDB->insertCALO_CALIB();
363                  WAR[0] = pamDB->insertPamelaRawFile();        //-------------------------------------------------------------------------------------------    
                 //-------------------------------------------------------------------------------------------  
         };  
   
         if(pamDB->InsertRoot()){  
                   
                 if(!pamDB->InsertRaw())printf("=> RAW file not inserted --- the DB might not ( yet ) be filled correctlly \n");  
                 //-------------------------------------------------------------------------------------------    
                 //Update a single GL_RAW record with its BOOT_NUMBER  
                 //-------------------------------------------------------------------------------------------  
                 if ( beverbose ) printf(" 3 => Update a single GL_RAW record with its BOOT_NUMBER \n");  
                 WAR[3] = pamDB->assignBOOT_NUMBER();  
                 //    if ( WAR[3] ) pamDB->SetNOBOOT(true);  
                 if ( WAR[3] && WAR[3] != 1 ) throw -9;  
                 //-------------------------------------------------------------------------------------------  
                 //  
                 //-------------------------------------------------------------------------------------------  
                 //Insert an entry in GL_TIMESYNC  
                 //-------------------------------------------------------------------------------------------  
                 if ( beverbose ) printf(" 4 => Insert an entry in GL_TIMESYNC \n");  
                 WAR[1] = pamDB->insertPamelaGL_TIMESYNC();  
                 //-------------------------------------------------------------------------------------------  
                 //  
                 //-------------------------------------------------------------------------------------------  
                 //Insert unpack ROOT file in GL_ROOT    
                 //-------------------------------------------------------------------------------------------  
                 if ( beverbose ) printf(" 5 => Insert unpack ROOT file in GL_ROOT \n");  
                 WAR[2] = pamDB->insertPamelaRootFile();  
                 //-------------------------------------------------------------------------------------------  
                 //  
                 //-------------------------------------------------------------------------------------------        
                 //Insert in GL_RUN runs information records relative to a single unpack  
                 //-------------------------------------------------------------------------------------------  
                 if ( beverbose ) printf(" 6 => Scan physics and store runs in the GL_RUN table\n");  
                 WAR[4] = pamDB->insertPamelaRUN();  
                 //-------------------------------------------------------------------------------------------      
           
                 //-------------------------------------------------------------------------------------------  
                 //Insert in GL_CALO_CALIB calibration information records relative to a single unpack  
                 //-------------------------------------------------------------------------------------------  
                 if ( beverbose ) printf(" 7 => Insert calorimeter calibrations in the GL_CALO_CALIB table\n");  
                 WAR[5] = pamDB->insertCALO_CALIB();  
                 //-------------------------------------------------------------------------------------------      
           
                 //-------------------------------------------------------------------------------------------  
                 //Insert in GL_TRK_CALIB calibration information records relative to a single unpack  
                 //-------------------------------------------------------------------------------------------  
                 if ( beverbose ) printf(" 8 => Insert tracker calibrations in the GL_TRK_CALIB table\n");  
                 WAR[6] = pamDB->insertTRK_CALIB();  
                 //-------------------------------------------------------------------------------------------      
364                    
365                  //-------------------------------------------------------------------------------------------        //-------------------------------------------------------------------------------------------
366                  //Insert in GL_S4_CALIB calibration information records relative to a single unpack        //Insert in GL_TRK_CALIB calibration information records relative to a single unpack
367                  //-------------------------------------------------------------------------------------------        //-------------------------------------------------------------------------------------------
368                  if ( beverbose ) printf(" 9 => Insert S4 calibrations in the GL_S4_CALIB table\n");        if ( beverbose ) printf(" 8 => Insert tracker calibrations in the GL_TRK_CALIB table\n");
369                  WAR[7] = pamDB->insertS4_CALIB();        WAR[6] = pamDB->insertTRK_CALIB();
370                  //-------------------------------------------------------------------------------------------            //-------------------------------------------------------------------------------------------    
         };  
371                    
372          if(pamDB->Validate()){          //-------------------------------------------------------------------------------------------
373                          //Insert in GL_S4_CALIB calibration information records relative to a single unpack
374                  //-------------------------------------------------------------------------------------------        //-------------------------------------------------------------------------------------------
375                  //Clean the GL_RUN_FRAGMENTS        if ( beverbose ) printf(" 9 => Insert S4 calibrations in the GL_S4_CALIB table\n");
376                  //-------------------------------------------------------------------------------------------        WAR[7] = pamDB->insertS4_CALIB();
377                  if ( beverbose ) printf(" 10 => Clean the GL_RUN_FRAGMENTS table (before %s) \n",pamDB->GetCleanTime() );        //-------------------------------------------------------------------------------------------    
378                  WAR[8] = pamDB->CleanGL_RUN_FRAGMENTS();      };
379                  //-------------------------------------------------------------------------------------------          //
380                if ( forceclean ){
381                  //-------------------------------------------------------------------------------------------        //-------------------------------------------------------------------------------------------
382                  //Validate runs        //Clean the GL_RUN_FRAGMENTS for the given file
383                  //-------------------------------------------------------------------------------------------        //-------------------------------------------------------------------------------------------
384                  if ( beverbose ) printf(" 11 => Validate runs (before %s)\n",pamDB->GetCleanTime());        if ( beverbose ) printf(" 10 => Clean the GL_RUN_FRAGMENTS table for file %s \n",fcleanfile.Data());
385                  WAR[9] = pamDB->ValidateRuns();        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) {    } catch (Int_t exc) {
437      signal = exc;      signal = exc;
# Line 284  int main(int numinp, char *inps[]){ Line 442  int main(int numinp, char *inps[]){
442      case -4: message += " Error querying DB"; break;      case -4: message += " Error querying DB"; break;
443      case -5: message += " Inconsistent OBT/pkt_num"; break;      case -5: message += " Inconsistent OBT/pkt_num"; break;
444      case -6: message += " The file is not in the database"; break;      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;      case -8: message += " Event file is empty"; break;
447      case -9: message += " No VarDump no BOOT number, use the -boot option to override"; break;      case -9: message += " No VarDump no BOOT number, use the -boot option to override"; break;
448      case -10: message += " No results from DB"; break;      case -10: message += " No results from DB"; break;
# Line 303  int main(int numinp, char *inps[]){ Line 462  int main(int numinp, char *inps[]){
462      case -24: message += " No CalibS4 tree in Level0 file"; break;      case -24: message += " No CalibS4 tree in Level0 file"; break;
463      case -25: message += " Cannot find the run just inserted"; break;      case -25: message += " Cannot find the run just inserted"; break;
464      case -26: message += " Raw file not found looking for VarDump"; break;      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;      default: message += " Unidentified error"; break;
469      };      };
470      printf("\n");      printf("\n");
# Line 355  int main(int numinp, char *inps[]){ Line 517  int main(int numinp, char *inps[]){
517              if ( bit == 0 ) message += "=> BOOT number already inserted\n";//              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";//              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";//              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";//              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";              else message += "=> Unidentified assignBOOTnumber warning\n";
523            };            };
# Line 406  int main(int numinp, char *inps[]){ Line 569  int main(int numinp, char *inps[]){
569          for (UInt_t bit=0; bit<32; bit++){          for (UInt_t bit=0; bit<32; bit++){
570            if ( WAR[j] & (1 << bit) ){            if ( WAR[j] & (1 << bit) ){
571              if      ( bit == 0 ) message += "=> Skip the GL_RUN_FRAGMENTS table cleaning\n";              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";              else  message += "=> Unidentified CleanGL_RUN_FRAGMENTS warning\n";
574            };            };
575          };          };
# Line 415  int main(int numinp, char *inps[]){ Line 579  int main(int numinp, char *inps[]){
579          for (UInt_t bit=0; bit<32; bit++){          for (UInt_t bit=0; bit<32; bit++){
580            if ( WAR[j] & (1 << bit) ){            if ( WAR[j] & (1 << bit) ){
581              if      ( bit == 0 ) message += "=> Skip the run validation \n";              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";              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    //    //
# Line 432  int main(int numinp, char *inps[]){ Line 616  int main(int numinp, char *inps[]){
616    //---------------------------------------------------------------------------------------    //---------------------------------------------------------------------------------------
617    // Close and exit    // Close and exit
618    //---------------------------------------------------------------------------------------    //---------------------------------------------------------------------------------------
619    if ( beverbose ) printf(" 12 => Free objects and close SQL connection \n");    if ( beverbose ) printf(" 13 => Free objects and close SQL connection \n");
620    pamDB->Close();    pamDB->Close();
621    //    //
622      if ( debug ) printf(" Total number of queries through GLTABLES: %u \n",glt->GetNqueries());
623      delete glt;
624      //
625    printf("\n");    printf("\n");
626    printf(" Finished, exiting...\n");    printf(" Finished, exiting...\n");
627    printf("\n");    printf("\n");

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.17

  ViewVC Help
Powered by ViewVC 1.1.23