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

Diff of /YodaProfiler/src/GLTables.cpp

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

revision 1.21 by mocchiut, Tue Jan 23 17:04:11 2007 UTC revision 1.29 by mocchiut, Mon Apr 30 09:19:39 2007 UTC
# Line 17  Line 17 
17  #include <GLTables.h>  #include <GLTables.h>
18  #include <sgp4.h>  #include <sgp4.h>
19  //  //
20    ClassImp(GL_TABLES);
21  ClassImp(GL_TRK_CALIB);  ClassImp(GL_TRK_CALIB);
22  ClassImp(GL_RUN);  ClassImp(GL_RUN);
23  ClassImp(GL_ROOT);  ClassImp(GL_ROOT);
# Line 28  ClassImp(GL_TLE); Line 29  ClassImp(GL_TLE);
29  //  //
30  using namespace std;  using namespace std;
31    
32    GL_TABLES::GL_TABLES(){
33    };
34    
35    GL_TABLES::GL_TABLES(TString host, TString user, TString psw){
36      fHost = new TString(host.Data());
37      fUser = new TString(user.Data());
38      fPsw = new TString(psw.Data());
39      fSet = true;
40      fNquery = 0;
41    };
42    
43    
44    void GL_TABLES::Set(TString host, TString user, TString psw){
45      fHost = new TString(host.Data());
46      fUser = new TString(user.Data());
47      fPsw = new TString(psw.Data());
48      fSet = true;
49      fNquery = 0;
50    };
51    
52    Bool_t GL_TABLES::IsConnected(TSQLServer *dbc){
53      //
54      //
55      //
56      if ( !fSet ){
57        return true;
58      };
59      //
60      //
61      //
62      //  printf(" host is %s \n",fHost->Data());
63      //
64      stringstream myquery;  
65      myquery.str("");
66      myquery << "show databases;";
67      dbc->Query(myquery.str().c_str());
68      fNquery++;
69      //
70      if ( dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006 ){
71        // is connected
72        return true;
73      } else {
74        //
75        printf(" WARNING: Lost connection to DB! try to recover... \n");
76        //
77        TString host = fHost->Data();
78        TString user = fUser->Data();
79        TString psw = fPsw->Data();
80        delete dbc;
81        dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
82        //
83        myquery.str("");
84        myquery << "show databases;";
85        dbc->Query(myquery.str().c_str());
86        fNquery++;
87        //
88        if ( dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006 ){
89          //
90          printf(" ...connection recovered, I can continue! \n");
91          //
92          myquery.str("");
93          myquery << "SET time_zone='+0:00'";
94          dbc->Query(myquery.str().c_str());
95          fNquery++;
96          myquery.str("");
97          myquery << "SET wait_timeout=173000;";
98          dbc->Query(myquery.str().c_str());      
99          fNquery++;
100          return true;
101        };
102      };
103      //
104      printf(" GLTABLES: connection is gone away, query will fail\n");
105      //
106      return false;
107      //
108    };
109    
110    void GL_TABLES::ResetCounters(){
111      fNquery = 0;
112    };
113    
114    void GL_TABLES::AddQ(){
115      if ( fSet ) fNquery++;
116    };
117    
118    UInt_t GL_TABLES::GetNqueries(){
119       UInt_t rn = 0;
120       rn += (UInt_t&)fNquery;
121       return(rn);
122    };
123    
124  GL_RUN::GL_RUN() {  GL_RUN::GL_RUN() {
125    ID                         = 0;    ID                         = 0;
126    ID_RUN_FRAG                = 0;    ID_RUN_FRAG                = 0;
# Line 425  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 518  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
518    //    //
519    //  printf("1myquery is %s \n",myquery.str().c_str());    //  printf("1myquery is %s \n",myquery.str().c_str());
520    //    //
521      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
522      this->GetGLTABLES()->AddQ();
523    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
524    //    //
525    // retrieve this ID_TRASH    // retrieve this ID_TRASH
526    //    //
527    myquery.str("");    myquery.str("");
528    myquery << " SELECT ID_TRASH,ID_ROOT_L0,ID_ROOT_L2 FROM GL_RUN_TRASH ORDER BY ID_TRASH DESC LIMIT 1";      myquery << " SELECT ID_TRASH,ID_ROOT_L0,ID_ROOT_L2 FROM GL_RUN_TRASH ORDER BY ID_TRASH DESC LIMIT 1";  
529      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
530      this->GetGLTABLES()->AddQ();
531    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
532    //    //
533    UInt_t idtrash = 0;    UInt_t idtrash = 0;
# Line 452  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 549  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
549    //    //
550    //  printf("2myquery is %s \n",myquery.str().c_str());    //  printf("2myquery is %s \n",myquery.str().c_str());
551    //    //
552      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
553      this->GetGLTABLES()->AddQ();
554    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
555    //    //
556    Row = pResult->Next();          Row = pResult->Next();      
# Line 467  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 566  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
566    //    //
567    //  printf("3myquery is %s \n",myquery.str().c_str());    //  printf("3myquery is %s \n",myquery.str().c_str());
568    //    //
569      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
570      this->GetGLTABLES()->AddQ();
571    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
572    //    //
573    Row = pResult->Next();          Row = pResult->Next();      
# Line 483  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 584  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
584    //    //
585    //  printf("4myquery is %s \n",myquery.str().c_str());    //  printf("4myquery is %s \n",myquery.str().c_str());
586    //    //
587      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
588      this->GetGLTABLES()->AddQ();
589    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
590    //    //
591    myquery.str("");    myquery.str("");
# Line 492  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 595  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
595    //    //
596    //  printf("4myquery is %s \n",myquery.str().c_str());    //  printf("4myquery is %s \n",myquery.str().c_str());
597    //    //
598      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
599      this->GetGLTABLES()->AddQ();
600    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
601    //    //
602    myquery.str("");    myquery.str("");
# Line 502  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 607  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
607    //  printf("4myquery is %s \n",myquery.str().c_str());    //  printf("4myquery is %s \n",myquery.str().c_str());
608    //    //
609    //    //
610      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
611      this->GetGLTABLES()->AddQ();
612    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
613    //    //
614    myquery.str("");    myquery.str("");
# Line 512  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 619  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
619    //  printf("5myquery is %s \n",myquery.str().c_str());    //  printf("5myquery is %s \n",myquery.str().c_str());
620    //    //
621    //    //
622      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
623      this->GetGLTABLES()->AddQ();
624    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
625    //    //
626    return 0;    return 0;
# Line 543  Int_t GL_RUN::RestoreRun(TSQLServer *dbc Line 652  Int_t GL_RUN::RestoreRun(TSQLServer *dbc
652      //      //
653      printf(" qui? myquery is %s \n",myquery.str().c_str());      printf(" qui? myquery is %s \n",myquery.str().c_str());
654      //      //
655        if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
656        this->GetGLTABLES()->AddQ();
657      pResult = dbc->Query(myquery.str().c_str());      pResult = dbc->Query(myquery.str().c_str());
658      //      //
659      Row = pResult->Next();            Row = pResult->Next();      
# Line 626  Int_t GL_RUN::RestoreRun(TSQLServer *dbc Line 737  Int_t GL_RUN::RestoreRun(TSQLServer *dbc
737    //    //
738    //  printf("5myquery is %s \n",myquery.str().c_str());    //  printf("5myquery is %s \n",myquery.str().c_str());
739    //    //
740      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
741      this->GetGLTABLES()->AddQ();
742    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
743    //    //
744    //    //
# Line 633  Int_t GL_RUN::RestoreRun(TSQLServer *dbc Line 746  Int_t GL_RUN::RestoreRun(TSQLServer *dbc
746    myquery << " DELETE FROM GL_RUN_TRASH where BELONGED_TO='GL_RUN_FRAGMENTS' AND ID=";    myquery << " DELETE FROM GL_RUN_TRASH where BELONGED_TO='GL_RUN_FRAGMENTS' AND ID=";
747    myquery << IDRUN << ";";    myquery << IDRUN << ";";
748    //    //
749      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
750      this->GetGLTABLES()->AddQ();
751    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
752    //    //
753    return 0;    return 0;
# Line 715  Int_t GL_RUN::Fill_GL_RUN(TSQLServer *db Line 830  Int_t GL_RUN::Fill_GL_RUN(TSQLServer *db
830    //    //
831    //  printf("myquery is %s \n",myquery.str().c_str());    //  printf("myquery is %s \n",myquery.str().c_str());
832    //    //
833      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
834      this->GetGLTABLES()->AddQ();
835    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
836    //    //
837    return 0;    return 0;
# Line 791  Int_t GL_RUN::Fill_GL_RUN_FRAGMENTS(TSQL Line 908  Int_t GL_RUN::Fill_GL_RUN_FRAGMENTS(TSQL
908    //    //
909    // printf("myquery is %s \n",myquery.str().c_str());    // printf("myquery is %s \n",myquery.str().c_str());
910    //    //
911      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
912      this->GetGLTABLES()->AddQ();
913    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
914    //    //
915    return 0;    return 0;
# Line 848  Int_t GL_RUN::Query_GL_RUN(UInt_t run, T Line 967  Int_t GL_RUN::Query_GL_RUN(UInt_t run, T
967    myquery << " from GL_RUN where ID=" << run << ";";    myquery << " from GL_RUN where ID=" << run << ";";
968    //    //
969    //  printf(" myquery is %s \n",myquery.str().c_str());    //  printf(" myquery is %s \n",myquery.str().c_str());
970      if ( !this->IsConnected(dbc) ) return -57;  
971      this->AddQ();
972    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
973    //    //
974    //  printf(" getrowcount %i \n",pResult->GetRowCount());    //  printf(" getrowcount %i \n",pResult->GetRowCount());
# Line 946  Int_t GL_RUN::Query_GL_RUN_FRAGMENTS(TSt Line 1067  Int_t GL_RUN::Query_GL_RUN_FRAGMENTS(TSt
1067    //    //
1068    //  printf(" query is %s \n",myquery.str().c_str());    //  printf(" query is %s \n",myquery.str().c_str());
1069    //    //
1070      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1071      this->GetGLTABLES()->AddQ();
1072    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1073    if(!pResult->GetRowCount())return(-50);    if(!pResult->GetRowCount())return(-50);
1074    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1011  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id, Line 1134  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id,
1134    myquery << ",NAME";    myquery << ",NAME";
1135    myquery << " from GL_ROOT where ID=" << id << ";";        myquery << " from GL_ROOT where ID=" << id << ";";    
1136    //    //
1137      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1138      this->GetGLTABLES()->AddQ();
1139    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1140    if(!pResult->GetRowCount())return (-51);    if(!pResult->GetRowCount())return (-51);
1141    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1020  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id, Line 1145  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id,
1145            if(t==0) ID     = (UInt_t)atoll(Row->GetField(t));            if(t==0) ID     = (UInt_t)atoll(Row->GetField(t));
1146            if(t==1) ID_RAW = (UInt_t)atoll(Row->GetField(t));            if(t==1) ID_RAW = (UInt_t)atoll(Row->GetField(t));
1147            if(t==2) ID_TIMESYNC = (UInt_t)atoll(Row->GetField(t));            if(t==2) ID_TIMESYNC = (UInt_t)atoll(Row->GetField(t));
1148            if(t==3) PATH   = Row->GetField(t);            if(t==3) PATH   = (TString)gSystem->ExpandPathName(Row->GetField(t))+'/';
1149            if(t==4) NAME   = Row->GetField(t);            if(t==4) NAME   = Row->GetField(t);
1150        };        };
1151    };    };
# Line 1045  Int_t GL_TRK_CALIB::Query_GL_TRK_CALIB(U Line 1170  Int_t GL_TRK_CALIB::Query_GL_TRK_CALIB(U
1170    // ----------------    // ----------------
1171    myquery.str("");    myquery.str("");
1172    myquery << "select ID,ID_ROOT_L0,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,FROM_TIME,TO_TIME,OBT1,OBT2,PKT1,PKT2,BOOT_NUMBER,VALIDATION from GL_TRK_CALIB where FROM_TIME <= "<< time;    myquery << "select ID,ID_ROOT_L0,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,FROM_TIME,TO_TIME,OBT1,OBT2,PKT1,PKT2,BOOT_NUMBER,VALIDATION from GL_TRK_CALIB where FROM_TIME <= "<< time;
1173    myquery << " AND VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";        //  myquery << " AND VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";      // RIVEDERE LA VALIDAZIONE!!!
1174      myquery << " and EV_ROOT_CALIBTRK1>=0 and EV_ROOT_CALIBTRK2>=0 "; // EM! SE MANCA UN PACCHETTO DEI DUE IL PROCESSAMENTO CRASHA... DA RIVEDERE LA VALIDAZIONE      
1175      myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1176    //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1177      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1178      this->GetGLTABLES()->AddQ();
1179    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1180    if(!pResult->GetRowCount())return (-53);    if(!pResult->GetRowCount())return (-53);
1181    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1104  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB Line 1233  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB
1233    myquery << " ;";    myquery << " ;";
1234    //myquery << " and VALIDATION=1;";    //myquery << " and VALIDATION=1;";
1235    //    //
1236      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1237      this->GetGLTABLES()->AddQ();
1238    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1239    //  printf(" mysquery is %s\n",myquery.str().c_str());    //  printf(" mysquery is %s\n",myquery.str().c_str());
1240    //    //
# Line 1123  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB Line 1254  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB
1254      myquery << "select ID_ROOT_L0, FROM_TIME, TO_TIME, EV_ROOT,VALIDATION from GL_CALO_CALIB where SECTION=" << section;      myquery << "select ID_ROOT_L0, FROM_TIME, TO_TIME, EV_ROOT,VALIDATION from GL_CALO_CALIB where SECTION=" << section;
1255      myquery << " and FROM_TIME <= " << time;      myquery << " and FROM_TIME <= " << time;
1256      myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";      myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";
1257        if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1258        this->GetGLTABLES()->AddQ();
1259      pResult = dbc->Query(myquery.str().c_str());      pResult = dbc->Query(myquery.str().c_str());
1260      //    printf(" mysquery is %s\n",myquery.str().c_str());      //    printf(" mysquery is %s\n",myquery.str().c_str());
1261      //      //
# Line 1165  Int_t GL_S4_CALIB::Query_GL_S4_CALIB(UIn Line 1298  Int_t GL_S4_CALIB::Query_GL_S4_CALIB(UIn
1298    myquery << "select * from GL_S4_CALIB where FROM_TIME <= "<< time;    myquery << "select * from GL_S4_CALIB where FROM_TIME <= "<< time;
1299    myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1300    //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1301      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1302      this->GetGLTABLES()->AddQ();
1303    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1304    if(!pResult->GetRowCount())return (-55);//throw -55;    if(!pResult->GetRowCount())return (-55);//throw -55;
1305    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1205  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti Line 1340  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti
1340    // ----------------        // ----------------    
1341    myquery.str("");    myquery.str("");
1342    myquery << " select ";    myquery << " select ";
1343    myquery << " ID, PATH, NAME, DESCR, TYPE, FROM_TIME,TO_TIME ";    myquery << " ID, PATH, NAME, DESCR, FROM_TIME,TO_TIME, TYPE ";
1344    myquery << " from GL_PARAM ";    myquery << " from GL_PARAM ";
1345    myquery << " where TYPE = '"<<type<<"' ";    myquery << " where TYPE = '"<<type<<"' ";
1346    myquery << " and FROM_TIME <= " << time;    myquery << " and FROM_TIME <= " << time;
1347    myquery << " ORDER BY TO_TIME DESC LIMIT 1;";      myquery << " ORDER BY TO_TIME DESC LIMIT 1;";  
1348    //    //
1349      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1350      this->GetGLTABLES()->AddQ();
1351    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1352    if(!pResult->GetRowCount())return (-52);    if(!pResult->GetRowCount())return (-52);
1353    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1218  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti Line 1355  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti
1355        if( Row == NULL ) break;        if( Row == NULL ) break;
1356        for( t = 0; t < pResult->GetFieldCount(); t++){        for( t = 0; t < pResult->GetFieldCount(); t++){
1357          if (t==0) ID        = (UInt_t)atoll(Row->GetField(t));          if (t==0) ID        = (UInt_t)atoll(Row->GetField(t));
1358            if (t==1) PATH      = Row->GetField(t);// put in fpath the path to that file          if (t==1) PATH      = (TString)gSystem->ExpandPathName(Row->GetField(t))+'/';// put in fpath the path to that file
1359            if (t==2) NAME      = Row->GetField(t);            if (t==2) NAME      = Row->GetField(t);
1360            if (t==3) DESCR     = Row->GetField(t);            if (t==3) DESCR     = Row->GetField(t);
1361            if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t));            if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t));
# Line 1264  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1401  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1401    TSQLRow *Row;    TSQLRow *Row;
1402    stringstream myquery;    stringstream myquery;
1403    stringstream rname;    stringstream rname;
1404      //  pcksList packetsNames;
1405      //  pcksList::iterator Iter;
1406      //  getPacketsNames(packetsNames);
1407    rname.str("");    rname.str("");
1408    // ----------------    // ----------------
1409    myquery.str("");    myquery.str("");
# Line 1274  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1414  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1414    myquery << type.Data();    myquery << type.Data();
1415    myquery << "=" << id << ";";        myquery << "=" << id << ";";    
1416    //    //
1417      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1418      this->GetGLTABLES()->AddQ();
1419    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1420    if( pResult->GetRowCount() ){    if( pResult->GetRowCount() ){
1421      Row = pResult->Next();            Row = pResult->Next();      
1422      if( Row ){      if( Row ){
1423        stringstream fname;        stringstream fname;
1424        fname.str("");        fname.str("");
1425        fname << Row->GetField(0) << "/" << Row->GetField(1);        fname << gSystem->ExpandPathName(Row->GetField(0)) << "/" << Row->GetField(1);
1426        rname << Row->GetField(1);        rname << Row->GetField(1);
1427        file = new TFile(fname.str().c_str(),"READ");        file = new TFile(fname.str().c_str(),"READ");
1428        idraw = (UInt_t)atoll(Row->GetField(2));        idraw = (UInt_t)atoll(Row->GetField(2));
# Line 1297  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1439  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1439      ph = eh->GetPscuHeader();      ph = eh->GetPscuHeader();
1440      pktfirst = ph->GetCounter();      pktfirst = ph->GetCounter();
1441      obtfirst = ph->GetOrbitalTime();        obtfirst = ph->GetOrbitalTime();  
1442        //
1443    //     code = eh->GetCounter();
1444    //     UInt_t en = 0;
1445    //     for(Iter = packetsNames.begin(); Iter != packetsNames.end(); Iter++){
1446    //       en = code->Get(GetPacketType(*Iter));
1447    //       if ( !strcmp("CalibCalPed",*Iter) || !strcmp("CalibTrk1",*Iter) || !strcmp("CalibTrk2",*Iter) || !strcmp("CalibS4",*Iter) ){
1448    //      //
1449    //      TTree *TC = 0;
1450    //      TC = (TTree*)file->Get("CalibCalPed");
1451    //      if ( !TC || TC->IsZombie() ) return;
1452    //      EventHeader *ehc = 0;
1453    //      PscuHeader *phc = 0;
1454    //      TC->SetBranchAddress("Header", &ehc);
1455    //      TC->GetEntry(0);
1456    //      phc = ehc->GetPscuHeader();
1457    //      pktfirst = phc->GetCounter();
1458    //      obtfirst = phc->GetOrbitalTime();  
1459    //       //
1460    //       };
1461    //     };  
1462        //
1463    };    };
1464    //    //
1465    // look for Resurs offset    // look for Resurs offset
# Line 1305  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1468  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1468    //    //
1469    //    //
1470    stringstream oss;    stringstream oss;
1471      TString frn = rname.str().c_str();
1472      frn = frn.ReplaceAll(".root",5,".pam",4);
1473    oss.str("");    oss.str("");
1474    oss << "SELECT YEAR(OFFSET_DATE),MONTH(OFFSET_DATE),DAY(OFFSET_DATE),HOUR(OFFSET_DATE),MINUTE(OFFSET_DATE),SECOND(OFFSET_DATE) FROM GL_RESURS_OFFSET WHERE SPECIAL_FILE='"    oss << "SELECT YEAR(OFFSET_DATE),MONTH(OFFSET_DATE),DAY(OFFSET_DATE),HOUR(OFFSET_DATE),MINUTE(OFFSET_DATE),SECOND(OFFSET_DATE) FROM GL_RESURS_OFFSET WHERE SPECIAL_FILE='"
1475        << rname.str().c_str() << "';";        << frn.Data() << "';";
1476      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1477      this->GetGLTABLES()->AddQ();
1478    pResult = dbc->Query(oss.str().c_str());    pResult = dbc->Query(oss.str().c_str());
1479    Row = pResult->Next();    Row = pResult->Next();
1480    //    //
# Line 1326  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1493  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1493      for (Int_t i = 8; i<13; i++){      for (Int_t i = 8; i<13; i++){
1494        dwo.Append(name[i],1);        dwo.Append(name[i],1);
1495      };          };    
1496      if ( dwo.IsDigit() ) dworbit = (UInt_t)dwo.Atoi();      if ( dwo.IsDigit() ){
1497          dworbit = (UInt_t)dwo.Atoi();
1498        } else {
1499          dworbit = 1;
1500        };
1501    };    };
1502    //    //
1503      //
1504    if ( !Row ){    if ( !Row ){
1505      oss.str("");      oss.str("");
1506      oss << "SELECT YEAR(OFFSET_DATE),MONTH(OFFSET_DATE),DAY(OFFSET_DATE),HOUR(OFFSET_DATE),MINUTE(OFFSET_DATE),SECOND(OFFSET_DATE) FROM GL_RESURS_OFFSET WHERE FROM_ORBIT< "      oss << "SELECT YEAR(OFFSET_DATE),MONTH(OFFSET_DATE),DAY(OFFSET_DATE),HOUR(OFFSET_DATE),MINUTE(OFFSET_DATE),SECOND(OFFSET_DATE) FROM GL_RESURS_OFFSET WHERE FROM_ORBIT< "
1507          << dworbit << " order by FROM_ORBIT desc limit 1;";          << dworbit << " order by FROM_ORBIT desc limit 1;";
1508        if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1509        this->GetGLTABLES()->AddQ();
1510      pResult = dbc->Query(oss.str().c_str());      pResult = dbc->Query(oss.str().c_str());
1511      Row = pResult->Next();      Row = pResult->Next();
1512      if ( !Row ){      if ( !Row ){
# Line 1350  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1524  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1524    myquery << " SELECT OBT0,TIMESYNC,TYPE FROM GL_TIMESYNC "    myquery << " SELECT OBT0,TIMESYNC,TYPE FROM GL_TIMESYNC "
1525        << " WHERE ID_RAW = " << idraw        << " WHERE ID_RAW = " << idraw
1526        << ";";        << ";";
1527      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1528      this->GetGLTABLES()->AddQ();
1529    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1530    if ( pResult ){    if ( pResult ){
1531      Row = pResult->Next();      Row = pResult->Next();
# Line 1635  Int_t GL_TLE::DoQuery(TString myquery, T Line 1811  Int_t GL_TLE::DoQuery(TString myquery, T
1811    dbc->Query("SET time_zone = '+0:00'");    dbc->Query("SET time_zone = '+0:00'");
1812    
1813    // Do the query    // Do the query
1814      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1815      this->GetGLTABLES()->AddQ();
1816    result = dbc->Query(myquery.Data());    result = dbc->Query(myquery.Data());
1817    if(! result->GetRowCount() ) {    if(! result->GetRowCount() ) {
1818      cerr << "GL_TLE: query failed: " << myquery.Data() << endl;      cerr << "GL_TLE: query failed: " << myquery.Data() << endl;

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.29

  ViewVC Help
Powered by ViewVC 1.1.23