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

Diff of /PadmeAmidala/src/PadmeAmidala.cpp

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

revision 1.1 by mocchiut, Tue Dec 5 12:31:00 2006 UTC revision 1.11 by mocchiut, Fri Oct 10 13:50:57 2014 UTC
# Line 46  void amidalausage(){ Line 46  void amidalausage(){
46    printf(" -outdir dir      output directory \"dir\"\n");    printf(" -outdir dir      output directory \"dir\"\n");
47    printf(" -dir dir         merge all runs in the directory \"dir\"\n");    printf(" -dir dir         merge all runs in the directory \"dir\"\n");
48    printf(" -d | -delete     delete original DarthVader runs once merged\n");    printf(" -d | -delete     delete original DarthVader runs once merged\n");
49      printf(" -no-DBupdate     do not update the DB\n");
50    printf(" -host            name of the DB host [default = $PAM_DBHOST or mysql://localhost/pamelaprod]\n");    printf(" -host            name of the DB host [default = $PAM_DBHOST or mysql://localhost/pamelaprod]\n");
51    printf(" -user            username for the DB connection [default = $PAM_DBUSER or \"anonymous\"] \n");    printf(" -user            username for the DB connection [default = $PAM_DBUSER or \"anonymous\"] \n");
52    printf(" -psw             password for the DB connection [default = $PAM_DBPSW or \"\"]\n");    printf(" -psw             password for the DB connection [default = $PAM_DBPSW or \"\"]\n");
# Line 74  int main(int numinp, char *inps[]){ Line 75  int main(int numinp, char *inps[]){
75    TString psw = "";    TString psw = "";
76    Bool_t debug = false;    Bool_t debug = false;
77    Bool_t delop = false;    Bool_t delop = false;
78      Bool_t dbup = true;
79    //    //
80    const char *pamdbhost=gSystem->Getenv("PAM_DBHOST");    const char *pamdbhost=gSystem->Getenv("PAM_DBHOST");
81    const char *pamdbuser=gSystem->Getenv("PAM_DBUSER");    const char *pamdbuser=gSystem->Getenv("PAM_DBUSER");
# Line 106  int main(int numinp, char *inps[]){ Line 108  int main(int numinp, char *inps[]){
108        if ( !strcmp(inps[i],"-d") || !strcmp(inps[i],"-delete") ){        if ( !strcmp(inps[i],"-d") || !strcmp(inps[i],"-delete") ){
109          delop = true;          delop = true;
110        };        };
111          if ( !strcmp(inps[i],"-no-DBupdate") ){
112            dbup = false;
113          };
114        if ( !strcmp(inps[i],"-idRun") ) {        if ( !strcmp(inps[i],"-idRun") ) {
115          if ( numinp-1 < i+1 ) {          if ( numinp-1 < i+1 ) {
116            amidalausage();            amidalausage();
# Line 193  int main(int numinp, char *inps[]){ Line 198  int main(int numinp, char *inps[]){
198        if ( !strcmp(inps[i],"+all") || !strcmp(inps[i],"+ALL") ) {        if ( !strcmp(inps[i],"+all") || !strcmp(inps[i],"+ALL") ) {
199          dectlist +=" +ALL";                dectlist +=" +ALL";      
200        };        };
201          if ( !strcmp(inps[i],"+auto") || !strcmp(inps[i],"+AUTO") ) {
202            dectlist +=" +AUTO";      
203          };
204        if ( !strcmp(inps[i],"+CAL") ) {        if ( !strcmp(inps[i],"+CAL") ) {
205          dectlist +=" +CAL";          dectlist +=" +CAL";
206        };        };
# Line 265  int main(int numinp, char *inps[]){ Line 273  int main(int numinp, char *inps[]){
273    };        };    
274    //    //
275    myquery.str("");    myquery.str("");
276    myquery << "SET time_zone='+0:00'";    myquery << "SET time_zone='+0:00'; SET sql_mode = 'NO_UNSIGNED_SUBTRACTION';";
277    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
278    //    //
279    RunGlue *rg = new RunGlue(dbc,run,dir,outdir);    RunGlue *rg = new RunGlue(dbc,run,dir,outdir);
280    //    //
281    if ( debug ) rg->SetDebug(true);    if ( debug ) rg->SetDebug(true);
282      if ( !dbup ) rg->SetUpgrade(false);
283    rg->SetDList(dectlist);    rg->SetDList(dectlist);
284    //    //
285    TList *l = 0;    TList *l = 0;
286    //    //
287    TString treelist="+ALL";    Int_t RET=0;
288      //
289      //  TString treelist="+AUTO";
290    //    //
291    while ( !rg->End() ){    while ( !rg->End() ){
292      //      //
# Line 283  int main(int numinp, char *inps[]){ Line 294  int main(int numinp, char *inps[]){
294      //      //
295      if ( l ){      if ( l ){
296        //        //
297        if ( rg->OpenFile() ){  //      if ( rg->OpenFile() ){
298          if ( rg->FileIsOpen() ){
299          //          //
300          rg->MergeRootfile(l);          rg->MergeRootfile(l);
301          //          //
302          rg->UpdateDB(l);          if ( dbup ) rg->UpdateDB(l);
303          //          //
304          if ( delop ) rg->DeleteRunFiles(l);          if ( delop ) rg->DeleteRunFiles(l);
305          //          //
306          rg->Clean();          rg->Clean();
307          //          //
308          } else {
309            RET = 255;
310        };        };
311        } else {
312          RET = 255;
313      };      };
314      delete l;      delete l;
315      //      //
# Line 305  int main(int numinp, char *inps[]){ Line 321  int main(int numinp, char *inps[]){
321    //    //
322    if ( dbc ) dbc->Close();    if ( dbc ) dbc->Close();
323    //    //
324      if ( debug ) printf(" exit with error code %i \n",RET);
325      //
326    printf("\n");    printf("\n");
327    //    //
328    exit(0);    exit(RET);
329  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.23