/[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.15 by mocchiut, Thu Dec 4 09:00:18 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 99  PamelaDBOperations::PamelaDBOperations(T Line 101  PamelaDBOperations::PamelaDBOperations(T
101    if (INSERT_RAW) SetRawName(filerawname);    if (INSERT_RAW) SetRawName(filerawname);
102    //    //
103    INSERT_ROOT = !filerootname.IsNull();    INSERT_ROOT = !filerootname.IsNull();
104      if ( INSERT_ROOT ) this->SetRootName(filerootname);
105    this->SetOrbitNo(dwinput);    this->SetOrbitNo(dwinput);
106    //    //
107    this->SetID_RAW(0);    this->SetID_RAW(0);
# Line 138  void PamelaDBOperations::OpenL0File(TStr Line 141  void PamelaDBOperations::OpenL0File(TStr
141        TString chfile;        TString chfile;
142        UInt_t ridn = 0;        UInt_t ridn = 0;
143        qu.str("");        qu.str("");
144        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 << ";";
145        if ( debug ) printf(" chewbacca: query is %s \n",qu.str().c_str());        if ( debug ) printf(" chewbacca: query is %s \n",qu.str().c_str());
146        result = conn->Query(qu.str().c_str());        result = conn->Query(qu.str().c_str());
147        if ( result ){        if ( result ){
# Line 149  void PamelaDBOperations::OpenL0File(TStr Line 152  void PamelaDBOperations::OpenL0File(TStr
152            chpktmax = (UInt_t)atoll(row->GetField(2));            chpktmax = (UInt_t)atoll(row->GetField(2));
153            chobtmin = (UInt_t)atoll(row->GetField(3));            chobtmin = (UInt_t)atoll(row->GetField(3));
154            chobtmax = (UInt_t)atoll(row->GetField(4));            chobtmax = (UInt_t)atoll(row->GetField(4));
155              chiby = (TString)(row->GetField(5));
156          } else {          } else {
157            throw -84;            throw -84;
158          };          };
# Line 163  void PamelaDBOperations::OpenL0File(TStr Line 167  void PamelaDBOperations::OpenL0File(TStr
167        if ( result2 ){        if ( result2 ){
168          row2 = result2->Next();          row2 = result2->Next();
169          if ( row2 ){          if ( row2 ){
170            chpath = (TString)gSystem->ExpandPathName(row2->GetField(0))+'/';            if ( KEEPENV ){
171                chpath = (TString)(row2->GetField(0))+'/';
172              } else {
173                chpath = (TString)gSystem->ExpandPathName(row2->GetField(0))+'/';
174              };
175            chfile = (TString)(row2->GetField(1));            chfile = (TString)(row2->GetField(1));
176            chobtts = (UInt_t)atoll(row2->GetField(2));            chobtts = (UInt_t)atoll(row2->GetField(2));
177            chlastts = (UInt_t)atoll(row2->GetField(3));            chlastts = (UInt_t)atoll(row2->GetField(3));
# Line 182  void PamelaDBOperations::OpenL0File(TStr Line 190  void PamelaDBOperations::OpenL0File(TStr
190          throw -85;          throw -85;
191        };        };
192        filerootname = chpath + chfile;// + ".root";        filerootname = chpath + chfile;// + ".root";
       if ( debug ) printf(" chewbacca: filename is %s \n",filerootname.Data());  
193      };      };
194      this->SetRootName(filerootname);      this->SetRootName(filerootname);
     file = TFile::Open(this->GetRootName().Data());  
   } else {  
     this->SetRootName("");  
195    };    };
196      if ( debug ) printf(" Filename is %s \n",filerootname.Data());
197      file = TFile::Open(this->GetRootName().Data());
198      //  } else {
199      //    this->SetRootName("");
200      //    this->SetRootName(filerootname);
201      //  };
202  }  }
203    
204  //  //
# Line 388  void PamelaDBOperations::SetOrbitNo(UInt Line 398  void PamelaDBOperations::SetOrbitNo(UInt
398      return;      return;
399    };    };
400    //    //
401    TString name = this->GetRootFile();    if ( !chewbacca ){
402    Int_t nlength = name.Length();      TString name = this->GetRootFile();
403    if ( nlength < 5 ) return;      Int_t nlength = name.Length();
404    TString dwo = 0;      if ( nlength < 5 ){
405    for (Int_t i = 0; i<5; i++){        if ( IsDebug() ) printf(" Agh problems determining the orbit number! name = %s \n",name.Data());
406      dwo.Append(name[i],1);        return;
407    };      };
408    if ( dwo.IsDigit() ){      TString dwo = 0;
409      dworbit = (UInt_t)dwo.Atoi();      for (Int_t i = 0; i<5; i++){
   } else {  
     dwo="";  
     for (Int_t i = 8; i<13; i++){  
410        dwo.Append(name[i],1);        dwo.Append(name[i],1);
411      };          };
412      if ( dwo.IsDigit() ) dworbit = (UInt_t)dwo.Atoi();      if ( dwo.IsDigit() ){
413          dworbit = (UInt_t)dwo.Atoi();
414        } else {
415          dwo="";
416          for (Int_t i = 8; i<13; i++){
417            dwo.Append(name[i],1);
418          };    
419          if ( dwo.IsDigit() ) dworbit = (UInt_t)dwo.Atoi();
420        };
421        if ( IsDebug() ) printf(" Downlink orbit is %i (dwo = %s) \n",dworbit,dwo.Data());
422    };    };
   if ( IsDebug() ) printf(" Downlink orbit is %i (dwo = %s) \n",dworbit,dwo.Data());  
423    return;    return;
424  };  };
425    
# Line 435  TString PamelaDBOperations::GetRawPath() Line 450  TString PamelaDBOperations::GetRawPath()
450    
451  TString PamelaDBOperations::GetRootPath(){  TString PamelaDBOperations::GetRootPath(){
452    if ( STATIC ){    if ( STATIC ){
453      return((TString)gSystem->DirName(filerootname.Data())+'/');      return((TString)gSystem->DirName(this->GetRootName().Data())+'/');
454    } else {    } else {    
455      return((TString)gSystem->ExpandPathName("$PAM_L0")+'/');      if ( KEEPENV ){
456          return((TString)gSystem->ExpandPathName(gSystem->DirName(filerootname.Data()))+'/');
457        } else {
458          return((TString)gSystem->ExpandPathName("$PAM_L0")+'/');
459        };
460    };    };
461  };  };
462    
# Line 649  Int_t PamelaDBOperations::SetUpperLimits Line 668  Int_t PamelaDBOperations::SetUpperLimits
668      UInt_t tjump = 50000;      UInt_t tjump = 50000;
669      //UInt_t tjump = 100;      //UInt_t tjump = 100;
670      while ( tjump > 0 ){      while ( tjump > 0 ){
671        pktlast = numeric_limits<UInt_t>::max();        //      pktlast = numeric_limits<UInt_t>::max();
672        while ( pktlast > chpktmax && (Int_t)(nevent-1-it) >= 0 ){        pktlast = chpktmax + 1;
673          while ( PKT(pktlast) > PKT(chpktmax) && (Int_t)(nevent-1-it) >= 0 ){
674          if ( (Int_t)(nevent-1-it) >= 0 ){          if ( (Int_t)(nevent-1-it) >= 0 ){
675            T->GetEntry(nevent-1-it);            T->GetEntry(nevent-1-it);
676            ph = eh->GetPscuHeader();            ph = eh->GetPscuHeader();
# Line 658  Int_t PamelaDBOperations::SetUpperLimits Line 678  Int_t PamelaDBOperations::SetUpperLimits
678          } else {          } else {
679            pktlast = chpktmax + 1;            pktlast = chpktmax + 1;
680          };          };
681          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));
682          it += tjump;          it += tjump;
683        };        };
684        if ( tjump > 1 ) it -= 2*tjump;        if ( tjump > 1 ) it -= 2*tjump;
# Line 682  Int_t PamelaDBOperations::SetUpperLimits Line 702  Int_t PamelaDBOperations::SetUpperLimits
702      tjump = 50000;      tjump = 50000;
703      //tjump = 100;      //tjump = 100;
704      while ( tjump > 0 ){      while ( tjump > 0 ){
705        pktlast = 0;        //      pktlast = 0;
706        while ( pktlast < chpktmin && it < (Int_t)nevent ){        pktlast = chpktmin - 1;
707          if ( debug ) printf("LLlook for down %i %i %llu %llu \n",it,pktlast,PKT(pktlast),PKT(chpktmin));
708          while ( PKT(pktlast) < PKT(chpktmin) && it < (Int_t)nevent ){
709          if ( it < (Int_t)nevent ){          if ( it < (Int_t)nevent ){
710            T->GetEntry(it);            T->GetEntry(it);
711            ph = eh->GetPscuHeader();            ph = eh->GetPscuHeader();
# Line 1125  UInt_t PamelaDBOperations::AssignRunID() Line 1147  UInt_t PamelaDBOperations::AssignRunID()
1147    stringstream   oss;    stringstream   oss;
1148    //      //  
1149    oss.str("");    oss.str("");
1150    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.
1151        if ( !strcmp(tag.Data(),"NONE") ){
1152          oss << "INSERT INTO _RUNID_GEN VALUES (NULL,'"<< chiby.Data() <<"');";
1153        } else {
1154          oss << "INSERT INTO _RUNID_GEN VALUES (NULL,'"<< tag.Data() <<"');";
1155        };
1156      } else {
1157        oss << "INSERT INTO _RUNID_GEN VALUES (NULL,'"<< tag.Data() <<"');";
1158      };
1159    result = conn->Query(oss.str().c_str());    result = conn->Query(oss.str().c_str());
1160    if ( !result ) throw -10;    if ( !result ) throw -10;
1161    oss.str("");    oss.str("");
# Line 1273  void PamelaDBOperations::LockTables(){   Line 1303  void PamelaDBOperations::LockTables(){  
1303    stringstream oss;    stringstream oss;
1304    //      //  
1305    oss.str("");    oss.str("");
1306    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;";
1307    TSQLResult *result = 0;    TSQLResult *result = 0;
1308    result = conn->Query(oss.str().c_str());    result = conn->Query(oss.str().c_str());
1309    if ( !result ) throw -10;    if ( !result ) throw -10;
# Line 1330  Long64_t PamelaDBOperations::OBT(UInt_t Line 1360  Long64_t PamelaDBOperations::OBT(UInt_t
1360    //    //
1361    //  if ( IsDebug() ) printf(" obt conversion: obt is %u obtfirst is %u  (numeric_limits<UInt_t>::max()/2) is %u  \n",obt,pobtfirst,(UInt_t)(numeric_limits<UInt_t>::max()/2));    //  if ( IsDebug() ) printf(" obt conversion: obt is %u obtfirst is %u  (numeric_limits<UInt_t>::max()/2) is %u  \n",obt,pobtfirst,(UInt_t)(numeric_limits<UInt_t>::max()/2));
1362    //    //
1363    if ( obt < (pobtfirst/2) && pobtfirst > (numeric_limits<UInt_t>::max()/2) ){    if ( obt < ((Long64_t)pobtfirst/2) && pobtfirst > (numeric_limits<UInt_t>::max()/2) ){
1364      //    if ( IsDebug() ) printf(" rise up obt %lld \n",(Long64_t)obt+(Long64_t)numeric_limits<UInt_t>::max());      //    if ( IsDebug() ) printf(" rise up obt %lld \n",(Long64_t)obt+(Long64_t)numeric_limits<UInt_t>::max());
1365      return((Long64_t)obt+(Long64_t)numeric_limits<UInt_t>::max());      return((Long64_t)obt+(Long64_t)numeric_limits<UInt_t>::max());
1366    };    };
# Line 1377  void PamelaDBOperations::FillClass(Bool_ Line 1407  void PamelaDBOperations::FillClass(Bool_
1407    UInt_t lastPkt = 0;    UInt_t lastPkt = 0;
1408    UInt_t rhtime = 0;    UInt_t rhtime = 0;
1409    UInt_t rttime = 0;    UInt_t rttime = 0;
1410      //
1411      if ( IsDebug() ) printf(" A firstev %i lastev %i nevents %i \n",firstev,lastev,lastev-firstev+1);
1412      //
1413    if ( !mishead ){    if ( !mishead ){
1414      codh = ehh->GetCounter();      codh = ehh->GetCounter();
1415      if ( lastev+1 == firstev || (lastev == firstev && lastev != -1) ){            if ( (lastev+1 == firstev && lastev != -1) || (lastev == firstev && lastev != -1) ){      
1416          if ( IsDebug() ) printf(" B firstev %i lastev %i nevents %i \n",firstev,lastev,lastev-firstev+1);
1417        firstev = 1;        firstev = 1;
1418        lastev = 0;        lastev = 0;
1419      } else {      } else {
# Line 1392  void PamelaDBOperations::FillClass(Bool_ Line 1426  void PamelaDBOperations::FillClass(Bool_
1426    };    };
1427    if ( !mistrail ){    if ( !mistrail ){
1428      codt = eht->GetCounter();      codt = eht->GetCounter();
1429      if ( lastev+1 == firstev || (lastev == firstev && lastev != -1)){            if ( (lastev+1 == firstev && lastev != -1) || (lastev == firstev && lastev != -1)){      
1430          if ( IsDebug() ) printf(" C firstev %i lastev %i nevents %i \n",firstev,lastev,lastev-firstev+1);
1431        lastev = 0;        lastev = 0;
1432        firstev = lastev+1;        firstev = lastev+1;
1433      } else {      } else {
# Line 1409  void PamelaDBOperations::FillClass(Bool_ Line 1444  void PamelaDBOperations::FillClass(Bool_
1444    if ( mishead ) {    if ( mishead ) {
1445      glrun->Set_GL_RUNH0();      glrun->Set_GL_RUNH0();
1446      //      //
1447      if ( lastev+1 == firstev || (lastev == firstev && lastev != -1) ){            if ( (lastev+1 == firstev && lastev != -1) || (lastev == firstev && lastev != -1) ){      
1448        firstObt = lastObt;        firstObt = lastObt;
1449        firstPkt = lastPkt;        firstPkt = lastPkt;
1450        rhtime = rttime;        rhtime = rttime;
# Line 1428  void PamelaDBOperations::FillClass(Bool_ Line 1463  void PamelaDBOperations::FillClass(Bool_
1463    if ( mistrail ){    if ( mistrail ){
1464      glrun->Set_GL_RUNT0();      glrun->Set_GL_RUNT0();
1465      //      //
1466      if ( lastev+1 == firstev || (lastev == firstev && lastev != -1) ){            if ( (lastev+1 == firstev && lastev != -1) || (lastev == firstev && lastev != -1) ){      
1467        lastObt = firstObt;        lastObt = firstObt;
1468        lastPkt = firstPkt;        lastPkt = firstPkt;
1469        rttime = rhtime;        rttime = rhtime;
# Line 1463  void PamelaDBOperations::FillClass(Bool_ Line 1498  void PamelaDBOperations::FillClass(Bool_
1498   * Insert a new row into GL_RAW table.   * Insert a new row into GL_RAW table.
1499   */   */
1500  Int_t PamelaDBOperations::insertPamelaRawFile(){  Int_t PamelaDBOperations::insertPamelaRawFile(){
1501    
1502        //
1503        Bool_t idr =  this->SetID_RAW();
1504        if ( idr ) return(1);
1505    
1506        GL_RAW glraw = GL_RAW();
1507        
1508        glraw.PATH = GetRawPath();
1509        glraw.NAME = GetRawFile();
1510        //    glraw.BOOT_NUMBER = 0;//???
1511        glraw.BOOT_NUMBER = this->GetBOOTnumber();
1512        
1513        if( insertPamelaRawFile(&glraw) )return(1);
1514        //
1515        idr =  this->SetID_RAW();
1516        if ( !idr ) throw -11;
1517        
1518        return(0);
1519    }
1520    /**
1521     * Insert a new row into GL_RAW table.
1522     */
1523    Int_t PamelaDBOperations::insertPamelaRawFile(GL_RAW *glraw){
1524    //    //
1525    stringstream oss;      if(!glraw)return(1);//?? ok I think
1526    //      //
1527    Bool_t idr =  this->SetID_RAW();      stringstream oss;
1528    if ( idr ) return(1);      //
1529    //      oss.str("");
1530    oss.str("");      if ( STATIC ){
1531    if ( STATIC ){          oss << "INSERT INTO GL_RAW (PATH, NAME) VALUES ('"
1532      oss << "INSERT INTO GL_RAW (PATH, NAME) VALUES ('"              << glraw->PATH << "', '" << glraw->NAME << "')";
1533          << this->GetRawPath().Data() << "', '" << this->GetRawFile().Data() << "')";      } else {
1534    } else {          oss << "INSERT INTO GL_RAW (PATH, NAME) VALUES ('$PAM_RAW', '" << glraw->NAME << "')";
1535      oss << "INSERT INTO GL_RAW (PATH, NAME) VALUES ('$PAM_RAW', '" << this->GetRawFile().Data() << "')";      };
1536    };      if ( debug ) cout <<oss.str().c_str() <<endl;
1537    if ( conn->Query(oss.str().c_str()) == 0 ) throw -4;      if ( conn->Query(oss.str().c_str()) == 0 ) throw -4;
1538    //      //
1539    idr =  this->SetID_RAW();      oss.str("");
1540    if ( !idr ) throw -11;      oss << "SELECT ID FROM GL_RAW WHERE NAME=\""<<glraw->NAME<<"\";";
1541    //      if ( debug ) cout << oss.str().c_str()<<endl;
1542    return(0);      if ( conn->Query(oss.str().c_str()) == 0 ) throw -4;
1543        //
1544        TSQLResult *result = 0;
1545        TSQLRow    *row    = 0;
1546        result = conn->Query(oss.str().c_str());
1547        if ( result == NULL ) throw -4;
1548        row = result->Next();
1549        if ( !row ) return(1);
1550        glraw->ID = (UInt_t)atoll(row->GetField(0));
1551        if ( debug ) printf(" The ID of the RAW file is %u \n",glraw->ID);
1552        delete result;
1553        delete row;
1554        //
1555        return(0);
1556  }  }
1557    
1558    
# Line 1514  Int_t PamelaDBOperations::insertPamelaGL Line 1585  Int_t PamelaDBOperations::insertPamelaGL
1585      result = conn->Query(oss.str().c_str());      result = conn->Query(oss.str().c_str());
1586      if ( !result ) throw -10;      if ( !result ) throw -10;
1587      row = result->Next();      row = result->Next();
1588        if ( !row ) throw -92;
1589      idresof = (UInt_t)atoll(row->GetField(0));      idresof = (UInt_t)atoll(row->GetField(0));
1590      existsts = true;      existsts = true;
1591      goto eout;      goto eout;
# Line 1793  Int_t PamelaDBOperations::insertPamelaGL Line 1865  Int_t PamelaDBOperations::insertPamelaGL
1865   * 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.
1866   */   */
1867  Int_t PamelaDBOperations::insertPamelaRootFile(){  Int_t PamelaDBOperations::insertPamelaRootFile(){
1868    stringstream oss;  
1869    TSQLResult *result = 0;      stringstream oss;
1870    TSQLRow    *row    = 0;      TSQLResult *result = 0;
1871    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;  
1872      //      //
1873      row = result->Next();      // ----------------------
1874        // determine the timesync
1875        // ----------------------
1876        UInt_t idtimesync = 0;
1877      //      //
1878      if ( !row ) throw -3;      if ( chewbacca ){
1879      idtimesync = (UInt_t)atoll(row->GetField(0));          oss.str("");
1880    } else {          oss << " SELECT ID FROM GL_TIMESYNC where TIMESYNC="<<chlastts<<" AND OBT0="<<chobtts*1000<<" limit 1;";
1881      oss.str("");          if ( debug ) printf(" %s \n",oss.str().c_str());
1882      if ( STATIC ){          result = conn->Query(oss.str().c_str());
1883        oss << " SELECT COUNT(GL_ROOT.ID_RAW),GL_RAW.ID,GL_ROOT.ID FROM GL_RAW "          //
1884            << " LEFT JOIN GL_ROOT "          if ( !result ) throw -3;
1885            << " ON GL_RAW.ID = GL_ROOT.ID_RAW "          //
1886            << " WHERE GL_RAW.PATH = '" << this->GetRawPath().Data() << "' AND "          row = result->Next();
1887            << " GL_RAW.NAME = '" << this->GetRawFile().Data() << "' GROUP BY GL_RAW.ID ";          //
1888            if ( !row ) throw -3;
1889            idtimesync = (UInt_t)atoll(row->GetField(0));
1890      } else {      } else {
1891        oss << " SELECT COUNT(GL_ROOT.ID_RAW),GL_RAW.ID,GL_ROOT.ID FROM GL_RAW "          oss.str("");
1892            << " LEFT JOIN GL_ROOT "          if ( STATIC ){
1893            << " ON GL_RAW.ID = GL_ROOT.ID_RAW "              oss << " SELECT COUNT(GL_ROOT.ID_RAW),GL_RAW.ID,GL_ROOT.ID FROM GL_RAW "
1894            << " WHERE GL_RAW.PATH = '$PAM_RAW' AND "                  << " LEFT JOIN GL_ROOT "
1895            << " GL_RAW.NAME = '" << this->GetRawFile().Data() << "' GROUP BY GL_RAW.ID ";                  << " ON GL_RAW.ID = GL_ROOT.ID_RAW "
1896                    << " WHERE GL_RAW.PATH = '" << this->GetRawPath().Data() << "' AND "
1897                    << " GL_RAW.NAME = '" << this->GetRawFile().Data() << "' GROUP BY GL_RAW.ID ";
1898            } else {
1899                oss << " SELECT COUNT(GL_ROOT.ID_RAW),GL_RAW.ID,GL_ROOT.ID FROM GL_RAW "
1900                    << " LEFT JOIN GL_ROOT "
1901                    << " ON GL_RAW.ID = GL_ROOT.ID_RAW "
1902                    << " WHERE GL_RAW.PATH = '$PAM_RAW' AND "
1903                    << " GL_RAW.NAME = '" << this->GetRawFile().Data() << "' GROUP BY GL_RAW.ID ";
1904            };
1905            result = conn->Query(oss.str().c_str());
1906            //
1907            if ( !result ) throw -12;
1908            //
1909            row = result->Next();
1910            //
1911            if ( !row ) throw -10;
1912            if ( row != NULL && (UInt_t)atoll(row->GetField(0))>0 ){
1913                idroot = (UInt_t)atoll(row->GetField(2));
1914                delete row;
1915                delete result;
1916                return(1);
1917            };
1918            //
1919            // determine which timesync has to be used
1920            //
1921            oss.str("");
1922            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;";
1923            result = conn->Query(oss.str().c_str());
1924            //
1925            if ( !result ) throw -3;
1926            //
1927            row = result->Next();
1928            //
1929            if ( !row ) throw -3;
1930            idtimesync = (UInt_t)atoll(row->GetField(0));
1931      };      };
1932      result = conn->Query(oss.str().c_str());      
1933      //      delete row;
1934      if ( !result ) throw -12;      delete result;
1935      //  
1936      row = result->Next();      // ----------------------
1937      //      // insert root file
1938      if ( !row ) throw -10;      // ----------------------
1939      if ( row != NULL && (UInt_t)atoll(row->GetField(0))>0 ){  
1940        idroot = (UInt_t)atoll(row->GetField(2));      GL_ROOT glroot = GL_ROOT();
1941        return(1);      
1942        glroot.ID_RAW = GetID_RAW();
1943        glroot.ID_TIMESYNC = idtimesync;
1944        if ( STATIC ){
1945          glroot.PATH = GetRootPath();
1946        } else {
1947          if ( KEEPENV ){
1948            glroot.PATH = gSystem->DirName(filerootname.Data());
1949          } else {
1950            glroot.PATH = "$PAM_L0";
1951          };
1952      };      };
1953      //      glroot.NAME = GetRootFile();
1954      // determine which timesync has to be used  
1955      //      if ( insertPamelaRootFile(&glroot) )return 1;
1956      oss.str("");  
1957      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);
1958      result = conn->Query(oss.str().c_str());      
1959      //  
1960      if ( !result ) throw -3;      return (0);
1961      //  }
1962      row = result->Next();  /**
1963      //   * Insert all the new rows into GL_ROOT.
1964      if ( !row ) throw -3;   * The raw file indicates in the parameters should be already been stored in the database.
1965      idtimesync = (UInt_t)atoll(row->GetField(0));   */
1966    };  Int_t PamelaDBOperations::insertPamelaRootFile(GL_ROOT *glroot){
1967      stringstream oss;
1968      TSQLResult *result = 0;
1969      TSQLRow    *row    = 0;
1970      //
1971    //    //
1972    oss.str("");    oss.str("");
1973    if ( STATIC ){    oss << "INSERT INTO GL_ROOT (ID_RAW, ID_TIMESYNC,PATH, NAME) VALUES ('"
1974      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() << "')";  
   };  
1975    //    //
1976    if ( debug ) printf(" query is %s \n",oss.str().c_str());    if ( debug ) printf("%s \n",oss.str().c_str());
1977    if (conn->Query(oss.str().c_str()) == 0) throw -4;    if (conn->Query(oss.str().c_str()) == 0) throw -4;
1978    //    //
1979    delete result;    delete result;
1980    //    //
1981    oss.str("");    oss.str("");
1982    //  oss << "SELECT ID FROM GL_ROOT WHERE ID_RAW=" << this->GetID_RAW() << ";";    //  oss << "SELECT ID FROM GL_ROOT WHERE ID_RAW=" << this->GetID_RAW() << ";";
1983    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() <<"';";  
   };  
1984    //    //
1985    if ( debug ) printf(" query is %s \n",oss.str().c_str());    if ( debug ) printf("%s \n",oss.str().c_str());
1986    result = conn->Query(oss.str().c_str());    result = conn->Query(oss.str().c_str());
1987    if ( !result ) throw -12;    if ( !result ) throw -12;
1988    row = result->Next();    row = result->Next();
1989    if ( !row ) throw -3;    if ( !row ) throw -3;
1990    this->SetID_ROOT((UInt_t)atoll(row->GetField(0)));  
1991    if ( debug ) printf(" The ID of the ROOT file is %u \n",this->GetID_ROOT());    glroot->ID = (UInt_t)atoll(row->GetField(0));
1992    
1993      if ( debug ) printf(" The ID of the ROOT file is %u \n",glroot->ID);
1994    //    //
1995    delete result;    delete result;
1996    //    //
# Line 2216  Int_t PamelaDBOperations::insertPamelaRU Line 2326  Int_t PamelaDBOperations::insertPamelaRU
2326                //                //
2327                this->HandleRunFragments(true,true,chminentry,(evbefh));                this->HandleRunFragments(true,true,chminentry,(evbefh));
2328                //                //
2329                  // what about pth=ptht-1
2330              };              };
2331            };            };
2332            //            //
# Line 2278  Int_t PamelaDBOperations::insertPamelaRU Line 2389  Int_t PamelaDBOperations::insertPamelaRU
2389          //      if ( ptt+1 == rtev){            //      if ( ptt+1 == rtev){  
2390          if ( conptt+1 == nrtev ){            if ( conptt+1 == nrtev ){  
2391            //    if ( conptt+1 == (nrtev+nrtbef )){              //    if ( conptt+1 == (nrtev+nrtbef )){  
2392              if ( IsDebug() ) printf(" >>>>>>>>>>> %i %u %i %u \n",ptht,rhev,nrtev,conptt);
2393            ptht++;            ptht++;
2394            if ( ptht < rhev ){            if ( ptht < rhev ){
2395              rh->GetEntry(ptht);              rh->GetEntry(ptht);
2396                //pth++;
2397                //if ( pth < rhev ){
2398                //rh->GetEntry(pth);
2399              phh = ehh->GetPscuHeader();              phh = ehh->GetPscuHeader();
2400              pkth = phh->GetCounter();              pkth = phh->GetCounter();
2401              obth = phh->GetOrbitalTime();              obth = phh->GetOrbitalTime();
# Line 2304  Int_t PamelaDBOperations::insertPamelaRU Line 2419  Int_t PamelaDBOperations::insertPamelaRU
2419              if ( (UInt_t)evbeft < upperentry-1 && upperentry>0 ){              if ( (UInt_t)evbeft < upperentry-1 && upperentry>0 ){
2420                if ( IsDebug() ) printf(" Piece of run at the end of the file with NO RUNHEADER! evbeft %u upperentry-1 %u \n",(UInt_t)evbeft,upperentry-1);                if ( IsDebug() ) printf(" Piece of run at the end of the file with NO RUNHEADER! evbeft %u upperentry-1 %u \n",(UInt_t)evbeft,upperentry-1);
2421                //                //
2422                if ( (ptt-1) < 0 ) throw -15; // should never arrive here!                //              if ( (ptt-1) < 0 ) throw -15; // should never arrive here!
2423                rt->GetEntry(ptt-1);                if ( (rtev-1) < 0 || ptt < 0 ) throw -15; // should never arrive here!
2424                  //              rt->GetEntry(ptt-1);
2425                  rt->GetEntry(rtev-1);
2426                cod = eht->GetCounter();                cod = eht->GetCounter();
2427                tcod = (UInt_t)cod->Get(pctp->Physics);                tcod = (UInt_t)cod->Get(pctp->Physics)+1;
2428                evbefh = TMath::Max(chminentry,tcod);                evbefh = TMath::Max(chminentry,tcod);
2429                //            evbefh = cod->Get(pctp->Physics);                //            evbefh = cod->Get(pctp->Physics);
2430                rt->GetEntry(ptt);                rt->GetEntry(ptt);
# Line 3141  Bool_t PamelaDBOperations::IsRunConsiste Line 3258  Bool_t PamelaDBOperations::IsRunConsiste
3258        //        //
3259      } else {      } else {
3260        //        //
3261        if ( IsDebug() ) printf(" There are no-phyics packets inside the run!\n");        if ( IsDebug() ) printf(" There are no-physics packets inside the run!\n");
3262        //        //
3263        // HERE WE MUST HANDLE THAT RUNS AND GO BACK        // HERE WE MUST HANDLE THAT RUNS AND GO BACK
3264        //        //
# Line 3151  Bool_t PamelaDBOperations::IsRunConsiste Line 3268  Bool_t PamelaDBOperations::IsRunConsiste
3268        UInt_t check = 0;        UInt_t check = 0;
3269        UInt_t lastevtemp = lastev;        UInt_t lastevtemp = lastev;
3270        UInt_t firstevno = firstev;        UInt_t firstevno = firstev;
3271          UInt_t rhchko=0;
3272          UInt_t rhchk=0;
3273        //        //
3274        for (UInt_t i=firstev; i<=lastev; i++){        for (UInt_t i=firstev; i<=lastev; i++){
3275          //          //
# Line 3159  Bool_t PamelaDBOperations::IsRunConsiste Line 3278  Bool_t PamelaDBOperations::IsRunConsiste
3278          //          //
3279          check = 0;          check = 0;
3280          //          //
3281    
3282            // if we have a runheader set lastev then exit
3283            //
3284          for(Iter = packetsNames.begin(); Iter != packetsNames.end(); Iter++){          for(Iter = packetsNames.begin(); Iter != packetsNames.end(); Iter++){
3285            if ( strcmp(*Iter,"Physics") ) check += code->Get(GetPacketType(*Iter));            if ( strcmp(*Iter,"Physics") ) check += code->Get(GetPacketType(*Iter));
3286          };          };
3287            // check here if we have a runheader
3288            rhchko = rhchk;  
3289            rhchk = code->Get(GetPacketType("RunHeader"));    
3290          //          //
3291          if ( checkfirst < check || i == lastev ){          if ( checkfirst < check || i == lastev ){
3292            //            //
# Line 3245  Bool_t PamelaDBOperations::IsRunConsiste Line 3370  Bool_t PamelaDBOperations::IsRunConsiste
3370              //      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
3371              //              //
3372    
   
   
   
   
   
   
   
   
   
   
   
   
3373              mishead = true;              mishead = true;
3374    
3375    
# Line 3576  Bool_t PamelaDBOperations::IsRunConsiste Line 3689  Bool_t PamelaDBOperations::IsRunConsiste
3689              }; // EEE              }; // EEE
3690    
3691    
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
3692            } else {            } else {
3693              if ( !IsRunAlreadyInserted() ){              if ( !IsRunAlreadyInserted() ){
3694                glrun->SetID(this->AssignRunID());                glrun->SetID(this->AssignRunID());
# Line 3621  Bool_t PamelaDBOperations::IsRunConsiste Line 3703  Bool_t PamelaDBOperations::IsRunConsiste
3703            //            //
3704          };          };
3705          //          //
3706            if ( i > firstev ){
3707              if ( rhchko != rhchk ){
3708                if ( IsDebug() ) printf("oh oh... we have a runheader! stop here and handle later the remaining piece\n");
3709                lastev = i;
3710                return(false);
3711              };
3712            };
3713            //
3714          if ( check == checklast && i != lastev ){          if ( check == checklast && i != lastev ){
3715            lastevtemp = i - 1;            lastevtemp = i - 1;
3716            i = lastev - 1;            i = lastev - 1;
# Line 4441  Int_t PamelaDBOperations::insertCALOPULS Line 4531  Int_t PamelaDBOperations::insertCALOPULS
4531   * Fill the GL_TRK_CALIB table   * Fill the GL_TRK_CALIB table
4532   */   */
4533  void PamelaDBOperations::HandleTRK_CALIB(Bool_t pk1, Bool_t pk2){  void PamelaDBOperations::HandleTRK_CALIB(Bool_t pk1, Bool_t pk2){
4534    //      
4535    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 ){  
4536      //      //
4537      if ( IsDebug() ) printf(" Trk calibration already inserted in the DB\n");      glcal->ID         = 0;
4538      if ( PEDANTIC ) throw -80;      glcal->ID_ROOT_L0 = GetID_ROOT();
4539        glcal->EV_ROOT_CALIBTRK1 = t1;
4540        glcal->EV_ROOT_CALIBTRK2 = t2;
4541        glcal->FROM_TIME = fromtime;
4542        glcal->TO_TIME   = 0;
4543        glcal->OBT1      = obt1;
4544        glcal->OBT2      = obt2;
4545        glcal->PKT1      = pkt1;
4546        glcal->PKT2      = pkt2;
4547        glcal->BOOT_NUMBER = GetBOOTnumber();
4548        glcal->VALIDATION = valid;
4549      //      //
4550    } else {      HandleTRK_CALIB(glcal);
     //  
     // we have to insert a new calibration, check where to place it  
4551      //      //
4552      oss.str("");      delete glcal;
4553      oss << " SELECT ID,TO_TIME FROM GL_TRK_CALIB WHERE "  }
4554          << " FROM_TIME < "<< fromtime << " AND "  /**
4555          << " TO_TIME > "<< fromtime << ";";   * Fill the GL_TRK_CALIB table
4556     */
4557    void PamelaDBOperations::HandleTRK_CALIB(GL_TRK_CALIB *glcal){
4558    
4559        Bool_t pk1 = (glcal->OBT1>0&&glcal->PKT1>0);
4560        Bool_t pk2 = (glcal->OBT2>0&&glcal->PKT2>0);
4561        UInt_t boot_number = glcal->BOOT_NUMBER;
4562        UInt_t obt1 = glcal->OBT1;
4563        UInt_t obt2 = glcal->OBT2;
4564        UInt_t pkt1 = glcal->PKT1;
4565        UInt_t pkt2 = glcal->PKT2;
4566        UInt_t fromtime = glcal->FROM_TIME;
4567        UInt_t totime = 0;
4568        UInt_t idroot = glcal->ID_ROOT_L0;
4569        UInt_t t1 = glcal->EV_ROOT_CALIBTRK1;
4570        UInt_t t2 = glcal->EV_ROOT_CALIBTRK2;
4571        UInt_t valid = glcal->VALIDATION;
4572      //      //
4573      if ( IsDebug() ) printf(" Check where to place the trk calibration: query is \n %s \n",oss.str().c_str());      TSQLResult *result = 0;
4574      result = conn->Query(oss.str().c_str());      TSQLRow    *row    = 0;
4575      //      //
4576      if ( !result ) throw -4;      stringstream oss;
4577        oss.str("");
4578      //      //
     row = result->Next();  
4579      //      //
4580      if ( !row ){      if ( !pk1 && !pk2 ){
4581        //          if ( IsDebug() ) printf(" Cannot handle trk calibration with both packet missing!\n");
4582        // 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;  
       //  
4583      };      };
4584      //      //
4585      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 << "',";  
4586      //      //
4587      if ( !pk1 ){      oss.str("");
4588        oss << "NULL,";      oss << " SELECT ID FROM GL_TRK_CALIB WHERE "
4589            << " BOOT_NUMBER = "<< boot_number; //
4590        oss << " AND FROM_TIME="<<fromtime; /// NEWNEWNEW -- VA BENE ?!?!?!?!
4591        oss << " AND ( ( ";  
4592        if ( pk1 ){
4593            oss << " OBT1 = "<< obt1 << " AND "
4594                << " PKT1 = "<< pkt1
4595                << " ) OR ( ";
4596      } else {      } else {
4597        oss << "'"          oss << " PKT1 = "<< pkt2-1
4598            << t1 << "',";              << " ) OR ( ";  
4599      };      };      
4600      //      if ( pk2 ){
4601      if ( !pk2 ){          oss << " OBT2 = "<< obt2 << " AND "
4602        oss << "NULL,'";              << " PKT2 = "<< pkt2;
4603      } else {      } else {
4604        oss << "'"          oss << " PKT2 = "<< pkt1+1;
4605            << t2 << "','";      };      
4606      };      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());  
4607      //      //
4608        if ( IsDebug() ) printf(" Check if the trk calibration has already been inserted: query is \n %s \n",oss.str().c_str());
4609      result = conn->Query(oss.str().c_str());      result = conn->Query(oss.str().c_str());
4610      //      //
4611      if ( !result ) throw -4;      if ( !result ) throw -4;
4612      //      //
4613    };      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  
     //  
4614      //      //
4615      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++;  
         //  
         pret2 = t2 - 1; // EMILIANO  
         //  
         if ( t2 < nevents2 ){  
           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;  
         //      };  
   
   
4616          //          //
4617        };          if ( IsDebug() ) printf(" Trk calibration already inserted in the DB\n");
4618        //          if ( PEDANTIC ) throw -80;
       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");  
4619          //          //
4620          // running out of vector without finding the corresponding calibration, sig      } else {
         //  
         pret2 = t2;  
         obt2 = 0;  
         pkt2 = 0;  
       };  
       //  
       // The calibration is good  
       //  
       if ( this->PKT(pkt2) == this->PKT(pkt1)+1 ){  
4621          //          //
4622          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);  
4623          //          //
4624          UInt_t valid2 = ValidateTrkCalib( caltrk2, eh2 );          oss.str("");
4625          if ( IsDebug() ) cout << " pkt2 validation --> "<<valid2<<endl;          oss << " SELECT ID,TO_TIME FROM GL_TRK_CALIB WHERE "
4626          valid = valid & valid2;              << " FROM_TIME < "<< fromtime << " AND "
4627                << " TO_TIME > "<< fromtime << ";";
4628          //          //
4629          // Handle good calib          if ( IsDebug() ) printf(" Check where to place the trk calibration: query is \n %s \n",oss.str().c_str());
4630            result = conn->Query(oss.str().c_str());
4631          //          //
4632          this->HandleTRK_CALIB(true,true);          if ( !result ) throw -4;
4633          //          //
4634          // Check for missing calibtrk1          row = result->Next();
4635          //          //
4636          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 ){  
4637              //              //
4638              // handle missing calib1              // no calibrations in the db contain our calibration
4639              //              //
4640              pret2++;              if ( IsDebug() ) printf(" Calibration with fromtime lower than others to be inserted in the DB\n");
4641                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
4642              //              //
4643              obt1 = 0;              oss.str("");
4644              pkt1 = 0;              oss << " SELECT FROM_TIME FROM GL_TRK_CALIB WHERE "
4645                    << " FROM_TIME > "<< fromtime << " ORDER BY FROM_TIME ASC LIMIT 1;";
4646              //              //
4647              tr2->GetEntry(pret2);              if ( IsDebug() ) printf(" Check the upper limit for calibration: query is \n %s \n",oss.str().c_str());
4648              ph2 = eh2->GetPscuHeader();              result = conn->Query(oss.str().c_str());
             obt2 = ph2->GetOrbitalTime();    
             pkt2 = ph2->GetCounter();    
4649              //              //
4650              fromtime = this->GetAbsTime(ph2->GetOrbitalTime());              if ( !result ) throw -4;
4651              //              //
4652              valid = 0;              row = result->Next();
4653              this->HandleTRK_CALIB(false,true);              if ( !row ){
4654                    totime = numeric_limits<UInt_t>::max();
4655                } else {
4656                    totime = (UInt_t)atoll(row->GetField(0));
4657                };
4658                //
4659            } else {
4660                //
4661                // determine upper and lower limits and make space for the new calibration
4662                //
4663                totime = (UInt_t)atoll(row->GetField(1));
4664                //
4665                oss.str("");
4666                oss << " UPDATE GL_TRK_CALIB SET "  
4667                    << " TO_TIME = "<< fromtime << " WHERE "  // NOTICE: to_time is equal to from_time of the calibration before, so the interval is: [from_time,to_time[
4668                    << " ID = "<< row->GetField(0) << ";";
4669                //
4670                if ( IsDebug() ) printf(" Make space for the new trk calibration: query is \n %s \n",oss.str().c_str());
4671                result = conn->Query(oss.str().c_str());
4672                //
4673                if ( !result ) throw -4;
4674              //              //
           };  
           //  
4675          };          };
4676          //          //
4677        } else if ( this->PKT(pkt2) > this->PKT(pkt1)+1 ){          oss.str("");
4678            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) "
4679                << " VALUES (NULL,' "
4680                << idroot << "',";
4681          //          //
4682          // Check for missing calibtrk2          if ( !pk1 ){
4683                oss << "NULL,";
4684            } else {
4685                oss << "'"
4686                    << t1 << "',";
4687            };
4688          //          //
4689          if ( IsDebug() ) printf(" Missing the trk calibration2! Next one at obt %u pkt %u t2 is %u\n",obt2,pkt2,t2);          if ( !pk2 ){
4690          t2 = pret2;              oss << "NULL,'";
4691            } else {
4692                oss << "'"
4693                    << t2 << "','";
4694            };
4695          //          //
4696          // handle missing calib2          oss << fromtime << "','"
4697                << totime << "','"
4698                << obt1 << "','"
4699                << pkt1 << "','"
4700                << obt2 << "','"
4701                << pkt2 << "','"
4702                << boot_number << "','"
4703                << valid << "');";
4704          //          //
4705          obt2 = 0;          if ( IsDebug() ) printf(" Insert the new trk calibration: query is \n %s \n",oss.str().c_str());
4706          pkt2 = 0;          //
4707          valid = 0;          result = conn->Query(oss.str().c_str());
4708          this->HandleTRK_CALIB(true,false);                //
4709            if ( !result ) throw -4;
4710          //          //
       };  
       //  
     } 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;  
       //  
4711      };      };
4712      //          
4713    };      oss.str("");
4714    //      oss << " SELECT ID FROM GL_TRK_CALIB ORDER BY ID DESC LIMIT 1 ;";  
4715    // we have one more calib pkt2 !      if ( IsDebug() ) cout << oss.str().c_str() << endl;
4716    //      result = conn->Query(oss.str().c_str());
4717    t2++;      if ( !result ) throw -4;;
4718    while ( t2 < nevents2 ){      row = result->Next();
4719        if(row)glcal->ID = (UInt_t)atoll(row->GetField(0));
4720    
4721      //      //
4722      // handle missing calib1  };
4723    
4724    /**
4725     * Scan tracker calibrations packets, fill the GL_TRK_CALIB table
4726     */
4727    Int_t PamelaDBOperations::insertTRK_CALIB(){
4728        //
4729        CalibTrk1Event *caltrk1 = 0;
4730        CalibTrk2Event *caltrk2 = 0;
4731        TTree *tr1 = 0;
4732        TTree *tr2 = 0;
4733        EventHeader *eh1 = 0;
4734        PscuHeader *ph1 = 0;
4735        EventHeader *eh2 = 0;
4736        PscuHeader *ph2 = 0;
4737        //
4738        PacketType *pctp=0;
4739        EventCounter *codt2=0;
4740        //
4741        Int_t nevents1 = 0;
4742        Int_t nevents2 = 0;
4743        //
4744        fromtime = 0;
4745      //      //
     if ( IsDebug() ) printf(" t2 is %u nevents2 is %u \n",t2,nevents2);  
4746      obt1 = 0;      obt1 = 0;
4747      pkt1 = 0;      pkt1 = 0;
4748        obt2 = 0;
4749        pkt2 = 0;
4750      //      //
4751      tr2->GetEntry(t2);      tr1 = (TTree*)file->Get("CalibTrk1");
4752      ph2 = eh2->GetPscuHeader();      if ( !tr1 || tr1->IsZombie() ) throw -22;
4753      obt2 = ph2->GetOrbitalTime();        tr2 = (TTree*)file->Get("CalibTrk2");
4754      pkt2 = ph2->GetCounter();        if ( !tr2 || tr2->IsZombie() ) throw -23;
4755      //      //
4756      fromtime = this->GetAbsTime(ph2->GetOrbitalTime());      tr1->SetBranchAddress("CalibTrk1", &caltrk1);
4757      valid = 0;      tr1->SetBranchAddress("Header", &eh1);
4758      //  if ( this->PKT(pkt1) >= this->PKT(pktfirst) && this->PKT(pkt1) <= upperpkt && this->OBT(obt1) >= this->OBT(obtfirst) && this->OBT(obt1) <= upperobt ){      nevents1 = tr1->GetEntries();
4759      // EMILIANO      tr2->SetBranchAddress("CalibTrk2", &caltrk2);
4760      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);
4761        //    if ( this->PKT(pkt2) > this->PKT(pktfirst) || this->OBT(obt2) > this->OBT(obtfirst) ){      nevents2 = tr2->GetEntries();
4762        //      //
4763        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);
4764        //      //
4765        this->HandleTRK_CALIB(false,true);      t2 = -1;
4766        //      Int_t pret2 = 0;
4767      };      Int_t t2t1cal = 0;
4768        //
4769        bool MISSING_pkt1 = true;
4770        bool MISSING_pkt2 = true;
4771        int  ncalib = 0;
4772        bool try_to_recover = false;
4773      //      //
4774      t2++;      for (t1=0; t1 < nevents1; t1++){//loop over packet1
4775            //
4776            pret2 = t2;
4777            tr1->GetEntry(t1);
4778            //
4779            ph1 = eh1->GetPscuHeader();
4780            obt1 = ph1->GetOrbitalTime();  
4781            pkt1 = ph1->GetCounter();  
4782            fromtime = GetAbsTime(ph1->GetOrbitalTime());  
4783            //
4784            // chek if the packet number and obt are consistent with the other packets ???
4785            //
4786            if ( PKT(pkt1) >= PKT(pktfirst) && PKT(pkt1) <= upperpkt && OBT(obt1) >= OBT(obtfirst) && OBT(obt1) <= upperobt ){
4787                //    if ( this->PKT(pkt1) >= this->PKT(pktfirst) && this->OBT(obt1) >= this->OBT(obtfirst) ){
4788                //
4789                if ( IsDebug() ) printf("\n Trk calibration1 %u at time %u obt %u pkt %u \n",t1,fromtime,obt1,pkt1);
4790                //      
4791                valid = ValidateTrkCalib( caltrk1, eh1 );
4792                if ( IsDebug() ) cout << " pkt1 validation --> "<<valid<<endl;
4793                //
4794                // Do we have the second calibration packet?
4795                //
4796                if ( IsDebug() ) cout << " Loop over calibration2 to search associated calibration: "<<endl;
4797                while ( t2t1cal < t1+1 ){ // get the calibration packet2 that follows the packet1
4798                    //
4799                    t2++;
4800                    //
4801                    pret2 = t2 - 1; // EMILIANO
4802                    //
4803                    if ( t2 < nevents2 ){
4804                        tr2->GetEntry(t2);
4805                        codt2 = eh2->GetCounter();
4806                        t2t1cal = codt2->Get(pctp->CalibTrk1);
4807                        //
4808                        ph2 = eh2->GetPscuHeader();
4809                        obt2 = ph2->GetOrbitalTime();  
4810                        pkt2 = ph2->GetCounter();  
4811                        //
4812                        if ( IsDebug() ) printf(" >> trk calibration2 at obt %u pkt %u t2 is %u , t2t1cal is %u \n",obt2,pkt2,t2,t2t1cal);    
4813                        //    if ( caltrk2->unpackError != 0 || caltrk2->good0 == 0 ) valid = 0; // CONDITIONS ON THE GOODNESS OF THE CALIBRATION PKT2
4814                        //    
4815                    } else {
4816                        //
4817                        // running out of vector without finding the corresponding calibration, sig
4818                        //
4819                        if ( IsDebug() ) printf(" t2 >= nevents2 \n");
4820                        pret2 = t2;
4821                        obt2 = 0;
4822                        //    pkt2 = pkt1+2;
4823                        pkt2 = 0;
4824                        t2t1cal = t1+1;
4825                    };
4826                    //      if ( (this->PKT(pkt2) < this->PKT(pktfirst) || this->PKT(pkt2) > upperpkt) && (this->OBT(obt2) < this->OBT(obtfirst) || this->OBT(obt2) > upperobt) ){
4827    
4828                    // EMILIANO
4829                    //      if ( (this->PKT(pkt2) < this->PKT(pktfirst) || this->PKT(pkt2) > upperpkt) || (this->OBT(obt2) < this->OBT(obtfirst) || this->OBT(obt2) > upperobt) ){
4830                    //        //    if ( this->PKT(pkt2) < this->PKT(pktfirst) && this->OBT(obt2) < this->OBT(obtfirst) ){
4831                    //        if ( IsDebug() ) printf(" running out of vector without finding the corresponding calibration, sig \n");
4832                    //        //
4833                    //        // running out of vector without finding the corresponding calibration, sig
4834                    //        //
4835                    //        pret2 = t2;
4836                    //        obt2 = 0;
4837                    //        //      pkt2 = pkt1+2;
4838                    //        pkt2 = 0;
4839                    //        t2t1cal = t1+1;
4840                    //      };
4841    
4842    
4843                    //
4844                };
4845                //
4846                if ( IsDebug() ) printf(" Check if trk calibration2 is the right one \n");
4847                //
4848                // EMILIANO
4849                if ( ( PKT(pkt2) < PKT(pktfirst) || PKT(pkt2) > upperpkt) || (OBT(obt2) < OBT(obtfirst) || OBT(obt2) > upperobt) ){
4850                    //      if ( this->PKT(pkt2) < this->PKT(pktfirst) && this->OBT(obt2) < this->OBT(obtfirst) ){
4851                    if ( IsDebug() ) printf(" *WARNING*  The calibration found is outside the interval, sig \n");
4852                    //
4853                    // running out of vector without finding the corresponding calibration, sig
4854                    //
4855                    pret2 = t2;
4856                    obt2 = 0;
4857                    pkt2 = 0;
4858                };
4859                if ( PKT(pkt2) == PKT(pkt1)+1 ){
4860                    if ( IsDebug() ) cout << " ...OK"<<endl;
4861                    // =======================
4862                    // The calibration is good
4863                    // =======================
4864                    //
4865    //      if ( IsDebug() ) printf(" Found trk calibration2 at obt %u pkt %u t2 is %u \n",obt2,pkt2,t2);
4866    //      if ( IsDebug() ) printf(" Trk calibration2 at obt %u pkt %u t2 is %u is good \n",obt2,pkt2,t2);
4867    //        if ( IsDebug() ) printf("\n Trk calibration2 at time %u obt %u pkt %u \n",fromtime,obt2,pkt2);
4868                    if ( IsDebug() ) printf(" Trk calibration2 %u at time %u obt %u pkt %u \n",t2,fromtime,obt2,pkt2);
4869                    //
4870                    UInt_t valid2 = ValidateTrkCalib( caltrk2, eh2 );
4871                    if ( IsDebug() ) cout << " pkt2 validation --> "<<valid2<<endl;
4872    //      valid = valid & valid2;
4873                    valid = valid & valid2; //QUESTO VA CAMBIATO
4874                    //
4875                    // Handle good calib
4876                    //
4877                    MISSING_pkt1 = false;
4878                    MISSING_pkt2 = false;
4879    //              this->HandleTRK_CALIB(!MISSING_pkt1,!MISSING_pkt2);
4880                    //
4881                    // Check for missing calibtrk1
4882                    //
4883                    if ( t2 != pret2+1 ){
4884                        //
4885                        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);
4886                        //
4887                        while ( t2 > pret2+1 ){
4888                            //
4889                            // handle missing calib1
4890                            //
4891                            pret2++;
4892                            //
4893                            obt1 = 0;
4894                            pkt1 = 0;
4895                            //
4896                            tr2->GetEntry(pret2);
4897                            ph2 = eh2->GetPscuHeader();
4898                            obt2 = ph2->GetOrbitalTime();  
4899                            pkt2 = ph2->GetCounter();  
4900                            //
4901                            fromtime = this->GetAbsTime(ph2->GetOrbitalTime());
4902                            //
4903                            valid = 0;
4904                            MISSING_pkt1 = true;
4905                            MISSING_pkt2 = false;
4906    //                      this->HandleTRK_CALIB(!MISSING_pkt1,!MISSING_pkt2);
4907                            //
4908                        };
4909                        //
4910                    };
4911                    //
4912                } else if ( this->PKT(pkt2) > this->PKT(pkt1)+1 ){
4913                    //
4914                    // Check for missing calibtrk2
4915                    //
4916                    if ( IsDebug() ) printf(" Missing the trk calibration2! Next one at obt %u pkt %u t2 is %u\n",obt2,pkt2,t2);
4917                    t2 = pret2;
4918                    //
4919                    // handle missing calib2
4920                    //
4921                    obt2 = 0;
4922                    pkt2 = 0;
4923                    valid = 0;
4924                    MISSING_pkt1 = false;
4925                    MISSING_pkt2 = true;
4926    //              this->HandleTRK_CALIB(!MISSING_pkt1,!MISSING_pkt2);
4927                    //
4928                };
4929                //
4930    
4931                if( !(MISSING_pkt1&MISSING_pkt2) ){
4932                  this->HandleTRK_CALIB(!MISSING_pkt1,!MISSING_pkt2);
4933                  ncalib++;
4934                  if( MISSING_pkt1||MISSING_pkt2||!valid )try_to_recover=true;
4935                }
4936    
4937    
4938            } else {
4939              //
4940                if ( IsDebug() ) printf(" Trk calibration1 at time %u obt %u pkt %u OUTSIDE the considered time interval \n",fromtime,obt1,pkt1);
4941                //      if ( PEDANTIC ) throw -79;
4942                //
4943            };
4944            //    
4945    
4946        }; //end loop on pkt1
4947    
4948    
4949    
4950      //      //
4951    };      // we have one more calib pkt2 !
4952        //
4953        t2++;
4954        while ( t2 < nevents2 ){
4955            //
4956            // handle missing calib1
4957            //
4958            if ( IsDebug() ) printf(" t2 is %u nevents2 is %u \n",t2,nevents2);
4959            obt1 = 0;
4960            pkt1 = 0;
4961            //
4962            tr2->GetEntry(t2);
4963            ph2 = eh2->GetPscuHeader();
4964            obt2 = ph2->GetOrbitalTime();  
4965            pkt2 = ph2->GetCounter();  
4966            //
4967            fromtime = this->GetAbsTime(ph2->GetOrbitalTime());
4968            valid = 0;
4969            //  if ( this->PKT(pkt1) >= this->PKT(pktfirst) && this->PKT(pkt1) <= upperpkt && this->OBT(obt1) >= this->OBT(obtfirst) && this->OBT(obt1) <= upperobt ){
4970            // EMILIANO
4971            if ( this->PKT(pkt2) >= this->PKT(pktfirst) && this->PKT(pkt2 <= upperpkt) && this->OBT(obt2) >= this->OBT(obtfirst) && this->OBT(obt2) <= upperobt ){
4972                //    if ( this->PKT(pkt2) > this->PKT(pktfirst) || this->OBT(obt2) > this->OBT(obtfirst) ){
4973                //
4974                if ( IsDebug() ) printf(" Missing the trk calibration1! Next one at obt %u pkt %u t2 is %u\n",obt2,pkt2,t2);
4975                //
4976                MISSING_pkt1 = true;
4977                MISSING_pkt2 = false;
4978                this->HandleTRK_CALIB(!MISSING_pkt1,!MISSING_pkt2);
4979                ncalib++;
4980                if( MISSING_pkt1||MISSING_pkt2||!valid )try_to_recover=true;
4981                //
4982            };
4983            //
4984            t2++;
4985            //
4986        };
4987    
4988    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~    
4989    // -----------------------------------------------------------------
4990    // in case of corruption, check if the calibration can be recovered
4991    // from another chewbacca file
4992    // -----------------------------------------------------------------
4993    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~    
4994    
4995    //    cout <<" TRY TO RECOVER ?? "<<try_to_recover<<endl;
4996        
4997        if(chewbacca&&try_to_recover){
4998    
4999    
5000            if ( IsDebug() ) cout << endl << ">>>> TRY TO RECOVER TRACKER CALIBRATIONS <<<<"<<endl;
5001    
5002            TSQLResult *result = 0;
5003            TSQLRow    *row    = 0;
5004            //
5005            stringstream oss;
5006            oss.str("");
5007            //
5008    
5009            ////////////////////////////////////////////////////////////////////////
5010            // retrieve the name of the current file:
5011            ////////////////////////////////////////////////////////////////////////        
5012            oss.str("");
5013            oss << "SELECT NAME FROM GL_ROOT where ID=" << GetID_ROOT() <<";";
5014            if ( IsDebug() ) cout << oss.str().c_str() << endl;
5015    
5016            result = conn->Query(oss.str().c_str());
5017            if ( !result ) throw -4;;
5018            row = result->Next();
5019            TString thisfilename = (TString)row->GetField(0);
5020            if ( IsDebug() ) cout << "Current file ==> "<<thisfilename<<endl;      
5021    
5022            ////////////////////////////////////////////////////////////////////////        
5023            // read all the calibrations inserted
5024            ////////////////////////////////////////////////////////////////////////        
5025            oss.str("");
5026            oss << " SELECT ";
5027            oss << " ID,FROM_TIME,OBT1,PKT1,OBT2,PKT2,BOOT_NUMBER,VALIDATION,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,TO_TIME";
5028            oss << " FROM GL_TRK_CALIB ";
5029            oss << " ORDER BY ID DESC LIMIT "<<ncalib<<"; ";        
5030            if ( IsDebug() ) cout << oss.str().c_str() << endl;
5031    
5032            result = conn->Query(oss.str().c_str());
5033            if ( !result ) throw -4;;
5034            if ( IsDebug() ) cout <<"Rows: "<<result->GetRowCount()<<endl;
5035            
5036            // -----------------------------------
5037            // loop over calibrations ...
5038            // -----------------------------------
5039            UInt_t nn=0;
5040            do {
5041                row = result->Next();
5042                if(!row)break;
5043                
5044                UInt_t id       = (UInt_t)atoll(row->GetField(0));
5045                UInt_t fromtime = (UInt_t)atoll(row->GetField(1));
5046                UInt_t obt1     = (UInt_t)atoll(row->GetField(2));
5047                UInt_t pkt1     = (UInt_t)atoll(row->GetField(3));
5048                UInt_t obt2     = (UInt_t)atoll(row->GetField(4));
5049                UInt_t pkt2     = (UInt_t)atoll(row->GetField(5));
5050                UInt_t boot     = (UInt_t)atoll(row->GetField(6));
5051                UInt_t valid    = (UInt_t)atoll(row->GetField(7));
5052                bool MISSING_pkt1 = (row->GetFieldLength(8)==0);
5053                bool MISSING_pkt2 = (row->GetFieldLength(9)==0);
5054                UInt_t totime   = (UInt_t)atoll(row->GetField(10));
5055    
5056                // -------------------------------------
5057                // ...check if the entry is corrupted...
5058                // -------------------------------------
5059                cout <<"*** "<< MISSING_pkt1 << MISSING_pkt2 << valid <<endl;
5060                bool CORRUPTED = (MISSING_pkt1||MISSING_pkt2||!valid);
5061    
5062                if ( IsDebug() ) cout << "("<<nn<<")  ID = "<<id<<" from GL_TRK_CALIB  ==>  corrupted ? "<<CORRUPTED<<endl;
5063    
5064    //          if( !CORRUPTED  )continue; // nothing to do
5065    
5066                /////////////////////////////////////////////////////////  
5067                // if it is corrupted, ...look for ather chewbacca files
5068                // containing the same calibrations ...
5069                /////////////////////////////////////////////////////////
5070    
5071                bool this_MISSING_pkt1 = false;
5072                bool this_MISSING_pkt2 = false;
5073                int  this_t1=0;
5074                int  this_t2=0;;
5075                UInt_t this_valid = 0;
5076    
5077                TString path       = "";
5078                TString name       = "";
5079                TString raw        = "";
5080                UInt_t obt0        = 0;
5081                UInt_t timesync    = 0;
5082                UInt_t boot_number = 0;
5083                bool   FOUND       = false;
5084    
5085                if ( IsDebug() ) cout << "------------------------------------------------------------" <<endl;
5086    
5087    //          for(int itable=0; itable<2; itable++){
5088                for(int itable=0; itable<1; itable++){
5089    
5090                    // ------------------------------------------------------
5091                    // loop over both ROOT_TABLE and ROOT_TABLE_BAD
5092                    // ------------------------------------------------------
5093    
5094                    TString table = "ROOT_TABLE";
5095                    if(itable==1)table = "ROOT_TABLE_BAD";
5096    
5097                    oss.str("");
5098                    oss << " SELECT ";
5099                    oss << " FOLDER_NAME,FILE_NAME,OBT_TIME_SYNC,LAST_TIME_SYNC_INFO,BOOT_NUMBER,INPUT_NAME ";
5100                    oss << " FROM "<<table;
5101                    oss << " WHERE 1 " << endl;
5102                    oss << " AND FILE_NAME != \""<< thisfilename<<"\"";
5103                    if( !MISSING_pkt1 ){
5104                        oss << " AND ";
5105                        oss << " PKT_NUMBER_INIT < "<<pkt1;
5106                        oss << " AND ";
5107                        oss << " PKT_NUMBER_FINAL > "<<pkt1;
5108                        oss << " AND ";
5109                        oss << " PKT_OBT_INIT < "<<obt1;
5110                        oss << " AND ";
5111                        oss << " PKT_OBT_FINAL > "<<obt1;
5112                    }else{
5113                        if(pkt2>1) pkt1 = pkt2-1;//serve dopo                  
5114                    }
5115                    if( !MISSING_pkt2 ){
5116                        oss << " AND ";
5117                        oss << " PKT_NUMBER_INIT < "<<pkt2;
5118                        oss << " AND ";
5119                        oss << " PKT_NUMBER_FINAL > "<<pkt2;
5120                        oss << " AND ";
5121                        oss << " PKT_OBT_INIT < "<<obt2;
5122                        oss << " AND ";
5123                        oss << " PKT_OBT_FINAL > "<<obt2;
5124                    }else{
5125                        if(pkt1>0) pkt2 = pkt1+1;//serve dopo
5126                    }
5127                    if( boot> 0 ){
5128                        oss << " AND ";
5129                        oss << " BOOT_NUMBER = "<<boot;
5130                    }else{
5131                    }
5132                    oss << " ORDER BY BAD_PKT_CALREAD ASC; ";
5133                
5134                    TSQLResult *result2 = 0;
5135                    TSQLRow    *row2    = 0;
5136    
5137                    if ( IsDebug() ) cout << oss.str().c_str() << endl;        
5138                    result2 = conn->Query(oss.str().c_str());
5139                    if ( !result2 ) throw -4;;
5140                    if ( IsDebug() ) cout <<"Rows: "<<result2->GetRowCount()<<endl;
5141    
5142                    // ------------------------------------------------------
5143                    // loop over files containing repetition (if any)
5144                    // ------------------------------------------------------
5145                    do {
5146                        row2 = result2->Next();
5147                        if(!row2)break;
5148                    
5149                        // ------------------------------------------------------
5150                        // ... a repetition is found ...
5151                        // ------------------------------------------------------
5152                        path       = (TString)row2->GetField(0);
5153                        name       = (TString)row2->GetField(1);
5154                        raw        = (TString)row2->GetField(5);
5155                        obt0        = (UInt_t)atoll(row2->GetField(2));
5156                        timesync    = (UInt_t)atoll(row2->GetField(3));
5157                        boot_number = (UInt_t)atoll(row2->GetField(4));
5158                    
5159                        if ( IsDebug() ) cout << "- - - - - - - - - - -" <<endl;
5160    //                  cout << path <<endl;
5161    //                  cout << "File    : " <<name <<endl;
5162    //                  cout << obt0 <<endl;
5163    //                  cout << timesync <<endl;
5164    //                  cout << "boot n. : "<<boot_number <<endl;
5165    //                  cout << raw <<endl;
5166    
5167                        // ------------------------------------------------------
5168                        // ... retrieve the calibration packets.
5169                        // ------------------------------------------------------
5170                        if ( IsDebug() ) printf(" file is %s/%s \n",((TString)gSystem->ExpandPathName(path.Data())).Data(),name.Data());
5171                        TFile *file = new TFile(((TString)gSystem->ExpandPathName(path.Data()))+"/"+name); // EM, path could be symbolic and we must expand it
5172                        if(!file)throw -100;
5173                        if(file->IsZombie())throw -100;
5174                        //
5175                        tr1 = (TTree*)file->Get("CalibTrk1");
5176                        if ( !tr1 || tr1->IsZombie() ) throw -22;
5177                        tr2 = (TTree*)file->Get("CalibTrk2");
5178                        if ( !tr2 || tr2->IsZombie() ) throw -23;
5179                        //
5180                        tr1->SetBranchAddress("CalibTrk1", &caltrk1);
5181                        tr1->SetBranchAddress("Header", &eh1);
5182                        nevents1 = tr1->GetEntries();
5183                        tr2->SetBranchAddress("CalibTrk2", &caltrk2);
5184                        tr2->SetBranchAddress("Header", &eh2);
5185                        nevents2 = tr2->GetEntries();
5186                        for(this_t1=0; this_t1<nevents1; this_t1++){
5187                            tr1->GetEntry(this_t1);
5188                            if(
5189                                (UInt_t)eh1->GetPscuHeader()->GetCounter() == pkt1 &&
5190                                true) break;
5191                            this_MISSING_pkt1 = true;
5192                        }
5193                        for(this_t2=0; this_t2<nevents2; this_t2++){
5194                            tr2->GetEntry(this_t2);
5195                            if(
5196                                (UInt_t)eh2->GetPscuHeader()->GetCounter() == pkt2 &&
5197                                true) break;
5198                            this_MISSING_pkt2 = true;
5199                        }
5200                        this_valid =
5201                            ValidateTrkCalib( caltrk1, eh1, file )
5202                            *
5203                            ValidateTrkCalib( caltrk2, eh2, file );
5204                                
5205                        // ---------------------------------------------------------------------
5206                        // accept the calibration if it is better than the previous:
5207                        //
5208                        // - if the new calibration is perfect (both valid packets)
5209                        // - if the new calibration has both the packets and the previous does not
5210                        // ---------------------------------------------------------------------
5211                        if(
5212                            ( !this_MISSING_pkt1&&!this_MISSING_pkt2&&this_valid )||
5213                            ( (MISSING_pkt1||MISSING_pkt2) && (!this_MISSING_pkt1&&!this_MISSING_pkt2) )||
5214                            false)FOUND=true;      
5215                
5216                        if(file)file->Close();
5217    
5218                        if(FOUND)break;
5219    
5220                    }while(1);//endl loop over root table entries
5221    
5222                    if(FOUND)break;
5223    
5224                }//end loop over tables
5225    
5226                if(FOUND){
5227    
5228                if ( IsDebug() ) cout << " >>> REPETITION FOUND :-) <<<" <<endl;
5229    
5230                    ////////////////////////////////////////////
5231                    // insert a new entry in GL_TRK_CALIB and
5232                    // modify the time-tag of the previous one
5233                    ////////////////////////////////////////////
5234    
5235                    // ---------------------------------------------------------------------
5236                    // step 1: insert a new raw file in GL_RAW
5237                    // ---------------------------------------------------------------------
5238                    //
5239                    // check if the raw file already exist
5240                    //
5241                    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
5242    //              oss.str("");
5243    //              oss << "SELECT ID FROM GL_RAW where NAME=\"" << gSystem->BaseName(raw.Data()) <<"\";";
5244    //              if ( IsDebug() ) cout << oss.str().c_str() << endl;
5245                    
5246    //              result = conn->Query(oss.str().c_str());
5247    //              if ( !result ) throw -4;;
5248    //              if ( IsDebug() ) cout <<"Rows: "<<result->GetRowCount()<<endl;
5249    //              if( result->GetRowCount() == 0){
5250    //                  if ( IsDebug() ) cout << " << Insert new RAW file >> "<<endl;
5251    //                  // - - - - - - - - - - -
5252    //                  // insert new raw file
5253    //                  // - - - - - - - - - - -
5254    //                  GL_RAW glraw = GL_RAW();    
5255    //                  glraw.PATH        = gSystem->DirName(raw.Data());
5256    //                  glraw.NAME        = gSystem->BaseName(raw.Data());
5257    //                  glraw.BOOT_NUMBER = boot_number;
5258    //                  //
5259    //                  insertPamelaRawFile( &glraw );
5260    //                  //              
5261    //                  id_raw = glraw.ID;              
5262    //              }else{
5263    //                  row = result->Next();
5264    //                  id_raw = (UInt_t)atoll(row->GetField(0));
5265    //              }
5266    //              if ( IsDebug() ) cout << "ID_RAW = "<<id_raw<<endl;
5267    
5268                    // ---------------------------------------------------------------------
5269                    // step 1(bis): retrieve the timesync id associated to the file
5270                    // (NB, uso lo stesso associato al file iniziale)
5271                    // ---------------------------------------------------------------------
5272                    UInt_t idtimesync = 0;
5273                    oss.str("");
5274                    oss << " SELECT ID FROM GL_TIMESYNC where TIMESYNC="<<chlastts<<" AND OBT0="<<chobtts*1000<<" limit 1;";
5275                    if ( debug ) printf(" %s \n",oss.str().c_str());
5276                    result = conn->Query(oss.str().c_str());
5277                    if ( !result ) throw -3;
5278                    row = result->Next();
5279                    if ( !row ) throw -3;
5280                    idtimesync = (UInt_t)atoll(row->GetField(0));
5281                    if ( IsDebug() ) cout << "ID_TIMESYNC = "<<idtimesync<<endl;
5282                    
5283                    // ---------------------------------------------------------------------
5284                    // step 2: insert a new root file in GL_ROOT
5285                    // ---------------------------------------------------------------------
5286                    //
5287                    // check if the root file already exist
5288                    //
5289                    UInt_t id_root = 0;
5290                    oss.str("");
5291                    oss << "SELECT ID FROM GL_ROOT where NAME=\"" << gSystem->BaseName(name.Data()) <<"\";";
5292                    if ( IsDebug() ) cout << oss.str().c_str() << endl;
5293                    
5294                    result = conn->Query(oss.str().c_str());
5295                    if ( !result ) throw -4;;
5296                    if ( IsDebug() ) cout <<"Rows: "<<result->GetRowCount()<<endl;
5297                    if( result->GetRowCount() == 0){
5298                        if ( IsDebug() ) cout << " << Insert new ROOT file >> "<<endl;
5299                        // - - - - - - - - - - -
5300                        // insert new root file
5301                        // - - - - - - - - - - -
5302                        GL_ROOT glroot = GL_ROOT();            
5303                        glroot.ID_RAW      = id_raw;
5304                        glroot.ID_TIMESYNC = idtimesync;
5305                        //
5306                        // 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,
5307                        //             NOT STATIC NOT KEEPENV = $PAM_L0 must be used in the DB
5308                        //
5309                        if ( STATIC ){
5310                          glroot.PATH        = (TString)gSystem->ExpandPathName(path);
5311                        } else {
5312                          if ( KEEPENV ){
5313                            glroot.PATH      = path;
5314                          } else {
5315                            glroot.PATH      = "$PAM_L0";
5316                          };
5317                        };
5318                        //              glroot.PATH        = path;
5319                        glroot.NAME        = name;
5320                        //
5321                        insertPamelaRootFile( &glroot );
5322                        //              
5323                        id_root = glroot.ID;                    
5324                    }else{
5325                        row = result->Next();
5326                        if(row)id_root = (UInt_t)atoll(row->GetField(0));
5327                    }
5328                    if ( IsDebug() ) cout << "ID_ROOT = "<<id_root<<endl;
5329    
5330                    // ---------------------------------------------------------------------
5331                    // step 3: modify time-tag of corrupted GL_TRK_CALIB entry
5332                    // ---------------------------------------------------------------------
5333                    if ( IsDebug() ) cout << " << Modify time-tag of calibration ID="<<id<<" >> "<<endl;
5334                    oss.str("");
5335                    oss << " UPDATE GL_TRK_CALIB SET "  
5336                        << " TO_TIME=0 , FROM_TIME=0  WHERE "
5337                        << " ID = "<< id  << ";";
5338                    if ( IsDebug() ) cout << oss.str().c_str() << endl;
5339                    result = conn->Query(oss.str().c_str());
5340                    if ( !result ) throw -4;;
5341    
5342                    // ---------------------------------------------------------------------
5343                    // step 4: insert the new calibration:
5344                    // ---------------------------------------------------------------------
5345                    if ( IsDebug() ) cout << " << Insert new TRK calibration >> "<<endl;
5346                    //
5347                    GL_TRK_CALIB glcal = GL_TRK_CALIB();        
5348                    //
5349                    glcal.ID_ROOT_L0        = id_root;
5350                    glcal.EV_ROOT_CALIBTRK1 = this_t1;
5351                    glcal.EV_ROOT_CALIBTRK2 = this_t2;
5352                    glcal.FROM_TIME         = fromtime;
5353                    glcal.TO_TIME           = totime;
5354                    glcal.OBT1              = obt1;
5355                    glcal.OBT2              = obt2;
5356                    glcal.PKT1              = pkt1;
5357                    glcal.PKT2              = pkt1;
5358                    glcal.BOOT_NUMBER       = GetBOOTnumber();
5359                    glcal.VALIDATION        = this_valid;
5360                    //
5361                    HandleTRK_CALIB(&glcal);
5362                    if ( IsDebug() ) cout << "ID = "<<glcal.ID<<endl;
5363                    //
5364                    
5365                }
5366                if ( IsDebug() ) cout << "------------------------------------------------------------" <<endl;
5367    
5368            }while(1);//end loop over calibrations
5369            
5370            
5371            if( result )delete result;
5372            if( row    )delete row;
5373            
5374            
5375    
5376            
5377    
5378    
5379        }
5380    
5381    
5382    //      // ------------------------------
5383    //      // try to recover the calibration
5384    //      // ------------------------------
5385    //      cout << "TRY TO RECOVER TRACKER CALIBRATION"<<endl;
5386    //      //
5387    //      ULong64_t time  = 0; //absolute time
5388    //      string    path[100]; //mettere un limite massimo
5389    //      int       nrows = 0;
5390    //      UInt_t    pkt   = 0;
5391    //      UInt_t    obt   = 0;
5392    //      char     *type  = "";
5393    //      EventHeader *eh   = new EventHeader();
5394    //      CalibTrk1Event *c = new CalibTrk1Event();
5395            
5396    //       //
5397    //       if(which_is_not_valid==1 || which_is_not_valid==3){
5398    //        //
5399    //        cout << "PKT1 --> missing or corrupted "<<endl;
5400    //        type = "CalibTrk1";
5401    //        pkt  = pkt1;
5402    //        obt  = obt1;
5403    //        time = this->GetAbsTime(obt1);
5404    //        if( pkt1 == 0 ){//missing
5405    //            time = this->GetAbsTime(obt2);
5406    //            pkt  = pkt2-1;          
5407    //        }
5408    //        //
5409    //       }else if (which_is_not_valid==2 || which_is_not_valid==3){
5410    //        //
5411    //        cout << "PKT2--> missing or corrupted "<<endl;
5412    //        type = "CalibTrk2 ";
5413    //        pkt  = pkt2;
5414    //        obt  = obt2;
5415    //        time = this->GetAbsTime(obt2);
5416    //        if( pkt2 == 0 ){//missing
5417    //            time = this->GetAbsTime(obt1);
5418    //            pkt  = pkt1+1;          
5419    //        }
5420    //        //
5421    //       }else{
5422    //        cout << "this should not happen!!! "<<endl;
5423    //        trow -666;
5424    //       }
5425          
5426    //       nrows = Query_ROOT_TABLE(time,conn,path);// get the list of file which might contain the packet
5427          
5428    
5429    //       for(int r=0; r<nrows; r++){ //loop over rows
5430    //        if(path)cout << r << " >>>> "<<(path+r)->c_str() << endl;
5431    //        /// verifica che il file non sia quello gia` aperto
5432    //       }
5433    
5434    //       ////////////////////////////////////////////////////////////////////////
5435    
5436    //       TSQLResult *result = 0;
5437    //       TSQLRow    *row    = 0;
5438    //       //
5439    //       stringstream oss;
5440    //       oss.str("");
5441    //       // ----------------------------------------
5442    //       // read the id of last calibration inserted
5443    //       // ----------------------------------------
5444    //       oss.str("");
5445    //       oss << " SELECT ";
5446    //       oss << " (ID,ID_ROOT_L0,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,FROM_TIME,TO_TIME,OBT1,PKT1,OBT2,PKT2,BOOT_NUMBER,VALIDATION) ";
5447    //       oss << " ORDER BY ID DESC LIMIT 1; ";
5448          
5449    //       result = conn->Query(oss.str().c_str());
5450    //       row = result->Next();
5451    //       if( !row )throw -666;
5452    
5453    //       if( result )delete result;
5454    //       if( row    )delete row;
5455    
5456    //       UInt_t id = (UInt_t)atoll(row->GetField(0));
5457    
5458    //       // -------------------------------------
5459    //       // ...and modify it with new parameters
5460    //       // -------------------------------------
5461          
5462    
5463    //   }
5464    //    //
5465    return(0);    return(0);
5466  };  };
# Line 5449  Int_t PamelaDBOperations::ValidateRuns(T Line 6092  Int_t PamelaDBOperations::ValidateRuns(T
6092      // 2) get the OBT of the last validated run      // 2) get the OBT of the last validated run
6093      // --------------------------------------------------------------      // --------------------------------------------------------------
6094      oss.str("");      oss.str("");
6095      oss << " SELECT * FROM GL_RUN  WHERE VALIDATION=1 AND RUNHEADER_TIME<="<< t_start      //    oss << " SELECT * FROM GL_RUN  WHERE VALIDATION=1 AND RUNHEADER_TIME<="<< t_start
6096        oss << " SELECT * FROM GL_RUN  WHERE VALIDATION>0 AND RUNHEADER_TIME<="<< t_start
6097          <<" ORDER BY RUNHEADER_TIME DESC LIMIT 1;";          <<" ORDER BY RUNHEADER_TIME DESC LIMIT 1;";
6098      if ( IsDebug() ) printf(" Get stop validation-time: query is \n %s \n",oss.str().c_str());      if ( IsDebug() ) printf(" Get stop validation-time: query is \n %s \n",oss.str().c_str());
6099      result = conn->Query(oss.str().c_str());      result = conn->Query(oss.str().c_str());
# Line 5592  Int_t PamelaDBOperations::ValidateRuns(T Line 6236  Int_t PamelaDBOperations::ValidateRuns(T
6236          if( interval >= calibtime )CHECK = true;                        //more than calibtime s => there might be a calibration          if( interval >= calibtime )CHECK = true;                        //more than calibtime s => there might be a calibration
6237                                                        
6238          if( !CHECK && this_run->VALIDATION ){          if( !CHECK && this_run->VALIDATION ){
6239            for (Int_t irun = 0; irun < nseq; irun++)assignVALIDATION(sequence[irun],true);            //      for (Int_t irun = 0; irun < nseq; irun++)assignVALIDATION(sequence[irun],true);
6240              for (Int_t irun = 0; irun < nseq; irun++)assignVALIDATION(sequence[irun],this_run->VALIDATION);
6241            nseq=0;            nseq=0;
6242          }          }
6243                                        
# Line 5613  Int_t PamelaDBOperations::ValidateRuns(T Line 6258  Int_t PamelaDBOperations::ValidateRuns(T
6258      if( CHECK ){      if( CHECK ){
6259        // check if calibration exists        // check if calibration exists
6260        if ( IsDebug() )printf("DT %i ===> CHECK Missing calibration\n",interval);        if ( IsDebug() )printf("DT %i ===> CHECK Missing calibration\n",interval);
6261        Bool_t MISSING = MissingTRK_CALIB(t1,t2);        //      Bool_t MISSING = MissingTRK_CALIB(t1,t2);
6262        for (Int_t irun = 0; irun < nseq; irun++)assignVALIDATION(sequence[irun],!MISSING);        UInt_t MISSING = MissingTRK_CALIB(t1,t2);
6263          UInt_t val = 0;
6264          if ( MISSING == 1 ) val = 0;
6265          if ( MISSING == 0 ) val = 1;
6266          if ( MISSING == 2 ) val = 2;
6267          for (Int_t irun = 0; irun < nseq; irun++)assignVALIDATION(sequence[irun],val);
6268        nseq=0;        nseq=0;
6269      };      };
6270      //--------------      //--------------
# Line 5644  Int_t PamelaDBOperations::ValidateRuns(T Line 6294  Int_t PamelaDBOperations::ValidateRuns(T
6294   * @param t2 To absolute time   * @param t2 To absolute time
6295   * @return true if there might be a missing calibration   * @return true if there might be a missing calibration
6296   */   */
6297  Bool_t PamelaDBOperations::MissingTRK_CALIB(UInt_t t1,UInt_t t2){  //Bool_t PamelaDBOperations::MissingTRK_CALIB(UInt_t t1,UInt_t t2){
6298    UInt_t PamelaDBOperations::MissingTRK_CALIB(UInt_t t1,UInt_t t2){
6299                    
6300    GL_TRK_CALIB* trkcalib = new GL_TRK_CALIB();    GL_TRK_CALIB* trkcalib = new GL_TRK_CALIB();
6301                    
6302    // get the closest VALIDATED calibration before the run start (t2)    // get the closest calibration before the run start (t2)
6303    if ( trkcalib->Query_GL_TRK_CALIB(t2, conn) )return(true);    //>>> missing    //  if ( trkcalib->Query_GL_TRK_CALIB(t2, conn) )return(true);        //>>> missing
6304      if ( trkcalib->Query_GL_TRK_CALIB(t2, conn) )return(1);       //>>> missing
6305                    
6306    if ( trkcalib->TO_TIME  < t2 ) return(true);                                  //>>> missing    //  if ( trkcalib->TO_TIME  < t2 ) return(true);                                      //>>> missing
6307      if ( trkcalib->TO_TIME  < t2 ) return(1);                                     //>>> missing
6308                    
6309    //==============================================================    //==============================================================
6310    // Check is done first on the basis of time between calibration,    // Check is done first on the basis of time between calibration,
# Line 5668  Bool_t PamelaDBOperations::MissingTRK_CA Line 6321  Bool_t PamelaDBOperations::MissingTRK_CA
6321      //==============================================================      //==============================================================
6322      Bool_t DOWNLOAD = false;      Bool_t DOWNLOAD = false;
6323      // check if the calib was skipped becouse of download .... DA FARE!!      // check if the calib was skipped becouse of download .... DA FARE!!
6324      if(DOWNLOAD)return(false);      //    if(DOWNLOAD)return(false);
6325        if(DOWNLOAD)return(0);
6326                                    
6327      return(true);                                       //>>> missing      //    return(true);                                         //>>> missing
6328        return(1);                                  //>>> missing
6329                                    
6330    };    };
6331                    
# Line 5680  Bool_t PamelaDBOperations::MissingTRK_CA Line 6335  Bool_t PamelaDBOperations::MissingTRK_CA
6335    //==============================================================    //==============================================================
6336    // the long time interval bewteen runs might be due to download    // the long time interval bewteen runs might be due to download
6337    if ( IsDebug() )printf("Short time between calib and run start %u :-) ==> OK! \n",t2 - trkcalib->FROM_TIME);    if ( IsDebug() )printf("Short time between calib and run start %u :-) ==> OK! \n",t2 - trkcalib->FROM_TIME);
6338    return(false);    if ( trkcalib->VALIDATION ) return(0);
6339      if ( IsDebug() )printf("Calibration is not validated... :-/ ==> OK but with VALIDATION=2! \n");
6340      return(2);
6341                    
6342  };  };
6343  /**  /**
# Line 5689  Bool_t PamelaDBOperations::MissingTRK_CA Line 6346  Bool_t PamelaDBOperations::MissingTRK_CA
6346   * @param validation true/false   * @param validation true/false
6347   */   */
6348  Int_t PamelaDBOperations::assignVALIDATION(UInt_t idrun, Bool_t validation){  Int_t PamelaDBOperations::assignVALIDATION(UInt_t idrun, Bool_t validation){
6349      return(this->assignVALIDATION(idrun,(UInt_t)validation));
6350    }
6351    
6352    Int_t PamelaDBOperations::assignVALIDATION(UInt_t idrun, UInt_t validation){
6353    TSQLResult *result = 0;    TSQLResult *result = 0;
6354    stringstream oss;    stringstream oss;
6355    oss.str("");    oss.str("");
# Line 5885  Int_t PamelaDBOperations::removeFile(TSt Line 6546  Int_t PamelaDBOperations::removeFile(TSt
6546    stringstream myquery;    stringstream myquery;
6547    //      //  
6548    myquery.str("");    myquery.str("");
6549    myquery << " SELECT ID, ID_RAW FROM GL_ROOT where NAME='"<<remfile.Data() <<"';";    myquery << " SELECT ID,ID_RAW,ID_TIMESYNC FROM GL_ROOT where NAME='"<<remfile.Data() <<"';";
6550    //    //
6551    pResult = conn->Query(myquery.str().c_str());    pResult = conn->Query(myquery.str().c_str());
6552    //    //
# Line 5901  Int_t PamelaDBOperations::removeFile(TSt Line 6562  Int_t PamelaDBOperations::removeFile(TSt
6562    //    //
6563    this->SetID_ROOT((UInt_t)atoll(Row->GetField(0)));    this->SetID_ROOT((UInt_t)atoll(Row->GetField(0)));
6564    this->SetID_RAW((UInt_t)atoll(Row->GetField(1)));    this->SetID_RAW((UInt_t)atoll(Row->GetField(1)));
6565      UInt_t idtsy=(UInt_t)atoll(Row->GetField(2));
6566    //    //
6567    this->ValidationOFF();    this->ValidationOFF();
6568    //    //
# Line 5908  Int_t PamelaDBOperations::removeFile(TSt Line 6570  Int_t PamelaDBOperations::removeFile(TSt
6570    //    //
6571    this->RemoveRUNS();    this->RemoveRUNS();
6572    //    //
6573    this->RemoveFILES();    this->RemoveFILES(idtsy);
6574    //    //
6575    this->SetID_ROOT(0);    this->SetID_ROOT(0);
6576    this->SetID_RAW(0);    this->SetID_RAW(0);
# Line 6128  void PamelaDBOperations::RemoveRUNS(){ Line 6790  void PamelaDBOperations::RemoveRUNS(){
6790   * Rearrange calibration tables   * Rearrange calibration tables
6791   *   *
6792   **/   **/
6793  void PamelaDBOperations::RemoveFILES(){  void PamelaDBOperations::RemoveFILES(UInt_t idtsy){
6794    stringstream myquery;    stringstream myquery;
6795    //    //
6796    myquery.str("");    myquery.str("");
# Line 6138  void PamelaDBOperations::RemoveFILES(){ Line 6800  void PamelaDBOperations::RemoveFILES(){
6800    //    //
6801    conn->Query(myquery.str().c_str());    conn->Query(myquery.str().c_str());
6802    //    //
6803      myquery.str("");
6804      myquery << " DELETE FROM GL_ROOT WHERE ID=" <<this->GetID_ROOT() <<";";
6805      //
6806      if ( IsDebug() ) printf("  query is \n %s \n",myquery.str().c_str());
6807      //
6808      conn->Query(myquery.str().c_str());  //
6809      //
6810      if ( !chewbacca ){
6811        myquery.str("");
6812        myquery << " DELETE FROM GL_TIMESYNC WHERE ID=" << idtsy <<";";
6813        //
6814        if ( IsDebug() ) printf("  query is \n %s \n",myquery.str().c_str());
6815        //
6816        conn->Query(myquery.str().c_str());
6817      };
6818      //
6819  };  };
6820    
6821  /**  /**
# Line 6342  void PamelaDBOperations::RemoveCALIBS(){ Line 7020  void PamelaDBOperations::RemoveCALIBS(){
7020   * Rearrange calibration tables   * Rearrange calibration tables
7021   *   *
7022   **/   **/
7023  UInt_t PamelaDBOperations::ValidateTrkCalib( CalibTrk1Event* caltrk, EventHeader *eh ){  UInt_t PamelaDBOperations::ValidateTrkCalib( CalibTrk1Event* caltrk, EventHeader *eh , TFile *file){
7024    
7025    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; // :-)  
7026    
7027    //    cout << classname << " "<<eh->GetPscuHeader()->GetOrbitalTime()<<endl;      if ( IsDebug() ) cout << "ValidateTrkCalib:"<<endl;
7028    
7029    //  -----------------------------------------------      UInt_t validate = 1;
7030    //  If missing packets: check the acq configuration      Int_t vorder[]={5,5,3,3,4,4,2,2,1,1,0,0};
7031    //  (some DSPs might be excluded from acquisition)      UInt_t timeaftercalib=120000; //2000;
7032    //  -----------------------------------------------      TString classname = caltrk->GetName();
7033    
7034    //  -----------------------------------------------  //  ----------------------------------
7035    //  retrieve the first run header after calib  //  Check CRCs and failed calibrations
7036    //  -----------------------------------------------  //  ----------------------------------
7037    PacketType *pctp;      for(Int_t ipkt=0; ipkt<6; ipkt++){
7038    EventCounter *cod;          if(caltrk->DSPnumber[ipkt]>0 && caltrk->DSPnumber[ipkt]<=12){
7039    cod = eh->GetCounter();              if( caltrk->crc_hcal[ipkt] ){
7040    Int_t irun = cod->Get(pctp->RunHeader);  //              if(IsDebug())cout<<"(CRC Header)";
7041    TTree *rh=(TTree*)file->Get("RunHeader");                  validate = 0;
7042    if ( !rh || rh->IsZombie() ) throw -17;                  if(IsDebug())cout <<endl<<" *** CRC *** (header DSPn "<<caltrk->DSPnumber[ipkt]<<")";
7043    if( rh->GetEntries() == irun ){          
7044      if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) no runs after calib (1)  -- cannot validate :-( "<<endl;              }
7045      return 0; // :-(              for(Int_t ilad=0; ilad<3; ilad++)if( caltrk->crc_cal[ipkt][ilad] ){
7046    }  //              if(IsDebug())cout<<"(CRC Pkt-"<<ilad<<")";
7047                    if(IsDebug())cout <<endl<<" *** CRC *** (data DSPn "<<caltrk->DSPnumber[ipkt]<<" ladder "<<ilad<<")";
7048                    validate = 0;
7049                }
7050                if( !(caltrk->ncalib_event[ipkt]==0 && caltrk->cal_flag[ipkt]==0) ){
7051                    if(IsDebug())cout <<endl<<" *** FAILURE ***     (data DSPn "<<caltrk->DSPnumber[ipkt]<<")";
7052                    validate = 0;
7053                }
7054            }else{
7055    //          validate=0;
7056                if(IsDebug())cout <<endl<<" *** DSPn *** ("<< caltrk->DSPnumber[ipkt] <<" @pkt "<<ipkt<<")";
7057            }
7058        }
7059    
7060    RunHeaderEvent *run  = 0;  //  -----------------------
7061    EventHeader    *hrun = 0;  //  Check missing packets:
7062    rh->SetBranchAddress("RunHeader", &run);  //  -----------------------
7063    rh->SetBranchAddress("Header", &hrun);  //    Readout order:
7064    rh->GetEntry(irun);  //    ------------------
7065    //     cout << classname << " "<<eh->GetPscuHeader()->GetOrbitalTime() << " Run " << hrun->GetPscuHeader()->GetOrbitalTime() <<endl;  //    DSP   packet board
7066    //    ------------------
7067    if( OBT(hrun->GetPscuHeader()->GetOrbitalTime()) < OBT(eh->GetPscuHeader()->GetOrbitalTime())){  //    12    0      1
7068      if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) no runs after calib (2) -- cannot validate :-( "<<endl;  //    10    1      1
7069      return 0; // :-(  //     8    2      1
7070    }  //     4    3      1
7071        //     6    4      1
7072    if( !run->RM_ACQ_AFTER_CALIB ){  //     2    5      1
7073      if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) RM_ACQ_AFTER_CALIB=0    -- cannot validate :-( "<<endl;  //    ------------------
7074      return 0; // :-(  //    11    0      2
7075    }  //     9    1      2
7076    //     7    2      2
7077    //     3    3      2
7078    //     5    4      2
7079    //     1    5      2
7080    //    ------------------
7081    //  -------------------------------------------------
7082    //  Check if it is first or second calibration packet
7083    //  -------------------------------------------------
7084        UInt_t build=0;
7085        UInt_t base=0;
7086        UInt_t mask=0;
7087        if(classname.Contains("CalibTrk1Event")){
7088            base=12;
7089            mask=0x03F000;
7090        }
7091        if(classname.Contains("CalibTrk2Event")){
7092            base=18;
7093            mask=0xFC0000;
7094        }
7095    //  ----------------------------------------------------
7096    //  Count number of valid packets and set build variable
7097    //  ----------------------------------------------------
7098        if(IsDebug())cout <<endl<< " DSP: ";
7099        Int_t  npkts=0;
7100        for(Int_t ipkt=0; ipkt<6; ipkt++){
7101            if(caltrk->DSPnumber[ipkt]>0 && caltrk->DSPnumber[ipkt]<=12){
7102                if(IsDebug())cout <<" "<<caltrk->DSPnumber[ipkt];
7103                npkts++;
7104                build = build | ( 1<<(base+vorder[caltrk->DSPnumber[ipkt]-1]) );
7105    //          cout << caltrk->DSPnumber[ipkt]
7106            };
7107        }
7108        if(IsDebug())cout << " ==> "<< hex << build << dec;
7109    //  ----------------------------------------------------
7110    //  If the number of valid packets is 6, ok exit...
7111    //  ----------------------------------------------------
7112        if( npkts==6 ){
7113            return validate; // exit
7114        }
7115    ////////////////////////////////////////////////////////
7116    //  ...otherwise there might be some missing packets
7117    //
7118    //  In this case check the acq configuration
7119    //  (some DSPs might be excluded from acquisition)
7120    ////////////////////////////////////////////////////////
7121    
7122        if(!eh || !file || (file&&file->IsZombie()) ){
7123            if ( IsDebug() )cout << " *** MISSING VIEW *** eh="<<eh<<" file="<<file<<" cannot validate"<<endl;
7124            return (0);
7125        }
7126        
7127    //  -----------------------------------------------
7128    //  retrieve the first run header after calib
7129    //  -----------------------------------------------
7130        
7131        PacketType *pctp;
7132        EventCounter *cod;
7133        cod = eh->GetCounter();
7134        Int_t irun = cod->Get(pctp->RunHeader);
7135        TTree *rh=(TTree*)file->Get("RunHeader");
7136        if ( !rh || rh->IsZombie() ) throw -17;
7137        if( rh->GetEntries() <= irun ){
7138            if ( IsDebug() ) cout << " *** MISSING-PKT *** no runs after calib (1) -- cannot validate :-( "<<endl;
7139            return 0; // :-(
7140        }
7141        RunHeaderEvent *run  = 0;
7142        EventHeader    *hrun = 0;
7143        rh->SetBranchAddress("RunHeader", &run);
7144        rh->SetBranchAddress("Header", &hrun);
7145        rh->GetEntry(irun);    
7146        if( OBT(hrun->GetPscuHeader()->GetOrbitalTime()) < OBT(eh->GetPscuHeader()->GetOrbitalTime())){
7147            if ( IsDebug() ) cout << " *** MISSING-PKT *** no runs after calib (2) -- cannot validate :-( "<<endl;
7148            return 0; // :-(
7149        }
7150    
7151    UInt_t dtime = OBT(hrun->GetPscuHeader()->GetOrbitalTime()) - OBT(eh->GetPscuHeader()->GetOrbitalTime());      UInt_t dtime = OBT(hrun->GetPscuHeader()->GetOrbitalTime()) - OBT(eh->GetPscuHeader()->GetOrbitalTime());
7152    if( dtime > timeaftercalib ){      if( dtime > timeaftercalib ){
7153      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;
7154      return 0; // :-(          return 0; // :-(
7155    }      }
       
7156    
7157        if ( IsDebug() ) cout <<endl<< " ACQ_BUILD_INFO ==> "<<hex<<(run->ACQ_BUILD_INFO & mask)<<dec;
7158    
7159        if( (run->ACQ_BUILD_INFO & mask) != build ){
7160            validate=0; // :-(
7161            cout <<endl<< " *** MISSING-PKT *** packet mismatch: ACQ_BUILD_INFO="<<hex<<(run->ACQ_BUILD_INFO&mask)<<" != "<<build<<dec;
7162        };
7163    
7164        return validate;
7165    
   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; // :-)  
7166    
7167  }  }
7168    

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

  ViewVC Help
Powered by ViewVC 1.1.23