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

Annotation of /YodaProfiler/src/YodaProfiler.cpp

Parent Directory Parent Directory | Revision Log Revision Log


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

  ViewVC Help
Powered by ViewVC 1.1.23