/[PAMELA software]/chewbacca/YodaProfiler/src/PamelaDBOperations.cpp
ViewVC logotype

Diff of /chewbacca/YodaProfiler/src/PamelaDBOperations.cpp

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

revision 1.2 by mocchiut, Thu Sep 25 12:13:54 2008 UTC revision 1.9 by mocchiut, Tue Nov 4 17:11:41 2008 UTC
# Line 58  string getTleDatetime(cTle*); Line 58  string getTleDatetime(cTle*);
58   * @param debug        debug flag.   * @param debug        debug flag.
59   * @param tlefilename  ascii file with TLE 3 line elements.   * @param tlefilename  ascii file with TLE 3 line elements.
60   */   */
61  PamelaDBOperations::PamelaDBOperations(TString host, TString user, TString password, TString filerawname, TString filerootname, UInt_t boot, UInt_t tsync, UInt_t obt0, Bool_t debug, TString tlefilename, UInt_t dwinput, Bool_t staticp, Bool_t gpamela){  PamelaDBOperations::PamelaDBOperations(TString host, TString user, TString password, TString filerawname, TString filerootname, UInt_t boot, UInt_t tsync, UInt_t obt0, Bool_t debug, TString tlefilename, UInt_t dwinput, Bool_t staticp, Bool_t gpamela, Bool_t keepenv){
62    //    //
63    chewbacca = false;    chewbacca = false;
64    chminentry = 0;    chminentry = 0;
# Line 76  PamelaDBOperations::PamelaDBOperations(T Line 76  PamelaDBOperations::PamelaDBOperations(T
76      //      //
77    };    };
78    //    //
79      KEEPENV = false;
80      if ( keepenv ) KEEPENV=true;
81    STATIC=false;    STATIC=false;
82    if ( staticp ) STATIC=true;    if ( staticp ) STATIC=true;
83    //    //
# Line 138  void PamelaDBOperations::OpenL0File(TStr Line 140  void PamelaDBOperations::OpenL0File(TStr
140        TString chfile;        TString chfile;
141        UInt_t ridn = 0;        UInt_t ridn = 0;
142        qu.str("");        qu.str("");
143        qu << "SELECT ROOT_ID_N,PKT_NUMBER_INIT,PKT_NUMBER_FINAL,PKT_OBT_INIT,PKT_OBT_FINAL from ROOT_TABLE_MERGING where ID_N=" << chID << ";";        qu << "SELECT ROOT_ID_N,PKT_NUMBER_INIT,PKT_NUMBER_FINAL,PKT_OBT_INIT,PKT_OBT_FINAL,INSERTED_BY from ROOT_TABLE_MERGING where ID_N=" << chID << ";";
144        if ( debug ) printf(" chewbacca: query is %s \n",qu.str().c_str());        if ( debug ) printf(" chewbacca: query is %s \n",qu.str().c_str());
145        result = conn->Query(qu.str().c_str());        result = conn->Query(qu.str().c_str());
146        if ( result ){        if ( result ){
# Line 149  void PamelaDBOperations::OpenL0File(TStr Line 151  void PamelaDBOperations::OpenL0File(TStr
151            chpktmax = (UInt_t)atoll(row->GetField(2));            chpktmax = (UInt_t)atoll(row->GetField(2));
152            chobtmin = (UInt_t)atoll(row->GetField(3));            chobtmin = (UInt_t)atoll(row->GetField(3));
153            chobtmax = (UInt_t)atoll(row->GetField(4));            chobtmax = (UInt_t)atoll(row->GetField(4));
154              chiby = (TString)(row->GetField(5));
155          } else {          } else {
156            throw -84;            throw -84;
157          };          };
# Line 163  void PamelaDBOperations::OpenL0File(TStr Line 166  void PamelaDBOperations::OpenL0File(TStr
166        if ( result2 ){        if ( result2 ){
167          row2 = result2->Next();          row2 = result2->Next();
168          if ( row2 ){          if ( row2 ){
169            chpath = (TString)gSystem->ExpandPathName(row2->GetField(0))+'/';            if ( KEEPENV ){
170                chpath = (TString)(row2->GetField(0))+'/';
171              } else {
172                chpath = (TString)gSystem->ExpandPathName(row2->GetField(0))+'/';
173              };
174            chfile = (TString)(row2->GetField(1));            chfile = (TString)(row2->GetField(1));
175            chobtts = (UInt_t)atoll(row2->GetField(2));            chobtts = (UInt_t)atoll(row2->GetField(2));
176            chlastts = (UInt_t)atoll(row2->GetField(3));            chlastts = (UInt_t)atoll(row2->GetField(3));
# Line 435  TString PamelaDBOperations::GetRawPath() Line 442  TString PamelaDBOperations::GetRawPath()
442    
443  TString PamelaDBOperations::GetRootPath(){  TString PamelaDBOperations::GetRootPath(){
444    if ( STATIC ){    if ( STATIC ){
445      return((TString)gSystem->DirName(filerootname.Data())+'/');      return((TString)gSystem->DirName(this->GetRootName().Data())+'/');
446    } else {    } else {    
447      return((TString)gSystem->ExpandPathName("$PAM_L0")+'/');      if ( KEEPENV ){
448          return((TString)gSystem->ExpandPathName(gSystem->DirName(filerootname.Data()))+'/');
449        } else {
450          return((TString)gSystem->ExpandPathName("$PAM_L0")+'/');
451        };
452    };    };
453  };  };
454    
# Line 649  Int_t PamelaDBOperations::SetUpperLimits Line 660  Int_t PamelaDBOperations::SetUpperLimits
660      UInt_t tjump = 50000;      UInt_t tjump = 50000;
661      //UInt_t tjump = 100;      //UInt_t tjump = 100;
662      while ( tjump > 0 ){      while ( tjump > 0 ){
663        pktlast = numeric_limits<UInt_t>::max();        //      pktlast = numeric_limits<UInt_t>::max();
664        while ( pktlast > chpktmax && (Int_t)(nevent-1-it) >= 0 ){        pktlast = chpktmax + 1;
665          while ( PKT(pktlast) > PKT(chpktmax) && (Int_t)(nevent-1-it) >= 0 ){
666          if ( (Int_t)(nevent-1-it) >= 0 ){          if ( (Int_t)(nevent-1-it) >= 0 ){
667            T->GetEntry(nevent-1-it);            T->GetEntry(nevent-1-it);
668            ph = eh->GetPscuHeader();            ph = eh->GetPscuHeader();
# Line 658  Int_t PamelaDBOperations::SetUpperLimits Line 670  Int_t PamelaDBOperations::SetUpperLimits
670          } else {          } else {
671            pktlast = chpktmax + 1;            pktlast = chpktmax + 1;
672          };          };
673          if ( (!(it%1000) || abs((int)pktlast - (int)chpktmax)<1000 ) && debug ) printf(" look for up %i %i %i nevent %u (nevent-1-it) %i \n",it,pktlast,chpktmax,nevent,(Int_t)(nevent-1-it));          if ( (!(it%1000) || abs((int)(PKT(pktlast) - PKT(chpktmax)))<1000 ) && debug ) printf(" look for up %i %i %i nevent %u (nevent-1-it) %i \n",it,pktlast,chpktmax,nevent,(Int_t)(nevent-1-it));
674          it += tjump;          it += tjump;
675        };        };
676        if ( tjump > 1 ) it -= 2*tjump;        if ( tjump > 1 ) it -= 2*tjump;
# Line 682  Int_t PamelaDBOperations::SetUpperLimits Line 694  Int_t PamelaDBOperations::SetUpperLimits
694      tjump = 50000;      tjump = 50000;
695      //tjump = 100;      //tjump = 100;
696      while ( tjump > 0 ){      while ( tjump > 0 ){
697        pktlast = 0;        //      pktlast = 0;
698        while ( pktlast < chpktmin && it < (Int_t)nevent ){        pktlast = chpktmin - 1;
699          if ( debug ) printf("LLlook for down %i %i %llu %llu \n",it,pktlast,PKT(pktlast),PKT(chpktmin));
700          while ( PKT(pktlast) < PKT(chpktmin) && it < (Int_t)nevent ){
701          if ( it < (Int_t)nevent ){          if ( it < (Int_t)nevent ){
702            T->GetEntry(it);            T->GetEntry(it);
703            ph = eh->GetPscuHeader();            ph = eh->GetPscuHeader();
# Line 1125  UInt_t PamelaDBOperations::AssignRunID() Line 1139  UInt_t PamelaDBOperations::AssignRunID()
1139    stringstream   oss;    stringstream   oss;
1140    //      //  
1141    oss.str("");    oss.str("");
1142    oss << "INSERT INTO _RUNID_GEN VALUES (NULL);";    if ( chewbacca ){// if chewbacca and tag=none then use chewbacca tag (chiby = chewbacca inserted by), if chewbacca and tag!=none then use tag, if not chewbacca use tag.
1143        if ( !strcmp(tag.Data(),"NONE") ){
1144          oss << "INSERT INTO _RUNID_GEN VALUES (NULL,'"<< chiby.Data() <<"');";
1145        } else {
1146          oss << "INSERT INTO _RUNID_GEN VALUES (NULL,'"<< tag.Data() <<"');";
1147        };
1148      } else {
1149        oss << "INSERT INTO _RUNID_GEN VALUES (NULL,'"<< tag.Data() <<"');";
1150      };
1151    result = conn->Query(oss.str().c_str());    result = conn->Query(oss.str().c_str());
1152    if ( !result ) throw -10;    if ( !result ) throw -10;
1153    oss.str("");    oss.str("");
# Line 1273  void PamelaDBOperations::LockTables(){   Line 1295  void PamelaDBOperations::LockTables(){  
1295    stringstream oss;    stringstream oss;
1296    //      //  
1297    oss.str("");    oss.str("");
1298    oss << "lock table GL_RUN write, GL_ROOT write, GL_RAW write, GL_TIMESYNC write, GL_RESURS_OFFSET write, GL_PARAM write, GL_TLE write, GL_RUN_FRAGMENTS write, GL_RUN_TRASH write, GL_CALO_CALIB write, GL_CALOPULSE_CALIB write, GL_TRK_CALIB write, GL_S4_CALIB write, ROOT_TABLE_MERGING write, ROOT_TABLE write, _RUNID_GEN write;";    oss << "lock table GL_RUN write, GL_ROOT write, GL_RAW write, GL_TIMESYNC write, GL_RESURS_OFFSET write, GL_PARAM write, GL_TLE write, GL_RUN_FRAGMENTS write, GL_RUN_TRASH write, GL_CALO_CALIB write, GL_CALOPULSE_CALIB write, GL_TRK_CALIB write, GL_S4_CALIB write, ROOT_TABLE_MERGING write, ROOT_TABLE_BAD write, ROOT_TABLE write, _RUNID_GEN write;";
1299    TSQLResult *result = 0;    TSQLResult *result = 0;
1300    result = conn->Query(oss.str().c_str());    result = conn->Query(oss.str().c_str());
1301    if ( !result ) throw -10;    if ( !result ) throw -10;
# Line 1377  void PamelaDBOperations::FillClass(Bool_ Line 1399  void PamelaDBOperations::FillClass(Bool_
1399    UInt_t lastPkt = 0;    UInt_t lastPkt = 0;
1400    UInt_t rhtime = 0;    UInt_t rhtime = 0;
1401    UInt_t rttime = 0;    UInt_t rttime = 0;
1402      //
1403      if ( IsDebug() ) printf(" A firstev %i lastev %i nevents %i \n",firstev,lastev,lastev-firstev+1);
1404      //
1405    if ( !mishead ){    if ( !mishead ){
1406      codh = ehh->GetCounter();      codh = ehh->GetCounter();
1407      if ( lastev+1 == firstev || (lastev == firstev && lastev != -1) ){            if ( (lastev+1 == firstev && lastev != -1) || (lastev == firstev && lastev != -1) ){      
1408          if ( IsDebug() ) printf(" B firstev %i lastev %i nevents %i \n",firstev,lastev,lastev-firstev+1);
1409        firstev = 1;        firstev = 1;
1410        lastev = 0;        lastev = 0;
1411      } else {      } else {
# Line 1392  void PamelaDBOperations::FillClass(Bool_ Line 1418  void PamelaDBOperations::FillClass(Bool_
1418    };    };
1419    if ( !mistrail ){    if ( !mistrail ){
1420      codt = eht->GetCounter();      codt = eht->GetCounter();
1421      if ( lastev+1 == firstev || (lastev == firstev && lastev != -1)){            if ( (lastev+1 == firstev && lastev != -1) || (lastev == firstev && lastev != -1)){      
1422          if ( IsDebug() ) printf(" C firstev %i lastev %i nevents %i \n",firstev,lastev,lastev-firstev+1);
1423        lastev = 0;        lastev = 0;
1424        firstev = lastev+1;        firstev = lastev+1;
1425      } else {      } else {
# Line 1409  void PamelaDBOperations::FillClass(Bool_ Line 1436  void PamelaDBOperations::FillClass(Bool_
1436    if ( mishead ) {    if ( mishead ) {
1437      glrun->Set_GL_RUNH0();      glrun->Set_GL_RUNH0();
1438      //      //
1439      if ( lastev+1 == firstev || (lastev == firstev && lastev != -1) ){            if ( (lastev+1 == firstev && lastev != -1) || (lastev == firstev && lastev != -1) ){      
1440        firstObt = lastObt;        firstObt = lastObt;
1441        firstPkt = lastPkt;        firstPkt = lastPkt;
1442        rhtime = rttime;        rhtime = rttime;
# Line 1428  void PamelaDBOperations::FillClass(Bool_ Line 1455  void PamelaDBOperations::FillClass(Bool_
1455    if ( mistrail ){    if ( mistrail ){
1456      glrun->Set_GL_RUNT0();      glrun->Set_GL_RUNT0();
1457      //      //
1458      if ( lastev+1 == firstev || (lastev == firstev && lastev != -1) ){            if ( (lastev+1 == firstev && lastev != -1) || (lastev == firstev && lastev != -1) ){      
1459        lastObt = firstObt;        lastObt = firstObt;
1460        lastPkt = firstPkt;        lastPkt = firstPkt;
1461        rttime = rhtime;        rttime = rhtime;
# Line 1463  void PamelaDBOperations::FillClass(Bool_ Line 1490  void PamelaDBOperations::FillClass(Bool_
1490   * Insert a new row into GL_RAW table.   * Insert a new row into GL_RAW table.
1491   */   */
1492  Int_t PamelaDBOperations::insertPamelaRawFile(){  Int_t PamelaDBOperations::insertPamelaRawFile(){
1493    
1494        //
1495        Bool_t idr =  this->SetID_RAW();
1496        if ( idr ) return(1);
1497    
1498        GL_RAW glraw = GL_RAW();
1499        
1500        glraw.PATH = GetRawPath();
1501        glraw.NAME = GetRawFile();
1502        //    glraw.BOOT_NUMBER = 0;//???
1503        glraw.BOOT_NUMBER = this->GetBOOTnumber();
1504        
1505        if( insertPamelaRawFile(&glraw) )return(1);
1506        //
1507        idr =  this->SetID_RAW();
1508        if ( !idr ) throw -11;
1509        
1510        return(0);
1511    }
1512    /**
1513     * Insert a new row into GL_RAW table.
1514     */
1515    Int_t PamelaDBOperations::insertPamelaRawFile(GL_RAW *glraw){
1516    //    //
1517    stringstream oss;      if(!glraw)return(1);//?? ok I think
1518    //      //
1519    Bool_t idr =  this->SetID_RAW();      stringstream oss;
1520    if ( idr ) return(1);      //
1521    //      oss.str("");
1522    oss.str("");      if ( STATIC ){
1523    if ( STATIC ){          oss << "INSERT INTO GL_RAW (PATH, NAME) VALUES ('"
1524      oss << "INSERT INTO GL_RAW (PATH, NAME) VALUES ('"              << glraw->PATH << "', '" << glraw->NAME << "')";
1525          << this->GetRawPath().Data() << "', '" << this->GetRawFile().Data() << "')";      } else {
1526    } else {          oss << "INSERT INTO GL_RAW (PATH, NAME) VALUES ('$PAM_RAW', '" << glraw->NAME << "')";
1527      oss << "INSERT INTO GL_RAW (PATH, NAME) VALUES ('$PAM_RAW', '" << this->GetRawFile().Data() << "')";      };
1528    };      if ( debug ) cout <<oss.str().c_str() <<endl;
1529    if ( conn->Query(oss.str().c_str()) == 0 ) throw -4;      if ( conn->Query(oss.str().c_str()) == 0 ) throw -4;
1530    //      //
1531    idr =  this->SetID_RAW();      oss.str("");
1532    if ( !idr ) throw -11;      oss << "SELECT ID FROM GL_RAW WHERE NAME=\""<<glraw->NAME<<"\";";
1533    //      if ( debug ) cout << oss.str().c_str()<<endl;
1534    return(0);      if ( conn->Query(oss.str().c_str()) == 0 ) throw -4;
1535        //
1536        TSQLResult *result = 0;
1537        TSQLRow    *row    = 0;
1538        result = conn->Query(oss.str().c_str());
1539        if ( result == NULL ) throw -4;
1540        row = result->Next();
1541        if ( !row ) return(1);
1542        glraw->ID = (UInt_t)atoll(row->GetField(0));
1543        if ( debug ) printf(" The ID of the RAW file is %u \n",glraw->ID);
1544        delete result;
1545        delete row;
1546        //
1547        return(0);
1548  }  }
1549    
1550    
# Line 1793  Int_t PamelaDBOperations::insertPamelaGL Line 1856  Int_t PamelaDBOperations::insertPamelaGL
1856   * The raw file indicates in the parameters should be already been stored in the database.   * The raw file indicates in the parameters should be already been stored in the database.
1857   */   */
1858  Int_t PamelaDBOperations::insertPamelaRootFile(){  Int_t PamelaDBOperations::insertPamelaRootFile(){
1859    stringstream oss;  
1860    TSQLResult *result = 0;      stringstream oss;
1861    TSQLRow    *row    = 0;      TSQLResult *result = 0;
1862    UInt_t idtimesync = 0;      TSQLRow    *row    = 0;
   //  
   //  
   if ( chewbacca ){  
     oss.str("");  
     oss << " SELECT ID FROM GL_TIMESYNC where TIMESYNC="<<chlastts<<" AND OBT0="<<chobtts*1000<<" limit 1;";  
     if ( debug ) printf(" query is %s \n",oss.str().c_str());  
     result = conn->Query(oss.str().c_str());  
     //  
     if ( !result ) throw -3;  
1863      //      //
1864      row = result->Next();      // ----------------------
1865        // determine the timesync
1866        // ----------------------
1867        UInt_t idtimesync = 0;
1868      //      //
1869      if ( !row ) throw -3;      if ( chewbacca ){
1870      idtimesync = (UInt_t)atoll(row->GetField(0));          oss.str("");
1871    } else {          oss << " SELECT ID FROM GL_TIMESYNC where TIMESYNC="<<chlastts<<" AND OBT0="<<chobtts*1000<<" limit 1;";
1872      oss.str("");          if ( debug ) printf(" %s \n",oss.str().c_str());
1873      if ( STATIC ){          result = conn->Query(oss.str().c_str());
1874        oss << " SELECT COUNT(GL_ROOT.ID_RAW),GL_RAW.ID,GL_ROOT.ID FROM GL_RAW "          //
1875            << " LEFT JOIN GL_ROOT "          if ( !result ) throw -3;
1876            << " ON GL_RAW.ID = GL_ROOT.ID_RAW "          //
1877            << " WHERE GL_RAW.PATH = '" << this->GetRawPath().Data() << "' AND "          row = result->Next();
1878            << " GL_RAW.NAME = '" << this->GetRawFile().Data() << "' GROUP BY GL_RAW.ID ";          //
1879            if ( !row ) throw -3;
1880            idtimesync = (UInt_t)atoll(row->GetField(0));
1881      } else {      } else {
1882        oss << " SELECT COUNT(GL_ROOT.ID_RAW),GL_RAW.ID,GL_ROOT.ID FROM GL_RAW "          oss.str("");
1883            << " LEFT JOIN GL_ROOT "          if ( STATIC ){
1884            << " ON GL_RAW.ID = GL_ROOT.ID_RAW "              oss << " SELECT COUNT(GL_ROOT.ID_RAW),GL_RAW.ID,GL_ROOT.ID FROM GL_RAW "
1885            << " WHERE GL_RAW.PATH = '$PAM_RAW' AND "                  << " LEFT JOIN GL_ROOT "
1886            << " GL_RAW.NAME = '" << this->GetRawFile().Data() << "' GROUP BY GL_RAW.ID ";                  << " ON GL_RAW.ID = GL_ROOT.ID_RAW "
1887                    << " WHERE GL_RAW.PATH = '" << this->GetRawPath().Data() << "' AND "
1888                    << " GL_RAW.NAME = '" << this->GetRawFile().Data() << "' GROUP BY GL_RAW.ID ";
1889            } else {
1890                oss << " SELECT COUNT(GL_ROOT.ID_RAW),GL_RAW.ID,GL_ROOT.ID FROM GL_RAW "
1891                    << " LEFT JOIN GL_ROOT "
1892                    << " ON GL_RAW.ID = GL_ROOT.ID_RAW "
1893                    << " WHERE GL_RAW.PATH = '$PAM_RAW' AND "
1894                    << " GL_RAW.NAME = '" << this->GetRawFile().Data() << "' GROUP BY GL_RAW.ID ";
1895            };
1896            result = conn->Query(oss.str().c_str());
1897            //
1898            if ( !result ) throw -12;
1899            //
1900            row = result->Next();
1901            //
1902            if ( !row ) throw -10;
1903            if ( row != NULL && (UInt_t)atoll(row->GetField(0))>0 ){
1904                idroot = (UInt_t)atoll(row->GetField(2));
1905                delete row;
1906                delete result;
1907                return(1);
1908            };
1909            //
1910            // determine which timesync has to be used
1911            //
1912            oss.str("");
1913            oss << "SELECT GL_TIMESYNC.ID FROM GL_TIMESYNC LEFT JOIN GL_RAW ON GL_RAW.ID = GL_TIMESYNC.ID_RAW ORDER BY GL_TIMESYNC.ID DESC LIMIT 1;";
1914            result = conn->Query(oss.str().c_str());
1915            //
1916            if ( !result ) throw -3;
1917            //
1918            row = result->Next();
1919            //
1920            if ( !row ) throw -3;
1921            idtimesync = (UInt_t)atoll(row->GetField(0));
1922      };      };
1923      result = conn->Query(oss.str().c_str());      
1924      //      delete row;
1925      if ( !result ) throw -12;      delete result;
1926      //  
1927      row = result->Next();      // ----------------------
1928      //      // insert root file
1929      if ( !row ) throw -10;      // ----------------------
1930      if ( row != NULL && (UInt_t)atoll(row->GetField(0))>0 ){  
1931        idroot = (UInt_t)atoll(row->GetField(2));      GL_ROOT glroot = GL_ROOT();
1932        return(1);      
1933        glroot.ID_RAW = GetID_RAW();
1934        glroot.ID_TIMESYNC = idtimesync;
1935        if ( STATIC ){
1936          glroot.PATH = GetRootPath();
1937        } else {
1938          if ( KEEPENV ){
1939            glroot.PATH = gSystem->DirName(filerootname.Data());
1940          } else {
1941            glroot.PATH = "$PAM_L0";
1942          };
1943      };      };
1944      //      glroot.NAME = GetRootFile();
1945      // determine which timesync has to be used  
1946      //      if ( insertPamelaRootFile(&glroot) )return 1;
1947      oss.str("");  
1948      oss << "SELECT GL_TIMESYNC.ID FROM GL_TIMESYNC LEFT JOIN GL_RAW ON GL_RAW.ID = GL_TIMESYNC.ID_RAW ORDER BY GL_TIMESYNC.ID DESC LIMIT 1;";      SetID_ROOT(glroot.ID);
1949      result = conn->Query(oss.str().c_str());      
1950      //  
1951      if ( !result ) throw -3;      return (0);
1952      //  }
1953      row = result->Next();  /**
1954      //   * Insert all the new rows into GL_ROOT.
1955      if ( !row ) throw -3;   * The raw file indicates in the parameters should be already been stored in the database.
1956      idtimesync = (UInt_t)atoll(row->GetField(0));   */
1957    };  Int_t PamelaDBOperations::insertPamelaRootFile(GL_ROOT *glroot){
1958      stringstream oss;
1959      TSQLResult *result = 0;
1960      TSQLRow    *row    = 0;
1961      //
1962    //    //
1963    oss.str("");    oss.str("");
1964    if ( STATIC ){    oss << "INSERT INTO GL_ROOT (ID_RAW, ID_TIMESYNC,PATH, NAME) VALUES ('"
1965      oss << "INSERT INTO GL_ROOT (ID_RAW, ID_TIMESYNC,PATH, NAME) VALUES ('"        << glroot->ID_RAW << "', '" << glroot->ID_TIMESYNC << "', '" << glroot->PATH << "', '" << glroot->NAME << "')";
         << this->GetID_RAW() << "', '" << idtimesync << "', '" << this->GetRootPath().Data() << "', '" << this->GetRootFile().Data() << "')";  
   } else {  
     oss << "INSERT INTO GL_ROOT (ID_RAW, ID_TIMESYNC,PATH, NAME) VALUES ('"  
         << this->GetID_RAW() << "', '" << idtimesync << "', '$PAM_L0', '" << this->GetRootFile().Data() << "')";  
   };  
1966    //    //
1967    if ( debug ) printf(" query is %s \n",oss.str().c_str());    if ( debug ) printf("%s \n",oss.str().c_str());
1968    if (conn->Query(oss.str().c_str()) == 0) throw -4;    if (conn->Query(oss.str().c_str()) == 0) throw -4;
1969    //    //
1970    delete result;    delete result;
1971    //    //
1972    oss.str("");    oss.str("");
1973    //  oss << "SELECT ID FROM GL_ROOT WHERE ID_RAW=" << this->GetID_RAW() << ";";    //  oss << "SELECT ID FROM GL_ROOT WHERE ID_RAW=" << this->GetID_RAW() << ";";
1974    if ( STATIC ){    oss << "SELECT ID FROM GL_ROOT WHERE PATH='" << glroot->PATH << "' and NAME='"<< glroot->NAME <<"';";
     oss << "SELECT ID FROM GL_ROOT WHERE PATH='" << this->GetRootPath().Data() << "' and NAME='"<< this->GetRootFile().Data() <<"';";  
   } else {  
     oss << "SELECT ID FROM GL_ROOT WHERE PATH='$PAM_L0' and NAME='"<< this->GetRootFile().Data() <<"';";  
   };  
1975    //    //
1976    if ( debug ) printf(" query is %s \n",oss.str().c_str());    if ( debug ) printf("%s \n",oss.str().c_str());
1977    result = conn->Query(oss.str().c_str());    result = conn->Query(oss.str().c_str());
1978    if ( !result ) throw -12;    if ( !result ) throw -12;
1979    row = result->Next();    row = result->Next();
1980    if ( !row ) throw -3;    if ( !row ) throw -3;
1981    this->SetID_ROOT((UInt_t)atoll(row->GetField(0)));  
1982    if ( debug ) printf(" The ID of the ROOT file is %u \n",this->GetID_ROOT());    glroot->ID = (UInt_t)atoll(row->GetField(0));
1983    
1984      if ( debug ) printf(" The ID of the ROOT file is %u \n",glroot->ID);
1985    //    //
1986    delete result;    delete result;
1987    //    //
# Line 3245  Bool_t PamelaDBOperations::IsRunConsiste Line 3346  Bool_t PamelaDBOperations::IsRunConsiste
3346              //      this->HandleRunFragments(true,mistrail,firstentry,lastentry); // cannot call it here since it enters a loop which will destroy the already stored variables if we arrive here from HandleRunFragments              //      this->HandleRunFragments(true,mistrail,firstentry,lastentry); // cannot call it here since it enters a loop which will destroy the already stored variables if we arrive here from HandleRunFragments
3347              //              //
3348    
   
   
   
   
   
   
   
   
   
   
   
   
3349              mishead = true;              mishead = true;
3350    
3351    
# Line 3576  Bool_t PamelaDBOperations::IsRunConsiste Line 3665  Bool_t PamelaDBOperations::IsRunConsiste
3665              }; // EEE              }; // EEE
3666    
3667    
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
3668            } else {            } else {
3669              if ( !IsRunAlreadyInserted() ){              if ( !IsRunAlreadyInserted() ){
3670                glrun->SetID(this->AssignRunID());                glrun->SetID(this->AssignRunID());
# Line 4441  Int_t PamelaDBOperations::insertCALOPULS Line 4499  Int_t PamelaDBOperations::insertCALOPULS
4499   * Fill the GL_TRK_CALIB table   * Fill the GL_TRK_CALIB table
4500   */   */
4501  void PamelaDBOperations::HandleTRK_CALIB(Bool_t pk1, Bool_t pk2){  void PamelaDBOperations::HandleTRK_CALIB(Bool_t pk1, Bool_t pk2){
4502    //      
4503    TSQLResult *result = 0;      GL_TRK_CALIB *glcal = new GL_TRK_CALIB();
   TSQLRow    *row    = 0;  
   //  
   stringstream oss;  
   oss.str("");  
   //  
   UInt_t totime = 0;  
   //  
   if ( !pk1 && !pk2 ){  
     if ( IsDebug() ) printf(" Cannot handle trk calibration with both packet missing!\n");  
     return;  
   };  
   //  
   // check if the calibration has already been inserted  
   //  
   oss.str("");  
   oss << " SELECT ID FROM GL_TRK_CALIB WHERE "  
       << " BOOT_NUMBER = "<< this->GetBOOTnumber(); //  
   oss << " AND ( ( ";    
   if ( pk1 ){  
     oss << " OBT1 = "<< obt1 << " AND "  
         << " PKT1 = "<< pkt1  
         << " ) OR ( ";  
   } else {  
     oss << " PKT1 = "<< pkt2-1  
         << " ) OR ( ";    
   };        
   if ( pk2 ){  
     oss << " OBT2 = "<< obt2 << " AND "  
         << " PKT2 = "<< pkt2;  
   } else {  
     oss << " PKT2 = "<< pkt1+1;  
   };        
   oss << " ) );";    
   //  
   if ( IsDebug() ) printf(" Check if the trk calibration has already been inserted: query is \n %s \n",oss.str().c_str());  
   result = conn->Query(oss.str().c_str());  
   //  
   if ( !result ) throw -4;  
   //  
   row = result->Next();  
   //  
   if ( row ){  
     //  
     if ( IsDebug() ) printf(" Trk calibration already inserted in the DB\n");  
     if ( PEDANTIC ) throw -80;  
4504      //      //
4505    } else {      glcal->ID         = 0;
4506        glcal->ID_ROOT_L0 = GetID_ROOT();
4507        glcal->EV_ROOT_CALIBTRK1 = t1;
4508        glcal->EV_ROOT_CALIBTRK2 = t2;
4509        glcal->FROM_TIME = fromtime;
4510        glcal->TO_TIME   = 0;
4511        glcal->OBT1      = obt1;
4512        glcal->OBT2      = obt2;
4513        glcal->PKT1      = pkt1;
4514        glcal->PKT2      = pkt2;
4515        glcal->BOOT_NUMBER = GetBOOTnumber();
4516        glcal->VALIDATION = valid;
4517      //      //
4518      // we have to insert a new calibration, check where to place it      HandleTRK_CALIB(glcal);
4519      //      //
4520      oss.str("");      delete glcal;
4521      oss << " SELECT ID,TO_TIME FROM GL_TRK_CALIB WHERE "  }
4522          << " FROM_TIME < "<< fromtime << " AND "  /**
4523          << " TO_TIME > "<< fromtime << ";";   * Fill the GL_TRK_CALIB table
4524     */
4525    void PamelaDBOperations::HandleTRK_CALIB(GL_TRK_CALIB *glcal){
4526    
4527        Bool_t pk1 = (glcal->OBT1>0&&glcal->PKT1>0);
4528        Bool_t pk2 = (glcal->OBT2>0&&glcal->PKT2>0);
4529        UInt_t boot_number = glcal->BOOT_NUMBER;
4530        UInt_t obt1 = glcal->OBT1;
4531        UInt_t obt2 = glcal->OBT2;
4532        UInt_t pkt1 = glcal->PKT1;
4533        UInt_t pkt2 = glcal->PKT2;
4534        UInt_t fromtime = glcal->FROM_TIME;
4535        UInt_t totime = 0;
4536        UInt_t idroot = glcal->ID_ROOT_L0;
4537        UInt_t t1 = glcal->EV_ROOT_CALIBTRK1;
4538        UInt_t t2 = glcal->EV_ROOT_CALIBTRK2;
4539        UInt_t valid = glcal->VALIDATION;
4540      //      //
4541      if ( IsDebug() ) printf(" Check where to place the trk calibration: query is \n %s \n",oss.str().c_str());      TSQLResult *result = 0;
4542      result = conn->Query(oss.str().c_str());      TSQLRow    *row    = 0;
4543      //      //
4544      if ( !result ) throw -4;      stringstream oss;
4545        oss.str("");
4546      //      //
     row = result->Next();  
4547      //      //
4548      if ( !row ){      if ( !pk1 && !pk2 ){
4549        //          if ( IsDebug() ) printf(" Cannot handle trk calibration with both packet missing!\n");
4550        // no calibrations in the db contain our calibration          return;
       //  
       if ( IsDebug() ) printf(" Calibration with fromtime lower than others to be inserted in the DB\n");  
       if ( fromtime < 1150871000 ) fromtime = 0; // the first flight calibration was taken at about 1150863300 s, this line allows to analyze first runs in raw mode  
       //  
       oss.str("");  
       oss << " SELECT FROM_TIME FROM GL_TRK_CALIB WHERE "  
           << " FROM_TIME > "<< fromtime << " ORDER BY FROM_TIME ASC LIMIT 1;";  
       //  
       if ( IsDebug() ) printf(" Check the upper limit for calibration: query is \n %s \n",oss.str().c_str());  
       result = conn->Query(oss.str().c_str());  
       //  
       if ( !result ) throw -4;  
       //  
       row = result->Next();  
       if ( !row ){  
         totime = numeric_limits<UInt_t>::max();  
       } else {  
         totime = (UInt_t)atoll(row->GetField(0));  
       };  
       //  
     } else {  
       //  
       // determine upper and lower limits and make space for the new calibration  
       //  
       totime = (UInt_t)atoll(row->GetField(1));  
       //  
       oss.str("");  
       oss << " UPDATE GL_TRK_CALIB SET "    
           << " TO_TIME = "<< fromtime << " WHERE "  // NOTICE: to_time is equal to from_time of the calibration before, so the interval is: [from_time,to_time[  
           << " ID = "<< row->GetField(0) << ";";  
       //  
       if ( IsDebug() ) printf(" Make space for the new trk calibration: query is \n %s \n",oss.str().c_str());  
       result = conn->Query(oss.str().c_str());  
       //  
       if ( !result ) throw -4;  
       //  
4551      };      };
4552      //      //
4553      oss.str("");      // check if the calibration has already been inserted
     oss << " INSERT INTO GL_TRK_CALIB (ID,ID_ROOT_L0,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,FROM_TIME,TO_TIME,OBT1,PKT1,OBT2,PKT2,BOOT_NUMBER,VALIDATION) "  
         << " VALUES (NULL,' "  
         << idroot << "',";  
4554      //      //
4555      if ( !pk1 ){      oss.str("");
4556        oss << "NULL,";      oss << " SELECT ID FROM GL_TRK_CALIB WHERE "
4557            << " BOOT_NUMBER = "<< boot_number; //
4558        oss << " AND FROM_TIME="<<fromtime; /// NEWNEWNEW -- VA BENE ?!?!?!?!
4559        oss << " AND ( ( ";  
4560        if ( pk1 ){
4561            oss << " OBT1 = "<< obt1 << " AND "
4562                << " PKT1 = "<< pkt1
4563                << " ) OR ( ";
4564      } else {      } else {
4565        oss << "'"          oss << " PKT1 = "<< pkt2-1
4566            << t1 << "',";              << " ) OR ( ";  
4567      };      };      
4568      //      if ( pk2 ){
4569      if ( !pk2 ){          oss << " OBT2 = "<< obt2 << " AND "
4570        oss << "NULL,'";              << " PKT2 = "<< pkt2;
4571      } else {      } else {
4572        oss << "'"          oss << " PKT2 = "<< pkt1+1;
4573            << t2 << "','";      };      
4574      };      oss << " ) );";  
     //  
     oss << fromtime << "','"  
         << totime << "','"  
         << obt1 << "','"  
         << pkt1 << "','"  
         << obt2 << "','"  
         << pkt2 << "','"  
         << this->GetBOOTnumber() << "','"  
         << valid << "');";  
     //  
     if ( IsDebug() ) printf(" Insert the new trk calibration: query is \n %s \n",oss.str().c_str());  
4575      //      //
4576        if ( IsDebug() ) printf(" Check if the trk calibration has already been inserted: query is \n %s \n",oss.str().c_str());
4577      result = conn->Query(oss.str().c_str());      result = conn->Query(oss.str().c_str());
4578      //      //
4579      if ( !result ) throw -4;      if ( !result ) throw -4;
4580      //      //
4581    };      row = result->Next();
   //  
 };  
   
 /**  
  * Scan tracker calibrations packets, fill the GL_TRK_CALIB table  
  */  
 Int_t PamelaDBOperations::insertTRK_CALIB(){  
   //  
   CalibTrk1Event *caltrk1 = 0;  
   CalibTrk2Event *caltrk2 = 0;  
   TTree *tr1 = 0;  
   TTree *tr2 = 0;  
   EventHeader *eh1 = 0;  
   PscuHeader *ph1 = 0;  
   EventHeader *eh2 = 0;  
   PscuHeader *ph2 = 0;  
   //  
   PacketType *pctp=0;  
   EventCounter *codt2=0;  
   //  
   Int_t nevents1 = 0;  
   Int_t nevents2 = 0;  
   //  
   fromtime = 0;  
   //  
   obt1 = 0;  
   pkt1 = 0;  
   obt2 = 0;  
   pkt2 = 0;  
   //  
   tr1 = (TTree*)file->Get("CalibTrk1");  
   if ( !tr1 || tr1->IsZombie() ) throw -22;  
   tr2 = (TTree*)file->Get("CalibTrk2");  
   if ( !tr2 || tr2->IsZombie() ) throw -23;  
   //  
   tr1->SetBranchAddress("CalibTrk1", &caltrk1);  
   tr1->SetBranchAddress("Header", &eh1);  
   nevents1 = tr1->GetEntries();  
   tr2->SetBranchAddress("CalibTrk2", &caltrk2);  
   tr2->SetBranchAddress("Header", &eh2);  
   nevents2 = tr2->GetEntries();  
   //  
   if ( !nevents1 && !nevents2 ) return(1);  
   //  
   t2 = -1;  
   Int_t pret2 = 0;  
   Int_t t2t1cal = 0;  
   //  
   for (t1=0; t1 < nevents1; t1++){  
     //  
     pret2 = t2;  
     tr1->GetEntry(t1);  
     //  
     ph1 = eh1->GetPscuHeader();  
     obt1 = ph1->GetOrbitalTime();    
     pkt1 = ph1->GetCounter();    
     fromtime = this->GetAbsTime(ph1->GetOrbitalTime());    
     //  
     //     valid = 1;  
     //     //  
     //     if ( caltrk1->unpackError != 0 && caltrk1->good0 == 0 ) valid = 0;// CONDITIONS ON THE GOODNESS OF THE CALIBRATION PKT1  
     //  
4582      //      //
4583      if ( this->PKT(pkt1) >= this->PKT(pktfirst) && this->PKT(pkt1) <= upperpkt && this->OBT(obt1) >= this->OBT(obtfirst) && this->OBT(obt1) <= upperobt ){      if ( row ){
       //    if ( this->PKT(pkt1) >= this->PKT(pktfirst) && this->OBT(obt1) >= this->OBT(obtfirst) ){  
       //  
       if ( IsDebug() ) printf(" Trk calibration1 at time %u obt %u pkt %u \n",fromtime,obt1,pkt1);  
       //        
       valid = ValidateTrkCalib( caltrk1, eh1 );  
       if ( IsDebug() ) cout << " pkt1 validation --> "<<valid<<endl;  
       //  
       // Do we have the second calibration packet?  
       //  
       while ( t2t1cal < t1+1 ){ // get the calibration packet2 that follows the packet1  
         //  
         t2++;  
4584          //          //
4585          pret2 = t2 - 1; // EMILIANO          if ( IsDebug() ) printf(" Trk calibration already inserted in the DB\n");
4586            if ( PEDANTIC ) throw -80;
4587          //          //
4588          if ( t2 < nevents2 ){      } else {
           tr2->GetEntry(t2);  
           codt2 = eh2->GetCounter();  
           t2t1cal = codt2->Get(pctp->CalibTrk1);  
           //  
           ph2 = eh2->GetPscuHeader();  
           obt2 = ph2->GetOrbitalTime();    
           pkt2 = ph2->GetCounter();    
           //  
           if ( IsDebug() ) printf(" This is a trk calibration2 at obt %u pkt %u t2 is %u , t2t1cal is %u \n",obt2,pkt2,t2,t2t1cal);        
           //      if ( caltrk2->unpackError != 0 || caltrk2->good0 == 0 ) valid = 0; // CONDITIONS ON THE GOODNESS OF THE CALIBRATION PKT2  
           //        
         } else {  
           //  
           // running out of vector without finding the corresponding calibration, sig  
           //  
           if ( IsDebug() ) printf(" t2 >= nevents2 \n");  
           pret2 = t2;  
           obt2 = 0;  
           //      pkt2 = pkt1+2;  
           pkt2 = 0;  
           t2t1cal = t1+1;  
         };  
         //      if ( (this->PKT(pkt2) < this->PKT(pktfirst) || this->PKT(pkt2) > upperpkt) && (this->OBT(obt2) < this->OBT(obtfirst) || this->OBT(obt2) > upperobt) ){  
   
         // EMILIANO  
         //      if ( (this->PKT(pkt2) < this->PKT(pktfirst) || this->PKT(pkt2) > upperpkt) || (this->OBT(obt2) < this->OBT(obtfirst) || this->OBT(obt2) > upperobt) ){  
         //        //    if ( this->PKT(pkt2) < this->PKT(pktfirst) && this->OBT(obt2) < this->OBT(obtfirst) ){  
         //        if ( IsDebug() ) printf(" running out of vector without finding the corresponding calibration, sig \n");  
         //        //  
         //        // running out of vector without finding the corresponding calibration, sig  
         //        //  
         //        pret2 = t2;  
         //        obt2 = 0;  
         //        //      pkt2 = pkt1+2;  
         //        pkt2 = 0;  
         //        t2t1cal = t1+1;  
         //      };  
   
   
         //  
       };  
       //  
       if ( IsDebug() ) printf(" Check if trk calibration2 exists \n");  
       //  
       // EMILIANO  
       if ( (this->PKT(pkt2) < this->PKT(pktfirst) || this->PKT(pkt2) > upperpkt) || (this->OBT(obt2) < this->OBT(obtfirst) || this->OBT(obt2) > upperobt) ){  
         //      if ( this->PKT(pkt2) < this->PKT(pktfirst) && this->OBT(obt2) < this->OBT(obtfirst) ){  
         if ( IsDebug() ) printf(" The calibration found is outside the interval, sig \n");  
         //  
         // running out of vector without finding the corresponding calibration, sig  
         //  
         pret2 = t2;  
         obt2 = 0;  
         pkt2 = 0;  
       };  
       //  
       // The calibration is good  
       //  
       if ( this->PKT(pkt2) == this->PKT(pkt1)+1 ){  
4589          //          //
4590          if ( IsDebug() ) printf(" Found trk calibration2 at obt %u pkt %u t2 is %u \n",obt2,pkt2,t2);          // we have to insert a new calibration, check where to place it
         if ( IsDebug() ) printf(" The trk calibration2 at obt %u pkt %u t2 is %u is good \n",obt2,pkt2,t2);  
4591          //          //
4592          UInt_t valid2 = ValidateTrkCalib( caltrk2, eh2 );          oss.str("");
4593          if ( IsDebug() ) cout << " pkt2 validation --> "<<valid2<<endl;          oss << " SELECT ID,TO_TIME FROM GL_TRK_CALIB WHERE "
4594          valid = valid & valid2;              << " FROM_TIME < "<< fromtime << " AND "
4595                << " TO_TIME > "<< fromtime << ";";
4596          //          //
4597          // Handle good calib          if ( IsDebug() ) printf(" Check where to place the trk calibration: query is \n %s \n",oss.str().c_str());
4598            result = conn->Query(oss.str().c_str());
4599          //          //
4600          this->HandleTRK_CALIB(true,true);          if ( !result ) throw -4;
4601          //          //
4602          // Check for missing calibtrk1          row = result->Next();
4603          //          //
4604          if ( t2 != pret2+1 ){          if ( !row ){
           //  
           if ( IsDebug() ) printf(" Missing the trk calibration1! Next one at obt %u pkt %u t2 is %u pret2 is %u \n",obt2,pkt2,t2,pret2);  
           //  
           while ( t2 > pret2+1 ){  
4605              //              //
4606              // handle missing calib1              // no calibrations in the db contain our calibration
4607              //              //
4608              pret2++;              if ( IsDebug() ) printf(" Calibration with fromtime lower than others to be inserted in the DB\n");
4609                if ( fromtime < 1150871000 ) fromtime = 0; // the first flight calibration was taken at about 1150863300 s, this line allows to analyze first runs in raw mode
4610              //              //
4611              obt1 = 0;              oss.str("");
4612              pkt1 = 0;              oss << " SELECT FROM_TIME FROM GL_TRK_CALIB WHERE "
4613                    << " FROM_TIME > "<< fromtime << " ORDER BY FROM_TIME ASC LIMIT 1;";
4614              //              //
4615              tr2->GetEntry(pret2);              if ( IsDebug() ) printf(" Check the upper limit for calibration: query is \n %s \n",oss.str().c_str());
4616              ph2 = eh2->GetPscuHeader();              result = conn->Query(oss.str().c_str());
             obt2 = ph2->GetOrbitalTime();    
             pkt2 = ph2->GetCounter();    
4617              //              //
4618              fromtime = this->GetAbsTime(ph2->GetOrbitalTime());              if ( !result ) throw -4;
4619              //              //
4620              valid = 0;              row = result->Next();
4621              this->HandleTRK_CALIB(false,true);              if ( !row ){
4622                    totime = numeric_limits<UInt_t>::max();
4623                } else {
4624                    totime = (UInt_t)atoll(row->GetField(0));
4625                };
4626              //              //
4627            };          } else {
4628            //              //
4629                // determine upper and lower limits and make space for the new calibration
4630                //
4631                totime = (UInt_t)atoll(row->GetField(1));
4632                //
4633                oss.str("");
4634                oss << " UPDATE GL_TRK_CALIB SET "  
4635                    << " TO_TIME = "<< fromtime << " WHERE "  // NOTICE: to_time is equal to from_time of the calibration before, so the interval is: [from_time,to_time[
4636                    << " ID = "<< row->GetField(0) << ";";
4637                //
4638                if ( IsDebug() ) printf(" Make space for the new trk calibration: query is \n %s \n",oss.str().c_str());
4639                result = conn->Query(oss.str().c_str());
4640                //
4641                if ( !result ) throw -4;
4642                //
4643            };
4644            //
4645            oss.str("");
4646            oss << " INSERT INTO GL_TRK_CALIB (ID,ID_ROOT_L0,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,FROM_TIME,TO_TIME,OBT1,PKT1,OBT2,PKT2,BOOT_NUMBER,VALIDATION) "
4647                << " VALUES (NULL,' "
4648                << idroot << "',";
4649            //
4650            if ( !pk1 ){
4651                oss << "NULL,";
4652            } else {
4653                oss << "'"
4654                    << t1 << "',";
4655          };          };
4656          //          //
4657        } else if ( this->PKT(pkt2) > this->PKT(pkt1)+1 ){          if ( !pk2 ){
4658                oss << "NULL,'";
4659            } else {
4660                oss << "'"
4661                    << t2 << "','";
4662            };
4663          //          //
4664          // Check for missing calibtrk2          oss << fromtime << "','"
4665                << totime << "','"
4666                << obt1 << "','"
4667                << pkt1 << "','"
4668                << obt2 << "','"
4669                << pkt2 << "','"
4670                << boot_number << "','"
4671                << valid << "');";
4672          //          //
4673          if ( IsDebug() ) printf(" Missing the trk calibration2! Next one at obt %u pkt %u t2 is %u\n",obt2,pkt2,t2);          if ( IsDebug() ) printf(" Insert the new trk calibration: query is \n %s \n",oss.str().c_str());
         t2 = pret2;  
4674          //          //
4675          // handle missing calib2          result = conn->Query(oss.str().c_str());
4676          //          //
4677          obt2 = 0;          if ( !result ) throw -4;
         pkt2 = 0;  
         valid = 0;  
         this->HandleTRK_CALIB(true,false);        
4678          //          //
       };  
       //  
     } else {  
       //  
       if ( IsDebug() ) printf(" Trk calibration1 at time %u obt %u pkt %u OUTSIDE the considered time interval \n",fromtime,obt1,pkt1);  
       //      if ( PEDANTIC ) throw -79;  
       //  
4679      };      };
4680      //          
4681    };      oss.str("");
4682    //      oss << " SELECT ID FROM GL_TRK_CALIB ORDER BY ID DESC LIMIT 1 ;";  
4683    // we have one more calib pkt2 !      if ( IsDebug() ) cout << oss.str().c_str() << endl;
4684    //      result = conn->Query(oss.str().c_str());
4685    t2++;      if ( !result ) throw -4;;
4686    while ( t2 < nevents2 ){      row = result->Next();
4687        if(row)glcal->ID = (UInt_t)atoll(row->GetField(0));
4688    
4689        //
4690    };
4691    
4692    /**
4693     * Scan tracker calibrations packets, fill the GL_TRK_CALIB table
4694     */
4695    Int_t PamelaDBOperations::insertTRK_CALIB(){
4696      //      //
4697      // handle missing calib1      CalibTrk1Event *caltrk1 = 0;
4698        CalibTrk2Event *caltrk2 = 0;
4699        TTree *tr1 = 0;
4700        TTree *tr2 = 0;
4701        EventHeader *eh1 = 0;
4702        PscuHeader *ph1 = 0;
4703        EventHeader *eh2 = 0;
4704        PscuHeader *ph2 = 0;
4705        //
4706        PacketType *pctp=0;
4707        EventCounter *codt2=0;
4708        //
4709        Int_t nevents1 = 0;
4710        Int_t nevents2 = 0;
4711        //
4712        fromtime = 0;
4713      //      //
     if ( IsDebug() ) printf(" t2 is %u nevents2 is %u \n",t2,nevents2);  
4714      obt1 = 0;      obt1 = 0;
4715      pkt1 = 0;      pkt1 = 0;
4716        obt2 = 0;
4717        pkt2 = 0;
4718      //      //
4719      tr2->GetEntry(t2);      tr1 = (TTree*)file->Get("CalibTrk1");
4720      ph2 = eh2->GetPscuHeader();      if ( !tr1 || tr1->IsZombie() ) throw -22;
4721      obt2 = ph2->GetOrbitalTime();        tr2 = (TTree*)file->Get("CalibTrk2");
4722      pkt2 = ph2->GetCounter();        if ( !tr2 || tr2->IsZombie() ) throw -23;
4723      //      //
4724      fromtime = this->GetAbsTime(ph2->GetOrbitalTime());      tr1->SetBranchAddress("CalibTrk1", &caltrk1);
4725      valid = 0;      tr1->SetBranchAddress("Header", &eh1);
4726      //  if ( this->PKT(pkt1) >= this->PKT(pktfirst) && this->PKT(pkt1) <= upperpkt && this->OBT(obt1) >= this->OBT(obtfirst) && this->OBT(obt1) <= upperobt ){      nevents1 = tr1->GetEntries();
4727      // EMILIANO      tr2->SetBranchAddress("CalibTrk2", &caltrk2);
4728      if ( this->PKT(pkt2) >= this->PKT(pktfirst) && this->PKT(pkt2 <= upperpkt) && this->OBT(obt2) >= this->OBT(obtfirst) && this->OBT(obt2) <= upperobt ){      tr2->SetBranchAddress("Header", &eh2);
4729        //    if ( this->PKT(pkt2) > this->PKT(pktfirst) || this->OBT(obt2) > this->OBT(obtfirst) ){      nevents2 = tr2->GetEntries();
4730        //      //
4731        if ( IsDebug() ) printf(" Missing the trk calibration1! Next one at obt %u pkt %u t2 is %u\n",obt2,pkt2,t2);      if ( !nevents1 && !nevents2 ) return(1);
4732        //      //
4733        this->HandleTRK_CALIB(false,true);      t2 = -1;
4734        //      Int_t pret2 = 0;
4735      };      Int_t t2t1cal = 0;
4736        //
4737        bool MISSING_pkt1 = true;
4738        bool MISSING_pkt2 = true;
4739        int  ncalib = 0;
4740        bool try_to_recover = false;
4741      //      //
4742      t2++;      for (t1=0; t1 < nevents1; t1++){//loop over packet1
4743            //
4744            pret2 = t2;
4745            tr1->GetEntry(t1);
4746            //
4747            ph1 = eh1->GetPscuHeader();
4748            obt1 = ph1->GetOrbitalTime();  
4749            pkt1 = ph1->GetCounter();  
4750            fromtime = GetAbsTime(ph1->GetOrbitalTime());  
4751            //
4752            // chek if the packet number and obt are consistent with the other packets ???
4753            //
4754            if ( PKT(pkt1) >= PKT(pktfirst) && PKT(pkt1) <= upperpkt && OBT(obt1) >= OBT(obtfirst) && OBT(obt1) <= upperobt ){
4755                //    if ( this->PKT(pkt1) >= this->PKT(pktfirst) && this->OBT(obt1) >= this->OBT(obtfirst) ){
4756                //
4757                if ( IsDebug() ) printf("\n Trk calibration1 %u at time %u obt %u pkt %u \n",t1,fromtime,obt1,pkt1);
4758                //      
4759                valid = ValidateTrkCalib( caltrk1, eh1 );
4760                if ( IsDebug() ) cout << " pkt1 validation --> "<<valid<<endl;
4761                //
4762                // Do we have the second calibration packet?
4763                //
4764                if ( IsDebug() ) cout << " Loop over calibration2 to search associated calibration: "<<endl;
4765                while ( t2t1cal < t1+1 ){ // get the calibration packet2 that follows the packet1
4766                    //
4767                    t2++;
4768                    //
4769                    pret2 = t2 - 1; // EMILIANO
4770                    //
4771                    if ( t2 < nevents2 ){
4772                        tr2->GetEntry(t2);
4773                        codt2 = eh2->GetCounter();
4774                        t2t1cal = codt2->Get(pctp->CalibTrk1);
4775                        //
4776                        ph2 = eh2->GetPscuHeader();
4777                        obt2 = ph2->GetOrbitalTime();  
4778                        pkt2 = ph2->GetCounter();  
4779                        //
4780                        if ( IsDebug() ) printf(" >> trk calibration2 at obt %u pkt %u t2 is %u , t2t1cal is %u \n",obt2,pkt2,t2,t2t1cal);    
4781                        //    if ( caltrk2->unpackError != 0 || caltrk2->good0 == 0 ) valid = 0; // CONDITIONS ON THE GOODNESS OF THE CALIBRATION PKT2
4782                        //    
4783                    } else {
4784                        //
4785                        // running out of vector without finding the corresponding calibration, sig
4786                        //
4787                        if ( IsDebug() ) printf(" t2 >= nevents2 \n");
4788                        pret2 = t2;
4789                        obt2 = 0;
4790                        //    pkt2 = pkt1+2;
4791                        pkt2 = 0;
4792                        t2t1cal = t1+1;
4793                    };
4794                    //      if ( (this->PKT(pkt2) < this->PKT(pktfirst) || this->PKT(pkt2) > upperpkt) && (this->OBT(obt2) < this->OBT(obtfirst) || this->OBT(obt2) > upperobt) ){
4795    
4796                    // EMILIANO
4797                    //      if ( (this->PKT(pkt2) < this->PKT(pktfirst) || this->PKT(pkt2) > upperpkt) || (this->OBT(obt2) < this->OBT(obtfirst) || this->OBT(obt2) > upperobt) ){
4798                    //        //    if ( this->PKT(pkt2) < this->PKT(pktfirst) && this->OBT(obt2) < this->OBT(obtfirst) ){
4799                    //        if ( IsDebug() ) printf(" running out of vector without finding the corresponding calibration, sig \n");
4800                    //        //
4801                    //        // running out of vector without finding the corresponding calibration, sig
4802                    //        //
4803                    //        pret2 = t2;
4804                    //        obt2 = 0;
4805                    //        //      pkt2 = pkt1+2;
4806                    //        pkt2 = 0;
4807                    //        t2t1cal = t1+1;
4808                    //      };
4809    
4810    
4811                    //
4812                };
4813                //
4814                if ( IsDebug() ) printf(" Check if trk calibration2 is the right one \n");
4815                //
4816                // EMILIANO
4817                if ( ( PKT(pkt2) < PKT(pktfirst) || PKT(pkt2) > upperpkt) || (OBT(obt2) < OBT(obtfirst) || OBT(obt2) > upperobt) ){
4818                    //      if ( this->PKT(pkt2) < this->PKT(pktfirst) && this->OBT(obt2) < this->OBT(obtfirst) ){
4819                    if ( IsDebug() ) printf(" *WARNING*  The calibration found is outside the interval, sig \n");
4820                    //
4821                    // running out of vector without finding the corresponding calibration, sig
4822                    //
4823                    pret2 = t2;
4824                    obt2 = 0;
4825                    pkt2 = 0;
4826                };
4827                if ( PKT(pkt2) == PKT(pkt1)+1 ){
4828                    if ( IsDebug() ) cout << " ...OK"<<endl;
4829                    // =======================
4830                    // The calibration is good
4831                    // =======================
4832                    //
4833    //      if ( IsDebug() ) printf(" Found trk calibration2 at obt %u pkt %u t2 is %u \n",obt2,pkt2,t2);
4834    //      if ( IsDebug() ) printf(" Trk calibration2 at obt %u pkt %u t2 is %u is good \n",obt2,pkt2,t2);
4835    //        if ( IsDebug() ) printf("\n Trk calibration2 at time %u obt %u pkt %u \n",fromtime,obt2,pkt2);
4836                    if ( IsDebug() ) printf(" Trk calibration2 %u at time %u obt %u pkt %u \n",t2,fromtime,obt2,pkt2);
4837                    //
4838                    UInt_t valid2 = ValidateTrkCalib( caltrk2, eh2 );
4839                    if ( IsDebug() ) cout << " pkt2 validation --> "<<valid2<<endl;
4840    //      valid = valid & valid2;
4841                    valid = valid & valid2; //QUESTO VA CAMBIATO
4842                    //
4843                    // Handle good calib
4844                    //
4845                    MISSING_pkt1 = false;
4846                    MISSING_pkt2 = false;
4847    //              this->HandleTRK_CALIB(!MISSING_pkt1,!MISSING_pkt2);
4848                    //
4849                    // Check for missing calibtrk1
4850                    //
4851                    if ( t2 != pret2+1 ){
4852                        //
4853                        if ( IsDebug() ) printf(" Missing the trk calibration1! Next one at obt %u pkt %u t2 is %u pret2 is %u \n",obt2,pkt2,t2,pret2);
4854                        //
4855                        while ( t2 > pret2+1 ){
4856                            //
4857                            // handle missing calib1
4858                            //
4859                            pret2++;
4860                            //
4861                            obt1 = 0;
4862                            pkt1 = 0;
4863                            //
4864                            tr2->GetEntry(pret2);
4865                            ph2 = eh2->GetPscuHeader();
4866                            obt2 = ph2->GetOrbitalTime();  
4867                            pkt2 = ph2->GetCounter();  
4868                            //
4869                            fromtime = this->GetAbsTime(ph2->GetOrbitalTime());
4870                            //
4871                            valid = 0;
4872                            MISSING_pkt1 = true;
4873                            MISSING_pkt2 = false;
4874    //                      this->HandleTRK_CALIB(!MISSING_pkt1,!MISSING_pkt2);
4875                            //
4876                        };
4877                        //
4878                    };
4879                    //
4880                } else if ( this->PKT(pkt2) > this->PKT(pkt1)+1 ){
4881                    //
4882                    // Check for missing calibtrk2
4883                    //
4884                    if ( IsDebug() ) printf(" Missing the trk calibration2! Next one at obt %u pkt %u t2 is %u\n",obt2,pkt2,t2);
4885                    t2 = pret2;
4886                    //
4887                    // handle missing calib2
4888                    //
4889                    obt2 = 0;
4890                    pkt2 = 0;
4891                    valid = 0;
4892                    MISSING_pkt1 = false;
4893                    MISSING_pkt2 = true;
4894    //              this->HandleTRK_CALIB(!MISSING_pkt1,!MISSING_pkt2);
4895                    //
4896                };
4897                //
4898    
4899                if( !(MISSING_pkt1&MISSING_pkt2) ){
4900                  this->HandleTRK_CALIB(!MISSING_pkt1,!MISSING_pkt2);
4901                  ncalib++;
4902                  if( MISSING_pkt1||MISSING_pkt2||!valid )try_to_recover=true;
4903                }
4904    
4905    
4906            } else {
4907              //
4908                if ( IsDebug() ) printf(" Trk calibration1 at time %u obt %u pkt %u OUTSIDE the considered time interval \n",fromtime,obt1,pkt1);
4909                //      if ( PEDANTIC ) throw -79;
4910                //
4911            };
4912            //    
4913    
4914        }; //end loop on pkt1
4915    
4916    
4917    
4918      //      //
4919    };      // we have one more calib pkt2 !
4920        //
4921        t2++;
4922        while ( t2 < nevents2 ){
4923            //
4924            // handle missing calib1
4925            //
4926            if ( IsDebug() ) printf(" t2 is %u nevents2 is %u \n",t2,nevents2);
4927            obt1 = 0;
4928            pkt1 = 0;
4929            //
4930            tr2->GetEntry(t2);
4931            ph2 = eh2->GetPscuHeader();
4932            obt2 = ph2->GetOrbitalTime();  
4933            pkt2 = ph2->GetCounter();  
4934            //
4935            fromtime = this->GetAbsTime(ph2->GetOrbitalTime());
4936            valid = 0;
4937            //  if ( this->PKT(pkt1) >= this->PKT(pktfirst) && this->PKT(pkt1) <= upperpkt && this->OBT(obt1) >= this->OBT(obtfirst) && this->OBT(obt1) <= upperobt ){
4938            // EMILIANO
4939            if ( this->PKT(pkt2) >= this->PKT(pktfirst) && this->PKT(pkt2 <= upperpkt) && this->OBT(obt2) >= this->OBT(obtfirst) && this->OBT(obt2) <= upperobt ){
4940                //    if ( this->PKT(pkt2) > this->PKT(pktfirst) || this->OBT(obt2) > this->OBT(obtfirst) ){
4941                //
4942                if ( IsDebug() ) printf(" Missing the trk calibration1! Next one at obt %u pkt %u t2 is %u\n",obt2,pkt2,t2);
4943                //
4944                MISSING_pkt1 = true;
4945                MISSING_pkt2 = false;
4946                this->HandleTRK_CALIB(!MISSING_pkt1,!MISSING_pkt2);
4947                ncalib++;
4948                if( MISSING_pkt1||MISSING_pkt2||!valid )try_to_recover=true;
4949                //
4950            };
4951            //
4952            t2++;
4953            //
4954        };
4955    
4956    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~    
4957    // -----------------------------------------------------------------
4958    // in case of corruption, check if the calibration can be recovered
4959    // from another chewbacca file
4960    // -----------------------------------------------------------------
4961    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~    
4962    
4963    //    cout <<" TRY TO RECOVER ?? "<<try_to_recover<<endl;
4964        
4965        if(chewbacca&&try_to_recover){
4966    
4967    
4968            if ( IsDebug() ) cout << endl << ">>>> TRY TO RECOVER TRACKER CALIBRATIONS <<<<"<<endl;
4969    
4970            TSQLResult *result = 0;
4971            TSQLRow    *row    = 0;
4972            //
4973            stringstream oss;
4974            oss.str("");
4975            //
4976    
4977            ////////////////////////////////////////////////////////////////////////
4978            // retrieve the name of the current file:
4979            ////////////////////////////////////////////////////////////////////////        
4980            oss.str("");
4981            oss << "SELECT NAME FROM GL_ROOT where ID=" << GetID_ROOT() <<";";
4982            if ( IsDebug() ) cout << oss.str().c_str() << endl;
4983    
4984            result = conn->Query(oss.str().c_str());
4985            if ( !result ) throw -4;;
4986            row = result->Next();
4987            TString thisfilename = (TString)row->GetField(0);
4988            if ( IsDebug() ) cout << "Current file ==> "<<thisfilename<<endl;      
4989    
4990            ////////////////////////////////////////////////////////////////////////        
4991            // read all the calibrations inserted
4992            ////////////////////////////////////////////////////////////////////////        
4993            oss.str("");
4994            oss << " SELECT ";
4995            oss << " ID,FROM_TIME,OBT1,PKT1,OBT2,PKT2,BOOT_NUMBER,VALIDATION,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,TO_TIME";
4996            oss << " FROM GL_TRK_CALIB ";
4997            oss << " ORDER BY ID DESC LIMIT "<<ncalib<<"; ";        
4998            if ( IsDebug() ) cout << oss.str().c_str() << endl;
4999    
5000            result = conn->Query(oss.str().c_str());
5001            if ( !result ) throw -4;;
5002            if ( IsDebug() ) cout <<"Rows: "<<result->GetRowCount()<<endl;
5003            
5004            // -----------------------------------
5005            // loop over calibrations ...
5006            // -----------------------------------
5007            UInt_t nn=0;
5008            do {
5009                row = result->Next();
5010                if(!row)break;
5011                
5012                UInt_t id       = (UInt_t)atoll(row->GetField(0));
5013                UInt_t fromtime = (UInt_t)atoll(row->GetField(1));
5014                UInt_t obt1     = (UInt_t)atoll(row->GetField(2));
5015                UInt_t pkt1     = (UInt_t)atoll(row->GetField(3));
5016                UInt_t obt2     = (UInt_t)atoll(row->GetField(4));
5017                UInt_t pkt2     = (UInt_t)atoll(row->GetField(5));
5018                UInt_t boot     = (UInt_t)atoll(row->GetField(6));
5019                UInt_t valid    = (UInt_t)atoll(row->GetField(7));
5020                bool MISSING_pkt1 = (row->GetFieldLength(8)==0);
5021                bool MISSING_pkt2 = (row->GetFieldLength(9)==0);
5022                UInt_t totime   = (UInt_t)atoll(row->GetField(10));
5023    
5024                // -------------------------------------
5025                // ...check if the entry is corrupted...
5026                // -------------------------------------
5027                cout <<"*** "<< MISSING_pkt1 << MISSING_pkt2 << valid <<endl;
5028                bool CORRUPTED = (MISSING_pkt1||MISSING_pkt2||!valid);
5029    
5030                if ( IsDebug() ) cout << "("<<nn<<")  ID = "<<id<<" from GL_TRK_CALIB  ==>  corrupted ? "<<CORRUPTED<<endl;
5031    
5032    //          if( !CORRUPTED  )continue; // nothing to do
5033    
5034                /////////////////////////////////////////////////////////  
5035                // if it is corrupted, ...look for ather chewbacca files
5036                // containing the same calibrations ...
5037                /////////////////////////////////////////////////////////
5038    
5039                bool this_MISSING_pkt1 = false;
5040                bool this_MISSING_pkt2 = false;
5041                int  this_t1=0;
5042                int  this_t2=0;;
5043                UInt_t this_valid = 0;
5044    
5045                TString path       = "";
5046                TString name       = "";
5047                TString raw        = "";
5048                UInt_t obt0        = 0;
5049                UInt_t timesync    = 0;
5050                UInt_t boot_number = 0;
5051                bool   FOUND       = false;
5052    
5053                if ( IsDebug() ) cout << "------------------------------------------------------------" <<endl;
5054    
5055    //          for(int itable=0; itable<2; itable++){
5056                for(int itable=0; itable<1; itable++){
5057    
5058                    // ------------------------------------------------------
5059                    // loop over both ROOT_TABLE and ROOT_TABLE_BAD
5060                    // ------------------------------------------------------
5061    
5062                    TString table = "ROOT_TABLE";
5063                    if(itable==1)table = "ROOT_TABLE_BAD";
5064    
5065                    oss.str("");
5066                    oss << " SELECT ";
5067                    oss << " FOLDER_NAME,FILE_NAME,OBT_TIME_SYNC,LAST_TIME_SYNC_INFO,BOOT_NUMBER,INPUT_NAME ";
5068                    oss << " FROM "<<table;
5069                    oss << " WHERE 1 " << endl;
5070                    oss << " AND FILE_NAME != \""<< thisfilename<<"\"";
5071                    if( !MISSING_pkt1 ){
5072                        oss << " AND ";
5073                        oss << " PKT_NUMBER_INIT < "<<pkt1;
5074                        oss << " AND ";
5075                        oss << " PKT_NUMBER_FINAL > "<<pkt1;
5076                        oss << " AND ";
5077                        oss << " PKT_OBT_INIT < "<<obt1;
5078                        oss << " AND ";
5079                        oss << " PKT_OBT_FINAL > "<<obt1;
5080                    }else{
5081                        if(pkt2>1) pkt1 = pkt2-1;//serve dopo                  
5082                    }
5083                    if( !MISSING_pkt2 ){
5084                        oss << " AND ";
5085                        oss << " PKT_NUMBER_INIT < "<<pkt2;
5086                        oss << " AND ";
5087                        oss << " PKT_NUMBER_FINAL > "<<pkt2;
5088                        oss << " AND ";
5089                        oss << " PKT_OBT_INIT < "<<obt2;
5090                        oss << " AND ";
5091                        oss << " PKT_OBT_FINAL > "<<obt2;
5092                    }else{
5093                        if(pkt1>0) pkt2 = pkt1+1;//serve dopo
5094                    }
5095                    if( boot> 0 ){
5096                        oss << " AND ";
5097                        oss << " BOOT_NUMBER = "<<boot;
5098                    }else{
5099                    }
5100                    oss << " ORDER BY BAD_PKT_CALREAD ASC; ";
5101                
5102                    TSQLResult *result2 = 0;
5103                    TSQLRow    *row2    = 0;
5104    
5105                    if ( IsDebug() ) cout << oss.str().c_str() << endl;        
5106                    result2 = conn->Query(oss.str().c_str());
5107                    if ( !result2 ) throw -4;;
5108                    if ( IsDebug() ) cout <<"Rows: "<<result2->GetRowCount()<<endl;
5109    
5110                    // ------------------------------------------------------
5111                    // loop over files containing repetition (if any)
5112                    // ------------------------------------------------------
5113                    do {
5114                        row2 = result2->Next();
5115                        if(!row2)break;
5116                    
5117                        // ------------------------------------------------------
5118                        // ... a repetition is found ...
5119                        // ------------------------------------------------------
5120                        path       = (TString)row2->GetField(0);
5121                        name       = (TString)row2->GetField(1);
5122                        raw        = (TString)row2->GetField(5);
5123                        obt0        = (UInt_t)atoll(row2->GetField(2));
5124                        timesync    = (UInt_t)atoll(row2->GetField(3));
5125                        boot_number = (UInt_t)atoll(row2->GetField(4));
5126                    
5127                        if ( IsDebug() ) cout << "- - - - - - - - - - -" <<endl;
5128    //                  cout << path <<endl;
5129    //                  cout << "File    : " <<name <<endl;
5130    //                  cout << obt0 <<endl;
5131    //                  cout << timesync <<endl;
5132    //                  cout << "boot n. : "<<boot_number <<endl;
5133    //                  cout << raw <<endl;
5134    
5135                        // ------------------------------------------------------
5136                        // ... retrieve the calibration packets.
5137                        // ------------------------------------------------------
5138                        if ( IsDebug() ) printf(" file is %s/%s \n",((TString)gSystem->ExpandPathName(path.Data())).Data(),name.Data());
5139                        TFile *file = new TFile(((TString)gSystem->ExpandPathName(path.Data()))+"/"+name); // EM, path could be symbolic and we must expand it
5140                        if(!file)throw -100;
5141                        if(file->IsZombie())throw -100;
5142                        //
5143                        tr1 = (TTree*)file->Get("CalibTrk1");
5144                        if ( !tr1 || tr1->IsZombie() ) throw -22;
5145                        tr2 = (TTree*)file->Get("CalibTrk2");
5146                        if ( !tr2 || tr2->IsZombie() ) throw -23;
5147                        //
5148                        tr1->SetBranchAddress("CalibTrk1", &caltrk1);
5149                        tr1->SetBranchAddress("Header", &eh1);
5150                        nevents1 = tr1->GetEntries();
5151                        tr2->SetBranchAddress("CalibTrk2", &caltrk2);
5152                        tr2->SetBranchAddress("Header", &eh2);
5153                        nevents2 = tr2->GetEntries();
5154                        for(this_t1=0; this_t1<nevents1; this_t1++){
5155                            tr1->GetEntry(this_t1);
5156                            if(
5157                                (UInt_t)eh1->GetPscuHeader()->GetCounter() == pkt1 &&
5158                                true) break;
5159                            this_MISSING_pkt1 = true;
5160                        }
5161                        for(this_t2=0; this_t2<nevents2; this_t2++){
5162                            tr2->GetEntry(this_t2);
5163                            if(
5164                                (UInt_t)eh2->GetPscuHeader()->GetCounter() == pkt2 &&
5165                                true) break;
5166                            this_MISSING_pkt2 = true;
5167                        }
5168                        this_valid =
5169                            ValidateTrkCalib( caltrk1, eh1, file )
5170                            *
5171                            ValidateTrkCalib( caltrk2, eh2, file );
5172                                
5173                        // ---------------------------------------------------------------------
5174                        // accept the calibration if it is better than the previous:
5175                        //
5176                        // - if the new calibration is perfect (both valid packets)
5177                        // - if the new calibration has both the packets and the previous does not
5178                        // ---------------------------------------------------------------------
5179                        if(
5180                            ( !this_MISSING_pkt1&&!this_MISSING_pkt2&&this_valid )||
5181                            ( (MISSING_pkt1||MISSING_pkt2) && (!this_MISSING_pkt1&&!this_MISSING_pkt2) )||
5182                            false)FOUND=true;      
5183                
5184                        if(file)file->Close();
5185    
5186                        if(FOUND)break;
5187    
5188                    }while(1);//endl loop over root table entries
5189    
5190                    if(FOUND)break;
5191    
5192                }//end loop over tables
5193    
5194                if(FOUND){
5195    
5196                if ( IsDebug() ) cout << " >>> REPETITION FOUND :-) <<<" <<endl;
5197    
5198                    ////////////////////////////////////////////
5199                    // insert a new entry in GL_TRK_CALIB and
5200                    // modify the time-tag of the previous one
5201                    ////////////////////////////////////////////
5202    
5203                    // ---------------------------------------------------------------------
5204                    // step 1: insert a new raw file in GL_RAW
5205                    // ---------------------------------------------------------------------
5206                    //
5207                    // check if the raw file already exist
5208                    //
5209                    UInt_t id_raw = 0;   // EM GL_RAW is there only for backward compatibility so we do not need to fill it when in "chewbacca" mode
5210    //              oss.str("");
5211    //              oss << "SELECT ID FROM GL_RAW where NAME=\"" << gSystem->BaseName(raw.Data()) <<"\";";
5212    //              if ( IsDebug() ) cout << oss.str().c_str() << endl;
5213                    
5214    //              result = conn->Query(oss.str().c_str());
5215    //              if ( !result ) throw -4;;
5216    //              if ( IsDebug() ) cout <<"Rows: "<<result->GetRowCount()<<endl;
5217    //              if( result->GetRowCount() == 0){
5218    //                  if ( IsDebug() ) cout << " << Insert new RAW file >> "<<endl;
5219    //                  // - - - - - - - - - - -
5220    //                  // insert new raw file
5221    //                  // - - - - - - - - - - -
5222    //                  GL_RAW glraw = GL_RAW();    
5223    //                  glraw.PATH        = gSystem->DirName(raw.Data());
5224    //                  glraw.NAME        = gSystem->BaseName(raw.Data());
5225    //                  glraw.BOOT_NUMBER = boot_number;
5226    //                  //
5227    //                  insertPamelaRawFile( &glraw );
5228    //                  //              
5229    //                  id_raw = glraw.ID;              
5230    //              }else{
5231    //                  row = result->Next();
5232    //                  id_raw = (UInt_t)atoll(row->GetField(0));
5233    //              }
5234    //              if ( IsDebug() ) cout << "ID_RAW = "<<id_raw<<endl;
5235    
5236                    // ---------------------------------------------------------------------
5237                    // step 1(bis): retrieve the timesync id associated to the file
5238                    // (NB, uso lo stesso associato al file iniziale)
5239                    // ---------------------------------------------------------------------
5240                    UInt_t idtimesync = 0;
5241                    oss.str("");
5242                    oss << " SELECT ID FROM GL_TIMESYNC where TIMESYNC="<<chlastts<<" AND OBT0="<<chobtts*1000<<" limit 1;";
5243                    if ( debug ) printf(" %s \n",oss.str().c_str());
5244                    result = conn->Query(oss.str().c_str());
5245                    if ( !result ) throw -3;
5246                    row = result->Next();
5247                    if ( !row ) throw -3;
5248                    idtimesync = (UInt_t)atoll(row->GetField(0));
5249                    if ( IsDebug() ) cout << "ID_TIMESYNC = "<<idtimesync<<endl;
5250                    
5251                    // ---------------------------------------------------------------------
5252                    // step 2: insert a new root file in GL_ROOT
5253                    // ---------------------------------------------------------------------
5254                    //
5255                    // check if the root file already exist
5256                    //
5257                    UInt_t id_root = 0;
5258                    oss.str("");
5259                    oss << "SELECT ID FROM GL_ROOT where NAME=\"" << gSystem->BaseName(name.Data()) <<"\";";
5260                    if ( IsDebug() ) cout << oss.str().c_str() << endl;
5261                    
5262                    result = conn->Query(oss.str().c_str());
5263                    if ( !result ) throw -4;;
5264                    if ( IsDebug() ) cout <<"Rows: "<<result->GetRowCount()<<endl;
5265                    if( result->GetRowCount() == 0){
5266                        if ( IsDebug() ) cout << " << Insert new ROOT file >> "<<endl;
5267                        // - - - - - - - - - - -
5268                        // insert new root file
5269                        // - - - - - - - - - - -
5270                        GL_ROOT glroot = GL_ROOT();            
5271                        glroot.ID_RAW      = id_raw;
5272                        glroot.ID_TIMESYNC = idtimesync;
5273                        //
5274                        // EM STATIC = the full expanded path must be put in the DB, KEEPENV = the path given as input (or found in ROOT_TABLE) must be used,
5275                        //             NOT STATIC NOT KEEPENV = $PAM_L0 must be used in the DB
5276                        //
5277                        if ( STATIC ){
5278                          glroot.PATH        = (TString)gSystem->ExpandPathName(path);
5279                        } else {
5280                          if ( KEEPENV ){
5281                            glroot.PATH      = path;
5282                          } else {
5283                            glroot.PATH      = "$PAM_L0";
5284                          };
5285                        };
5286                        //              glroot.PATH        = path;
5287                        glroot.NAME        = name;
5288                        //
5289                        insertPamelaRootFile( &glroot );
5290                        //              
5291                        id_root = glroot.ID;                    
5292                    }else{
5293                        row = result->Next();
5294                        if(row)id_root = (UInt_t)atoll(row->GetField(0));
5295                    }
5296                    if ( IsDebug() ) cout << "ID_ROOT = "<<id_root<<endl;
5297    
5298                    // ---------------------------------------------------------------------
5299                    // step 3: modify time-tag of corrupted GL_TRK_CALIB entry
5300                    // ---------------------------------------------------------------------
5301                    if ( IsDebug() ) cout << " << Modify time-tag of calibration ID="<<id<<" >> "<<endl;
5302                    oss.str("");
5303                    oss << " UPDATE GL_TRK_CALIB SET "  
5304                        << " TO_TIME=0 , FROM_TIME=0  WHERE "
5305                        << " ID = "<< id  << ";";
5306                    if ( IsDebug() ) cout << oss.str().c_str() << endl;
5307                    result = conn->Query(oss.str().c_str());
5308                    if ( !result ) throw -4;;
5309    
5310                    // ---------------------------------------------------------------------
5311                    // step 4: insert the new calibration:
5312                    // ---------------------------------------------------------------------
5313                    if ( IsDebug() ) cout << " << Insert new TRK calibration >> "<<endl;
5314                    //
5315                    GL_TRK_CALIB glcal = GL_TRK_CALIB();        
5316                    //
5317                    glcal.ID_ROOT_L0        = id_root;
5318                    glcal.EV_ROOT_CALIBTRK1 = this_t1;
5319                    glcal.EV_ROOT_CALIBTRK2 = this_t2;
5320                    glcal.FROM_TIME         = fromtime;
5321                    glcal.TO_TIME           = totime;
5322                    glcal.OBT1              = obt1;
5323                    glcal.OBT2              = obt2;
5324                    glcal.PKT1              = pkt1;
5325                    glcal.PKT2              = pkt1;
5326                    glcal.BOOT_NUMBER       = GetBOOTnumber();
5327                    glcal.VALIDATION        = this_valid;
5328                    //
5329                    HandleTRK_CALIB(&glcal);
5330                    if ( IsDebug() ) cout << "ID = "<<glcal.ID<<endl;
5331                    //
5332                    
5333                }
5334                if ( IsDebug() ) cout << "------------------------------------------------------------" <<endl;
5335    
5336            }while(1);//end loop over calibrations
5337            
5338            
5339            if( result )delete result;
5340            if( row    )delete row;
5341            
5342            
5343    
5344            
5345    
5346    
5347        }
5348    
5349    
5350    //      // ------------------------------
5351    //      // try to recover the calibration
5352    //      // ------------------------------
5353    //      cout << "TRY TO RECOVER TRACKER CALIBRATION"<<endl;
5354    //      //
5355    //      ULong64_t time  = 0; //absolute time
5356    //      string    path[100]; //mettere un limite massimo
5357    //      int       nrows = 0;
5358    //      UInt_t    pkt   = 0;
5359    //      UInt_t    obt   = 0;
5360    //      char     *type  = "";
5361    //      EventHeader *eh   = new EventHeader();
5362    //      CalibTrk1Event *c = new CalibTrk1Event();
5363            
5364    //       //
5365    //       if(which_is_not_valid==1 || which_is_not_valid==3){
5366    //        //
5367    //        cout << "PKT1 --> missing or corrupted "<<endl;
5368    //        type = "CalibTrk1";
5369    //        pkt  = pkt1;
5370    //        obt  = obt1;
5371    //        time = this->GetAbsTime(obt1);
5372    //        if( pkt1 == 0 ){//missing
5373    //            time = this->GetAbsTime(obt2);
5374    //            pkt  = pkt2-1;          
5375    //        }
5376    //        //
5377    //       }else if (which_is_not_valid==2 || which_is_not_valid==3){
5378    //        //
5379    //        cout << "PKT2--> missing or corrupted "<<endl;
5380    //        type = "CalibTrk2 ";
5381    //        pkt  = pkt2;
5382    //        obt  = obt2;
5383    //        time = this->GetAbsTime(obt2);
5384    //        if( pkt2 == 0 ){//missing
5385    //            time = this->GetAbsTime(obt1);
5386    //            pkt  = pkt1+1;          
5387    //        }
5388    //        //
5389    //       }else{
5390    //        cout << "this should not happen!!! "<<endl;
5391    //        trow -666;
5392    //       }
5393          
5394    //       nrows = Query_ROOT_TABLE(time,conn,path);// get the list of file which might contain the packet
5395          
5396    
5397    //       for(int r=0; r<nrows; r++){ //loop over rows
5398    //        if(path)cout << r << " >>>> "<<(path+r)->c_str() << endl;
5399    //        /// verifica che il file non sia quello gia` aperto
5400    //       }
5401    
5402    //       ////////////////////////////////////////////////////////////////////////
5403    
5404    //       TSQLResult *result = 0;
5405    //       TSQLRow    *row    = 0;
5406    //       //
5407    //       stringstream oss;
5408    //       oss.str("");
5409    //       // ----------------------------------------
5410    //       // read the id of last calibration inserted
5411    //       // ----------------------------------------
5412    //       oss.str("");
5413    //       oss << " SELECT ";
5414    //       oss << " (ID,ID_ROOT_L0,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,FROM_TIME,TO_TIME,OBT1,PKT1,OBT2,PKT2,BOOT_NUMBER,VALIDATION) ";
5415    //       oss << " ORDER BY ID DESC LIMIT 1; ";
5416          
5417    //       result = conn->Query(oss.str().c_str());
5418    //       row = result->Next();
5419    //       if( !row )throw -666;
5420    
5421    //       if( result )delete result;
5422    //       if( row    )delete row;
5423    
5424    //       UInt_t id = (UInt_t)atoll(row->GetField(0));
5425    
5426    //       // -------------------------------------
5427    //       // ...and modify it with new parameters
5428    //       // -------------------------------------
5429          
5430    
5431    //   }
5432    //    //
5433    return(0);    return(0);
5434  };  };
# Line 5648  Bool_t PamelaDBOperations::MissingTRK_CA Line 6259  Bool_t PamelaDBOperations::MissingTRK_CA
6259                    
6260    GL_TRK_CALIB* trkcalib = new GL_TRK_CALIB();    GL_TRK_CALIB* trkcalib = new GL_TRK_CALIB();
6261                    
6262    // get the closest VALIDATED calibration before the run start (t2)    // get the closest calibration before the run start (t2)
6263    if ( trkcalib->Query_GL_TRK_CALIB(t2, conn) )return(true);    //>>> missing    if ( trkcalib->Query_GL_TRK_CALIB(t2, conn) )return(true);    //>>> missing
6264                    
6265    if ( trkcalib->TO_TIME  < t2 ) return(true);                                  //>>> missing    if ( trkcalib->TO_TIME  < t2 ) return(true);                                  //>>> missing
# Line 6342  void PamelaDBOperations::RemoveCALIBS(){ Line 6953  void PamelaDBOperations::RemoveCALIBS(){
6953   * Rearrange calibration tables   * Rearrange calibration tables
6954   *   *
6955   **/   **/
6956  UInt_t PamelaDBOperations::ValidateTrkCalib( CalibTrk1Event* caltrk, EventHeader *eh ){  UInt_t PamelaDBOperations::ValidateTrkCalib( CalibTrk1Event* caltrk, EventHeader *eh , TFile *file){
6957    
6958    Int_t vorder[]={5,5,3,3,4,4,2,2,1,1,0,0};      if(!caltrk) return 0;
   UInt_t timeaftercalib=120000; //2000;  
   //  ----------  
   //  Check CRCs  
   //  ----------  
   for(Int_t ipkt=0; ipkt<6; ipkt++){  
     if( caltrk->crc_hcal[ipkt] )return 0; // :-(  
     for(Int_t ilad=0; ilad<3; ilad++)if( caltrk->crc_cal[ipkt][ilad] )return 0; // :-(  
   }  
   //  -----------------------  
   //  Check missing packets:  
   //  -----------------------  
   //    Readout order:  
   //    ------------------  
   //    DSP   packet board  
   //    ------------------  
   //    12    0      1  
   //    10    1      1  
   //     8    2      1  
   //     4    3      1  
   //     6    4      1  
   //     2    5      1  
   //    ------------------  
   //    11    0      2  
   //     9    1      2  
   //     7    2      2  
   //     3    3      2  
   //     5    4      2  
   //     1    5      2  
   //    ------------------  
   //  -------------------------------------------------  
   //  Check if it is first or second calibration packet  
   //  -------------------------------------------------  
   UInt_t build=0;  
   TString classname = caltrk->GetName();  
   UInt_t base=0;  
   UInt_t mask=0;  
   if(classname.Contains("CalibTrk1Event")){  
     base=12;  
     mask=0x03F000;  
   }  
   if(classname.Contains("CalibTrk2Event")){  
     base=18;  
     mask=0xFC0000;  
   }  
   //  -------------------------------------------------  
   //  Count number of packets and set build variable  
   //  -------------------------------------------------  
   Int_t  npkts=0;  
   for(Int_t ipkt=0; ipkt<6; ipkt++){  
     if(caltrk->DSPnumber[ipkt]>0 && caltrk->DSPnumber[ipkt]<=12){  
       npkts++;  
       build = build | ( 1<<(base+vorder[caltrk->DSPnumber[ipkt]-1]) );  
     }  
   }  
   //    if( npkts==6 )return 1; // :-)  
6959    
6960    //    cout << classname << " "<<eh->GetPscuHeader()->GetOrbitalTime()<<endl;      if ( IsDebug() ) cout << "ValidateTrkCalib:"<<endl;
6961    
6962    //  -----------------------------------------------      UInt_t validate = 1;
6963    //  If missing packets: check the acq configuration      Int_t vorder[]={5,5,3,3,4,4,2,2,1,1,0,0};
6964    //  (some DSPs might be excluded from acquisition)      UInt_t timeaftercalib=120000; //2000;
6965    //  -----------------------------------------------      TString classname = caltrk->GetName();
6966    
6967    //  -----------------------------------------------  //  ----------------------------------
6968    //  retrieve the first run header after calib  //  Check CRCs and failed calibrations
6969    //  -----------------------------------------------  //  ----------------------------------
6970    PacketType *pctp;      for(Int_t ipkt=0; ipkt<6; ipkt++){
6971    EventCounter *cod;          if(caltrk->DSPnumber[ipkt]>0 && caltrk->DSPnumber[ipkt]<=12){
6972    cod = eh->GetCounter();              if( caltrk->crc_hcal[ipkt] ){
6973    Int_t irun = cod->Get(pctp->RunHeader);  //              if(IsDebug())cout<<"(CRC Header)";
6974    TTree *rh=(TTree*)file->Get("RunHeader");                  validate = 0;
6975    if ( !rh || rh->IsZombie() ) throw -17;                  if(IsDebug())cout <<endl<<" *** CRC *** (header DSPn "<<caltrk->DSPnumber[ipkt]<<")";
6976    if( rh->GetEntries() == irun ){          
6977      if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) no runs after calib (1)  -- cannot validate :-( "<<endl;              }
6978      return 0; // :-(              for(Int_t ilad=0; ilad<3; ilad++)if( caltrk->crc_cal[ipkt][ilad] ){
6979    }  //              if(IsDebug())cout<<"(CRC Pkt-"<<ilad<<")";
6980                    if(IsDebug())cout <<endl<<" *** CRC *** (data DSPn "<<caltrk->DSPnumber[ipkt]<<" ladder "<<ilad<<")";
6981                    validate = 0;
6982                }
6983                if( !(caltrk->ncalib_event[ipkt]==0 && caltrk->cal_flag[ipkt]==0) ){
6984                    if(IsDebug())cout <<endl<<" *** FAILURE ***     (data DSPn "<<caltrk->DSPnumber[ipkt]<<")";
6985                    validate = 0;
6986                }
6987            }else{
6988    //          validate=0;
6989                if(IsDebug())cout <<endl<<" *** DSPn *** ("<< caltrk->DSPnumber[ipkt] <<" @pkt "<<ipkt<<")";
6990            }
6991        }
6992    
6993    RunHeaderEvent *run  = 0;  //  -----------------------
6994    EventHeader    *hrun = 0;  //  Check missing packets:
6995    rh->SetBranchAddress("RunHeader", &run);  //  -----------------------
6996    rh->SetBranchAddress("Header", &hrun);  //    Readout order:
6997    rh->GetEntry(irun);  //    ------------------
6998    //     cout << classname << " "<<eh->GetPscuHeader()->GetOrbitalTime() << " Run " << hrun->GetPscuHeader()->GetOrbitalTime() <<endl;  //    DSP   packet board
6999    //    ------------------
7000    if( OBT(hrun->GetPscuHeader()->GetOrbitalTime()) < OBT(eh->GetPscuHeader()->GetOrbitalTime())){  //    12    0      1
7001      if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) no runs after calib (2) -- cannot validate :-( "<<endl;  //    10    1      1
7002      return 0; // :-(  //     8    2      1
7003    }  //     4    3      1
7004        //     6    4      1
7005    if( !run->RM_ACQ_AFTER_CALIB ){  //     2    5      1
7006      if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) RM_ACQ_AFTER_CALIB=0    -- cannot validate :-( "<<endl;  //    ------------------
7007      return 0; // :-(  //    11    0      2
7008    }  //     9    1      2
7009    //     7    2      2
7010    //     3    3      2
7011    //     5    4      2
7012    //     1    5      2
7013    //    ------------------
7014    //  -------------------------------------------------
7015    //  Check if it is first or second calibration packet
7016    //  -------------------------------------------------
7017        UInt_t build=0;
7018        UInt_t base=0;
7019        UInt_t mask=0;
7020        if(classname.Contains("CalibTrk1Event")){
7021            base=12;
7022            mask=0x03F000;
7023        }
7024        if(classname.Contains("CalibTrk2Event")){
7025            base=18;
7026            mask=0xFC0000;
7027        }
7028    //  ----------------------------------------------------
7029    //  Count number of valid packets and set build variable
7030    //  ----------------------------------------------------
7031        if(IsDebug())cout <<endl<< " DSP: ";
7032        Int_t  npkts=0;
7033        for(Int_t ipkt=0; ipkt<6; ipkt++){
7034            if(caltrk->DSPnumber[ipkt]>0 && caltrk->DSPnumber[ipkt]<=12){
7035                if(IsDebug())cout <<" "<<caltrk->DSPnumber[ipkt];
7036                npkts++;
7037                build = build | ( 1<<(base+vorder[caltrk->DSPnumber[ipkt]-1]) );
7038    //          cout << caltrk->DSPnumber[ipkt]
7039            };
7040        }
7041        if(IsDebug())cout << " ==> "<< hex << build << dec;
7042    //  ----------------------------------------------------
7043    //  If the number of valid packets is 6, ok exit...
7044    //  ----------------------------------------------------
7045        if( npkts==6 ){
7046            return validate; // exit
7047        }
7048    ////////////////////////////////////////////////////////
7049    //  ...otherwise there might be some missing packets
7050    //
7051    //  In this case check the acq configuration
7052    //  (some DSPs might be excluded from acquisition)
7053    ////////////////////////////////////////////////////////
7054    
7055        if(!eh || !file || (file&&file->IsZombie()) ){
7056            if ( IsDebug() )cout << " *** MISSING VIEW *** eh="<<eh<<" file="<<file<<" cannot validate"<<endl;
7057            return (0);
7058        }
7059        
7060    //  -----------------------------------------------
7061    //  retrieve the first run header after calib
7062    //  -----------------------------------------------
7063        
7064        PacketType *pctp;
7065        EventCounter *cod;
7066        cod = eh->GetCounter();
7067        Int_t irun = cod->Get(pctp->RunHeader);
7068        TTree *rh=(TTree*)file->Get("RunHeader");
7069        if ( !rh || rh->IsZombie() ) throw -17;
7070        if( rh->GetEntries() <= irun ){
7071            if ( IsDebug() ) cout << " *** MISSING-PKT *** no runs after calib (1) -- cannot validate :-( "<<endl;
7072            return 0; // :-(
7073        }
7074        RunHeaderEvent *run  = 0;
7075        EventHeader    *hrun = 0;
7076        rh->SetBranchAddress("RunHeader", &run);
7077        rh->SetBranchAddress("Header", &hrun);
7078        rh->GetEntry(irun);    
7079        if( OBT(hrun->GetPscuHeader()->GetOrbitalTime()) < OBT(eh->GetPscuHeader()->GetOrbitalTime())){
7080            if ( IsDebug() ) cout << " *** MISSING-PKT *** no runs after calib (2) -- cannot validate :-( "<<endl;
7081            return 0; // :-(
7082        }
7083    
7084    UInt_t dtime = OBT(hrun->GetPscuHeader()->GetOrbitalTime()) - OBT(eh->GetPscuHeader()->GetOrbitalTime());      UInt_t dtime = OBT(hrun->GetPscuHeader()->GetOrbitalTime()) - OBT(eh->GetPscuHeader()->GetOrbitalTime());
7085    if( dtime > timeaftercalib ){      if( dtime > timeaftercalib ){
7086      if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) run after calib too far ( "<<dtime<<"ms ) -- cannot validate :-( "<<endl;          if ( IsDebug() ) cout << " *** MISSING-PKT *** run after calib too far ( "<<dtime<<"ms ) -- cannot validate :-( "<<endl;
7087      return 0; // :-(          return 0; // :-(
7088    }      }
       
7089    
7090        if ( IsDebug() ) cout <<endl<< " ACQ_BUILD_INFO ==> "<<hex<<(run->ACQ_BUILD_INFO & mask)<<dec;
7091    
7092        if( (run->ACQ_BUILD_INFO & mask) != build ){
7093            validate=0; // :-(
7094            cout <<endl<< " *** MISSING-PKT *** packet mismatch: ACQ_BUILD_INFO="<<hex<<(run->ACQ_BUILD_INFO&mask)<<" != "<<build<<dec;
7095        };
7096    
7097        return validate;
7098    
   if( (run->ACQ_BUILD_INFO & mask) != build ){  
     if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) ACQ_BUILD_INFO= >>> "<<hex << (run->ACQ_BUILD_INFO&mask) << " != "<< build << dec<<endl;  
     return 0; // :-(  
   }  
   return 1; // :-)  
7099    
7100  }  }
7101    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.9

  ViewVC Help
Powered by ViewVC 1.1.23