/[PAMELA software]/chewbacca/YodaProfiler/src/R2-D2.cpp
ViewVC logotype

Diff of /chewbacca/YodaProfiler/src/R2-D2.cpp

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

revision 1.1.1.1 by mocchiut, Tue Sep 23 07:20:33 2008 UTC revision 1.4 by mocchiut, Fri Oct 10 13:00:13 2014 UTC
# Line 297  int main(int numinp, char *inps[]){ Line 297  int main(int numinp, char *inps[]){
297    };        };    
298    //    //
299    myquery.str("");    myquery.str("");
300    myquery << "SET time_zone='+0:00'";    myquery << "SET time_zone='+0:00'; SET sql_mode = 'NO_UNSIGNED_SUBTRACTION';";
301    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
302    //    //
303    GL_ROOT *glroot = new GL_ROOT();    GL_ROOT *glroot = new GL_ROOT();
# Line 619  int main(int numinp, char *inps[]){ Line 619  int main(int numinp, char *inps[]){
619    //    //
620    if ( strcmp(l2filename.Data(),"") ){    if ( strcmp(l2filename.Data(),"") ){
621      // ----------------      // ----------------
622      Bool_t found = false;      //    Bool_t found = false;
623      Int_t ID = 0;      Int_t ID = 0;
624      Int_t ID_RAW = 0;      //    Int_t ID_RAW = 0;
625      //          //    
626      const char *rawpath = "";      const char *rawpath = "";
627      const char *rawname = "";      const char *rawname = "";
# Line 639  int main(int numinp, char *inps[]){ Line 639  int main(int numinp, char *inps[]){
639        if( Row == NULL ) break;        if( Row == NULL ) break;
640        for( t = 0; t < pResult->GetFieldCount(); t++){        for( t = 0; t < pResult->GetFieldCount(); t++){
641          if(t==0) ID     = atoi(Row->GetField(t));          if(t==0) ID     = atoi(Row->GetField(t));
642          if(t==1) ID_RAW = atoi(Row->GetField(t));          //      if(t==1) ID_RAW = atoi(Row->GetField(t));
643        };        };
644      };      };
645      delete pResult;        delete pResult;  
# Line 656  int main(int numinp, char *inps[]){ Line 656  int main(int numinp, char *inps[]){
656        for( r=0; r < pResult->GetRowCount(); r++){        for( r=0; r < pResult->GetRowCount(); r++){
657          Row = pResult->Next();                Row = pResult->Next();      
658          if( Row == NULL ) break;          if( Row == NULL ) break;
659          found = true;          //      found = true;
660          if ( !r ) printf("\n File %s contains the following runs: \n\n",l2filename.Data());          if ( !r ) printf("\n File %s contains the following runs: \n\n",l2filename.Data());
661          printf(" %u ",(UInt_t)atoll(Row->GetField(0)));          printf(" %u ",(UInt_t)atoll(Row->GetField(0)));
662          if ( r < (pResult->GetRowCount()-1) ){          if ( r < (pResult->GetRowCount()-1) ){
# Line 964  int main(int numinp, char *inps[]){ Line 964  int main(int numinp, char *inps[]){
964    //    //
965    // Close the DB connection    // Close the DB connection
966    //    //
967    if ( dbc ) dbc->Close();    if ( dbc ){
968        dbc->Close();
969        delete dbc;
970        dbc = 0;
971      }
972    //    //
973    if ( !neat ) printf("\n");    if ( !neat ) printf("\n");
974    //    //

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.4

  ViewVC Help
Powered by ViewVC 1.1.23