/[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.28 by mocchiut, Mon Dec 14 13:20:37 2009 UTC revision 1.29 by mocchiut, Wed Dec 23 07:19:32 2009 UTC
# Line 183  void PamelaDBOperations::OpenL0File(TStr Line 183  void PamelaDBOperations::OpenL0File(TStr
183            chboot = (UInt_t)atoll(row2->GetField(5));            chboot = (UInt_t)atoll(row2->GetField(5));
184            //            //
185            if ( !chboot ){            if ( !chboot ){
186                if ( debug ) printf(" mmm... no BOOT number determined by chewbacca, try to find it looking at DB \n");
187                //
188                // new feature: check in ROOT_TABLE (timewise) the previous and the next BOOT number != 0 , if it is the same we know this one!
189                // if it is different roll back to the old behaviour
190                //
191              qu.str("");              qu.str("");
192              //      qu << "SELECT BOOT_NUMBER from ROOT_TABLE where BOOT_NUMBER!=0 AND ABS(LAST_TIME_SYNC_INFO-"<< chlastts <<")<10000 AND ABS(REAL_TIME_INIT-"<< row2->GetField(10) <<")<7200 group by BOOT_NUMBER order by BOOT_NUMBER asc;";              qu << "SELECT BOOT_NUMBER from ROOT_TABLE where BOOT_NUMBER!=0 AND REAL_TIME_INIT>"<< row2->GetField(10) <<" order by REAL_TIME_INIT asc limit 1;";
             //      qu << "SELECT BOOT_NUMBER from ROOT_TABLE where BOOT_NUMBER!=0 AND ABS(LAST_TIME_SYNC_INFO-"<< chlastts <<")<40000 AND ABS(REAL_TIME_INIT-"<< row2->GetField(10) <<")<40000 group by BOOT_NUMBER order by BOOT_NUMBER asc;"; // relax conditions... 090112 [8RED: error -29]  
             qu << "SELECT BOOT_NUMBER from ROOT_TABLE where BOOT_NUMBER!=0 AND ABS(LAST_TIME_SYNC_INFO-"<< chlastts <<")<50000 AND ABS(REAL_TIME_INIT-"<< row2->GetField(10) <<")<50000 group by BOOT_NUMBER order by BOOT_NUMBER asc;"; // even more relaxed conditions... 091214 [9REDtest3: error -29]  
193              if ( debug ) printf(" chewbacca: query is %s \n",qu.str().c_str());              if ( debug ) printf(" chewbacca: query is %s \n",qu.str().c_str());
194                UInt_t chbootA = 0;
195                UInt_t chbootB = 1;
196              result3 = conn->Query(qu.str().c_str());              result3 = conn->Query(qu.str().c_str());
197              if ( result3 ){              if ( result3 ){
198                row3 = result3->Next();                row3 = result3->Next();
199                if ( row3 && result3->GetRowCount() == 1 ){                if ( row3 ){
200                  chboot = (UInt_t)atoll(row3->GetField(0));                  chbootA = (UInt_t)atoll(row3->GetField(0));
201                  if ( debug ) printf(" Found boot_number = %u \n",chboot);                  if ( debug ) printf(" Found boot_number A = %u \n",chbootA);
202                } else {                };
203                  if ( debug ) printf(" AGH CANNOT DETERMINE THE BOOT NUMBER... \n");              };
204                  throw -29;              delete result3;
205                qu.str("");
206                qu << "SELECT BOOT_NUMBER from ROOT_TABLE where BOOT_NUMBER!=0 AND REAL_TIME_INIT<"<< row2->GetField(10) <<" order by REAL_TIME_INIT desc limit 1;";
207                if ( debug ) printf(" chewbacca: query is %s \n",qu.str().c_str());
208                result3 = conn->Query(qu.str().c_str());
209                if ( result3 ){
210                  row3 = result3->Next();
211                  if ( row3 ){
212                    chbootB = (UInt_t)atoll(row3->GetField(0));
213                    if ( debug ) printf(" Found boot_number B = %u \n",chbootB);
214                  };
215                };
216                if ( chbootA == chbootB ){
217                  chboot = chbootA;
218                  if ( debug ) printf(" Found boot_number! it is %u \n",chboot);
219                } else {        
220                  qu.str("");
221                  //            qu << "SELECT BOOT_NUMBER from ROOT_TABLE where BOOT_NUMBER!=0 AND ABS(LAST_TIME_SYNC_INFO-"<< chlastts <<")<10000 AND ABS(REAL_TIME_INIT-"<< row2->GetField(10) <<")<7200 group by BOOT_NUMBER order by BOOT_NUMBER asc;";
222                  //            qu << "SELECT BOOT_NUMBER from ROOT_TABLE where BOOT_NUMBER!=0 AND ABS(LAST_TIME_SYNC_INFO-"<< chlastts <<")<40000 AND ABS(REAL_TIME_INIT-"<< row2->GetField(10) <<")<40000 group by BOOT_NUMBER order by BOOT_NUMBER asc;"; // relax conditions... 090112 [8RED: error -29]
223                  qu << "SELECT BOOT_NUMBER from ROOT_TABLE where BOOT_NUMBER!=0 AND ABS(LAST_TIME_SYNC_INFO-"<< chlastts <<")<50000 AND ABS(REAL_TIME_INIT-"<< row2->GetField(10) <<")<50000 group by BOOT_NUMBER order by BOOT_NUMBER asc;"; // even more relaxed conditions... 091214 [9REDtest3: error -29]
224                  if ( debug ) printf(" chewbacca: query is %s \n",qu.str().c_str());
225                  result3 = conn->Query(qu.str().c_str());
226                  if ( result3 ){
227                    row3 = result3->Next();
228                    if ( row3 && result3->GetRowCount() == 1 ){
229                      chboot = (UInt_t)atoll(row3->GetField(0));
230                      if ( debug ) printf(" Found boot_number = %u \n",chboot);
231                    } else {
232                      if ( debug ) printf(" AGH CANNOT DETERMINE THE BOOT NUMBER... \n");
233                      throw -29;
234                    };
235                };                };
236              };              };
237            };            };

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

  ViewVC Help
Powered by ViewVC 1.1.23