297 |
}; |
}; |
298 |
// |
// |
299 |
myquery.str(""); |
myquery.str(""); |
300 |
myquery << "SET time_zone='+0:00'"; |
myquery << "SET time_zone='+0:00'; SET sql_mode = 'NO_UNSIGNED_SUBTRACTION';"; |
301 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
302 |
// |
// |
303 |
GL_ROOT *glroot = new GL_ROOT(); |
GL_ROOT *glroot = new GL_ROOT(); |
619 |
// |
// |
620 |
if ( strcmp(l2filename.Data(),"") ){ |
if ( strcmp(l2filename.Data(),"") ){ |
621 |
// ---------------- |
// ---------------- |
622 |
Bool_t found = false; |
// Bool_t found = false; |
623 |
Int_t ID = 0; |
Int_t ID = 0; |
624 |
Int_t ID_RAW = 0; |
// Int_t ID_RAW = 0; |
625 |
// |
// |
626 |
const char *rawpath = ""; |
const char *rawpath = ""; |
627 |
const char *rawname = ""; |
const char *rawname = ""; |
639 |
if( Row == NULL ) break; |
if( Row == NULL ) break; |
640 |
for( t = 0; t < pResult->GetFieldCount(); t++){ |
for( t = 0; t < pResult->GetFieldCount(); t++){ |
641 |
if(t==0) ID = atoi(Row->GetField(t)); |
if(t==0) ID = atoi(Row->GetField(t)); |
642 |
if(t==1) ID_RAW = atoi(Row->GetField(t)); |
// if(t==1) ID_RAW = atoi(Row->GetField(t)); |
643 |
}; |
}; |
644 |
}; |
}; |
645 |
delete pResult; |
delete pResult; |
656 |
for( r=0; r < pResult->GetRowCount(); r++){ |
for( r=0; r < pResult->GetRowCount(); r++){ |
657 |
Row = pResult->Next(); |
Row = pResult->Next(); |
658 |
if( Row == NULL ) break; |
if( Row == NULL ) break; |
659 |
found = true; |
// found = true; |
660 |
if ( !r ) printf("\n File %s contains the following runs: \n\n",l2filename.Data()); |
if ( !r ) printf("\n File %s contains the following runs: \n\n",l2filename.Data()); |
661 |
printf(" %u ",(UInt_t)atoll(Row->GetField(0))); |
printf(" %u ",(UInt_t)atoll(Row->GetField(0))); |
662 |
if ( r < (pResult->GetRowCount()-1) ){ |
if ( r < (pResult->GetRowCount()-1) ){ |
964 |
// |
// |
965 |
// Close the DB connection |
// Close the DB connection |
966 |
// |
// |
967 |
if ( dbc ) dbc->Close(); |
if ( dbc ){ |
968 |
|
dbc->Close(); |
969 |
|
delete dbc; |
970 |
|
dbc = 0; |
971 |
|
} |
972 |
// |
// |
973 |
if ( !neat ) printf("\n"); |
if ( !neat ) printf("\n"); |
974 |
// |
// |