/[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.16 by mocchiut, Tue Nov 7 12:17:44 2006 UTC revision 1.34 by mocchiut, Thu Oct 25 13:23:36 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);
24  ClassImp(GL_PARAM);  ClassImp(GL_PARAM);
25  ClassImp(GL_S4_CALIB);  ClassImp(GL_S4_CALIB);
26  ClassImp(GL_CALO_CALIB);  ClassImp(GL_CALO_CALIB);
27    ClassImp(GL_CALOPULSE_CALIB);
28  ClassImp(GL_TIMESYNC);  ClassImp(GL_TIMESYNC);
29  ClassImp(GL_TLE);  ClassImp(GL_TLE);
30  //  //
31  using namespace std;  using namespace std;
32    
33    GL_TABLES::GL_TABLES(){
34    };
35    
36    GL_TABLES::GL_TABLES(TString host, TString user, TString psw){
37      fHost = new TString(host.Data());
38      fUser = new TString(user.Data());
39      fPsw = new TString(psw.Data());
40      fSet = true;
41      fNquery = 0;
42      mh = host.Data();
43      mu = user.Data();
44      mp = psw.Data();
45    };
46    
47    
48    void GL_TABLES::Set(TString host, TString user, TString psw){
49      fHost = new TString(host.Data());
50      fUser = new TString(user.Data());
51      fPsw = new TString(psw.Data());
52      fSet = true;
53      fNquery = 0;
54      mh = host.Data();
55      mu = user.Data();
56      mp = psw.Data();
57    };
58    
59    Bool_t GL_TABLES::IsConnected(TSQLServer *&dbc){
60      //
61      //
62      //
63      if ( !fSet ){
64        return true;
65      };
66      //
67      //    printf(" host is %s \n",fHost->Data());
68      //
69      stringstream myquery;  
70      myquery.str("");
71      myquery << "show databases;";
72      if ( dbc ){
73        if ( dbc->IsConnected() ){
74          dbc->Query(myquery.str().c_str());
75          fNquery++;
76          if ( !(dbc->GetErrorCode()) ){
77            //      printf("ok\n");
78            //
79            //  if ( (dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006) ){
80            //    if ( !(dbc->GetErrorCode()) ){
81            // is connected
82            return true;
83            //    };
84          };
85        };
86      };
87      //
88      if ( true ) {
89        //
90        printf(" WARNING: Lost connection to DB! try to recover... \n");
91        //
92        TString host = fHost->Data();
93        TString user = fUser->Data();
94        TString psw = fPsw->Data();
95        delete dbc;
96        dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
97        //
98        myquery.str("");
99        myquery << "show databases;";
100        dbc->Query(myquery.str().c_str());
101        fNquery++;
102        //    if ( dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006 ){
103        if ( !(dbc->GetErrorCode()) ){
104          //
105          printf(" ...connection recovered, I can continue! \n");
106          //
107          myquery.str("");
108          myquery << "SET time_zone='+0:00'";
109          dbc->Query(myquery.str().c_str());
110          fNquery++;
111          myquery.str("");
112          myquery << "SET wait_timeout=173000;";
113          dbc->Query(myquery.str().c_str());      
114          fNquery++;
115          return true;
116        };
117      };
118      //
119      printf(" GLTABLES: connection is gone away, query will fail\n");
120      //
121      return false;
122      //
123    };
124    
125    void GL_TABLES::ResetCounters(){
126      fNquery = 0;
127    };
128    
129    void GL_TABLES::AddQ(){
130      if ( fSet ) fNquery++;
131    };
132    
133    UInt_t GL_TABLES::GetNqueries(){
134       UInt_t rn = 0;
135       rn += (UInt_t&)fNquery;
136       return(rn);
137    };
138    
139  GL_RUN::GL_RUN() {  GL_RUN::GL_RUN() {
140    ID                         = 0;    ID                         = 0;
141    ID_RUN_FRAG                = 0;    ID_RUN_FRAG                = 0;
# Line 138  GL_CALO_CALIB::GL_CALO_CALIB(){ Line 246  GL_CALO_CALIB::GL_CALO_CALIB(){
246    FROM_TIME = 0;    FROM_TIME = 0;
247    TO_TIME   = 0;    TO_TIME   = 0;
248    SECTION   = 0;    SECTION   = 0;
249      OBT = 0;
250      PKT = 0;
251      BOOT_NUMBER                = 0;
252      VALIDATION                 = 0;
253    }
254    
255    GL_CALOPULSE_CALIB::GL_CALOPULSE_CALIB(){
256      ID        = 0;
257      ID_ROOT_L0  = 0;
258      EV_ROOT = 0;
259      FROM_TIME = 0;
260      TO_TIME   = 0;
261      SECTION   = 0;
262      PULSED_STRIP = 0;
263      PULSE_AMPLITUDE = 0;
264      OBT = 0;
265      PKT = 0;
266      BOOT_NUMBER                = 0;
267      VALIDATION                 = 0;
268  }  }
269    
270  GL_S4_CALIB::GL_S4_CALIB(){  GL_S4_CALIB::GL_S4_CALIB(){
# Line 146  GL_S4_CALIB::GL_S4_CALIB(){ Line 273  GL_S4_CALIB::GL_S4_CALIB(){
273    EV_ROOT = 0;    EV_ROOT = 0;
274    FROM_TIME = 0;    FROM_TIME = 0;
275    TO_TIME   = 0;    TO_TIME   = 0;
276    PARAM_FIT0 = 0.;    OBT = 0;
277    PARAM_FIT1 = 0.;    PKT = 0;
278      BOOT_NUMBER                = 0;
279  }  }
280    
281  GL_TIMESYNC::GL_TIMESYNC(){  GL_TIMESYNC::GL_TIMESYNC(){
282    obtfirst = 0;    obtfirst = 0;
283    pktfirst = 0;    pktfirst = 0;
284    toffset  = 0;    ID_RESURS_OFFSET  = 0;
285    ID       = 0;    ID       = 0;
286    ID_RAW   = 0;    ID_RAW   = 0;
287    OBT0     = 0;    OBT0     = 0;
# Line 161  GL_TIMESYNC::GL_TIMESYNC(){ Line 289  GL_TIMESYNC::GL_TIMESYNC(){
289    TYPE     = 0;    TYPE     = 0;
290  }  }
291    
 GL_TLE::GL_TLE(){  
 }  
   
292  // ****************************************************  // ****************************************************
293    
294  void GL_RUN::SetEV_FROM(UInt_t evfrom){  void GL_RUN::SetEV_FROM(UInt_t evfrom){
# Line 428  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 553  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
553    //    //
554    //  printf("1myquery is %s \n",myquery.str().c_str());    //  printf("1myquery is %s \n",myquery.str().c_str());
555    //    //
556      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
557      this->GetGLTABLES()->AddQ();
558    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
559    //    //
560    // retrieve this ID_TRASH    // retrieve this ID_TRASH
561    //    //
562    myquery.str("");    myquery.str("");
563    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";  
564      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
565      this->GetGLTABLES()->AddQ();
566    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
567    //    //
568    UInt_t idtrash = 0;    UInt_t idtrash = 0;
# Line 455  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 584  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
584    //    //
585    //  printf("2myquery is %s \n",myquery.str().c_str());    //  printf("2myquery is %s \n",myquery.str().c_str());
586    //    //
587      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
588      this->GetGLTABLES()->AddQ();
589    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
590    //    //
591    Row = pResult->Next();          Row = pResult->Next();      
# Line 470  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 601  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
601    //    //
602    //  printf("3myquery is %s \n",myquery.str().c_str());    //  printf("3myquery is %s \n",myquery.str().c_str());
603    //    //
604      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
605      this->GetGLTABLES()->AddQ();
606    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
607    //    //
608    Row = pResult->Next();          Row = pResult->Next();      
# Line 486  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 619  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
619    //    //
620    //  printf("4myquery is %s \n",myquery.str().c_str());    //  printf("4myquery is %s \n",myquery.str().c_str());
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    myquery.str("");    myquery.str("");
# Line 495  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 630  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
630    //    //
631    //  printf("4myquery is %s \n",myquery.str().c_str());    //  printf("4myquery is %s \n",myquery.str().c_str());
632    //    //
633      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
634      this->GetGLTABLES()->AddQ();
635    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
636    //    //
637    myquery.str("");    myquery.str("");
# Line 505  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 642  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
642    //  printf("4myquery is %s \n",myquery.str().c_str());    //  printf("4myquery is %s \n",myquery.str().c_str());
643    //    //
644    //    //
645      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
646      this->GetGLTABLES()->AddQ();
647    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
648    //    //
649    myquery.str("");    myquery.str("");
# Line 515  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 654  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
654    //  printf("5myquery is %s \n",myquery.str().c_str());    //  printf("5myquery is %s \n",myquery.str().c_str());
655    //    //
656    //    //
657      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
658      this->GetGLTABLES()->AddQ();
659    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
660    //    //
661    return 0;    return 0;
# Line 546  Int_t GL_RUN::RestoreRun(TSQLServer *dbc Line 687  Int_t GL_RUN::RestoreRun(TSQLServer *dbc
687      //      //
688      printf(" qui? myquery is %s \n",myquery.str().c_str());      printf(" qui? myquery is %s \n",myquery.str().c_str());
689      //      //
690        if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
691        this->GetGLTABLES()->AddQ();
692      pResult = dbc->Query(myquery.str().c_str());      pResult = dbc->Query(myquery.str().c_str());
693      //      //
694      Row = pResult->Next();            Row = pResult->Next();      
# Line 629  Int_t GL_RUN::RestoreRun(TSQLServer *dbc Line 772  Int_t GL_RUN::RestoreRun(TSQLServer *dbc
772    //    //
773    //  printf("5myquery is %s \n",myquery.str().c_str());    //  printf("5myquery is %s \n",myquery.str().c_str());
774    //    //
775      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
776      this->GetGLTABLES()->AddQ();
777    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
778    //    //
779    //    //
# Line 636  Int_t GL_RUN::RestoreRun(TSQLServer *dbc Line 781  Int_t GL_RUN::RestoreRun(TSQLServer *dbc
781    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=";
782    myquery << IDRUN << ";";    myquery << IDRUN << ";";
783    //    //
784      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
785      this->GetGLTABLES()->AddQ();
786    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
787    //    //
788    return 0;    return 0;
# Line 718  Int_t GL_RUN::Fill_GL_RUN(TSQLServer *db Line 865  Int_t GL_RUN::Fill_GL_RUN(TSQLServer *db
865    //    //
866    //  printf("myquery is %s \n",myquery.str().c_str());    //  printf("myquery is %s \n",myquery.str().c_str());
867    //    //
868      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
869      this->GetGLTABLES()->AddQ();
870    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
871    //    //
872    return 0;    return 0;
# Line 794  Int_t GL_RUN::Fill_GL_RUN_FRAGMENTS(TSQL Line 943  Int_t GL_RUN::Fill_GL_RUN_FRAGMENTS(TSQL
943    //    //
944    // printf("myquery is %s \n",myquery.str().c_str());    // printf("myquery is %s \n",myquery.str().c_str());
945    //    //
946      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
947      this->GetGLTABLES()->AddQ();
948    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
949    //    //
950    return 0;    return 0;
# Line 851  Int_t GL_RUN::Query_GL_RUN(UInt_t run, T Line 1002  Int_t GL_RUN::Query_GL_RUN(UInt_t run, T
1002    myquery << " from GL_RUN where ID=" << run << ";";    myquery << " from GL_RUN where ID=" << run << ";";
1003    //    //
1004    //  printf(" myquery is %s \n",myquery.str().c_str());    //  printf(" myquery is %s \n",myquery.str().c_str());
1005      if ( !this->IsConnected(dbc) ) return -57;  
1006      this->AddQ();
1007    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1008    //    //
1009    //  printf(" getrowcount %i \n",pResult->GetRowCount());    //  printf(" getrowcount %i \n",pResult->GetRowCount());
# Line 949  Int_t GL_RUN::Query_GL_RUN_FRAGMENTS(TSt Line 1102  Int_t GL_RUN::Query_GL_RUN_FRAGMENTS(TSt
1102    //    //
1103    //  printf(" query is %s \n",myquery.str().c_str());    //  printf(" query is %s \n",myquery.str().c_str());
1104    //    //
1105      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1106      this->GetGLTABLES()->AddQ();
1107    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1108    if(!pResult->GetRowCount())return(-50);    if(!pResult->GetRowCount())return(-50);
1109    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1014  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id, Line 1169  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id,
1169    myquery << ",NAME";    myquery << ",NAME";
1170    myquery << " from GL_ROOT where ID=" << id << ";";        myquery << " from GL_ROOT where ID=" << id << ";";    
1171    //    //
1172      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1173      this->GetGLTABLES()->AddQ();
1174    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1175    if(!pResult->GetRowCount())return (-51);    if(!pResult->GetRowCount())return (-51);
1176    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1023  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id, Line 1180  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id,
1180            if(t==0) ID     = (UInt_t)atoll(Row->GetField(t));            if(t==0) ID     = (UInt_t)atoll(Row->GetField(t));
1181            if(t==1) ID_RAW = (UInt_t)atoll(Row->GetField(t));            if(t==1) ID_RAW = (UInt_t)atoll(Row->GetField(t));
1182            if(t==2) ID_TIMESYNC = (UInt_t)atoll(Row->GetField(t));            if(t==2) ID_TIMESYNC = (UInt_t)atoll(Row->GetField(t));
1183            if(t==3) PATH   = Row->GetField(t);            if(t==3) PATH   = (TString)gSystem->ExpandPathName(Row->GetField(t))+'/';
1184            if(t==4) NAME   = Row->GetField(t);            if(t==4) NAME   = Row->GetField(t);
1185        };        };
1186    };    };
# Line 1048  Int_t GL_TRK_CALIB::Query_GL_TRK_CALIB(U Line 1205  Int_t GL_TRK_CALIB::Query_GL_TRK_CALIB(U
1205    // ----------------    // ----------------
1206    myquery.str("");    myquery.str("");
1207    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;
1208    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!!!
1209      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      
1210      myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1211    //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1212      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1213      this->GetGLTABLES()->AddQ();
1214    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1215    if(!pResult->GetRowCount())return (-53);    if(!pResult->GetRowCount())return (-53);
1216    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1107  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB Line 1268  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB
1268    myquery << " ;";    myquery << " ;";
1269    //myquery << " and VALIDATION=1;";    //myquery << " and VALIDATION=1;";
1270    //    //
1271      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1272      this->GetGLTABLES()->AddQ();
1273    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1274    //  printf(" mysquery is %s\n",myquery.str().c_str());    //  printf(" mysquery is %s\n",myquery.str().c_str());
1275    //    //
# Line 1126  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB Line 1289  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB
1289      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;
1290      myquery << " and FROM_TIME <= " << time;      myquery << " and FROM_TIME <= " << time;
1291      myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";      myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";
1292        if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1293        this->GetGLTABLES()->AddQ();
1294      pResult = dbc->Query(myquery.str().c_str());      pResult = dbc->Query(myquery.str().c_str());
1295      //    printf(" mysquery is %s\n",myquery.str().c_str());      //    printf(" mysquery is %s\n",myquery.str().c_str());
1296      //      //
# Line 1149  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB Line 1314  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB
1314    pResult->Delete();    pResult->Delete();
1315    return 0;    return 0;
1316  };  };
1317    
1318    
1319    // ****************************************************
1320    /**
1321     * Function to query the GL_CALOPULSE_CALIB table of the DB.
1322     *
1323     * \param  run starting time
1324     * \return struct of type GL_CALOPULSE_CALIB_data, which stores the query result
1325     */
1326    Int_t GL_CALOPULSE_CALIB::Query_GL_CALOPULSE_CALIB(UInt_t time, UInt_t section, UInt_t pampli, TSQLServer *dbc){
1327      // MySQL variables
1328      TSQLResult *pResult;
1329      TSQLRow *Row;
1330      int t;
1331      stringstream myquery;
1332      //
1333      // select the correct calibration i.e. the closest to our time
1334      //
1335      myquery.str("");
1336      myquery << "select ID_ROOT_L0, FROM_TIME, TO_TIME, EV_ROOT from GL_CALOPULSE_CALIB where SECTION=" << section;
1337      myquery << " and PULSE_AMPLITUDE=" << pampli;
1338      myquery << " and VALIDATION=1 and (PULSED_STRIP IS NULL OR PULSED_STRIP<100) ORDER BY ABS(" << time << "-FROM_TIME) asc limit 1;";
1339      //  printf(" myq is %s \n",myquery.str().c_str());
1340      //
1341      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1342      this->GetGLTABLES()->AddQ();
1343      pResult = dbc->Query(myquery.str().c_str());
1344      //
1345      if( !pResult ) return(-54);
1346      //
1347      Row = pResult->Next();
1348      //
1349      if( !Row ) return (-54);
1350      //
1351      // store infos and exit
1352      //
1353      for( t = 0; t < pResult->GetFieldCount(); t++){
1354        //    printf(" field %i is %s \n",t,Row->GetField(t));
1355        if (t==0) ID_ROOT_L0  = (UInt_t)atoll(Row->GetField(t));
1356        if (t==1) FROM_TIME = (UInt_t)atoll(Row->GetField(t));
1357        if (t==2) TO_TIME   = (UInt_t)atoll(Row->GetField(t));            
1358        if (t==3) EV_ROOT = (UInt_t)atoll(Row->GetField(t));
1359      };
1360      pResult->Delete();
1361      return 0;
1362    };
1363    
1364    
1365  // ****************************************************  // ****************************************************
1366  /**  /**
1367   * Function to query the GL_S4_CALIB table of the DB.   * Function to query the GL_S4_CALIB table of the DB.
# Line 1165  Int_t GL_S4_CALIB::Query_GL_S4_CALIB(UIn Line 1378  Int_t GL_S4_CALIB::Query_GL_S4_CALIB(UIn
1378    stringstream myquery;    stringstream myquery;
1379    // ----------------    // ----------------
1380    myquery.str("");    myquery.str("");
1381    myquery << "select * from GL_S4_CALIB where FROM_TIME <= "<< time;    myquery << "select ID,ID_ROOT_L0,EV_ROOT,FROM_TIME,TO_TIME from GL_S4_CALIB where FROM_TIME <= "<< time;
1382    myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1383    //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1384      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1385      this->GetGLTABLES()->AddQ();
1386    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1387    if(!pResult->GetRowCount())return (-55);//throw -55;    if(!pResult->GetRowCount())return (-55);//throw -55;
1388    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1175  Int_t GL_S4_CALIB::Query_GL_S4_CALIB(UIn Line 1390  Int_t GL_S4_CALIB::Query_GL_S4_CALIB(UIn
1390        if( Row == NULL ) break;        if( Row == NULL ) break;
1391        for( t = 0; t < pResult->GetFieldCount(); t++){        for( t = 0; t < pResult->GetFieldCount(); t++){
1392          if (t==0) ID               = (UInt_t)atoll(Row->GetField(t));          if (t==0) ID               = (UInt_t)atoll(Row->GetField(t));
1393            if (t==1) ID_ROOT_L0  = (UInt_t)atoll(Row->GetField(t));          if (t==1) ID_ROOT_L0  = (UInt_t)atoll(Row->GetField(t));
1394            if (t==2) EV_ROOT    = (UInt_t)atoll(Row->GetField(t));          if (t==2) EV_ROOT    = (UInt_t)atoll(Row->GetField(t));
1395            if (t==3) FROM_TIME = (UInt_t)atoll(Row->GetField(t));          if (t==3) FROM_TIME = (UInt_t)atoll(Row->GetField(t));
1396            if (t==4) TO_TIME   = (UInt_t)atoll(Row->GetField(t));          if (t==4) TO_TIME   = (UInt_t)atoll(Row->GetField(t));
           if (t==5) PARAM_FIT0   = atof(Row->GetField(t));  
           if (t==6) PARAM_FIT1   = atof(Row->GetField(t));  
1397        };        };
1398    };    };
1399    delete pResult;        delete pResult;    
# Line 1208  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti Line 1421  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti
1421    // ----------------        // ----------------    
1422    myquery.str("");    myquery.str("");
1423    myquery << " select ";    myquery << " select ";
1424    myquery << " ID, PATH, NAME, DESCR, TYPE, FROM_TIME,TO_TIME ";    myquery << " ID, PATH, NAME, DESCR, FROM_TIME,TO_TIME, TYPE ";
1425    myquery << " from GL_PARAM ";    myquery << " from GL_PARAM ";
1426    myquery << " where TYPE = '"<<type<<"' ";    myquery << " where TYPE = '"<<type<<"' ";
1427    myquery << " and FROM_TIME <= " << time;    myquery << " and FROM_TIME <= " << time;
1428    myquery << " ORDER BY TO_TIME DESC LIMIT 1;";      myquery << " ORDER BY TO_TIME DESC LIMIT 1;";  
1429    //    //
1430      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1431      this->GetGLTABLES()->AddQ();
1432    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1433    if(!pResult->GetRowCount())return (-52);    if(!pResult->GetRowCount())return (-52);
1434    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1221  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti Line 1436  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti
1436        if( Row == NULL ) break;        if( Row == NULL ) break;
1437        for( t = 0; t < pResult->GetFieldCount(); t++){        for( t = 0; t < pResult->GetFieldCount(); t++){
1438          if (t==0) ID        = (UInt_t)atoll(Row->GetField(t));          if (t==0) ID        = (UInt_t)atoll(Row->GetField(t));
1439            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
1440            if (t==2) NAME      = Row->GetField(t);            if (t==2) NAME      = Row->GetField(t);
1441            if (t==3) DESCR     = Row->GetField(t);            if (t==3) DESCR     = Row->GetField(t);
1442            if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t));            if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t));
# Line 1267  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1482  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1482    TSQLRow *Row;    TSQLRow *Row;
1483    stringstream myquery;    stringstream myquery;
1484    stringstream rname;    stringstream rname;
1485      //  pcksList packetsNames;
1486      //  pcksList::iterator Iter;
1487      //  getPacketsNames(packetsNames);
1488    rname.str("");    rname.str("");
1489    // ----------------    // ----------------
1490    myquery.str("");    myquery.str("");
# Line 1277  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1495  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1495    myquery << type.Data();    myquery << type.Data();
1496    myquery << "=" << id << ";";        myquery << "=" << id << ";";    
1497    //    //
1498      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1499      this->GetGLTABLES()->AddQ();
1500    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1501    if( pResult->GetRowCount() ){    if( pResult->GetRowCount() ){
1502      Row = pResult->Next();            Row = pResult->Next();      
1503      if( Row ){      if( Row ){
1504        stringstream fname;        stringstream fname;
1505        fname.str("");        fname.str("");
1506        fname << Row->GetField(0) << "/" << Row->GetField(1);        fname << gSystem->ExpandPathName(Row->GetField(0)) << "/" << Row->GetField(1);
1507        rname << Row->GetField(1);        rname << Row->GetField(1);
1508        file = new TFile(fname.str().c_str(),"READ");        file = new TFile(fname.str().c_str(),"READ");
1509        idraw = (UInt_t)atoll(Row->GetField(2));        idraw = (UInt_t)atoll(Row->GetField(2));
# Line 1300  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1520  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1520      ph = eh->GetPscuHeader();      ph = eh->GetPscuHeader();
1521      pktfirst = ph->GetCounter();      pktfirst = ph->GetCounter();
1522      obtfirst = ph->GetOrbitalTime();        obtfirst = ph->GetOrbitalTime();  
1523        //
1524    //     code = eh->GetCounter();
1525    //     UInt_t en = 0;
1526    //     for(Iter = packetsNames.begin(); Iter != packetsNames.end(); Iter++){
1527    //       en = code->Get(GetPacketType(*Iter));
1528    //       if ( !strcmp("CalibCalPed",*Iter) || !strcmp("CalibTrk1",*Iter) || !strcmp("CalibTrk2",*Iter) || !strcmp("CalibS4",*Iter) ){
1529    //      //
1530    //      TTree *TC = 0;
1531    //      TC = (TTree*)file->Get("CalibCalPed");
1532    //      if ( !TC || TC->IsZombie() ) return;
1533    //      EventHeader *ehc = 0;
1534    //      PscuHeader *phc = 0;
1535    //      TC->SetBranchAddress("Header", &ehc);
1536    //      TC->GetEntry(0);
1537    //      phc = ehc->GetPscuHeader();
1538    //      pktfirst = phc->GetCounter();
1539    //      obtfirst = phc->GetOrbitalTime();  
1540    //       //
1541    //       };
1542    //     };  
1543        //
1544    };    };
1545    //    //
1546    // look for Resurs offset    // look for Resurs offset
1547    //    //
1548    UInt_t t0 = 0;    T0 = 0;
1549    //    //
1550    //    //
1551    stringstream oss;    stringstream oss;
1552      TString frn = rname.str().c_str();
1553      frn = frn.ReplaceAll(".root",5,".pam",4);
1554    oss.str("");    oss.str("");
1555    oss << "SELECT 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='"
1556        << rname.str().c_str() << "';";        << frn.Data() << "';";
1557    //  if ( IsDebug() ) printf(" %s \n",oss.str().c_str());    if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1558      this->GetGLTABLES()->AddQ();
1559    pResult = dbc->Query(oss.str().c_str());    pResult = dbc->Query(oss.str().c_str());
1560    Row = pResult->Next();    Row = pResult->Next();
1561    //    //
1562    TString name=rname.str().c_str();    TString name=rname.str().c_str();
1563    UInt_t dworbit = 0;    UInt_t dworbit = 0;
1564    Int_t nlength = name.Length();    Int_t nlength = name.Length();
1565    if ( nlength < 5 ) return;    //
1566    TString dwo = 0;    // Is not a special file
   for (Int_t i = 0; i<5; i++){  
     dwo.Append(name[i],1);  
   };  
   if ( dwo.IsDigit() ){  
     dworbit = (UInt_t)dwo.Atoi();  
   } else {  
     dwo="";  
     for (Int_t i = 8; i<13; i++){  
       dwo.Append(name[i],1);  
     };      
     if ( dwo.IsDigit() ) dworbit = (UInt_t)dwo.Atoi();  
   };  
   // if ( IsDebug() ) printf(" Downlink orbit is %i (dwo = %s) \n",dworbit,dwo.Data());    
1567    //    //
1568    if ( !Row ){    if ( !Row ){
1569        delete pResult;      
1570        //
1571        // New code, we have one more column on GL_TIMESYNC so we can trust that one for the Resurs offset
1572        //
1573      oss.str("");      oss.str("");
1574      oss << "SELECT OFFSET_DATE FROM GL_RESURS_OFFSET WHERE FROM_ORBIT< "      oss << "SELECT ID_RESURS_OFFSET from GL_TIMESYNC where ID_RAW=" << idraw <<";";
1575          << dworbit << " order by FROM_ORBIT desc limit 1;";      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1576      //    if ( IsDebug() ) printf(" %s \n",oss.str().c_str());      this->GetGLTABLES()->AddQ();
1577      pResult = dbc->Query(oss.str().c_str());      pResult = dbc->Query(oss.str().c_str());
1578      Row = pResult->Next();      Bool_t fndit = false;
1579      if ( !Row ){      if ( pResult ){
1580        printf(" ERROR FROM GLTables! cannot determine Resurs offset \n");        Row = pResult->Next();
1581        return;        if ( Row ){
1582            oss.str("");
1583            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 ID="
1584                << Row->GetField(0) << ";";
1585            if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1586            this->GetGLTABLES()->AddQ();
1587            pResult = dbc->Query(oss.str().c_str());
1588            if ( pResult ){
1589              Row = pResult->Next();
1590              if ( Row ){
1591                //      printf(" GREAT! the DB structure is the new one! \n");
1592                fndit = true;
1593                dworbit = 1;
1594              };
1595            };
1596          };
1597        };
1598        if ( !fndit ){
1599          delete pResult;      
1600          //
1601          printf(" OK, you got an error because this is the old database\n Using backward compability code, hence you can continue safetly \n");
1602          //
1603          // Old code, we must trust the filename
1604          //
1605          if ( nlength < 5 ) return;
1606          TString dwo = 0;
1607          for (Int_t i = 0; i<5; i++){
1608            dwo.Append(name[i],1);
1609          };
1610          if ( dwo.IsDigit() ){
1611            dworbit = (UInt_t)dwo.Atoi();
1612          } else {
1613            dwo="";
1614            for (Int_t i = 8; i<13; i++){
1615              dwo.Append(name[i],1);
1616            };    
1617            if ( dwo.IsDigit() ){
1618              dworbit = (UInt_t)dwo.Atoi();
1619            } else {
1620              dworbit = 1;
1621            };
1622          };    
1623          //
1624          oss.str("");
1625          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< "
1626              << dworbit << " order by FROM_ORBIT desc limit 1;";
1627          if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1628          this->GetGLTABLES()->AddQ();
1629          pResult = dbc->Query(oss.str().c_str());
1630          Row = pResult->Next();
1631          if ( !Row ){
1632            printf(" ERROR FROM GLTables! cannot determine Resurs offset \n");
1633            return;
1634          };
1635      };      };
1636    };    };
1637    //    //
1638    //      TTimeStamp tu = TTimeStamp((UInt_t)atoi(Row->GetField(0)),(UInt_t)atoi(Row->GetField(1)),(UInt_t)atoi(Row->GetField(2)),(UInt_t)atoi(Row->GetField(3)),(UInt_t)atoi(Row->GetField(4)),(UInt_t)atoi(Row->GetField(5)),0,true,0);
1639    TDatime ti = TDatime(Row->GetField(0));    T0 = (UInt_t)tu.GetSec();
   TTimeStamp tu = TTimeStamp((UInt_t)ti.GetYear(),(UInt_t)ti.GetMonth(),(UInt_t)ti.GetDay(),(UInt_t)ti.GetHour(),(UInt_t)ti.GetMinute(),(UInt_t)ti.GetSecond(),0,true,0);  
   t0 = (UInt_t)tu.GetSec();  
1640    //    //
1641    // look for the correct timesync entry    // look for the correct timesync entry
1642    //    //
1643    myquery.str("");    myquery.str("");
1644    myquery << " SELECT OBT0,TIMESYNC FROM GL_TIMESYNC "    myquery << " SELECT OBT0,TIMESYNC,TYPE FROM GL_TIMESYNC "
1645        << " WHERE ID_RAW = " << idraw        << " WHERE ID_RAW = " << idraw
1646        << ";";        << ";";
1647      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1648      this->GetGLTABLES()->AddQ();
1649    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1650    if ( pResult ){    if ( pResult ){
1651      Row = pResult->Next();      Row = pResult->Next();
1652      if ( (Row != NULL) && ((UInt_t)atoll(Row->GetField(0)) > 0 ) ){      if ( (Row != NULL) && ((UInt_t)atoll(Row->GetField(0)) > 0 ) ){
1653        toffset = (UInt_t)atoll(Row->GetField(1)) - (UInt_t)(this->DBobt((UInt_t)atoll(Row->GetField(0)))/1000) + t0;        OBT0 = (UInt_t)atoll(Row->GetField(0));
1654          TIMESYNC = (UInt_t)atoll(Row->GetField(1));
1655          TYPE = (UInt_t)atoll(Row->GetField(2));
1656          toffset = (UInt_t)atoll(Row->GetField(1)) - (UInt_t)(this->DBobt((UInt_t)atoll(Row->GetField(0)))/1000) + T0;
1657      };      };
1658    };    };
1659    //    //
# Line 1381  UInt_t GL_TIMESYNC::DBabsTime(UInt_t OBT Line 1672  UInt_t GL_TIMESYNC::DBabsTime(UInt_t OBT
1672    //    //
1673  };  };
1674    
1675    /**
1676     *
1677     * Returns the Resurs time given the OBT needed to process inclination and orbital infos
1678     *
1679     */
1680    UInt_t GL_TIMESYNC::ResursTime(UInt_t OBT){  
1681      //
1682      return(((UInt_t)((Int_t)(this->DBobt(OBT)-this->DBobt(OBT0))/1000)+TIMESYNC));
1683      //
1684    };
1685    
1686  ULong64_t GL_TIMESYNC::DBobt(UInt_t obt){    
1687    /**
1688     * Return the correct packet number if we went back to zero
1689     */
1690    Long64_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){  
1691    //    //
1692    if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((ULong64_t)(obt+numeric_limits<UInt_t>::max()));    if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2)  ){
1693        return((Long64_t)pkt_num+16777215LL);
1694      };
1695    //    //
1696    if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){    if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){
1697      if ( (obt-numeric_limits<UInt_t>::max()) < 0  ){      return((Long64_t)pkt_num-16777215LL);
       return((ULong64_t)(numeric_limits<UInt_t>::max()-obt));  
     } else {  
       return((ULong64_t)(obt-numeric_limits<UInt_t>::max()));  
     };  
1698    };    };
1699    //    //
1700    return((ULong64_t)obt);    return((Long64_t)pkt_num);
1701    //    //
1702  };  };
1703    
1704  UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){    /**
1705     * Return the correct On Board Time if we went back to zero
1706     */
1707    Long64_t GL_TIMESYNC::DBobt(UInt_t obt){  
1708    //    //
1709    if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2)  ) return((pkt_num+16777215));    if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((Long64_t)(obt+numeric_limits<UInt_t>::max()));
1710    //    //
1711    if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){    if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){
1712      if ( (pkt_num-16777215) < 0 ){      return((Long64_t)obt-(Long64_t)numeric_limits<UInt_t>::max());
       return((16777215-pkt_num));  
     } else {  
       return((pkt_num-16777215));  
     };  
1713    };    };
1714    //    //
1715    return(pkt_num);    return((Long64_t)obt);
   //  
1716  };  };
1717    
1718    
1719    
1720    // ULong64_t GL_TIMESYNC::DBobt(UInt_t obt){  
1721    //   //
1722    //   if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((ULong64_t)(obt+numeric_limits<UInt_t>::max()));
1723    //   //
1724    //   if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){
1725    //     if ( (obt-numeric_limits<UInt_t>::max()) < 0  ){
1726    //       return((ULong64_t)(numeric_limits<UInt_t>::max()-obt));
1727    //     } else {
1728    //       return((ULong64_t)(obt-numeric_limits<UInt_t>::max()));
1729    //     };
1730    //   };
1731    //   //
1732    //   return((ULong64_t)obt);
1733    //   //
1734    // };
1735    
1736    // UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){  
1737    //   //
1738    //   if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2)  ) return((pkt_num+16777215));
1739    //   //
1740    //   if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){
1741    //     if ( (pkt_num-16777215) < 0 ){
1742    //       return((16777215-pkt_num));
1743    //     } else {
1744    //       return((pkt_num-16777215));
1745    //     };
1746    //   };
1747    //   //
1748    //   return(pkt_num);
1749    //   //
1750    // };
1751    
1752  /*  /*
1753   *   *
1754   * Convert the time in the DB from UInt_t to a string   * Convert the time in the DB from UInt_t to a string
# Line 1531  TString GL_TIMESYNC::UnConvertTime(TStri Line 1866  TString GL_TIMESYNC::UnConvertTime(TStri
1866  }  }
1867    
1868    
1869  // ****************************************************  //
1870  /**  // Build a query and call DoQuery.
1871   * Function to query the GL_TLE table of the DB.  //
1872   *  // date it's an SQL datetime date and dbc is the connection to be
1873   * time is the unix time for which a good tle is requested.  // used.  It will query for the tle with the nearest but previous date
1874   *  // and the immediatly next one.
1875   * Return the pointer to a cTle object that has the closest and  //
1876   * previous date compared with time.  Int_t GL_TLE::Query(TString date, TSQLServer *dbc){
  *  
  * If errors occurs it returns NULL.  
  */  
 cTle* GL_TLE::Query_GL_TLE(UInt_t time, TSQLServer *dbc){  
1877    stringstream myquery;    stringstream myquery;
1878    myquery.str("");    myquery.str("");
1879    
1880    myquery << "SELECT TLE1, TLE2, TLE3 FROM GL_TLE "    myquery << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1881            << "WHERE FROM_TIME < FROM_UNIXTIME(" << time << ") ORDER BY FROM_TIME DESC LIMIT 1;";              << "WHERE FROM_TIME <= '" << date.Data()
1882              << "' ORDER BY FROM_TIME DESC LIMIT 1) "
1883              << "UNION "
1884              << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1885              << "WHERE FROM_TIME > '" << date.Data()
1886              << "' ORDER BY FROM_TIME ASC LIMIT 1)";
1887    
1888    return Query_GL_TLE_go(myquery.str(), dbc);    return DoQuery(myquery.str().c_str(), dbc);
1889  }  }
1890    
1891    
1892  // ****************************************************  //
1893  /**  // Build a query and call DoQuery.
1894   * Function to query the GL_TLE table of the DB.  //
1895   *  // time is the UTC date in unix time (UTC) and dbc is the connection
1896   * date is a datetime format YYYY-MM-DD hh:mm:ss for which a good tle  // to be used.  It will query for the tle with the nearest but
1897   * is requested.  // previous date and the immediatly next one.
1898   *  //
1899   * Return the pointer to a cTle object that has the closest and  // Returns the value returned by DoQuery().
1900   * previous date compared with time.  //
1901   *  Int_t GL_TLE::Query(UInt_t time, TSQLServer *dbc){
  * If errors occurs it returns NULL.  
  */  
 cTle* GL_TLE::Query_GL_TLE(TString date, TSQLServer *dbc){  
1902    stringstream myquery;    stringstream myquery;
1903    myquery.str("");    myquery.str("");
1904    
1905    myquery << "SELECT TLE1, TLE2, TLE3 FROM GL_TLE "    myquery << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1906            << "WHERE FROM_TIME < '" << date.Data() << "' ORDER BY FROM_TIME DESC LIMIT 1;";              << "WHERE FROM_TIME <= FROM_UNIXTIME('" << time
1907              << "') ORDER BY FROM_TIME DESC LIMIT 1) "
1908              << "UNION "
1909              << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1910              << "WHERE FROM_TIME > FROM_UNIXTIME('" << time
1911              << "') ORDER BY FROM_TIME ASC LIMIT 1)";
1912    
1913    return Query_GL_TLE_go(myquery.str(), dbc);    return DoQuery(myquery.str().c_str(), dbc);
1914  }  }
1915    
1916    
1917  // ****************************************************  //
1918  /**  // Do the query myquery on the connectio dbc.  Initialize tle,
1919   * Private function used by Query_GL_TLE methods.  // tleFromTime and tleToTime.
1920   *  //
1921   * myquery is the query string.  // We should have two rows (unless the table is old).  From the last
1922   *  // one we only take tleToTime.
1923   * Return the pointer to a cTle object that has the closest and  //
1924   * previous date compared with time.  // Returns 0 for success, 1 for failure.
1925   *  //
1926   * If errors occurs it returns NULL.  Int_t GL_TLE::DoQuery(TString myquery, TSQLServer *dbc){
  */  
 cTle* GL_TLE::Query_GL_TLE_go(TString myquery, TSQLServer *dbc){  
   cTle *tle;  
   string tle1, tle2, tle3;  
   
   // MySQL variables  
1927    TSQLResult *result;    TSQLResult *result;
1928    TSQLRow *row;    TSQLRow *row;
1929    
1930      // Set the right time_zone (otherwise horrible things will occur! :)
1931      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1932      dbc->Query("SET time_zone = '+0:00'");
1933    
1934      // Do the query
1935      this->GetGLTABLES()->AddQ();
1936    result = dbc->Query(myquery.Data());    result = dbc->Query(myquery.Data());
1937    if(! result->GetRowCount() ) return NULL;    if(! result->GetRowCount() ) {
1938        cerr << "GL_TLE: query failed: " << myquery.Data() << endl;
1939        return 1;
1940      }
1941    
1942      // Get results
1943      row = result->Next(); // first tle row
1944      tle = GiveTle(row);
1945    
1946      tleFromTime = strtol(row->GetField(4), NULL, 10);
1947    
1948      row = result->Next(); // second tle row
1949      if(row)
1950        tleToTime = strtol(row->GetField(4), NULL, 10);
1951      else {
1952        cerr << "GL_TLE: Warning: using last avaible TLE. Please update GL_TLE table!\n";
1953        tleToTime = UINT_MAX;
1954      }
1955    
1956    row = result->Next();    delete row;
1957    tle1 = row->GetField(0);    delete result;
   tle2 = row->GetField(1);  
   tle3 = row->GetField(2);  
1958    
1959    tle = new cTle(tle1, tle2, tle3);    return 0;
1960    }
1961    
   delete result;  
   delete row;  
1962    
1963    return tle;  //
1964    // Build a cTle object from the GL_TLE row.
1965    //
1966    cTle* GL_TLE::GiveTle(TSQLRow *row) {
1967      cTle *thistle = NULL;
1968      string tle1, tle2, tle3;
1969    
1970      // Build cTle object
1971      tle1 = row->GetField(1);
1972      tle2 = row->GetField(2);
1973      tle3 = row->GetField(3);
1974    
1975      thistle = new cTle(tle1, tle2, tle3);
1976    
1977      return thistle;
1978  }  }

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.34

  ViewVC Help
Powered by ViewVC 1.1.23