/[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.13 by mocchiut, Fri Oct 20 11:39:37 2006 UTC revision 1.31 by mocchiut, Sun Sep 9 18:59:41 2007 UTC
# Line 10  Line 10 
10  //  //
11  #include <TFile.h>  #include <TFile.h>
12  #include <TTree.h>  #include <TTree.h>
13    #include <TTimeStamp.h>
14  #include <EventHeader.h>  #include <EventHeader.h>
15  #include <PscuHeader.h>  #include <PscuHeader.h>
16  //  //
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 27  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      mh = host.Data();
42      mu = user.Data();
43      mp = psw.Data();
44    };
45    
46    
47    void GL_TABLES::Set(TString host, TString user, TString psw){
48      fHost = new TString(host.Data());
49      fUser = new TString(user.Data());
50      fPsw = new TString(psw.Data());
51      fSet = true;
52      fNquery = 0;
53      mh = host.Data();
54      mu = user.Data();
55      mp = psw.Data();
56    };
57    
58    Bool_t GL_TABLES::IsConnected(TSQLServer *&dbc){
59      //
60      //
61      //
62      if ( !fSet ){
63        return true;
64      };
65      //
66      //
67      //
68      //    printf(" host is %s \n",fHost->Data());
69      //
70      stringstream myquery;  
71      myquery.str("");
72      myquery << "show databases;";
73      if ( dbc ){
74        if ( dbc->IsConnected() ){
75          dbc->Query(myquery.str().c_str());
76          fNquery++;
77          if ( !(dbc->GetErrorCode()) ){
78            //      printf("ok\n");
79            //
80            //  if ( (dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006) ){
81            //    if ( !(dbc->GetErrorCode()) ){
82            // is connected
83            return true;
84            //    };
85          };
86        };
87      };
88      //  printf("porca di quella \n");
89      if ( true ) {
90        //
91        printf(" WARNING: Lost connection to DB! try to recover... \n");
92        //
93        TString host = fHost->Data();
94        TString user = fUser->Data();
95        TString psw = fPsw->Data();
96        delete dbc;
97        dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
98        //
99        myquery.str("");
100        myquery << "show databases;";
101        dbc->Query(myquery.str().c_str());
102        fNquery++;
103        //    printf(" e riporca di quella \n");
104        //
105        //    if ( dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006 ){
106        if ( !(dbc->GetErrorCode()) ){
107          //
108          printf(" ...connection recovered, I can continue! \n");
109          //
110          myquery.str("");
111          myquery << "SET time_zone='+0:00'";
112          dbc->Query(myquery.str().c_str());
113          fNquery++;
114          myquery.str("");
115          myquery << "SET wait_timeout=173000;";
116          dbc->Query(myquery.str().c_str());      
117          fNquery++;
118          return true;
119        };
120      };
121      //
122      printf(" GLTABLES: connection is gone away, query will fail\n");
123      //
124      return false;
125      //
126    };
127    
128    void GL_TABLES::ResetCounters(){
129      fNquery = 0;
130    };
131    
132    void GL_TABLES::AddQ(){
133      if ( fSet ) fNquery++;
134    };
135    
136    UInt_t GL_TABLES::GetNqueries(){
137       UInt_t rn = 0;
138       rn += (UInt_t&)fNquery;
139       return(rn);
140    };
141    
142  GL_RUN::GL_RUN() {  GL_RUN::GL_RUN() {
143    ID                         = 0;    ID                         = 0;
144    ID_RUN_FRAG                = 0;    ID_RUN_FRAG                = 0;
# Line 153  GL_TIMESYNC::GL_TIMESYNC(){ Line 265  GL_TIMESYNC::GL_TIMESYNC(){
265    obtfirst = 0;    obtfirst = 0;
266    pktfirst = 0;    pktfirst = 0;
267    toffset  = 0;    toffset  = 0;
268    ID       = 0;    //  ID       = 0;
269    ID_RAW   = 0;    //  ID_RAW   = 0;
270    OBT0     = 0;    OBT0     = 0;
271    TIMESYNC = 0;    TIMESYNC = 0;
272    TYPE     = 0;    TYPE     = 0;
273  }  }
274    
 GL_TLE::GL_TLE(){  
 }  
   
275  // ****************************************************  // ****************************************************
276    
277  void GL_RUN::SetEV_FROM(UInt_t evfrom){  void GL_RUN::SetEV_FROM(UInt_t evfrom){
# Line 373  void GL_RUN::Set_GL_RUN(TSQLRow *Row){ Line 482  void GL_RUN::Set_GL_RUN(TSQLRow *Row){
482    
483  }  }
484    
485    /**
486     * This method delete the run from the "FromTable" table and store it in the GL_RUN_TRASH table
487     * If IDRUN is 0 "this->ID" run is used.
488     *
489     **/
490    Int_t GL_RUN::DeleteRun(TSQLServer *dbc,UInt_t IDRUN,TString FromTable){
491      // MySQL variables
492      TSQLResult *pResult;
493      TSQLRow *Row;
494      stringstream myquery;
495      //
496      if ( !IDRUN ) IDRUN = ID;
497      if ( !IDRUN ) return 1;
498      // ----------------
499      myquery.str("");
500      myquery << " INSERT INTO GL_RUN_TRASH (";  
501      myquery << "ID";
502      myquery << ",ID_RUN_FRAG";
503      myquery << ",ID_ROOT_L0";
504      myquery << ",ID_ROOT_L2";
505      myquery << ",RUNHEADER_TIME";
506      myquery << ",RUNTRAILER_TIME";
507      myquery << ",RUNHEADER_OBT";
508      myquery << ",RUNTRAILER_OBT";
509      myquery << ",RUNHEADER_PKT";
510      myquery << ",RUNTRAILER_PKT";
511      myquery << ",BOOT_NUMBER";
512      myquery << ",EV_FROM";
513      myquery << ",EV_TO";
514      myquery << ",NEVENTS";
515      myquery << ",PKT_COUNTER";
516      myquery << ",PKT_READY_COUNTER";
517      myquery << ",COMPILATIONTIMESTAMP";
518      myquery << ",FAV_WRK_SCHEDULE";
519      myquery << ",EFF_WRK_SCHEDULE";
520      myquery << ",PRH_VAR_TRG_MODE_A";
521      myquery << ",PRH_VAR_TRG_MODE_B";
522      myquery << ",ACQ_BUILD_INFO";
523      myquery << ",ACQ_VAR_INFO";
524      myquery << ",RM_ACQ_AFTER_CALIB";
525      myquery << ",RM_ACQ_SETTING_MODE";
526      myquery << ",TRK_CALIB_USED";
527      myquery << ",CAL_DSP_MASK";
528      myquery << ",LAST_TIMESYNC";
529      myquery << ",OBT_TIMESYNC";
530      myquery << ",VALIDATION";
531      myquery << ",INSERT_TIME";
532      myquery << ") SELECT * FROM ";
533      myquery << FromTable.Data();
534      myquery << " WHERE ID=";
535      myquery << (UInt_t)IDRUN << ";";
536      //
537      //  printf("1myquery is %s \n",myquery.str().c_str());
538      //
539      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
540      this->GetGLTABLES()->AddQ();
541      dbc->Query(myquery.str().c_str());
542      //
543      // retrieve this ID_TRASH
544      //
545      myquery.str("");
546      myquery << " SELECT ID_TRASH,ID_ROOT_L0,ID_ROOT_L2 FROM GL_RUN_TRASH ORDER BY ID_TRASH DESC LIMIT 1";  
547      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
548      this->GetGLTABLES()->AddQ();
549      pResult = dbc->Query(myquery.str().c_str());
550      //
551      UInt_t idtrash = 0;
552      UInt_t idl0 = 0;
553      UInt_t idl2 = 0;
554      //
555      Row = pResult->Next();      
556      if( Row != NULL ){
557        idtrash = (UInt_t)atoll(Row->GetField(0));
558        idl0 = (UInt_t)atoll(Row->GetField(1));
559        idl2 = (UInt_t)atoll(Row->GetField(2));    
560      };
561      //
562      TString fileL0 = "";
563      TString fileL2 = "";
564      myquery.str("");
565      myquery << " SELECT NAME FROM GL_ROOT WHERE ID=";
566      myquery <<  idl0 << ";";
567      //
568      //  printf("2myquery is %s \n",myquery.str().c_str());
569      //
570      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
571      this->GetGLTABLES()->AddQ();
572      pResult = dbc->Query(myquery.str().c_str());
573      //
574      Row = pResult->Next();      
575      if( Row != NULL ){
576        fileL0 = (TString)Row->GetField(0);
577      };
578      //
579      //
580      //
581      myquery.str("");
582      myquery << " SELECT NAME FROM GL_ROOT WHERE ID=";
583      myquery << idl2 << ";";
584      //
585      //  printf("3myquery 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());
590      //
591      Row = pResult->Next();      
592      if( Row != NULL ){
593        fileL2 = (TString)Row->GetField(0);
594      };
595      //
596      //
597      //
598      myquery.str("");
599      myquery << " UPDATE GL_RUN_TRASH SET FILENAMEL0='";
600      myquery <<  fileL0.Data() << "' where ID_TRASH=";
601      myquery << idtrash << ";";
602      //
603      //  printf("4myquery is %s \n",myquery.str().c_str());
604      //
605      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
606      this->GetGLTABLES()->AddQ();
607      dbc->Query(myquery.str().c_str());
608      //
609      myquery.str("");
610      myquery << " UPDATE GL_RUN_TRASH SET FILENAMEL2='";
611      myquery <<  fileL2.Data() << "' where ID_TRASH=";
612      myquery << idtrash << ";";
613      //
614      //  printf("4myquery is %s \n",myquery.str().c_str());
615      //
616      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
617      this->GetGLTABLES()->AddQ();
618      dbc->Query(myquery.str().c_str());
619      //
620      myquery.str("");
621      myquery << " UPDATE GL_RUN_TRASH SET BELONGED_TO='";
622      myquery <<  FromTable.Data() << "' where ID_TRASH=";
623      myquery << idtrash << ";";
624      //
625      //  printf("4myquery is %s \n",myquery.str().c_str());
626      //
627      //
628      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
629      this->GetGLTABLES()->AddQ();
630      dbc->Query(myquery.str().c_str());
631      //
632      myquery.str("");
633      myquery << " DELETE FROM ";
634      myquery <<  FromTable.Data() << " where ID=";
635      myquery << IDRUN << ";";
636      //
637      //  printf("5myquery is %s \n",myquery.str().c_str());
638      //
639      //
640      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
641      this->GetGLTABLES()->AddQ();
642      dbc->Query(myquery.str().c_str());
643      //
644      return 0;
645    };
646    
647    
648    
649    /**
650     * This method restore a run from the GL_RUN_TRASH table.
651     * If ID is 0 "this->ID" is used; if "ToTable" is empty BELONG_TO field of GL_RUN_TRASH is used.
652     *
653     **/
654    Int_t GL_RUN::RestoreRun(TSQLServer *dbc,UInt_t IDRUN,TString ToTable){
655      // insert into GL_RUN_FRAGMENTS select * FROM GL_RUN where ID=11;
656      //insert into GL_RUN_TRASH VALUES (ID , ID_RUN_FRAG , ID_ROOT_L0 , ID_ROOT_L2 , RUNHEADER_TIME , RUNTRAILER_TIME , RUNHEADER_OBT , RUNTRAILER_OBT , RUNHEADER_PKT , RUNTRAILER_PKT , BOOT_NUMBER , EV_FROM , EV_TO  , NEVENTS , PKT_COUNTER , PKT_READY_COUNTER , COMPILATIONTIMESTAMP , FAV_WRK_SCHEDULE , EFF_WRK_SCHEDULE , PRH_VAR_TRG_MODE_A , PRH_VAR_TRG_MODE_B , ACQ_BUILD_INFO , ACQ_VAR_INFO , RM_ACQ_AFTER_CALIB , RM_ACQ_SETTING_MODE, TRK_CALIB_USED,CAL_DSP_MASK, LAST_TIMESYNC, OBT_TIMESYNC, VALIDATION, INSERT_TIME) select * FROM GL_RUN where ID=11;
657      // MySQL variables
658      TSQLResult *pResult;
659      TSQLRow *Row;
660      stringstream myquery;
661      //
662      if ( !IDRUN ) IDRUN = ID;
663      if ( !IDRUN ) return 1;
664      //
665      if ( !strcmp(ToTable.Data(),"") ){
666        //    
667        myquery.str("");
668        myquery << " SELECT BELONGED_TO FROM GL_RUN_TRASH WHERE ID=";
669        myquery << (UInt_t)IDRUN << ";";
670        //
671        printf(" qui? myquery is %s \n",myquery.str().c_str());
672        //
673        if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
674        this->GetGLTABLES()->AddQ();
675        pResult = dbc->Query(myquery.str().c_str());
676        //
677        Row = pResult->Next();      
678        if( Row != NULL ){
679         ToTable = (TString)Row->GetField(0);
680        } else {
681          return 1;
682        };
683      };
684      // ----------------
685      myquery.str("");
686      myquery << " INSERT INTO ";
687      myquery << ToTable.Data();
688      myquery << " (";  
689      myquery << "ID";
690      myquery << ",ID_RUN_FRAG";
691      myquery << ",ID_ROOT_L0";
692      myquery << ",ID_ROOT_L2";
693      myquery << ",RUNHEADER_TIME";
694      myquery << ",RUNTRAILER_TIME";
695      myquery << ",RUNHEADER_OBT";
696      myquery << ",RUNTRAILER_OBT";
697      myquery << ",RUNHEADER_PKT";
698      myquery << ",RUNTRAILER_PKT";
699      myquery << ",BOOT_NUMBER";
700      myquery << ",EV_FROM";
701      myquery << ",EV_TO";
702      myquery << ",NEVENTS";
703      myquery << ",PKT_COUNTER";
704      myquery << ",PKT_READY_COUNTER";
705      myquery << ",COMPILATIONTIMESTAMP";
706      myquery << ",FAV_WRK_SCHEDULE";
707      myquery << ",EFF_WRK_SCHEDULE";
708      myquery << ",PRH_VAR_TRG_MODE_A";
709      myquery << ",PRH_VAR_TRG_MODE_B";
710      myquery << ",ACQ_BUILD_INFO";
711      myquery << ",ACQ_VAR_INFO";
712      myquery << ",RM_ACQ_AFTER_CALIB";
713      myquery << ",RM_ACQ_SETTING_MODE";
714      myquery << ",TRK_CALIB_USED";
715      myquery << ",CAL_DSP_MASK";
716      myquery << ",LAST_TIMESYNC";
717      myquery << ",OBT_TIMESYNC";
718      myquery << ",VALIDATION";
719      myquery << ",INSERT_TIME";
720      myquery << ") SELECT ";
721      myquery << "ID";
722      myquery << ",ID_RUN_FRAG";
723      myquery << ",ID_ROOT_L0";
724      myquery << ",ID_ROOT_L2";
725      myquery << ",RUNHEADER_TIME";
726      myquery << ",RUNTRAILER_TIME";
727      myquery << ",RUNHEADER_OBT";
728      myquery << ",RUNTRAILER_OBT";
729      myquery << ",RUNHEADER_PKT";
730      myquery << ",RUNTRAILER_PKT";
731      myquery << ",BOOT_NUMBER";
732      myquery << ",EV_FROM";
733      myquery << ",EV_TO";
734      myquery << ",NEVENTS";
735      myquery << ",PKT_COUNTER";
736      myquery << ",PKT_READY_COUNTER";
737      myquery << ",COMPILATIONTIMESTAMP";
738      myquery << ",FAV_WRK_SCHEDULE";
739      myquery << ",EFF_WRK_SCHEDULE";
740      myquery << ",PRH_VAR_TRG_MODE_A";
741      myquery << ",PRH_VAR_TRG_MODE_B";
742      myquery << ",ACQ_BUILD_INFO";
743      myquery << ",ACQ_VAR_INFO";
744      myquery << ",RM_ACQ_AFTER_CALIB";
745      myquery << ",RM_ACQ_SETTING_MODE";
746      myquery << ",TRK_CALIB_USED";
747      myquery << ",CAL_DSP_MASK";
748      myquery << ",LAST_TIMESYNC";
749      myquery << ",OBT_TIMESYNC";
750      myquery << ",VALIDATION";
751      myquery << ",INSERT_TIME";
752      myquery << " FROM GL_RUN_TRASH ";
753      myquery << " WHERE BELONGED_TO='GL_RUN_FRAGMENTS' AND ID=";
754      myquery << (UInt_t)IDRUN << ";";
755      //
756      //  printf("5myquery is %s \n",myquery.str().c_str());
757      //
758      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
759      this->GetGLTABLES()->AddQ();
760      dbc->Query(myquery.str().c_str());
761      //
762      //
763      myquery.str("");
764      myquery << " DELETE FROM GL_RUN_TRASH where BELONGED_TO='GL_RUN_FRAGMENTS' AND ID=";
765      myquery << IDRUN << ";";
766      //
767      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
768      this->GetGLTABLES()->AddQ();
769      dbc->Query(myquery.str().c_str());
770      //
771      return 0;
772    };
773    
774  /**  /**
775   * Function to fill the GL_RUN  table of the DB.   * Function to fill the GL_RUN  table of the DB.
# Line 451  Int_t GL_RUN::Fill_GL_RUN(TSQLServer *db Line 848  Int_t GL_RUN::Fill_GL_RUN(TSQLServer *db
848    //    //
849    //  printf("myquery is %s \n",myquery.str().c_str());    //  printf("myquery is %s \n",myquery.str().c_str());
850    //    //
851      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
852      this->GetGLTABLES()->AddQ();
853    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
854    //    //
855    return 0;    return 0;
# Line 527  Int_t GL_RUN::Fill_GL_RUN_FRAGMENTS(TSQL Line 926  Int_t GL_RUN::Fill_GL_RUN_FRAGMENTS(TSQL
926    //    //
927    // printf("myquery is %s \n",myquery.str().c_str());    // printf("myquery is %s \n",myquery.str().c_str());
928    //    //
929      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
930      this->GetGLTABLES()->AddQ();
931    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
932    //    //
933    return 0;    return 0;
# Line 584  Int_t GL_RUN::Query_GL_RUN(UInt_t run, T Line 985  Int_t GL_RUN::Query_GL_RUN(UInt_t run, T
985    myquery << " from GL_RUN where ID=" << run << ";";    myquery << " from GL_RUN where ID=" << run << ";";
986    //    //
987    //  printf(" myquery is %s \n",myquery.str().c_str());    //  printf(" myquery is %s \n",myquery.str().c_str());
988      if ( !this->IsConnected(dbc) ) return -57;  
989      this->AddQ();
990    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
991    //    //
992    //  printf(" getrowcount %i \n",pResult->GetRowCount());    //  printf(" getrowcount %i \n",pResult->GetRowCount());
# Line 595  Int_t GL_RUN::Query_GL_RUN(UInt_t run, T Line 998  Int_t GL_RUN::Query_GL_RUN(UInt_t run, T
998        if( Row == NULL ) break;        if( Row == NULL ) break;
999  //        Set_GL_RUN(Row);  //        Set_GL_RUN(Row);
1000        for( t = 0; t < pResult->GetFieldCount(); t++){        for( t = 0; t < pResult->GetFieldCount(); t++){
1001                    if (t== 0) ID                = (UInt_t)atoll(Row->GetField(t));          if (t== 0) ID                = (UInt_t)atoll(Row->GetField(t));
1002                    if (t== 1) ID_RUN_FRAG       = (UInt_t)atoll(Row->GetField(t));          if (t== 1) ID_RUN_FRAG       = (UInt_t)atoll(Row->GetField(t));
1003                    if (t== 2) ID_ROOT_L0        = (UInt_t)atoll(Row->GetField(t));          if (t== 2) ID_ROOT_L0        = (UInt_t)atoll(Row->GetField(t));
1004                    if (t== 3) ID_ROOT_L2        = (UInt_t)atoll(Row->GetField(t));          if (t== 3) ID_ROOT_L2        = (UInt_t)atoll(Row->GetField(t));
1005                    if (t== 4) RUNHEADER_TIME    = (UInt_t)atoll(Row->GetField(t));          if (t== 4) RUNHEADER_TIME    = (UInt_t)atoll(Row->GetField(t));
1006                    if (t== 5) RUNTRAILER_TIME   = (UInt_t)atoll(Row->GetField(t));          if (t== 5) RUNTRAILER_TIME   = (UInt_t)atoll(Row->GetField(t));
1007                    if (t== 6) RUNHEADER_OBT     = (UInt_t)atoll(Row->GetField(t));          if (t== 6) RUNHEADER_OBT     = (UInt_t)atoll(Row->GetField(t));
1008                    if (t== 7) RUNTRAILER_OBT    = (UInt_t)atoll(Row->GetField(t));          if (t== 7) RUNTRAILER_OBT    = (UInt_t)atoll(Row->GetField(t));
1009                    if (t== 8) RUNHEADER_PKT     = (UInt_t)atoll(Row->GetField(t));          if (t== 8) RUNHEADER_PKT     = (UInt_t)atoll(Row->GetField(t));
1010                    if (t== 9) RUNTRAILER_PKT    = (UInt_t)atoll(Row->GetField(t));          if (t== 9) RUNTRAILER_PKT    = (UInt_t)atoll(Row->GetField(t));
1011                    if (t==10) EV_FROM           = (UInt_t)atoll(Row->GetField(t));          if (t==10) EV_FROM           = (UInt_t)atoll(Row->GetField(t));
1012                    if (t==11) EV_TO             = (UInt_t)atoll(Row->GetField(t));          if (t==11) EV_TO             = (UInt_t)atoll(Row->GetField(t));
1013                    if (t==12) NEVENTS           = (UInt_t)atoll(Row->GetField(t));          if (t==12) NEVENTS           = (UInt_t)atoll(Row->GetField(t));
1014                    if (t==13) LAST_TIMESYNC     = (UInt_t)atoll(Row->GetField(t));          if (t==13) LAST_TIMESYNC     = (UInt_t)atoll(Row->GetField(t));
1015                    if (t==14) OBT_TIMESYNC      = (UInt_t)atoll(Row->GetField(t));          if (t==14) OBT_TIMESYNC      = (UInt_t)atoll(Row->GetField(t));
1016                    if (t==15) COMPILATIONTIMESTAMP = (UInt_t)atoll(Row->GetField(t));          if (t==15) COMPILATIONTIMESTAMP = (UInt_t)atoll(Row->GetField(t));
1017                    if (t==16) FAV_WRK_SCHEDULE  = (UInt_t)atoll(Row->GetField(t));          if (t==16) FAV_WRK_SCHEDULE  = (UInt_t)atoll(Row->GetField(t));
1018                    if (t==17) EFF_WRK_SCHEDULE  = (UInt_t)atoll(Row->GetField(t));          if (t==17) EFF_WRK_SCHEDULE  = (UInt_t)atoll(Row->GetField(t));
1019                    if (t==18) PRH_VAR_TRG_MODE_A= (UInt_t)atoll(Row->GetField(t));          if (t==18) PRH_VAR_TRG_MODE_A= (UInt_t)atoll(Row->GetField(t));
1020                    if (t==19) PRH_VAR_TRG_MODE_B= (UInt_t)atoll(Row->GetField(t));          if (t==19) PRH_VAR_TRG_MODE_B= (UInt_t)atoll(Row->GetField(t));
1021                    if (t==20) ACQ_BUILD_INFO    = (UInt_t)atoll(Row->GetField(t));          if (t==20) ACQ_BUILD_INFO    = (UInt_t)atoll(Row->GetField(t));
1022                    if (t==21) ACQ_VAR_INFO      = (UInt_t)atoll(Row->GetField(t));          if (t==21) ACQ_VAR_INFO      = (UInt_t)atoll(Row->GetField(t));
1023                    if (t==22) RM_ACQ_AFTER_CALIB= (UInt_t)atoll(Row->GetField(t));          if (t==22) RM_ACQ_AFTER_CALIB= (UInt_t)atoll(Row->GetField(t));
1024                    if (t==23) RM_ACQ_SETTING_MODE = (UInt_t)atoll(Row->GetField(t));          if (t==23) RM_ACQ_SETTING_MODE = (UInt_t)atoll(Row->GetField(t));
1025                    if (t==24) PKT_COUNTER       = (UInt_t)atoll(Row->GetField(t));          if (t==24) PKT_COUNTER       = (UInt_t)atoll(Row->GetField(t));
1026                    if (t==25) PKT_READY_COUNTER = (UInt_t)atoll(Row->GetField(t));          if (t==25) PKT_READY_COUNTER = (UInt_t)atoll(Row->GetField(t));
1027                    if (t==26) TRK_CALIB_USED    = (UInt_t)atoll(Row->GetField(t));          if (t==26) TRK_CALIB_USED    = (UInt_t)atoll(Row->GetField(t));
1028                    if (t==27) CAL_DSP_MASK      = (UInt_t)atoll(Row->GetField(t));          if (t==27) CAL_DSP_MASK      = (UInt_t)atoll(Row->GetField(t));
1029                    if (t==28) BOOT_NUMBER       = (UInt_t)atoll(Row->GetField(t));          if (t==28) BOOT_NUMBER       = (UInt_t)atoll(Row->GetField(t));
1030                    if (t==29) VALIDATION        = (UInt_t)atoll(Row->GetField(t));          if (t==29) VALIDATION        = (UInt_t)atoll(Row->GetField(t));
1031        };        };
1032    };    };
1033    //  delete pResult;    //  delete pResult;
# Line 682  Int_t GL_RUN::Query_GL_RUN_FRAGMENTS(TSt Line 1085  Int_t GL_RUN::Query_GL_RUN_FRAGMENTS(TSt
1085    //    //
1086    //  printf(" query is %s \n",myquery.str().c_str());    //  printf(" query is %s \n",myquery.str().c_str());
1087    //    //
1088      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1089      this->GetGLTABLES()->AddQ();
1090    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1091    if(!pResult->GetRowCount())return(-50);    if(!pResult->GetRowCount())return(-50);
1092    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 747  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id, Line 1152  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id,
1152    myquery << ",NAME";    myquery << ",NAME";
1153    myquery << " from GL_ROOT where ID=" << id << ";";        myquery << " from GL_ROOT where ID=" << id << ";";    
1154    //    //
1155      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1156      this->GetGLTABLES()->AddQ();
1157    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1158    if(!pResult->GetRowCount())return (-51);    if(!pResult->GetRowCount())return (-51);
1159    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 756  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id, Line 1163  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id,
1163            if(t==0) ID     = (UInt_t)atoll(Row->GetField(t));            if(t==0) ID     = (UInt_t)atoll(Row->GetField(t));
1164            if(t==1) ID_RAW = (UInt_t)atoll(Row->GetField(t));            if(t==1) ID_RAW = (UInt_t)atoll(Row->GetField(t));
1165            if(t==2) ID_TIMESYNC = (UInt_t)atoll(Row->GetField(t));            if(t==2) ID_TIMESYNC = (UInt_t)atoll(Row->GetField(t));
1166            if(t==3) PATH   = Row->GetField(t);            if(t==3) PATH   = (TString)gSystem->ExpandPathName(Row->GetField(t))+'/';
1167            if(t==4) NAME   = Row->GetField(t);            if(t==4) NAME   = Row->GetField(t);
1168        };        };
1169    };    };
# Line 781  Int_t GL_TRK_CALIB::Query_GL_TRK_CALIB(U Line 1188  Int_t GL_TRK_CALIB::Query_GL_TRK_CALIB(U
1188    // ----------------    // ----------------
1189    myquery.str("");    myquery.str("");
1190    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;
1191    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!!!
1192      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      
1193      myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1194    //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1195      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1196      this->GetGLTABLES()->AddQ();
1197    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1198    if(!pResult->GetRowCount())return (-53);    if(!pResult->GetRowCount())return (-53);
1199    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 840  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB Line 1251  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB
1251    myquery << " ;";    myquery << " ;";
1252    //myquery << " and VALIDATION=1;";    //myquery << " and VALIDATION=1;";
1253    //    //
1254      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1255      this->GetGLTABLES()->AddQ();
1256    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1257    //  printf(" mysquery is %s\n",myquery.str().c_str());    //  printf(" mysquery is %s\n",myquery.str().c_str());
1258    //    //
# Line 859  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB Line 1272  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB
1272      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;
1273      myquery << " and FROM_TIME <= " << time;      myquery << " and FROM_TIME <= " << time;
1274      myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";      myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";
1275        if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1276        this->GetGLTABLES()->AddQ();
1277      pResult = dbc->Query(myquery.str().c_str());      pResult = dbc->Query(myquery.str().c_str());
1278      //    printf(" mysquery is %s\n",myquery.str().c_str());      //    printf(" mysquery is %s\n",myquery.str().c_str());
1279      //      //
# Line 901  Int_t GL_S4_CALIB::Query_GL_S4_CALIB(UIn Line 1316  Int_t GL_S4_CALIB::Query_GL_S4_CALIB(UIn
1316    myquery << "select * from GL_S4_CALIB where FROM_TIME <= "<< time;    myquery << "select * from GL_S4_CALIB where FROM_TIME <= "<< time;
1317    myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1318    //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1319      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1320      this->GetGLTABLES()->AddQ();
1321    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1322    if(!pResult->GetRowCount())return (-55);//throw -55;    if(!pResult->GetRowCount())return (-55);//throw -55;
1323    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 941  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti Line 1358  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti
1358    // ----------------        // ----------------    
1359    myquery.str("");    myquery.str("");
1360    myquery << " select ";    myquery << " select ";
1361    myquery << " ID, PATH, NAME, DESCR, TYPE, FROM_TIME,TO_TIME ";    myquery << " ID, PATH, NAME, DESCR, FROM_TIME,TO_TIME, TYPE ";
1362    myquery << " from GL_PARAM ";    myquery << " from GL_PARAM ";
1363    myquery << " where TYPE = '"<<type<<"' ";    myquery << " where TYPE = '"<<type<<"' ";
1364    myquery << " and FROM_TIME <= " << time;    myquery << " and FROM_TIME <= " << time;
1365    myquery << " ORDER BY TO_TIME DESC LIMIT 1;";      myquery << " ORDER BY TO_TIME DESC LIMIT 1;";  
1366    //    //
1367      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1368      this->GetGLTABLES()->AddQ();
1369    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1370    if(!pResult->GetRowCount())return (-52);    if(!pResult->GetRowCount())return (-52);
1371    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 954  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti Line 1373  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti
1373        if( Row == NULL ) break;        if( Row == NULL ) break;
1374        for( t = 0; t < pResult->GetFieldCount(); t++){        for( t = 0; t < pResult->GetFieldCount(); t++){
1375          if (t==0) ID        = (UInt_t)atoll(Row->GetField(t));          if (t==0) ID        = (UInt_t)atoll(Row->GetField(t));
1376            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
1377            if (t==2) NAME      = Row->GetField(t);            if (t==2) NAME      = Row->GetField(t);
1378            if (t==3) DESCR     = Row->GetField(t);            if (t==3) DESCR     = Row->GetField(t);
1379            if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t));            if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t));
# Line 999  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1418  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1418    TSQLResult *pResult;    TSQLResult *pResult;
1419    TSQLRow *Row;    TSQLRow *Row;
1420    stringstream myquery;    stringstream myquery;
1421      stringstream rname;
1422      //  pcksList packetsNames;
1423      //  pcksList::iterator Iter;
1424      //  getPacketsNames(packetsNames);
1425      rname.str("");
1426    // ----------------    // ----------------
1427    myquery.str("");    myquery.str("");
1428    myquery << "select ";    myquery << "select ";
# Line 1008  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1432  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1432    myquery << type.Data();    myquery << type.Data();
1433    myquery << "=" << id << ";";        myquery << "=" << id << ";";    
1434    //    //
1435      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1436      this->GetGLTABLES()->AddQ();
1437    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1438    if( pResult->GetRowCount() ){    if( pResult->GetRowCount() ){
1439      Row = pResult->Next();            Row = pResult->Next();      
1440      if( Row ){      if( Row ){
1441        stringstream fname;        stringstream fname;
1442        fname.str("");        fname.str("");
1443        fname << Row->GetField(0) << "/" << Row->GetField(1);        fname << gSystem->ExpandPathName(Row->GetField(0)) << "/" << Row->GetField(1);
1444          rname << Row->GetField(1);
1445        file = new TFile(fname.str().c_str(),"READ");        file = new TFile(fname.str().c_str(),"READ");
1446        idraw = (UInt_t)atoll(Row->GetField(2));        idraw = (UInt_t)atoll(Row->GetField(2));
1447      };      };
# Line 1030  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1457  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1457      ph = eh->GetPscuHeader();      ph = eh->GetPscuHeader();
1458      pktfirst = ph->GetCounter();      pktfirst = ph->GetCounter();
1459      obtfirst = ph->GetOrbitalTime();        obtfirst = ph->GetOrbitalTime();  
1460        //
1461    //     code = eh->GetCounter();
1462    //     UInt_t en = 0;
1463    //     for(Iter = packetsNames.begin(); Iter != packetsNames.end(); Iter++){
1464    //       en = code->Get(GetPacketType(*Iter));
1465    //       if ( !strcmp("CalibCalPed",*Iter) || !strcmp("CalibTrk1",*Iter) || !strcmp("CalibTrk2",*Iter) || !strcmp("CalibS4",*Iter) ){
1466    //      //
1467    //      TTree *TC = 0;
1468    //      TC = (TTree*)file->Get("CalibCalPed");
1469    //      if ( !TC || TC->IsZombie() ) return;
1470    //      EventHeader *ehc = 0;
1471    //      PscuHeader *phc = 0;
1472    //      TC->SetBranchAddress("Header", &ehc);
1473    //      TC->GetEntry(0);
1474    //      phc = ehc->GetPscuHeader();
1475    //      pktfirst = phc->GetCounter();
1476    //      obtfirst = phc->GetOrbitalTime();  
1477    //       //
1478    //       };
1479    //     };  
1480        //
1481    };    };
1482    //    //
1483    // look for Resurs offset    // look for Resurs offset
1484    //    //
1485    UInt_t t0 = 0;    T0 = 0;
1486    //    //
1487    myquery.str("");    //
1488    myquery << "SELECT OFFSET_DATE FROM GL_RESURS_OFFSET WHERE FROM_ID_RAW<= "    stringstream oss;
1489        << idraw << " AND TO_ID_RAW >= "    TString frn = rname.str().c_str();
1490        << idraw << ";";    frn = frn.ReplaceAll(".root",5,".pam",4);
1491    pResult = dbc->Query(myquery.str().c_str());    oss.str("");
1492    if ( pResult ){    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='"
1493          << frn.Data() << "';";
1494      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1495      this->GetGLTABLES()->AddQ();
1496      pResult = dbc->Query(oss.str().c_str());
1497      Row = pResult->Next();
1498      //
1499      TString name=rname.str().c_str();
1500      UInt_t dworbit = 0;
1501      Int_t nlength = name.Length();
1502      if ( nlength < 5 ) return;
1503      TString dwo = 0;
1504      for (Int_t i = 0; i<5; i++){
1505        dwo.Append(name[i],1);
1506      };
1507      if ( dwo.IsDigit() ){
1508        dworbit = (UInt_t)dwo.Atoi();
1509      } else {
1510        dwo="";
1511        for (Int_t i = 8; i<13; i++){
1512          dwo.Append(name[i],1);
1513        };    
1514        if ( dwo.IsDigit() ){
1515          dworbit = (UInt_t)dwo.Atoi();
1516        } else {
1517          dworbit = 1;
1518        };
1519      };
1520      //
1521      //
1522      if ( !Row ){
1523        oss.str("");
1524        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< "
1525            << dworbit << " order by FROM_ORBIT desc limit 1;";
1526        if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1527        this->GetGLTABLES()->AddQ();
1528        pResult = dbc->Query(oss.str().c_str());
1529      Row = pResult->Next();      Row = pResult->Next();
1530      if ( Row ){      if ( !Row ){
1531        //        printf(" ERROR FROM GLTables! cannot determine Resurs offset \n");
1532        t0 = (UInt_t)TDatime(Row->GetField(0)).Convert();        return;
       //  
1533      };      };
1534    };    };
1535    //    //
1536      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);
1537      T0 = (UInt_t)tu.GetSec();
1538    //    //
1539    // look for the correct timesync entry    // look for the correct timesync entry
1540    //    //
1541    myquery.str("");    myquery.str("");
1542    myquery << " SELECT OBT0,TIMESYNC FROM GL_TIMESYNC "    myquery << " SELECT OBT0,TIMESYNC,TYPE FROM GL_TIMESYNC "
1543        << " WHERE ID_RAW = " << idraw        << " WHERE ID_RAW = " << idraw
1544        << ";";        << ";";
1545      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1546      this->GetGLTABLES()->AddQ();
1547    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1548    if ( pResult ){    if ( pResult ){
1549      Row = pResult->Next();      Row = pResult->Next();
1550      if ( (Row != NULL) && ((UInt_t)atoll(Row->GetField(0)) > 0 ) ){      if ( (Row != NULL) && ((UInt_t)atoll(Row->GetField(0)) > 0 ) ){
1551        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));
1552          TIMESYNC = (UInt_t)atoll(Row->GetField(1));
1553          TYPE = (UInt_t)atoll(Row->GetField(2));
1554          toffset = (UInt_t)atoll(Row->GetField(1)) - (UInt_t)(this->DBobt((UInt_t)atoll(Row->GetField(0)))/1000) + T0;
1555      };      };
1556    };    };
1557    //    //
# Line 1080  UInt_t GL_TIMESYNC::DBabsTime(UInt_t OBT Line 1570  UInt_t GL_TIMESYNC::DBabsTime(UInt_t OBT
1570    //    //
1571  };  };
1572    
1573    /**
1574     *
1575     * Returns the Resurs time given the OBT needed to process inclination and orbital infos
1576     *
1577     */
1578    UInt_t GL_TIMESYNC::ResursTime(UInt_t OBT){  
1579      //
1580      return(((UInt_t)((Int_t)(this->DBobt(OBT)-this->DBobt(OBT0))/1000)+TIMESYNC));
1581      //
1582    };
1583    
1584    
1585  ULong64_t GL_TIMESYNC::DBobt(UInt_t obt){    /**
1586     * Return the correct packet number if we went back to zero
1587     */
1588    Long64_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){  
1589    //    //
1590    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)  ){
1591        return((Long64_t)pkt_num+16777215LL);
1592      };
1593    //    //
1594    if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){    if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){
1595      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()));  
     };  
1596    };    };
1597    //    //
1598    return((ULong64_t)obt);    return((Long64_t)pkt_num);
1599    //    //
1600  };  };
1601    
1602  UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){    /**
1603     * Return the correct On Board Time if we went back to zero
1604     */
1605    Long64_t GL_TIMESYNC::DBobt(UInt_t obt){  
1606    //    //
1607    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()));
1608    //    //
1609    if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){    if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){
1610      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));  
     };  
1611    };    };
1612    //    //
1613    return(pkt_num);    return((Long64_t)obt);
   //  
1614  };  };
1615    
1616    
1617    
1618    // ULong64_t GL_TIMESYNC::DBobt(UInt_t obt){  
1619    //   //
1620    //   if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((ULong64_t)(obt+numeric_limits<UInt_t>::max()));
1621    //   //
1622    //   if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){
1623    //     if ( (obt-numeric_limits<UInt_t>::max()) < 0  ){
1624    //       return((ULong64_t)(numeric_limits<UInt_t>::max()-obt));
1625    //     } else {
1626    //       return((ULong64_t)(obt-numeric_limits<UInt_t>::max()));
1627    //     };
1628    //   };
1629    //   //
1630    //   return((ULong64_t)obt);
1631    //   //
1632    // };
1633    
1634    // UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){  
1635    //   //
1636    //   if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2)  ) return((pkt_num+16777215));
1637    //   //
1638    //   if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){
1639    //     if ( (pkt_num-16777215) < 0 ){
1640    //       return((16777215-pkt_num));
1641    //     } else {
1642    //       return((pkt_num-16777215));
1643    //     };
1644    //   };
1645    //   //
1646    //   return(pkt_num);
1647    //   //
1648    // };
1649    
1650  /*  /*
1651   *   *
1652   * 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 1123  UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num Line 1657  UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num
1657   */   */
1658  TString GL_TIMESYNC::ConvertTime(TString &tzone, UInt_t dbt){  TString GL_TIMESYNC::ConvertTime(TString &tzone, UInt_t dbt){
1659    //    //
1660    TDatime *time = new TDatime();    Int_t offset = 0;
1661    TString rtime;    TString rtime;
1662    Bool_t found = false;    Bool_t found = false;
1663    //    //
   time->Set(dbt,false); // UTC (Coordinated Universal Time)    
   //  
1664    if ( !strcmp(tzone.Data(),"MSK") || !strcmp(tzone.Data(),"MWT") ){    if ( !strcmp(tzone.Data(),"MSK") || !strcmp(tzone.Data(),"MWT") ){
1665      //      //
1666      UInt_t timeMSK = time->Convert() + 60*60*3; // UTC (Coordinated Universal Time) + 3hs = Moscow Winter Time      offset = 60*60*3; // UTC (Coordinated Universal Time) + 3hs = Moscow Winter Time
     time->Set(timeMSK,false);  
1667      found = true;      found = true;
1668      //      //
1669    };    };
1670    //    //
1671    if ( !strcmp(tzone.Data(),"CET") ){    if ( !strcmp(tzone.Data(),"CET") ){
1672      //      //
1673      UInt_t timeCET = time->Convert() + 60*60*1; // CET (Central European Time) = UTC + 1 hs      offset = 60*60*1; // CET (Central European Time) = UTC + 1 hs
     time->Set(timeCET,false);  
1674      found = true;      found = true;
1675      //      //
1676    };    };
1677    //    //
1678    if ( !strcmp(tzone.Data(),"CEST") ){    if ( !strcmp(tzone.Data(),"CEST") ){
1679      //      //
1680      UInt_t timeCEST = time->Convert() + 60*60*2; // CEST (Central European Summer Time) = UTC + 2 h      offset = 60*60*2; // CEST (Central European Summer Time) = UTC + 2 h
     time->Set(timeCEST,false);  
1681      found = true;      found = true;
1682      //      //
1683    };    };
1684    //    //
1685    if ( !strcmp(tzone.Data(),"MSD") || !strcmp(tzone.Data(),"MST")){    if ( !strcmp(tzone.Data(),"MSD") || !strcmp(tzone.Data(),"MST")){
1686      //      //
1687      UInt_t timeMSD = time->Convert() + 60*60*4; // MSD (Moscow Summer Time) = UTC + 4 h      offset = 60*60*4; // MSD (Moscow Summer Time) = UTC + 4 h
     time->Set(timeMSD,false);  
1688      found = true;      found = true;
1689      //      //
1690    };    };
# Line 1166  TString GL_TIMESYNC::ConvertTime(TString Line 1694  TString GL_TIMESYNC::ConvertTime(TString
1694      tzone = "UTC";      tzone = "UTC";
1695    };    };
1696    //    //
1697    rtime = time->AsSQLString();    dbt += offset;
1698      //
1699      TTimeStamp *time = new TTimeStamp((time_t)dbt,0);
1700      //
1701      rtime = time->AsString("s");
1702      //
1703      delete time;
1704    //    //
1705    return(rtime);    return(rtime);
1706  }  }
1707    
1708  /*  /*
1709   *   *
1710   * Convert the time in the DB from UInt_t to a string   * Convert the time from TZONE to UTC
1711   *   *
1712   * @param dbt time in the DB   * @param dbt time in the DB
1713   * @param tzone Time Zone, can be UTC,GMT,CET,CEST,MSD default is MSK   * @param tzone Time Zone, can be UTC,GMT,CET,CEST,MSD default is MSK
# Line 1181  TString GL_TIMESYNC::ConvertTime(TString Line 1715  TString GL_TIMESYNC::ConvertTime(TString
1715   */   */
1716  TString GL_TIMESYNC::UnConvertTime(TString &tzone, UInt_t dbt){  TString GL_TIMESYNC::UnConvertTime(TString &tzone, UInt_t dbt){
1717    //    //
1718    TDatime *time = new TDatime();    Int_t offset = 0;
1719    TString rtime;    TString rtime;
1720    //    //
1721    Bool_t found = false;    Bool_t found = false;
1722    //    //
   time->Set(dbt,false); // tzone  
   //  
1723    if ( !strcmp(tzone.Data(),"MSK") || !strcmp(tzone.Data(),"MWT") ){    if ( !strcmp(tzone.Data(),"MSK") || !strcmp(tzone.Data(),"MWT") ){
1724      //      //
1725      UInt_t timeUTC = time->Convert() - 60*60*3; // UTC (Coordinated Universal Time) = Moscow Winter Time - 3hs      offset = -60*60*3; // UTC (Coordinated Universal Time) = Moscow Winter Time - 3hs
     time->Set(timeUTC,false);  
1726      found = true;      found = true;
1727      //      //
1728    };    };
1729    //    //
1730    if ( !strcmp(tzone.Data(),"CET") ){    if ( !strcmp(tzone.Data(),"CET") ){
1731      //      //
1732      UInt_t timeCET = time->Convert() - 60*60*1; // CET (Central European Time) - 1 hs = UTC        offset = -60*60*1; // CET (Central European Time) - 1 hs = UTC  
     time->Set(timeCET,false);  
1733      found = true;      found = true;
1734      //      //
1735    };    };
1736    //    //
1737    if ( !strcmp(tzone.Data(),"CEST") ){    if ( !strcmp(tzone.Data(),"CEST") ){
1738      //      //
1739      UInt_t timeCEST = time->Convert() - 60*60*2; // CEST (Central European Summer Time) - 2 h = UTC      offset = -60*60*2; // CEST (Central European Summer Time) - 2 h = UTC
     time->Set(timeCEST,false);  
1740      found = true;      found = true;
1741      //      //
1742    };    };
1743    //    //
1744    if ( !strcmp(tzone.Data(),"MSD") || !strcmp(tzone.Data(),"MST") ){    if ( !strcmp(tzone.Data(),"MSD") || !strcmp(tzone.Data(),"MST") ){
1745      //      //
1746      UInt_t timeMSD = time->Convert() - 60*60*4; // MSD (Moscow Summer Time) - 4 h = UTC      offset = -60*60*4; // MSD (Moscow Summer Time) - 4 h = UTC
     time->Set(timeMSD,false);  
1747      found = true;      found = true;
1748      //      //
1749    };    };
1750    //    //
1751    if ( !found && strcmp(tzone.Data(),"UTC") && strcmp(tzone.Data(),"GMT") && strcmp(tzone.Data(),"") ){    if ( !found && strcmp(tzone.Data(),"UTC") && strcmp(tzone.Data(),"GMT") && strcmp(tzone.Data(),"") ){
1752      //      //
1753        offset = 0;
1754      printf("\n Unknown time zone %s using UTC \n",tzone.Data());      printf("\n Unknown time zone %s using UTC \n",tzone.Data());
1755      tzone = "UTC";      tzone = "UTC";
1756    };    };
1757    //    //
1758    rtime = time->AsSQLString();    dbt += offset;
1759      TTimeStamp *time = new TTimeStamp((time_t)dbt,0);
1760      //
1761      rtime = time->AsString("s");
1762    //    //
1763    return(rtime);    return(rtime);
1764  }  }
1765    
1766    
1767  // ****************************************************  //
1768  /**  // Build a query and call DoQuery.
1769   * Function to query the GL_TLE table of the DB.  //
1770   *  // date it's an SQL datetime date and dbc is the connection to be
1771   * 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
1772   *  // and the immediatly next one.
1773   * Return the pointer to a cTle object that has the closest and  //
1774   * 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){  
1775    stringstream myquery;    stringstream myquery;
1776    myquery.str("");    myquery.str("");
1777    
1778    myquery << "SELECT TLE1, TLE2, TLE3 FROM GL_TLE "    myquery << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1779            << "WHERE FROM_TIME < FROM_UNIXTIME(" << time << ") ORDER BY FROM_TIME DESC LIMIT 1;";              << "WHERE FROM_TIME <= '" << date.Data()
1780              << "' ORDER BY FROM_TIME DESC LIMIT 1) "
1781              << "UNION "
1782              << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1783              << "WHERE FROM_TIME > '" << date.Data()
1784              << "' ORDER BY FROM_TIME ASC LIMIT 1)";
1785    
1786    return Query_GL_TLE_go(myquery.str(), dbc);    return DoQuery(myquery.str().c_str(), dbc);
1787  }  }
1788    
1789    
1790  // ****************************************************  //
1791  /**  // Build a query and call DoQuery.
1792   * Function to query the GL_TLE table of the DB.  //
1793   *  // time is the UTC date in unix time (UTC) and dbc is the connection
1794   * 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
1795   * is requested.  // previous date and the immediatly next one.
1796   *  //
1797   * Return the pointer to a cTle object that has the closest and  // Returns the value returned by DoQuery().
1798   * previous date compared with time.  //
1799   *  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){  
1800    stringstream myquery;    stringstream myquery;
1801    myquery.str("");    myquery.str("");
1802    
1803    myquery << "SELECT TLE1, TLE2, TLE3 FROM GL_TLE "    myquery << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1804            << "WHERE FROM_TIME < '" << date.Data() << "' ORDER BY FROM_TIME DESC LIMIT 1;";              << "WHERE FROM_TIME <= FROM_UNIXTIME('" << time
1805              << "') ORDER BY FROM_TIME DESC LIMIT 1) "
1806              << "UNION "
1807              << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1808              << "WHERE FROM_TIME > FROM_UNIXTIME('" << time
1809              << "') ORDER BY FROM_TIME ASC LIMIT 1)";
1810    
1811    return Query_GL_TLE_go(myquery.str(), dbc);    return DoQuery(myquery.str().c_str(), dbc);
1812  }  }
1813    
1814    
1815  // ****************************************************  //
1816  /**  // Do the query myquery on the connectio dbc.  Initialize tle,
1817   * Private function used by Query_GL_TLE methods.  // tleFromTime and tleToTime.
1818   *  //
1819   * myquery is the query string.  // We should have two rows (unless the table is old).  From the last
1820   *  // one we only take tleToTime.
1821   * Return the pointer to a cTle object that has the closest and  //
1822   * previous date compared with time.  // Returns 0 for success, 1 for failure.
1823   *  //
1824   * 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  
1825    TSQLResult *result;    TSQLResult *result;
1826    TSQLRow *row;    TSQLRow *row;
1827    
1828      // Set the right time_zone (otherwise horrible things will occur! :)
1829      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1830      dbc->Query("SET time_zone = '+0:00'");
1831    
1832      // Do the query
1833      this->GetGLTABLES()->AddQ();
1834    result = dbc->Query(myquery.Data());    result = dbc->Query(myquery.Data());
1835    if(! result->GetRowCount() ) return NULL;    if(! result->GetRowCount() ) {
1836        cerr << "GL_TLE: query failed: " << myquery.Data() << endl;
1837        return 1;
1838      }
1839    
1840      // Get results
1841      row = result->Next(); // first tle row
1842      tle = GiveTle(row);
1843    
1844      tleFromTime = strtol(row->GetField(4), NULL, 10);
1845    
1846      row = result->Next(); // second tle row
1847      if(row)
1848        tleToTime = strtol(row->GetField(4), NULL, 10);
1849      else {
1850        cerr << "GL_TLE: Warning: using last avaible TLE. Please update GL_TLE table!\n";
1851        tleToTime = UINT_MAX;
1852      }
1853    
1854    row = result->Next();    delete row;
1855    tle1 = row->GetField(0);    delete result;
   tle2 = row->GetField(1);  
   tle3 = row->GetField(2);  
1856    
1857    tle = new cTle(tle1, tle2, tle3);    return 0;
1858    }
1859    
   delete result;  
   delete row;  
1860    
1861    return tle;  //
1862    // Build a cTle object from the GL_TLE row.
1863    //
1864    cTle* GL_TLE::GiveTle(TSQLRow *row) {
1865      cTle *thistle = NULL;
1866      string tle1, tle2, tle3;
1867    
1868      // Build cTle object
1869      tle1 = row->GetField(1);
1870      tle2 = row->GetField(2);
1871      tle3 = row->GetField(3);
1872    
1873      thistle = new cTle(tle1, tle2, tle3);
1874    
1875      return thistle;
1876  }  }

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.31

  ViewVC Help
Powered by ViewVC 1.1.23