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

Diff of /DarthVader/src/DarthVader.cpp

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

revision 1.7 by mocchiut, Fri Aug 4 10:31:35 2006 UTC revision 1.11 by mocchiut, Thu Sep 7 11:02:13 2006 UTC
# Line 35  using namespace std; Line 35  using namespace std;
35  void usage(){  void usage(){
36    printf("\nUsage:\n");    printf("\nUsage:\n");
37    printf("\n DarthVader [-v | --verbose] [-h | --help] [--version] -idRun ID_RUN [-processFile filename]\n");    printf("\n DarthVader [-v | --verbose] [-h | --help] [--version] -idRun ID_RUN [-processFile filename]\n");
38    printf("\n            [-host host] [-user username] [-psw password] [+-all] [+-detector [detector options] ]\n");    printf("\n            [-host host] [-user username] [-psw password] [+-all] [+-detector [ detector options ] ]\n");
39    printf("\n --version       print informations about compilation and exit\n");    printf("\n --version       print informations about compilation and exit\n");
40    printf("\n -h | --help     print this help and exit \n");    printf("\n -h | --help     print this help and exit \n");
41    printf("\n -v | --verbose  be verbose [default: print nothing on STDOUT]\n");    printf("\n -v | --verbose  be verbose [default]\n");
42      printf("\n -s | --silent   print nothing on STDOUT]\n");
43    printf("\n -idRun          ID_RUN: ID number of the run to be processed \n");    printf("\n -idRun          ID_RUN: ID number of the run to be processed \n");
44    printf("\n -processFile    output filename [default ID_RUN.Level2.root]\n");    printf("\n -processFile    output filename [default ID_RUN.Level2.root]\n");
45    printf("\n -host           name for the host [default = mysql://localhost/pamelaprod]\n");    printf("\n -host           name for the host [default = $PAM_DBHOST or mysql://localhost/pamelaprod]\n");
46    printf("\n -user           username for the DB [default = anonymous] \n");    printf("\n -user           username for the DB [default = $PAM_DBUSER or \"anonymous\"] \n");
47    printf("\n -psw            password for the DB [default = \"\"]\n");    printf("\n -psw            password for the DB [default = $PAM_DBPSW or \"\"]\n");
48    printf("\n +all            call all detectors software [default]\n");    printf("\n +all | +ALL     call all detectors software [default]\n");
49    printf("\n -all            call nothing\n");    printf("\n -all | -ALL     call nothing\n");
50    printf("\n +detector       process detector; detector can be: TOF,TRK,CAL,TRG,ORB,S4,ND,AC,RUN\n");    printf("\n +detector       process detector; detector can be: TOF,TRK,CAL,TRG,ORB,S4,ND,AC,RUN\n");
51    printf("\n -detector       do not process detector (as above)\n");    printf("\n -detector       do not process detector (as above)\n");
52      printf("\n                 detector options must be included in square parenthesis with spaces, for example:\n");
53      printf("\n                 +CAL [ --verbose -g ] +TRK [ -v --level1 ] \n");
54    
55    printf("\nExamples: \n");    printf("\nExamples: \n");
56    printf("\nStandard call: DarthVader -idRun 1085 \n");    printf("\nStandard call: DarthVader -idRun 1085 \n");
57    printf("\nProcess only RunInfo and Tracker (be verbose for tracker): DarthVader -idRun 1085 -all +RUN +TRK [ --verbose ] \n");    printf("\nProcess only RunInfo and Tracker (be verbose for tracker): DarthVader -idRun 1085 -all +RUN +TRK [ --verbose ] \n");
# Line 75  int main(int numinp, char *inps[]){ Line 79  int main(int numinp, char *inps[]){
79    Int_t NDSGN = 0;    Int_t NDSGN = 0;
80    //    //
81    Bool_t debug = false;    Bool_t debug = false;
82    Bool_t beverbose = false;    Bool_t beverbose = true;
83    Bool_t givenid = false;    Bool_t givenid = false;
84    Bool_t CAL = true;    Bool_t CAL = true;
85    Bool_t TRK = true;    Bool_t TRK = true;
# Line 108  int main(int numinp, char *inps[]){ Line 112  int main(int numinp, char *inps[]){
112    //    //
113    //    //
114    //    //
115    ULong64_t run = 0;    UInt_t run = 0;
116    //    //
117    TString filename;    TString filename;
118    TString outDir =  gSystem->WorkingDirectory();    TString outDir =  gSystem->WorkingDirectory();
# Line 118  int main(int numinp, char *inps[]){ Line 122  int main(int numinp, char *inps[]){
122    TString user = "anonymous";    TString user = "anonymous";
123    TString psw = "";    TString psw = "";
124    //    //
125      //
126      const char *pamdbhost=gSystem->Getenv("PAM_DBHOST");
127      const char *pamdbuser=gSystem->Getenv("PAM_DBUSER");
128      const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW");
129      if ( strcmp(pamdbhost,"") ) host = pamdbhost;
130      if ( strcmp(pamdbuser,"") ) user = pamdbuser;
131      if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw;
132      //
133      //
134    TFile *processFile = 0;    TFile *processFile = 0;
135    //    //
136    // Checking input parameters    // Checking input parameters
# Line 126  int main(int numinp, char *inps[]){ Line 139  int main(int numinp, char *inps[]){
139    try {    try {
140      if ( numinp > 1 ){      if ( numinp > 1 ){
141        while ( i < numinp ){        while ( i < numinp ){
142            Bool_t found = false;
143          if ( !strcmp(inps[i],"--version") ){          if ( !strcmp(inps[i],"--version") ){
144            DarthVaderInfo(true);            DarthVaderInfo(true);
145            exit(0);            exit(0);
# Line 139  int main(int numinp, char *inps[]){ Line 153  int main(int numinp, char *inps[]){
153              usage();              usage();
154              throw -3;              throw -3;
155            };            };
156              i++;
157              found = true;
158            givenid = true;            givenid = true;
159            char *pEnd;              run = atoll(inps[i]);
           run = strtoull(inps[i+1],&pEnd,0);      
160          };          };
161          if ( !strcmp(inps[i],"-processFile") ) {          if ( !strcmp(inps[i],"-processFile") ) {
162            if ( numinp-1 < i+1 ){            if ( numinp-1 < i+1 ){
163              usage();              usage();
164              throw -3;              throw -3;
165            };            };
166            filename = (TString)inps[i+1];                    i++;
167              found = true;
168              filename = (TString)inps[i];  
169          };          };
170          if ( !strcmp(inps[i],"-outDir") ) {          if ( !strcmp(inps[i],"-outDir") ) {
171            if ( numinp-1 < i+1 ){            if ( numinp-1 < i+1 ){
172              usage();              usage();
173              throw -3;              throw -3;
174            };            };
175            outDir = (TString)inps[i+1];              i++;
176              found = true;
177              outDir = (TString)inps[i];    
178          };          };
179          if ( !strcmp(inps[i],"-host") ) {          if ( !strcmp(inps[i],"-host") ) {
180            if ( numinp-1 < i+1 ){            if ( numinp-1 < i+1 ){
181              usage();              usage();
182              throw -3;              throw -3;
183            };            };
184            host = (TString)inps[i+1];                i++;
185              found = true;
186              host = (TString)inps[i];      
187          };          };
188          if ( !strcmp(inps[i],"-user") ) {          if ( !strcmp(inps[i],"-user") ) {
189            if ( numinp-1 < i+1 ){            if ( numinp-1 < i+1 ){
190              usage();              usage();
191              throw -3;              throw -3;
192            };            };
193            user = (TString)inps[i+1];                i++;
194              found = true;
195              user = (TString)inps[i];      
196          };          };
197          if ( !strcmp(inps[i],"-psw") ) {          if ( !strcmp(inps[i],"-psw") ) {
198            if ( numinp-1 < i+1 ){            if ( numinp-1 < i+1 ){
199              usage();              usage();
200              throw -3;              throw -3;
201            };            };
202            psw = (TString)inps[i+1];                i++;
203              found = true;
204              psw = (TString)inps[i];      
205            };
206            if ( !strcmp(inps[i],"-v") || !strcmp(inps[i],"--verbose") ){
207              found = true;
208              beverbose = true;
209            };
210            if ( !strcmp(inps[i],"-s") || !strcmp(inps[i],"--silent") ){
211              found = true;
212              beverbose = false;
213          };          };
         if ( !strcmp(inps[i],"-v") || !strcmp(inps[i],"--verbose") ) beverbose = true;  
214          //          //
215          if ( !strcmp(inps[i],"-g") || !strcmp(inps[i],"--debug") ) debug = true;          if ( !strcmp(inps[i],"-g") || !strcmp(inps[i],"--debug") ){
216              debug = true;
217              found = true;
218            };
219          //          //
220          if ( !strcmp(inps[i],"-CAL") ) {          if ( !strcmp(inps[i],"-CAL") ) {
221              found = true;
222            CAL = false;            CAL = false;
223          };          };
224          if ( !strcmp(inps[i],"-TRK") ) {          if ( !strcmp(inps[i],"-TRK") ) {
225              found = true;
226            TRK = false;            TRK = false;
227          };          };
228          if ( !strcmp(inps[i],"-TOF") ) {          if ( !strcmp(inps[i],"-TOF") ) {
229              found = true;
230            TOF = false;            TOF = false;
231          };          };
232          if ( !strcmp(inps[i],"-TRG") ) {          if ( !strcmp(inps[i],"-TRG") ) {
233              found = true;
234            TRG = false;            TRG = false;
235          };          };
236          if ( !strcmp(inps[i],"-S4") ) {          if ( !strcmp(inps[i],"-S4") ) {
237              found = true;
238            S4 = false;            S4 = false;
239          };          };
240          if ( !strcmp(inps[i],"-ND") ) {          if ( !strcmp(inps[i],"-ND") ) {
241              found = true;
242            ND = false;            ND = false;
243          };          };
244          if ( !strcmp(inps[i],"-AC") ) {          if ( !strcmp(inps[i],"-AC") ) {
245              found = true;
246            AC = false;            AC = false;
247          };          };
248          if ( !strcmp(inps[i],"-RUN") ) {          if ( !strcmp(inps[i],"-RUN") ) {
249              found = true;
250            RUN = false;            RUN = false;
251          };          };
252          if ( !strcmp(inps[i],"-ORB") ) {          if ( !strcmp(inps[i],"-ORB") ) {
253              found = true;
254            ORB = false;            ORB = false;
255          };          };
256          //          //
257          if ( !strcmp(inps[i],"-all") ) {          if ( !strcmp(inps[i],"-all") || !strcmp(inps[i],"-ALL") ) {
258            CAL = false;            CAL = false;
259            ORB = false;            ORB = false;
260            TRK = false;            TRK = false;
# Line 220  int main(int numinp, char *inps[]){ Line 264  int main(int numinp, char *inps[]){
264            ND = false;            ND = false;
265            AC = false;            AC = false;
266            RUN = false;            RUN = false;
267              found = true;
268          };          };
269          //          //
270          if ( !strcmp(inps[i],"+all") ) {          if ( !strcmp(inps[i],"+all") || !strcmp(inps[i],"+ALL") ) {
271            CAL = true;            CAL = true;
272            ORB = true;            ORB = true;
273            TRK = true;            TRK = true;
# Line 232  int main(int numinp, char *inps[]){ Line 277  int main(int numinp, char *inps[]){
277            ND = true;            ND = true;
278            AC = true;            AC = true;
279            RUN = true;            RUN = true;
280              found = true;
281          };          };
282          //          //
283          if ( !strcmp(inps[i],"+CAL") ) {          if ( !strcmp(inps[i],"+CAL") ) {
284              found = true;
285            CAL = true;            CAL = true;
286            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){
287              if ( numinp < i+2 ){              if ( numinp < i+2 ){
# Line 255  int main(int numinp, char *inps[]){ Line 302  int main(int numinp, char *inps[]){
302            };            };
303          };          };
304          if ( !strcmp(inps[i],"+TRK") ) {          if ( !strcmp(inps[i],"+TRK") ) {
305              found = true;
306            TRK = true;            TRK = true;
307            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){
308              if ( numinp-1 < i+2 ){              if ( numinp-1 < i+2 ){
# Line 275  int main(int numinp, char *inps[]){ Line 323  int main(int numinp, char *inps[]){
323            };            };
324          };          };
325          if ( !strcmp(inps[i],"+TOF") ) {          if ( !strcmp(inps[i],"+TOF") ) {
326              found = true;
327            TOF = true;            TOF = true;
328            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){
329              i += 2;                    i += 2;      
# Line 291  int main(int numinp, char *inps[]){ Line 340  int main(int numinp, char *inps[]){
340            };            };
341          };          };
342          if ( !strcmp(inps[i],"+TRG") ) {          if ( !strcmp(inps[i],"+TRG") ) {
343              found = true;
344            TRG = true;            TRG = true;
345            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){
346              i += 2;                    i += 2;      
# Line 307  int main(int numinp, char *inps[]){ Line 357  int main(int numinp, char *inps[]){
357            };            };
358          };          };
359          if ( !strcmp(inps[i],"+ORB") ) {          if ( !strcmp(inps[i],"+ORB") ) {
360              found = true;
361            ORB = true;            ORB = true;
362            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){
363              i += 2;                    i += 2;      
# Line 323  int main(int numinp, char *inps[]){ Line 374  int main(int numinp, char *inps[]){
374            };            };
375          };          };
376          if ( !strcmp(inps[i],"+RUN") ) {          if ( !strcmp(inps[i],"+RUN") ) {
377              found = true;
378            RUN = true;            RUN = true;
379            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){
380              i += 2;                    i += 2;      
# Line 339  int main(int numinp, char *inps[]){ Line 391  int main(int numinp, char *inps[]){
391            };            };
392          };          };
393          if ( !strcmp(inps[i],"+AC") ) {          if ( !strcmp(inps[i],"+AC") ) {
394              found = true;
395            AC = true;            AC = true;
396            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){
397              i += 2;                    i += 2;      
# Line 355  int main(int numinp, char *inps[]){ Line 408  int main(int numinp, char *inps[]){
408            };            };
409          };          };
410          if ( !strcmp(inps[i],"+S4") ) {          if ( !strcmp(inps[i],"+S4") ) {
411              found = true;
412            S4 = true;            S4 = true;
413            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){
414              i += 2;                    i += 2;      
# Line 371  int main(int numinp, char *inps[]){ Line 425  int main(int numinp, char *inps[]){
425            };            };
426          };          };
427          if ( !strcmp(inps[i],"+ND") ) {          if ( !strcmp(inps[i],"+ND") ) {
428              found = true;
429            ND = true;            ND = true;
430            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){            if ( numinp >= i+2 && !strcmp(inps[i+1],"[") ){
431              i += 2;                    i += 2;      
# Line 387  int main(int numinp, char *inps[]){ Line 442  int main(int numinp, char *inps[]){
442            };            };
443          };          };
444          //          //
445            if ( !found && i > 0 ){
446              usage();
447              printf(" Unknown input number %i, that is \"%s\" \n",i,inps[i]);
448              throw -22;
449            };
450            //
451          i++;          i++;
452        };        };
453        //        //
# Line 468  int main(int numinp, char *inps[]){ Line 529  int main(int numinp, char *inps[]){
529      if ( TRK ) {      if ( TRK ) {
530        printf(" Calling TrackerLevel2... ");        printf(" Calling TrackerLevel2... ");
531        TRKSGN = TrkCore(run,processFile,dbc,trkargc,trkargv);        TRKSGN = TrkCore(run,processFile,dbc,trkargc,trkargv);
532          gSystem->Unlink("TrackerFolder"); //patch
533        printf("done\n");        printf("done\n");
534      };      };
535      if ( TOF ) {      if ( TOF ) {
# Line 519  int main(int numinp, char *inps[]){ Line 581  int main(int numinp, char *inps[]){
581      case -8:   message += " No Header branch in LEVEL0 Physics tree"; break;      case -8:   message += " No Header branch in LEVEL0 Physics tree"; break;
582      case -9:   message += " No Registry branch in LEVEL0 Physics tree"; break;      case -9:   message += " No Registry branch in LEVEL0 Physics tree"; break;
583      case -11:  message += " LEVEL0 Physics tree is empty"; break;      case -11:  message += " LEVEL0 Physics tree is empty"; break;
584      case -12:  message += " Too few entries in the registry tree"; break;      case -12:  message += " Too few entries in the tree"; break;
585      case -13:  message += " Cannot create processFolder directory"; break;      case -13:  message += " Cannot create processFolder directory"; break;
586      case -14:  message += " Error querying the DB"; break;      case -14:  message += " Error querying the DB"; break;
587      case -15:  message += " Cannot open file for writing"; break;      case -15:  message += " Cannot open file for writing"; break;
# Line 529  int main(int numinp, char *inps[]){ Line 591  int main(int numinp, char *inps[]){
591      case -19:  message += " No anticounters in the acquisition (use -AC to process anyway)"; break;      case -19:  message += " No anticounters in the acquisition (use -AC to process anyway)"; break;
592      case -20:  message += " No S4 in the acquisition (use -S4 to process anyway)"; break;      case -20:  message += " No S4 in the acquisition (use -S4 to process anyway)"; break;
593      case -21:  message += " No neutron detector in the acquisition (use -ND to process anyway)"; break;      case -21:  message += " No neutron detector in the acquisition (use -ND to process anyway)"; break;
594        case -22:  message += " Unknown input or wrong syntax in input paramters!"; break;
595        //        //
596      case -50:  message += " GLTABLES - No entries matching GL_RUN query"; break;      case -50:  message += " GLTABLES - No entries matching GL_RUN query"; break;
597      case -51:  message += " GLTABLES - No entries matching GL_ROOT query"; break;      case -51:  message += " GLTABLES - No entries matching GL_ROOT query"; break;

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.11

  ViewVC Help
Powered by ViewVC 1.1.23