| 56 |
* @param debug debug flag. |
* @param debug debug flag. |
| 57 |
* @param tlefilename ascii file with TLE 3 line elements. |
* @param tlefilename ascii file with TLE 3 line elements. |
| 58 |
*/ |
*/ |
| 59 |
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){ |
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){ |
| 60 |
// |
// |
| 61 |
|
STATIC=false; |
| 62 |
|
if ( staticp ) STATIC=true; |
| 63 |
// |
// |
| 64 |
SetConnection(host,user,password); |
SetConnection(host,user,password); |
| 65 |
// |
// |
| 68 |
glrun = new GL_RUN(); |
glrun = new GL_RUN(); |
| 69 |
// |
// |
| 70 |
if ( !boot ) SetNOBOOT(false); |
if ( !boot ) SetNOBOOT(false); |
| 71 |
SetBOOTnumber(boot); |
SetTsync(tsync,gpamela); |
| 72 |
SetTsync(tsync); |
SetBOOTnumber(boot,gpamela); |
| 73 |
SetObt0(obt0); |
SetObt0(obt0); |
| 74 |
// |
// |
| 75 |
SetTLEPath(tlefilename); |
SetTLEPath(tlefilename); |
| 81 |
INSERT_ROOT = !filerootname.IsNull(); |
INSERT_ROOT = !filerootname.IsNull(); |
| 82 |
if( INSERT_ROOT ){ |
if( INSERT_ROOT ){ |
| 83 |
this->SetRootName(filerootname); |
this->SetRootName(filerootname); |
| 84 |
this->SetOrbitNo(); |
this->SetOrbitNo(dwinput); |
| 85 |
file = TFile::Open(this->GetRootName().Data()); |
file = TFile::Open(this->GetRootName().Data()); |
| 86 |
} else { |
} else { |
| 87 |
this->SetRootName(""); |
this->SetRootName(""); |
| 179 |
* @param boot BOOT number of the RAW file |
* @param boot BOOT number of the RAW file |
| 180 |
*/ |
*/ |
| 181 |
void PamelaDBOperations::SetBOOTnumber(UInt_t boot){ |
void PamelaDBOperations::SetBOOTnumber(UInt_t boot){ |
| 182 |
|
this->SetBOOTnumber(boot,false); |
| 183 |
|
}; |
| 184 |
|
|
| 185 |
|
/** |
| 186 |
|
* Store the BOOT number of the RAW file. |
| 187 |
|
* @param boot BOOT number of the RAW file |
| 188 |
|
*/ |
| 189 |
|
void PamelaDBOperations::SetBOOTnumber(UInt_t boot, Bool_t gpamela){ |
| 190 |
BOOTNO=boot; |
BOOTNO=boot; |
| 191 |
|
if ( gpamela ){ |
| 192 |
|
stringstream oss; |
| 193 |
|
TSQLResult *result = 0; |
| 194 |
|
TSQLRow *row = 0; |
| 195 |
|
if ( !boot ){ |
| 196 |
|
// |
| 197 |
|
BOOTNO = 1; |
| 198 |
|
// |
| 199 |
|
// look in the DB for the last timesync and the last run |
| 200 |
|
// |
| 201 |
|
oss.str(""); |
| 202 |
|
oss << "SELECT BOOT_NUMBER FROM GL_RUN order by RUNHEADER_TIME desc limit 1;"; |
| 203 |
|
result = conn->Query(oss.str().c_str()); |
| 204 |
|
if ( result ){ |
| 205 |
|
row = result->Next(); |
| 206 |
|
if ( row ){ |
| 207 |
|
BOOTNO = (UInt_t)atoll(row->GetField(0)) + 1; |
| 208 |
|
}; |
| 209 |
|
}; |
| 210 |
|
}; |
| 211 |
|
}; |
| 212 |
}; |
}; |
| 213 |
|
|
| 214 |
/** |
/** |
| 216 |
* @param boot time sync |
* @param boot time sync |
| 217 |
*/ |
*/ |
| 218 |
void PamelaDBOperations::SetTsync(UInt_t ts){ |
void PamelaDBOperations::SetTsync(UInt_t ts){ |
| 219 |
|
this->SetTsync(ts,false); |
| 220 |
|
}; |
| 221 |
|
|
| 222 |
|
/** |
| 223 |
|
* Store the time sync of the RAW file. |
| 224 |
|
* @param boot time sync |
| 225 |
|
*/ |
| 226 |
|
void PamelaDBOperations::SetTsync(UInt_t ts, Bool_t gpamela){ |
| 227 |
|
// |
| 228 |
|
// if not gpamela or given tsync file set ts |
| 229 |
|
// |
| 230 |
tsync=ts; |
tsync=ts; |
| 231 |
|
if ( gpamela ){ |
| 232 |
|
stringstream oss; |
| 233 |
|
TSQLResult *result = 0; |
| 234 |
|
TSQLRow *row = 0; |
| 235 |
|
TSQLResult *result2 = 0; |
| 236 |
|
TSQLRow *row2 = 0; |
| 237 |
|
if ( !ts ){ |
| 238 |
|
// |
| 239 |
|
tsync = 1; |
| 240 |
|
// |
| 241 |
|
// look in the DB for the last timesync and the last run |
| 242 |
|
// |
| 243 |
|
oss.str(""); |
| 244 |
|
oss << "SELECT TIMESYNC FROM GL_TIMESYNC order by TIMESYNC desc limit 1;"; |
| 245 |
|
result = conn->Query(oss.str().c_str()); |
| 246 |
|
if ( result ){ |
| 247 |
|
row = result->Next(); |
| 248 |
|
if ( row ){ |
| 249 |
|
tsync = (UInt_t)atoll(row->GetField(0)) + 1; |
| 250 |
|
oss.str(""); |
| 251 |
|
oss << "SELECT (RUNTRAILER_TIME-RUNHEADER_TIME) FROM GL_RUN order by RUNHEADER_TIME desc limit 1;"; |
| 252 |
|
result2 = conn->Query(oss.str().c_str()); |
| 253 |
|
if ( result2 ){ |
| 254 |
|
row2 = result2->Next(); |
| 255 |
|
if ( row2 ){ |
| 256 |
|
tsync += (UInt_t)atoll(row2->GetField(0)); |
| 257 |
|
}; |
| 258 |
|
} |
| 259 |
|
}; |
| 260 |
|
}; |
| 261 |
|
}; |
| 262 |
|
}; |
| 263 |
}; |
}; |
| 264 |
|
|
| 265 |
/** |
/** |
| 289 |
/** |
/** |
| 290 |
* Store the downlink orbit number from filename. |
* Store the downlink orbit number from filename. |
| 291 |
*/ |
*/ |
| 292 |
void PamelaDBOperations::SetOrbitNo(){ |
void PamelaDBOperations::SetOrbitNo(UInt_t dwinput){ |
| 293 |
dworbit = 0; |
dworbit = 0; |
| 294 |
|
// |
| 295 |
|
if ( dwinput ){ |
| 296 |
|
dworbit = dwinput; |
| 297 |
|
if ( IsDebug() ) printf(" Downlink orbit given by hand: %i \n",dworbit); |
| 298 |
|
return; |
| 299 |
|
}; |
| 300 |
|
// |
| 301 |
TString name = this->GetRootFile(); |
TString name = this->GetRootFile(); |
| 302 |
Int_t nlength = name.Length(); |
Int_t nlength = name.Length(); |
| 303 |
if ( nlength < 5 ) return; |
if ( nlength < 5 ) return; |
| 335 |
tlefilename = str; |
tlefilename = str; |
| 336 |
}; |
}; |
| 337 |
|
|
| 338 |
|
TString PamelaDBOperations::GetRawPath(){ |
| 339 |
|
if ( STATIC ){ |
| 340 |
|
return((TString)gSystem->DirName(filerawname.Data())+'/'); |
| 341 |
|
} else { |
| 342 |
|
return((TString)gSystem->ExpandPathName("$PAM_RAW")+'/'); |
| 343 |
|
}; |
| 344 |
|
}; |
| 345 |
|
|
| 346 |
|
TString PamelaDBOperations::GetRootPath(){ |
| 347 |
|
if ( STATIC ){ |
| 348 |
|
return((TString)gSystem->DirName(filerootname.Data())+'/'); |
| 349 |
|
} else { |
| 350 |
|
return((TString)gSystem->ExpandPathName("$PAM_L0")+'/'); |
| 351 |
|
}; |
| 352 |
|
}; |
| 353 |
|
|
| 354 |
/** |
/** |
| 355 |
* Store the olderthan variable |
* Store the olderthan variable |
| 356 |
* @param olderthan |
* @param olderthan |
| 367 |
TSQLResult *result = 0; |
TSQLResult *result = 0; |
| 368 |
TSQLRow *row = 0; |
TSQLRow *row = 0; |
| 369 |
oss.str(""); |
oss.str(""); |
| 370 |
oss << "SELECT ID FROM GL_RAW WHERE " |
if ( STATIC ){ |
| 371 |
<< " PATH = '" << this->GetRawPath().Data() << "' AND " |
oss << "SELECT ID FROM GL_RAW WHERE " |
| 372 |
<< " NAME = '" << this->GetRawFile().Data() << "' "; |
<< " PATH = '" << this->GetRawPath().Data() << "' AND " |
| 373 |
|
<< " NAME = '" << this->GetRawFile().Data() << "' "; |
| 374 |
|
} else { |
| 375 |
|
oss << "SELECT ID FROM GL_RAW WHERE " |
| 376 |
|
<< " PATH = '$PAM_RAW' AND " |
| 377 |
|
<< " NAME = '" << this->GetRawFile().Data() << "' "; |
| 378 |
|
} |
| 379 |
result = conn->Query(oss.str().c_str()); |
result = conn->Query(oss.str().c_str()); |
| 380 |
if ( result == NULL ) throw -4; |
if ( result == NULL ) throw -4; |
| 381 |
row = result->Next(); |
row = result->Next(); |
| 418 |
Long64_t deltapkt = 5000LL; |
Long64_t deltapkt = 5000LL; |
| 419 |
Long64_t deltaobt = 50000LL; |
Long64_t deltaobt = 50000LL; |
| 420 |
// |
// |
| 421 |
// pcksList packetsNames; |
pcksList packetsNames; |
| 422 |
// pcksList::iterator Iter; |
pcksList::iterator Iter; |
| 423 |
// getPacketsNames(packetsNames); |
getPacketsNames(packetsNames); |
| 424 |
// |
// |
| 425 |
pktfirst = 0; |
pktfirst = 0; |
| 426 |
obtfirst = 0; |
obtfirst = 0; |
| 427 |
|
ppktfirst = 0; |
| 428 |
|
pobtfirst = 0; |
| 429 |
// |
// |
| 430 |
TTree *T = 0; |
TTree *T = 0; |
| 431 |
T = (TTree*)file->Get("Physics"); |
T = (TTree*)file->Get("Physics"); |
| 439 |
ph = eh->GetPscuHeader(); |
ph = eh->GetPscuHeader(); |
| 440 |
pktfirst = ph->GetCounter(); |
pktfirst = ph->GetCounter(); |
| 441 |
obtfirst = ph->GetOrbitalTime(); |
obtfirst = ph->GetOrbitalTime(); |
| 442 |
|
ppktfirst = pktfirst; |
| 443 |
|
pobtfirst = obtfirst; |
| 444 |
// |
// |
| 445 |
// code = eh->GetCounter(); |
code = eh->GetCounter(); |
| 446 |
// UInt_t en = 0; |
UInt_t en = 0; |
| 447 |
// for(Iter = packetsNames.begin(); Iter != packetsNames.end(); Iter++){ |
for(Iter = packetsNames.begin(); Iter != packetsNames.end(); Iter++){ |
| 448 |
// en = code->Get(GetPacketType(*Iter)); |
en = code->Get(GetPacketType(*Iter)); |
| 449 |
// if ( en ) printf(" Packet type is %s, entries: %i \n",*Iter,en); |
if ( !strcmp("CalibCalPed",*Iter) || !strcmp("CalibTrk1",*Iter) || !strcmp("CalibTrk2",*Iter) || !strcmp("CalibS4",*Iter) ){ |
| 450 |
//}; |
if ( IsDebug() ) printf(" We have a calibration before the first physic packet: packet type is %s, entries: %i \n",*Iter,en); |
| 451 |
|
// |
| 452 |
|
TTree *TC = 0; |
| 453 |
|
TC = (TTree*)file->Get("CalibCalPed"); |
| 454 |
|
if ( !TC || TC->IsZombie() ) throw -16; |
| 455 |
|
EventHeader *ehc = 0; |
| 456 |
|
PscuHeader *phc = 0; |
| 457 |
|
TC->SetBranchAddress("Header", &ehc); |
| 458 |
|
TC->GetEntry(0); |
| 459 |
|
phc = ehc->GetPscuHeader(); |
| 460 |
|
pktfirst = phc->GetCounter(); |
| 461 |
|
obtfirst = phc->GetOrbitalTime(); |
| 462 |
|
// |
| 463 |
|
}; |
| 464 |
|
}; |
| 465 |
// |
// |
| 466 |
T->GetEntry(nevent-1); |
T->GetEntry(nevent-1); |
| 467 |
ph = eh->GetPscuHeader(); |
ph = eh->GetPscuHeader(); |
| 472 |
upperobt = OBT(obtlast); |
upperobt = OBT(obtlast); |
| 473 |
upperentry = nevent-1; |
upperentry = nevent-1; |
| 474 |
// |
// |
| 475 |
if ( IsDebug() ) printf(" First entries are: OBT %i pkt_num %i \n",obtfirst,pktfirst); |
if ( IsDebug() ) printf(" First entries are: OBT %u pkt_num %u \n",obtfirst,pktfirst); |
| 476 |
// |
// |
| 477 |
if ( IsDebug() ) printf(" Last entries are: OBT %lld pkt_num %lld entry %i\n",upperobt,upperpkt,upperentry); |
if ( IsDebug() ) printf(" Last entries are: OBT %lld pkt_num %lld entry %i\n",upperobt,upperpkt,upperentry); |
| 478 |
// |
// |
| 479 |
if ( (PKT(pktlast) < PKT(pktfirst) && OBT(obtlast) > OBT(obtfirst)) || (PKT(pktlast) > PKT(pktfirst) && OBT(obtlast) < OBT(obtfirst)) ) return(1); |
if ( (PKT(pktlast) < PKT(pktfirst) && OBT(obtlast) > OBT(obtfirst)) || (PKT(pktlast) > PKT(pktfirst) && OBT(obtlast) < OBT(obtfirst)) ) return(32); |
| 480 |
// |
// |
| 481 |
if ( !nevent ) return(2); |
if ( !nevent ) return(64); |
| 482 |
// |
// |
| 483 |
if ( nevent < 2 ) return(4); |
if ( nevent < 2 ) return(128); |
| 484 |
|
if ( nevent < jump ) jump = 1; |
| 485 |
|
// if ( nevent < jump ) jump = int(nevent/10); |
| 486 |
|
// if ( !jump ) jump = 1; |
| 487 |
// |
// |
| 488 |
if ( (PKT(pktlast) < PKT(pktfirst) && OBT(obtlast) < OBT(obtfirst)) || (labs(PKT(pktlast)-PKT(pktfirst))<deltapkt && labs(OBT(obtlast)-OBT(obtfirst))<deltaobt) ){ |
if ( (PKT(pktlast) < PKT(pktfirst) && OBT(obtlast) < OBT(obtfirst)) || (labs(PKT(pktlast)-PKT(pktfirst))<deltapkt && labs(OBT(obtlast)-OBT(obtfirst))<deltaobt) && nevent > deltapkt ){ |
| 489 |
// |
// |
| 490 |
|
if ( IsDebug() ) printf(" starting jump %i \n",jump); |
| 491 |
// go back |
// go back |
| 492 |
zomp = nevent - 2; |
zomp = nevent - 2; |
| 493 |
// |
// |
| 519 |
if ( t_pktlast < upperpkt && t_obtlast < upperobt && t_pktlast < upperpkt2 && t_obtlast < upperobt2 ){ |
if ( t_pktlast < upperpkt && t_obtlast < upperobt && t_pktlast < upperpkt2 && t_obtlast < upperobt2 ){ |
| 520 |
zomp = i + jump + 1; |
zomp = i + jump + 1; |
| 521 |
if ( zomp > nevent-2 ) zomp = nevent - 2; |
if ( zomp > nevent-2 ) zomp = nevent - 2; |
| 522 |
if ( IsDebug() ) printf(" .-. jump %i zomp %i upperpkt %lld pktlast %i upperobt %lld obtlast %u last entry is %i \n",jump,zomp,upperpkt,pktlast,upperobt,obtlast,i); |
if ( IsDebug() ) printf(" .-. jump %i zomp %i upperpkt %lld pktlast %u upperobt %lld obtlast %u last entry is %i \n",jump,zomp,upperpkt,pktlast,upperobt,obtlast,i); |
| 523 |
break; |
break; |
| 524 |
}; |
}; |
| 525 |
// |
// |
| 563 |
Long64_t pkth = 0LL; |
Long64_t pkth = 0LL; |
| 564 |
Long64_t obth = 0LL; |
Long64_t obth = 0LL; |
| 565 |
// |
// |
| 566 |
T->GetEntry(upperentry); |
if ( rhev || rtev ){ |
| 567 |
code = eh->GetCounter(); |
|
| 568 |
Int_t lasttrail = code->Get(pctp->RunTrailer); |
T->GetEntry(upperentry); |
| 569 |
Int_t lasthead = code->Get(pctp->RunHeader); |
code = eh->GetCounter(); |
| 570 |
if ( lasttrail < rtev ){ |
Int_t lasttrail = code->Get(pctp->RunTrailer); |
| 571 |
rt->GetEntry(lasttrail); |
Int_t lasthead = code->Get(pctp->RunHeader); |
| 572 |
pht = eht->GetPscuHeader(); |
if ( lasttrail < rtev ){ |
| 573 |
pktt = PKT(pht->GetCounter()); |
rt->GetEntry(lasttrail); |
| 574 |
obtt = OBT(pht->GetOrbitalTime()); |
pht = eht->GetPscuHeader(); |
| 575 |
}; |
pktt = PKT(pht->GetCounter()); |
| 576 |
// |
obtt = OBT(pht->GetOrbitalTime()); |
| 577 |
if ( lasthead < rhev ){ |
}; |
| 578 |
rh->GetEntry(lasthead); |
// |
| 579 |
phh = ehh->GetPscuHeader(); |
if ( lasthead < rhev ){ |
| 580 |
pkth = PKT(phh->GetCounter()); |
rh->GetEntry(lasthead); |
| 581 |
obth = OBT(phh->GetOrbitalTime()); |
phh = ehh->GetPscuHeader(); |
| 582 |
}; |
pkth = PKT(phh->GetCounter()); |
| 583 |
// |
obth = OBT(phh->GetOrbitalTime()); |
| 584 |
if ( IsDebug() ) printf(" rhev before %i ph %lld upperp %lld oh %lld uppero %lld \n",rhev,pkth,upperpkt,obth,upperobt); |
}; |
| 585 |
if ( pkth > upperpkt && obth > upperobt ){ |
// |
| 586 |
if ( IsDebug() ) printf(" Upper limits extended to include last header: ph %lld upperp %lld oh %lld uppero %lld \n",pkth,upperpkt,obth,upperobt); |
if ( IsDebug() ) printf(" rhev before %i ph %lld upperp %lld oh %lld uppero %lld \n",rhev,pkth,upperpkt,obth,upperobt); |
| 587 |
upperpkt = pkth; |
if ( pkth > upperpkt && obth > upperobt ){ |
| 588 |
upperobt = obth; |
if ( IsDebug() ) printf(" Upper limits extended to include last header: ph %lld upperp %lld oh %lld uppero %lld \n",pkth,upperpkt,obth,upperobt); |
| 589 |
rhev = lasthead+1; |
upperpkt = pkth; |
| 590 |
} else { |
upperobt = obth; |
| 591 |
rhev = lasthead; |
rhev = lasthead+1; |
| 592 |
}; |
} else { |
| 593 |
if ( IsDebug() ) printf(" rhev after %i ph %lld upperp %lld oh %lld uppero %lld \n",rhev,pkth,upperpkt,obth,upperobt); |
rhev = lasthead; |
| 594 |
// |
}; |
| 595 |
if ( IsDebug() ) printf(" rtev beforev %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
if ( IsDebug() ) printf(" rhev after %i ph %lld upperp %lld oh %lld uppero %lld \n",rhev,pkth,upperpkt,obth,upperobt); |
| 596 |
if ( pktt > upperpkt && obtt > upperobt ){ |
// |
| 597 |
if ( IsDebug() ) printf(" Upper limits extended to include last trailer: pt %lld upperp %lld ot %lld uppero %lld \n",pktt,upperpkt,obtt,upperobt); |
if ( IsDebug() ) printf(" rtev beforev %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
| 598 |
upperpkt = pktt; |
if ( pktt > upperpkt && obtt > upperobt ){ |
| 599 |
upperobt = obtt; |
if ( IsDebug() ) printf(" Upper limits extended to include last trailer: pt %lld upperp %lld ot %lld uppero %lld \n",pktt,upperpkt,obtt,upperobt); |
| 600 |
rtev = lasttrail+1; |
upperpkt = pktt; |
| 601 |
} else { |
upperobt = obtt; |
| 602 |
rtev = lasttrail; |
rtev = lasttrail+1; |
| 603 |
}; |
} else { |
| 604 |
if ( IsDebug() ) printf(" rtev after %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
rtev = lasttrail; |
| 605 |
// goto kikko; |
}; |
| 606 |
// |
if ( IsDebug() ) printf(" rtev after %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
| 607 |
// |
// goto kikko; |
| 608 |
// Check if runtrailer/runheader are within lower limits |
// |
| 609 |
// |
// |
| 610 |
// |
// Check if runtrailer/runheader are within lower limits |
| 611 |
pkth = 0LL; |
// |
| 612 |
obth = 0LL; |
// |
| 613 |
spkth = 0LL; |
pkth = 0LL; |
| 614 |
sobth = 0LL; |
obth = 0LL; |
| 615 |
for (Int_t k=0; k<rhev; k++){ |
spkth = 0LL; |
| 616 |
if ( k > 0 ){ |
sobth = 0LL; |
| 617 |
spkth = pkth; |
for (Int_t k=0; k<rhev; k++){ |
| 618 |
sobth = obth; |
if ( k > 0 ){ |
| 619 |
}; |
spkth = pkth; |
| 620 |
rh->GetEntry(k); |
sobth = obth; |
| 621 |
phh = ehh->GetPscuHeader(); |
}; |
| 622 |
pkth = PKT(phh->GetCounter()); |
rh->GetEntry(k); |
| 623 |
obth = OBT(phh->GetOrbitalTime()); |
phh = ehh->GetPscuHeader(); |
| 624 |
// |
pkth = PKT(phh->GetCounter()); |
| 625 |
// if ( IsDebug() ) printf(" k %i rhev before %i ph %u upperp %u oh %u uppero %u \n",k,rhev,pkth,spkth,obth,sobth); |
obth = OBT(phh->GetOrbitalTime()); |
| 626 |
// |
// |
| 627 |
if ( pkth < spkth && obth < sobth ){ |
// if ( IsDebug() ) printf(" k %i rhev before %i ph %u upperp %u oh %u uppero %u \n",k,rhev,pkth,spkth,obth,sobth); |
| 628 |
if ( IsDebug() ) printf(" RH PROBLEMS determining the event repetition at the end of the file lasthead %i \n",rhev); |
// |
| 629 |
// |
if ( pkth < spkth && obth < sobth ){ |
| 630 |
rhev = k-1; |
if ( IsDebug() ) printf(" RH PROBLEMS determining the event repetition at the end of the file lasthead %i \n",rhev); |
| 631 |
rh->GetEntry(rhev); |
// |
| 632 |
pkth = spkth; |
rhev = k-1; |
| 633 |
obth = sobth; |
rh->GetEntry(rhev); |
| 634 |
// |
pkth = spkth; |
| 635 |
UInt_t evbefh = 0; |
obth = sobth; |
| 636 |
code = ehh->GetCounter(); |
// |
| 637 |
evbefh = code->Get(pctp->Physics); |
UInt_t evbefh = 0; |
| 638 |
if ( evbefh >= 0 ){ |
code = ehh->GetCounter(); |
| 639 |
T->GetEntry(evbefh); |
evbefh = code->Get(pctp->Physics); |
| 640 |
ph = eh->GetPscuHeader(); |
if ( evbefh >= 0 ){ |
| 641 |
t_pktlast = PKT(ph->GetCounter()); |
T->GetEntry(evbefh); |
|
t_obtlast = OBT(ph->GetOrbitalTime()); |
|
|
if ( t_pktlast <= spkth && t_obtlast <= sobth ){ // jump |
|
|
upperpkt = pkth; |
|
|
upperobt = obth; |
|
|
upperentry = evbefh-1; |
|
|
} else { |
|
|
while ( t_pktlast > spkth && t_obtlast > sobth && evbefh < nevent ){ |
|
|
evbefh++; |
|
|
T->GetEntry(evbefh); |
|
|
ph = eh->GetPscuHeader(); |
|
|
t_pktlast = PKT(ph->GetCounter()); |
|
|
t_obtlast = OBT(ph->GetOrbitalTime()); |
|
|
}; |
|
|
T->GetEntry(evbefh-1); |
|
| 642 |
ph = eh->GetPscuHeader(); |
ph = eh->GetPscuHeader(); |
| 643 |
upperpkt = PKT(ph->GetCounter()); |
t_pktlast = PKT(ph->GetCounter()); |
| 644 |
upperobt = OBT(ph->GetOrbitalTime()); |
t_obtlast = OBT(ph->GetOrbitalTime()); |
| 645 |
upperentry = evbefh-1; |
if ( t_pktlast <= spkth && t_obtlast <= sobth ){ // jump |
| 646 |
}; |
upperpkt = pkth; |
| 647 |
|
upperobt = obth; |
| 648 |
|
upperentry = evbefh-1; |
| 649 |
|
} else { |
| 650 |
|
while ( t_pktlast > spkth && t_obtlast > sobth && evbefh < nevent ){ |
| 651 |
|
evbefh++; |
| 652 |
|
T->GetEntry(evbefh); |
| 653 |
|
ph = eh->GetPscuHeader(); |
| 654 |
|
t_pktlast = PKT(ph->GetCounter()); |
| 655 |
|
t_obtlast = OBT(ph->GetOrbitalTime()); |
| 656 |
|
}; |
| 657 |
|
T->GetEntry(evbefh-1); |
| 658 |
|
ph = eh->GetPscuHeader(); |
| 659 |
|
upperpkt = PKT(ph->GetCounter()); |
| 660 |
|
upperobt = OBT(ph->GetOrbitalTime()); |
| 661 |
|
upperentry = evbefh-1; |
| 662 |
|
}; |
| 663 |
|
}; |
| 664 |
|
if ( IsDebug() ) printf(" rhev after %i ph %lld upperp %lld oh %lld uppero %lld \n",rhev,pkth,upperpkt,obth,upperobt); |
| 665 |
|
goto kikko0; |
| 666 |
}; |
}; |
|
if ( IsDebug() ) printf(" rhev after %i ph %lld upperp %lld oh %lld uppero %lld \n",rhev,pkth,upperpkt,obth,upperobt); |
|
|
goto kikko0; |
|
|
}; |
|
|
}; |
|
|
kikko0: |
|
|
// |
|
|
// |
|
|
// |
|
|
pktt = 0LL; |
|
|
obtt = 0LL; |
|
|
spktt = 0LL; |
|
|
sobtt = 0LL; |
|
|
for (Int_t k=0; k<rtev; k++){ |
|
|
if ( k > 0 ){ |
|
|
spktt = pktt; |
|
|
sobtt = obtt; |
|
| 667 |
}; |
}; |
| 668 |
rt->GetEntry(k); |
kikko0: |
| 669 |
pht = eht->GetPscuHeader(); |
// |
|
pktt = PKT(pht->GetCounter()); |
|
|
obtt = OBT(pht->GetOrbitalTime()); |
|
| 670 |
// |
// |
|
// if ( IsDebug() ) printf(" k %i rtev beforev %i pt %i upperp %i ot %llu uppero %llu \n",k,rtev,pktt,spktt,obtt,sobtt); |
|
| 671 |
// |
// |
| 672 |
if ( pktt < spktt && obtt < sobtt ){ |
pktt = 0LL; |
| 673 |
if ( IsDebug() ) printf(" RT PROBLEMS determining the event repetition at the end of the file lasttrail %i \n",rtev); |
obtt = 0LL; |
| 674 |
|
spktt = 0LL; |
| 675 |
|
sobtt = 0LL; |
| 676 |
|
for (Int_t k=0; k<rtev; k++){ |
| 677 |
|
if ( k > 0 ){ |
| 678 |
|
spktt = pktt; |
| 679 |
|
sobtt = obtt; |
| 680 |
|
}; |
| 681 |
|
rt->GetEntry(k); |
| 682 |
|
pht = eht->GetPscuHeader(); |
| 683 |
|
pktt = PKT(pht->GetCounter()); |
| 684 |
|
obtt = OBT(pht->GetOrbitalTime()); |
| 685 |
// |
// |
| 686 |
rtev = k-1; |
// if ( IsDebug() ) printf(" k %i rtev beforev %i pt %i upperp %i ot %llu uppero %llu \n",k,rtev,pktt,spktt,obtt,sobtt); |
|
rt->GetEntry(rtev); |
|
|
pktt = spktt; |
|
|
obtt = sobtt; |
|
|
if ( IsDebug() ) printf(" lasttrail %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
|
| 687 |
// |
// |
| 688 |
UInt_t evbeft = 0; |
if ( pktt < spktt && obtt < sobtt ){ |
| 689 |
code = eht->GetCounter(); |
if ( IsDebug() ) printf(" RT PROBLEMS determining the event repetition at the end of the file lasttrail %i \n",rtev); |
| 690 |
evbeft = code->Get(pctp->Physics); |
// |
| 691 |
if ( evbeft >= 0 ){ |
rtev = k-1; |
| 692 |
T->GetEntry(evbeft); |
rt->GetEntry(rtev); |
| 693 |
ph = eh->GetPscuHeader(); |
pktt = spktt; |
| 694 |
t_pktlast = PKT(ph->GetCounter()); |
obtt = sobtt; |
| 695 |
t_obtlast = OBT(ph->GetOrbitalTime()); |
if ( IsDebug() ) printf(" lasttrail %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
| 696 |
if ( t_pktlast <= spktt && t_obtlast <= sobtt ){ // jump |
// |
| 697 |
upperpkt = pktt; |
UInt_t evbeft = 0; |
| 698 |
upperobt = obtt; |
code = eht->GetCounter(); |
| 699 |
upperentry = evbeft-1; |
evbeft = code->Get(pctp->Physics); |
| 700 |
} else { |
if ( evbeft >= 0 ){ |
| 701 |
while ( t_pktlast > spktt && t_obtlast > sobtt && evbeft < nevent ){ |
T->GetEntry(evbeft); |
| 702 |
evbeft++; |
ph = eh->GetPscuHeader(); |
| 703 |
T->GetEntry(evbeft); |
t_pktlast = PKT(ph->GetCounter()); |
| 704 |
|
t_obtlast = OBT(ph->GetOrbitalTime()); |
| 705 |
|
if ( t_pktlast <= spktt && t_obtlast <= sobtt ){ // jump |
| 706 |
|
upperpkt = pktt; |
| 707 |
|
upperobt = obtt; |
| 708 |
|
upperentry = evbeft-1; |
| 709 |
|
} else { |
| 710 |
|
while ( t_pktlast > spktt && t_obtlast > sobtt && evbeft < nevent ){ |
| 711 |
|
evbeft++; |
| 712 |
|
T->GetEntry(evbeft); |
| 713 |
|
ph = eh->GetPscuHeader(); |
| 714 |
|
t_pktlast = PKT(ph->GetCounter()); |
| 715 |
|
t_obtlast = OBT(ph->GetOrbitalTime()); |
| 716 |
|
}; |
| 717 |
|
T->GetEntry(evbeft-1); |
| 718 |
ph = eh->GetPscuHeader(); |
ph = eh->GetPscuHeader(); |
| 719 |
t_pktlast = PKT(ph->GetCounter()); |
upperpkt = PKT(ph->GetCounter()); |
| 720 |
t_obtlast = OBT(ph->GetOrbitalTime()); |
upperobt = OBT(ph->GetOrbitalTime()); |
| 721 |
|
upperentry = evbeft-1; |
| 722 |
}; |
}; |
|
T->GetEntry(evbeft-1); |
|
|
ph = eh->GetPscuHeader(); |
|
|
upperpkt = PKT(ph->GetCounter()); |
|
|
upperobt = OBT(ph->GetOrbitalTime()); |
|
|
upperentry = evbeft-1; |
|
| 723 |
}; |
}; |
| 724 |
|
if ( IsDebug() ) printf(" rtev after %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
| 725 |
|
goto kikko; |
| 726 |
|
// break; |
| 727 |
|
// |
| 728 |
}; |
}; |
| 729 |
if ( IsDebug() ) printf(" rtev after %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
// |
|
goto kikko; |
|
|
// break; |
|
|
// |
|
| 730 |
}; |
}; |
| 731 |
// |
// |
| 732 |
}; |
kikko: |
| 733 |
// |
// |
| 734 |
kikko: |
T->GetEntry(upperentry); |
| 735 |
// |
code = eh->GetCounter(); |
| 736 |
T->GetEntry(upperentry); |
lasttrail = code->Get(pctp->RunTrailer); |
| 737 |
code = eh->GetCounter(); |
lasthead = code->Get(pctp->RunHeader); |
| 738 |
lasttrail = code->Get(pctp->RunTrailer); |
if ( lasttrail < rtev ){ |
| 739 |
lasthead = code->Get(pctp->RunHeader); |
rt->GetEntry(lasttrail); |
| 740 |
if ( lasttrail < rtev ){ |
pht = eht->GetPscuHeader(); |
| 741 |
rt->GetEntry(lasttrail); |
pktt = PKT(pht->GetCounter()); |
| 742 |
pht = eht->GetPscuHeader(); |
obtt = OBT(pht->GetOrbitalTime()); |
| 743 |
pktt = PKT(pht->GetCounter()); |
}; |
| 744 |
obtt = OBT(pht->GetOrbitalTime()); |
// |
| 745 |
}; |
if ( lasthead < rhev ){ |
| 746 |
// |
rh->GetEntry(lasthead); |
| 747 |
if ( lasthead < rhev ){ |
phh = ehh->GetPscuHeader(); |
| 748 |
rh->GetEntry(lasthead); |
pkth = PKT(phh->GetCounter()); |
| 749 |
phh = ehh->GetPscuHeader(); |
obth = OBT(phh->GetOrbitalTime()); |
| 750 |
pkth = PKT(phh->GetCounter()); |
}; |
| 751 |
obth = OBT(phh->GetOrbitalTime()); |
// |
| 752 |
}; |
if ( IsDebug() ) printf(" rhev before %i ph %lld upperp %lld oh %lld uppero %lld \n",rhev,pkth,upperpkt,obth,upperobt); |
| 753 |
// |
if ( pkth > upperpkt && obth > upperobt ){ |
| 754 |
if ( IsDebug() ) printf(" rhev before %i ph %lld upperp %lld oh %lld uppero %lld \n",rhev,pkth,upperpkt,obth,upperobt); |
if ( IsDebug() ) printf(" Upper limits extended to include last header: ph %lld upperp %lld oh %lld uppero %lld \n",pkth,upperpkt,obth,upperobt); |
| 755 |
if ( pkth > upperpkt && obth > upperobt ){ |
upperpkt = pkth; |
| 756 |
if ( IsDebug() ) printf(" Upper limits extended to include last header: ph %lld upperp %lld oh %lld uppero %lld \n",pkth,upperpkt,obth,upperobt); |
upperobt = obth; |
| 757 |
upperpkt = pkth; |
rhev = lasthead+1; |
| 758 |
upperobt = obth; |
} else { |
| 759 |
rhev = lasthead+1; |
rhev = lasthead; |
| 760 |
} else { |
}; |
| 761 |
rhev = lasthead; |
if ( IsDebug() ) printf(" rhev after %i ph %lld upperp %lld oh %lld uppero %lld \n",rhev,pkth,upperpkt,obth,upperobt); |
| 762 |
}; |
// |
| 763 |
if ( IsDebug() ) printf(" rhev after %i ph %lld upperp %lld oh %lld uppero %lld \n",rhev,pkth,upperpkt,obth,upperobt); |
if ( IsDebug() ) printf(" rtev beforev %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
| 764 |
// |
if ( pktt > upperpkt && obtt > upperobt ){ |
| 765 |
if ( IsDebug() ) printf(" rtev beforev %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
if ( IsDebug() ) printf(" Upper limits extended to include last trailer: pt %lld upperp %lld ot %lld uppero %lld \n",pktt,upperpkt,obtt,upperobt); |
| 766 |
if ( pktt > upperpkt && obtt > upperobt ){ |
upperpkt = pktt; |
| 767 |
if ( IsDebug() ) printf(" Upper limits extended to include last trailer: pt %lld upperp %lld ot %lld uppero %lld \n",pktt,upperpkt,obtt,upperobt); |
upperobt = obtt; |
| 768 |
upperpkt = pktt; |
rtev = lasttrail+1; |
| 769 |
upperobt = obtt; |
} else { |
| 770 |
rtev = lasttrail+1; |
rtev = lasttrail; |
| 771 |
} else { |
}; |
| 772 |
rtev = lasttrail; |
if ( IsDebug() ) printf(" rtev after %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
| 773 |
|
// |
| 774 |
}; |
}; |
|
if ( IsDebug() ) printf(" rtev after %i pt %lld upperp %lld ot %lld uppero %lld \n",rtev,pktt,upperpkt,obtt,upperobt); |
|
| 775 |
// |
// |
| 776 |
if ( IsDebug() ) printf(" Upper limits are: OBT %lld pkt_num %lld upper entry %i \n",upperobt,upperpkt,upperentry); |
if ( IsDebug() ) printf(" Upper limits are: OBT %lld pkt_num %lld upper entry %i \n",upperobt,upperpkt,upperentry); |
| 777 |
// |
// |
| 907 |
if( !conn ) throw -1; |
if( !conn ) throw -1; |
| 908 |
bool connect = conn->IsConnected(); |
bool connect = conn->IsConnected(); |
| 909 |
if( !connect ) throw -1; |
if( !connect ) throw -1; |
| 910 |
|
// |
| 911 |
|
if ( IsDebug() ) printf("\n DB INFORMATIONS:\n SQL: %s Version: %s Host %s Port %i \n\n",conn->GetDBMS(),conn->ServerInfo(),conn->GetHost(),conn->GetPort()); |
| 912 |
|
// |
| 913 |
if ( !dworbit && strcmp(this->GetRootName().Data(),"") ) throw -27; |
if ( !dworbit && strcmp(this->GetRootName().Data(),"") ) throw -27; |
| 914 |
// |
// |
| 915 |
// set DB timezone to UTC |
// set DB timezone to UTC |
| 921 |
TSQLResult *result = 0; |
TSQLResult *result = 0; |
| 922 |
result = conn->Query(oss.str().c_str()); |
result = conn->Query(oss.str().c_str()); |
| 923 |
if ( !result ) throw -10; |
if ( !result ) throw -10; |
| 924 |
|
oss.str(""); |
| 925 |
|
oss << "SET wait_timeout=173000;"; |
| 926 |
|
conn->Query(oss.str().c_str()); |
| 927 |
// |
// |
| 928 |
}; |
}; |
| 929 |
|
|
| 932 |
*/ |
*/ |
| 933 |
Long64_t PamelaDBOperations::PKT(UInt_t pkt_num){ |
Long64_t PamelaDBOperations::PKT(UInt_t pkt_num){ |
| 934 |
// |
// |
| 935 |
if ( IsDebug() ) printf(" pkt conversion: pkt_num is %u pktfirst is %u (UInt_t)(16777214/2)) is %u \n",pkt_num,pktfirst,(UInt_t)(16777214/2)); |
if ( IsDebug() ) printf(" pkt conversion: pkt_num is %u pktfirst is %u (UInt_t)(16777214/2)) is %u \n",pkt_num,ppktfirst,(UInt_t)(16777214/2)); |
| 936 |
// |
// |
| 937 |
if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2) ){ |
if ( pkt_num < (ppktfirst/2) && ppktfirst > (16777214/2) ){ |
| 938 |
if ( IsDebug() ) printf(" rise up pktnum %lld \n",(Long64_t)pkt_num+16777215LL); |
if ( IsDebug() ) printf(" rise up pktnum %lld \n",(Long64_t)pkt_num+16777215LL); |
| 939 |
return((Long64_t)pkt_num+16777215LL); |
return((Long64_t)pkt_num+16777215LL); |
| 940 |
}; |
}; |
| 941 |
// |
// |
| 942 |
if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){ |
if ( pkt_num > ((Long64_t)ppktfirst*2) && pkt_num > (16777214/2) ){ |
| 943 |
if ( IsDebug() ) printf(" rise down pktnum %lld \n",(Long64_t)pkt_num-16777215LL); |
if ( IsDebug() ) printf(" rise down pktnum %lld \n",(Long64_t)pkt_num-16777215LL); |
| 944 |
return((Long64_t)pkt_num-16777215LL); |
return((Long64_t)pkt_num-16777215LL); |
| 945 |
}; |
}; |
| 954 |
*/ |
*/ |
| 955 |
Long64_t PamelaDBOperations::OBT(UInt_t obt){ |
Long64_t PamelaDBOperations::OBT(UInt_t obt){ |
| 956 |
// |
// |
| 957 |
if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((Long64_t)(obt+numeric_limits<UInt_t>::max())); |
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)); |
| 958 |
|
// |
| 959 |
|
if ( obt < (pobtfirst/2) && pobtfirst > (numeric_limits<UInt_t>::max()/2) ){ |
| 960 |
|
if ( IsDebug() ) printf(" rise up obt %lld \n",(Long64_t)(obt+numeric_limits<UInt_t>::max())); |
| 961 |
|
return((Long64_t)(obt+numeric_limits<UInt_t>::max())); |
| 962 |
|
}; |
| 963 |
// |
// |
| 964 |
if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){ |
if ( obt > ((Long64_t)pobtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){ |
| 965 |
|
if ( IsDebug() ) printf(" pobtfirst*2 %lld \n",((Long64_t)pobtfirst*2)); |
| 966 |
|
if ( IsDebug() ) printf(" rise down pktnum %lld \n", (Long64_t)obt-(Long64_t)numeric_limits<UInt_t>::max()); |
| 967 |
return((Long64_t)obt-(Long64_t)numeric_limits<UInt_t>::max()); |
return((Long64_t)obt-(Long64_t)numeric_limits<UInt_t>::max()); |
| 968 |
}; |
}; |
| 969 |
// |
// |
| 970 |
|
if ( IsDebug() ) printf(" as it is %lld \n",(Long64_t)obt); |
| 971 |
return((Long64_t)obt); |
return((Long64_t)obt); |
| 972 |
}; |
}; |
| 973 |
|
|
| 1083 |
if ( idr ) return(1); |
if ( idr ) return(1); |
| 1084 |
// |
// |
| 1085 |
oss.str(""); |
oss.str(""); |
| 1086 |
oss << "INSERT INTO GL_RAW (PATH, NAME) VALUES ('" |
if ( STATIC ){ |
| 1087 |
<< this->GetRawPath().Data() << "', '" << this->GetRawFile().Data() << "')"; |
oss << "INSERT INTO GL_RAW (PATH, NAME) VALUES ('" |
| 1088 |
|
<< this->GetRawPath().Data() << "', '" << this->GetRawFile().Data() << "')"; |
| 1089 |
|
} else { |
| 1090 |
|
oss << "INSERT INTO GL_RAW (PATH, NAME) VALUES ('$PAM_RAW', '" << this->GetRawFile().Data() << "')"; |
| 1091 |
|
}; |
| 1092 |
if ( conn->Query(oss.str().c_str()) == 0 ) throw -4; |
if ( conn->Query(oss.str().c_str()) == 0 ) throw -4; |
| 1093 |
// |
// |
| 1094 |
idr = this->SetID_RAW(); |
idr = this->SetID_RAW(); |
| 1107 |
TSQLResult *result = 0; |
TSQLResult *result = 0; |
| 1108 |
TSQLRow *row = 0; |
TSQLRow *row = 0; |
| 1109 |
UInt_t t0 = 0; |
UInt_t t0 = 0; |
| 1110 |
|
Int_t signal = 0; |
| 1111 |
|
// |
| 1112 |
|
signal = this->SetUpperLimits(); |
| 1113 |
// |
// |
| 1114 |
stringstream oss; |
stringstream oss; |
| 1115 |
// |
// |
| 1162 |
}; |
}; |
| 1163 |
// |
// |
| 1164 |
TTree *T = 0; |
TTree *T = 0; |
|
Int_t signal = 0; |
|
| 1165 |
// |
// |
| 1166 |
UInt_t nevent = 0; |
UInt_t nevent = 0; |
| 1167 |
UInt_t recEntries = 0; |
UInt_t recEntries = 0; |
| 1371 |
UInt_t idtimesync = 0; |
UInt_t idtimesync = 0; |
| 1372 |
// |
// |
| 1373 |
oss.str(""); |
oss.str(""); |
| 1374 |
oss << " SELECT COUNT(GL_ROOT.ID_RAW),GL_RAW.ID,GL_ROOT.ID FROM GL_RAW " |
if ( STATIC ){ |
| 1375 |
<< " LEFT JOIN GL_ROOT " |
oss << " SELECT COUNT(GL_ROOT.ID_RAW),GL_RAW.ID,GL_ROOT.ID FROM GL_RAW " |
| 1376 |
<< " ON GL_RAW.ID = GL_ROOT.ID_RAW " |
<< " LEFT JOIN GL_ROOT " |
| 1377 |
<< " WHERE GL_RAW.PATH = '" << this->GetRawPath().Data() << "' AND " |
<< " ON GL_RAW.ID = GL_ROOT.ID_RAW " |
| 1378 |
<< " GL_RAW.NAME = '" << this->GetRawFile().Data() << "' GROUP BY GL_RAW.ID "; |
<< " WHERE GL_RAW.PATH = '" << this->GetRawPath().Data() << "' AND " |
| 1379 |
|
<< " GL_RAW.NAME = '" << this->GetRawFile().Data() << "' GROUP BY GL_RAW.ID "; |
| 1380 |
|
} else { |
| 1381 |
|
oss << " SELECT COUNT(GL_ROOT.ID_RAW),GL_RAW.ID,GL_ROOT.ID FROM GL_RAW " |
| 1382 |
|
<< " LEFT JOIN GL_ROOT " |
| 1383 |
|
<< " ON GL_RAW.ID = GL_ROOT.ID_RAW " |
| 1384 |
|
<< " WHERE GL_RAW.PATH = '$PAM_RAW' AND " |
| 1385 |
|
<< " GL_RAW.NAME = '" << this->GetRawFile().Data() << "' GROUP BY GL_RAW.ID "; |
| 1386 |
|
}; |
| 1387 |
result = conn->Query(oss.str().c_str()); |
result = conn->Query(oss.str().c_str()); |
| 1388 |
// |
// |
| 1389 |
if ( !result ) throw -12; |
if ( !result ) throw -12; |
| 1410 |
idtimesync = (UInt_t)atoll(row->GetField(0)); |
idtimesync = (UInt_t)atoll(row->GetField(0)); |
| 1411 |
// |
// |
| 1412 |
oss.str(""); |
oss.str(""); |
| 1413 |
oss << "INSERT INTO GL_ROOT (ID_RAW, ID_TIMESYNC,PATH, NAME) VALUES ('" |
if ( STATIC ){ |
| 1414 |
<< this->GetID_RAW() << "', '" << idtimesync << "', '" << this->GetRootPath().Data() << "', '" << this->GetRootFile().Data() << "')"; |
oss << "INSERT INTO GL_ROOT (ID_RAW, ID_TIMESYNC,PATH, NAME) VALUES ('" |
| 1415 |
|
<< this->GetID_RAW() << "', '" << idtimesync << "', '" << this->GetRootPath().Data() << "', '" << this->GetRootFile().Data() << "')"; |
| 1416 |
|
} else { |
| 1417 |
|
oss << "INSERT INTO GL_ROOT (ID_RAW, ID_TIMESYNC,PATH, NAME) VALUES ('" |
| 1418 |
|
<< this->GetID_RAW() << "', '" << idtimesync << "', '$PAM_L0', '" << this->GetRootFile().Data() << "')"; |
| 1419 |
|
}; |
| 1420 |
// |
// |
| 1421 |
if (conn->Query(oss.str().c_str()) == 0) throw -4; |
if (conn->Query(oss.str().c_str()) == 0) throw -4; |
| 1422 |
// |
// |
| 1443 |
TSQLResult *result = 0; |
TSQLResult *result = 0; |
| 1444 |
TSQLRow *row = 0; |
TSQLRow *row = 0; |
| 1445 |
oss.str(""); |
oss.str(""); |
| 1446 |
oss << "SELECT ID, BOOT_NUMBER FROM GL_RAW WHERE " |
if ( STATIC ){ |
| 1447 |
<< " PATH = '" << this->GetRawPath().Data() << "' AND " |
oss << "SELECT ID, BOOT_NUMBER FROM GL_RAW WHERE " |
| 1448 |
<< " NAME = '" << this->GetRawFile().Data() << "' "; |
<< " PATH = '" << this->GetRawPath().Data() << "' AND " |
| 1449 |
|
<< " NAME = '" << this->GetRawFile().Data() << "' "; |
| 1450 |
|
} else { |
| 1451 |
|
oss << "SELECT ID, BOOT_NUMBER FROM GL_RAW WHERE " |
| 1452 |
|
<< " PATH = '$PAM_RAW' AND " |
| 1453 |
|
<< " NAME = '" << this->GetRawFile().Data() << "' "; |
| 1454 |
|
}; |
| 1455 |
result = conn->Query(oss.str().c_str()); |
result = conn->Query(oss.str().c_str()); |
| 1456 |
// |
// |
| 1457 |
if ( !result ) throw -4;; |
if ( !result ) throw -4;; |
| 1541 |
// |
// |
| 1542 |
Int_t sgn = 0; |
Int_t sgn = 0; |
| 1543 |
// |
// |
| 1544 |
if ( !found ){ |
if ( !found && !BOOTNO ){ |
| 1545 |
throw -29; |
throw -29; |
| 1546 |
} else { |
} else { |
| 1547 |
if ( afound ){ |
if ( afound ){ |
| 1570 |
stringstream oss; |
stringstream oss; |
| 1571 |
oss.str(""); |
oss.str(""); |
| 1572 |
// |
// |
| 1573 |
signal = this->SetUpperLimits(); |
// signal = this->SetUpperLimits(); |
| 1574 |
// |
// |
| 1575 |
// loop on runheader and runtrailer events |
// loop on runheader and runtrailer events |
| 1576 |
// |
// |
| 1588 |
rt->SetBranchAddress("RunTrailer", &runt); |
rt->SetBranchAddress("RunTrailer", &runt); |
| 1589 |
rt->SetBranchAddress("Header", &eht); |
rt->SetBranchAddress("Header", &eht); |
| 1590 |
// |
// |
| 1591 |
|
TTree *T = (TTree*)file->Get("Physics"); |
| 1592 |
|
if ( !T || T->IsZombie() ) throw -16; |
| 1593 |
|
EventHeader *eh = 0; |
| 1594 |
|
T->SetBranchAddress("Header", &eh); |
| 1595 |
|
// |
| 1596 |
|
if ( !(rh->GetEntries()) && !(rt->GetEntries()) && !(T->GetEntries()) ) return(16); |
| 1597 |
|
// |
| 1598 |
UInt_t obtt = 0; |
UInt_t obtt = 0; |
| 1599 |
UInt_t obth = 0; |
UInt_t obth = 0; |
| 1600 |
UInt_t pktt = 0; |
UInt_t pktt = 0; |
| 1628 |
// |
// |
| 1629 |
if ( !ptt && !(ptht+1) ){ |
if ( !ptt && !(ptht+1) ){ |
| 1630 |
// |
// |
| 1631 |
if ( IsDebug() ) printf(" Piece of run at the beginning of the file %i %i %i \n",ptht,pth,ptt); |
if ( IsDebug() ) printf(" Piece of run at the beginning of the file %u %u %u \n",ptht,pth,ptt); |
| 1632 |
// |
// |
| 1633 |
this->HandleRunFragments(true,false,0,(evbeft-1)); |
this->HandleRunFragments(true,false,0,(evbeft-1)); |
| 1634 |
// |
// |
| 1635 |
// |
// |
| 1636 |
} else if ( pth == ptht ){ |
} else if ( pth == ptht ){ |
| 1637 |
// |
// |
| 1638 |
if ( IsDebug() ) printf(" Missing header %i %i %i\n",ptht,pth,ptt); |
if ( IsDebug() ) printf(" Missing header %u %u %u\n",ptht,pth,ptt); |
| 1639 |
// |
// |
| 1640 |
if ( (ptt-1) < 0 ) throw -15; // should never arrive here! |
if ( (ptt-1) < 0 ) throw -15; // should never arrive here! |
| 1641 |
rt->GetEntry(ptt-1); |
rt->GetEntry(ptt-1); |
| 1644 |
rt->GetEntry(ptt); |
rt->GetEntry(ptt); |
| 1645 |
pht = eht->GetPscuHeader(); |
pht = eht->GetPscuHeader(); |
| 1646 |
// |
// |
| 1647 |
if ( IsDebug() ) printf(" Try to find the beginning of a run which has only the runtrailer %i %i %i \n",ptht,pth,ptt); |
if ( IsDebug() ) printf(" Try to find the beginning of a run which has only the runtrailer %u %u %u \n",ptht,pth,ptt); |
| 1648 |
if ( IsDebug() ) printf(" ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' %i %i %i \n",pkth,obth,obtt); |
if ( IsDebug() ) printf(" ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' %u %u %u \n",pkth,obth,obtt); |
| 1649 |
// |
// |
| 1650 |
this->HandleMissingHoT(true,false,evbefh,evbeft-1); |
this->HandleMissingHoT(true,false,evbefh,evbeft-1); |
| 1651 |
// |
// |
| 1652 |
} else { |
} else { |
| 1653 |
// |
// |
| 1654 |
if ( IsDebug() ) printf(" Could be a good run, we have a runheader followed by a runtrailer %i %i %i\n",ptht,pth,ptt); |
if ( IsDebug() ) printf(" Could be a good run, we have a runheader followed by a runtrailer %u %u %u\n",ptht,pth,ptt); |
| 1655 |
// |
// |
| 1656 |
rh->GetEntry(ptht); |
rh->GetEntry(ptht); |
| 1657 |
phh = ehh->GetPscuHeader(); |
phh = ehh->GetPscuHeader(); |
| 1659 |
obth = phh->GetOrbitalTime(); |
obth = phh->GetOrbitalTime(); |
| 1660 |
cod = ehh->GetCounter(); |
cod = ehh->GetCounter(); |
| 1661 |
evbefh = cod->Get(pctp->Physics); |
evbefh = cod->Get(pctp->Physics); |
| 1662 |
if ( IsDebug() ) printf(" ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' %i %i %i \n",pkth,obth,obtt); |
if ( IsDebug() ) printf(" ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' %u %u %u \n",pkth,obth,obtt); |
| 1663 |
// |
// |
| 1664 |
// handle this run |
// handle this run |
| 1665 |
// |
// |
| 1669 |
// |
// |
| 1670 |
if ( PKT(pkth)>PKT(pktfirst) && OBT(obth)>OBT(obtfirst) && !ptt ){ |
if ( PKT(pkth)>PKT(pktfirst) && OBT(obth)>OBT(obtfirst) && !ptt ){ |
| 1671 |
// |
// |
| 1672 |
if ( IsDebug() ) printf(" Piece of run at the beginning of the file WITH NO RUNTRAILER \n"); |
if ( IsDebug() ) printf(" Piece of run at the beginning of the file WITH NO RUNTRAILER evbefh = %u \n",evbefh); |
|
// |
|
|
this->HandleRunFragments(true,true,0,(evbefh-1)); |
|
| 1673 |
// |
// |
| 1674 |
|
if ( evbefh == 0 ) { |
| 1675 |
|
// |
| 1676 |
|
signal = 8; |
| 1677 |
|
if ( IsDebug() ) printf(" Not supported yet: run with no events, no runtrailer, no runheader \n"); |
| 1678 |
|
// |
| 1679 |
|
} else { |
| 1680 |
|
// |
| 1681 |
|
this->HandleRunFragments(true,true,0,(evbefh-1)); |
| 1682 |
|
// |
| 1683 |
|
}; |
| 1684 |
}; |
}; |
| 1685 |
// |
// |
| 1686 |
// |
// |
| 1687 |
if ( (ptht - pth) > 1 ){ |
if ( (ptht - pth) > 1 ){ |
| 1688 |
// |
// |
| 1689 |
if ( IsDebug() ) printf(" Missing runtrailers! \n"); |
if ( IsDebug() ) printf(" Missing runtrailers! \n"); |
| 1690 |
if ( IsDebug() ) printf(" Attention there is a jump in the runheader counter %i %i %i \n",ptht,pth,ptt); |
if ( IsDebug() ) printf(" Attention there is a jump in the runheader counter %u %u %u \n",ptht,pth,ptt); |
| 1691 |
// is not the consecutive header |
// is not the consecutive header |
| 1692 |
while ( pth != ptht ){ |
while ( pth != ptht ){ |
| 1693 |
// |
// |
| 1708 |
obth = phh->GetOrbitalTime(); |
obth = phh->GetOrbitalTime(); |
| 1709 |
evbefh = cod->Get(pctp->Physics); |
evbefh = cod->Get(pctp->Physics); |
| 1710 |
// |
// |
| 1711 |
if ( IsDebug() ) printf(" Try to find the end of a run which has only the runheader %i %i %i \n",ptht,pth,ptt); |
if ( IsDebug() ) printf(" Try to find the end of a run which has only the runheader %u %u %u \n",ptht,pth,ptt); |
| 1712 |
if ( IsDebug() ) printf(" ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' %i %i %i \n",pkth,obth,obtt); |
if ( IsDebug() ) printf(" ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' %u %u %u \n",pkth,obth,obtt); |
| 1713 |
// |
// |
| 1714 |
this->HandleMissingHoT(false,true,evbefh,evbeft-1); |
this->HandleMissingHoT(false,true,evbefh,evbeft-1); |
| 1715 |
// |
// |
| 1718 |
} else if ( !(ptht - pth) ){ |
} else if ( !(ptht - pth) ){ |
| 1719 |
// |
// |
| 1720 |
if ( IsDebug() ) printf(" Missing runheader! \n"); |
if ( IsDebug() ) printf(" Missing runheader! \n"); |
| 1721 |
if ( IsDebug() ) printf(" Attention! the runheader counter did not changed %i %i %i \n",ptht,pth,ptt); |
if ( IsDebug() ) printf(" Attention! the runheader counter did not changed %u %u %u \n",ptht,pth,ptt); |
| 1722 |
if ( IsDebug() ) printf(" The run should have already been handled by HandleRun() \n"); |
if ( IsDebug() ) printf(" The run should have already been handled by HandleRun() \n"); |
| 1723 |
// |
// |
| 1724 |
} else { |
} else { |
| 1739 |
obth = phh->GetOrbitalTime(); |
obth = phh->GetOrbitalTime(); |
| 1740 |
cod = ehh->GetCounter(); |
cod = ehh->GetCounter(); |
| 1741 |
evbefh = cod->Get(pctp->Physics); |
evbefh = cod->Get(pctp->Physics); |
| 1742 |
if ( IsDebug() ) printf(" Piece of run at the end of file %i %i %i \n",pkth,obth,obtt); |
if ( IsDebug() ) printf(" Piece of run at the end of file %u %u %u \n",pkth,obth,obtt); |
| 1743 |
if ( IsDebug() ) printf(" ''''''''''''''''''''''''''''''' %i %i %i \n",ptht,pth,ptt); |
if ( IsDebug() ) printf(" ''''''''''''''''''''''''''''''' %u %u %u \n",ptht,pth,ptt); |
| 1744 |
if ( IsDebug() ) printf(" ''''''''''''''''''''''''''''''' %i \n",rhev); |
if ( IsDebug() ) printf(" ''''''''''''''''''''''''''''''' %u \n",rhev); |
| 1745 |
// |
// |
| 1746 |
this->HandleRunFragments(false,true,evbefh,upperentry); |
this->HandleRunFragments(false,true,evbefh,upperentry); |
| 1747 |
} else { |
} else { |
| 1789 |
// ( runhead_time <= _our_runhead_time && runtrail_time >= _our_runtrail_time) && |
// ( runhead_time <= _our_runhead_time && runtrail_time >= _our_runtrail_time) && |
| 1790 |
// ( runhead_obt <= _our_runheadobt || runhead_pkt <= _our_runheadpkt ) && |
// ( runhead_obt <= _our_runheadobt || runhead_pkt <= _our_runheadpkt ) && |
| 1791 |
// ( runtrail_obt <= _our_runtrailobt || runtrail_pkt <= _our_runtrailpkt ) ) |
// ( runtrail_obt <= _our_runtrailobt || runtrail_pkt <= _our_runtrailpkt ) ) |
| 1792 |
|
// || |
| 1793 |
|
// ( runhead_time = _our_runhead_time && runtrail_time = _our_runtrail_time && nevents > 100 ) |
| 1794 |
|
// ) |
| 1795 |
|
// || |
| 1796 |
|
// ( runhead_time = _our_runhead_time && runtrail_time > _our_runtrail_time && nevents > 100 ) |
| 1797 |
|
// ) |
| 1798 |
|
// || |
| 1799 |
|
// ( runhead_time < _our_runhead_time && runtrail_time = _our_runtrail_time && nevents > 100 ) |
| 1800 |
// ) |
// ) |
| 1801 |
// |
// |
| 1802 |
oss << " SELECT ID,NEVENTS,TRK_CALIB_USED,PKT_COUNTER FROM GL_RUN WHERE " |
oss << " SELECT ID,NEVENTS,TRK_CALIB_USED,PKT_COUNTER FROM GL_RUN WHERE " |
| 1812 |
<< " RUNHEADER_OBT<=" << glrun->GetRUNHEADER_OBT() << " OR " |
<< " RUNHEADER_OBT<=" << glrun->GetRUNHEADER_OBT() << " OR " |
| 1813 |
<< " RUNHEADER_PKT<=" << glrun->GetRUNHEADER_PKT() << ") AND (" |
<< " RUNHEADER_PKT<=" << glrun->GetRUNHEADER_PKT() << ") AND (" |
| 1814 |
<< " RUNTRAILER_OBT>=" << glrun->GetRUNTRAILER_OBT() << " OR " |
<< " RUNTRAILER_OBT>=" << glrun->GetRUNTRAILER_OBT() << " OR " |
| 1815 |
<< " RUNTRAILER_PKT>=" << glrun->GetRUNTRAILER_PKT() << ") ));"; |
<< " RUNTRAILER_PKT>=" << glrun->GetRUNTRAILER_PKT() << ") OR " |
| 1816 |
|
<< " (RUNHEADER_TIME=" << (UInt_t)glrun->GetRUNHEADER_TIME() << " AND " // these two lines in a certain way disable the patch below... |
| 1817 |
|
<< " RUNTRAILER_TIME=" << (UInt_t)glrun->GetRUNTRAILER_TIME() <<" AND NEVENTS>100) OR" // |
| 1818 |
|
<< " (RUNHEADER_TIME=" << (UInt_t)glrun->GetRUNHEADER_TIME() << " AND " // |
| 1819 |
|
<< " RUNTRAILER_TIME>" << (UInt_t)glrun->GetRUNTRAILER_TIME() <<" AND NEVENTS>100) OR" // |
| 1820 |
|
<< " (RUNHEADER_TIME<" << (UInt_t)glrun->GetRUNHEADER_TIME() << " AND " // |
| 1821 |
|
<< " RUNTRAILER_TIME=" << (UInt_t)glrun->GetRUNTRAILER_TIME() <<" AND NEVENTS>100)" // |
| 1822 |
|
<< " ));"; |
| 1823 |
// |
// |
| 1824 |
if ( IsDebug() ) printf(" check if run has been inserted: query is \n %s \n",oss.str().c_str()); |
if ( IsDebug() ) printf(" check if run has been inserted: query is \n %s \n",oss.str().c_str()); |
| 1825 |
result = conn->Query(oss.str().c_str()); |
result = conn->Query(oss.str().c_str()); |
| 1841 |
// |
// |
| 1842 |
// the run has already been inserted |
// the run has already been inserted |
| 1843 |
// |
// |
| 1844 |
// return(true); //<<<<<<<<<<<<<<<<<<<<<<<< patch follows, uncomment here |
if ( signal && IsDebug() ) printf(" The run has already been inserted \n"); |
| 1845 |
|
return(true); //<<<<<<<<<<<<<<<<<<<<<<<< patch follows, uncomment here |
| 1846 |
// |
// |
| 1847 |
// PATCH! |
// PATCH! |
| 1848 |
// we keep the processing run if (in order of growing importance) 1) we have the runtrailer while the old run doesn't have it 2) we have the runheader |
// we keep the processing run if (in order of growing importance) 1) we have the runtrailer while the old run doesn't have it 2) we have the runheader |
| 1906 |
delete result; |
delete result; |
| 1907 |
// |
// |
| 1908 |
if ( signal && IsDebug() ) printf(" The run has already been inserted \n"); |
if ( signal && IsDebug() ) printf(" The run has already been inserted \n"); |
| 1909 |
|
if ( !signal && IsDebug() ) printf(" The run existed and was deleted, fill the DB \n"); |
| 1910 |
return(signal); |
return(signal); |
| 1911 |
}; |
}; |
| 1912 |
|
|
| 2020 |
// |
// |
| 2021 |
} else { |
} else { |
| 2022 |
if ( IsDebug() ) printf(" The run is already present in the fragment table \n"); |
if ( IsDebug() ) printf(" The run is already present in the fragment table \n"); |
| 2023 |
|
return; |
| 2024 |
}; |
}; |
| 2025 |
// |
// |
| 2026 |
// |
// |
| 2157 |
ULong64_t aobt = OBT(glrun1->GetRUNTRAILER_OBT()); |
ULong64_t aobt = OBT(glrun1->GetRUNTRAILER_OBT()); |
| 2158 |
UInt_t bpkt = PKT(glrun->GetRUNHEADER_PKT()); |
UInt_t bpkt = PKT(glrun->GetRUNHEADER_PKT()); |
| 2159 |
ULong64_t bobt = OBT(glrun->GetRUNHEADER_OBT()); |
ULong64_t bobt = OBT(glrun->GetRUNHEADER_OBT()); |
| 2160 |
if ( IsDebug() ) printf(" Check overlapping events: %i %i %llu %llu firstev is %i\n",apkt,bpkt,aobt,bobt,firstev); |
if ( IsDebug() ) printf(" Check overlapping events: %u %u %llu %llu firstev is %i\n",apkt,bpkt,aobt,bobt,firstev); |
| 2161 |
TTree *T= 0; |
TTree *T= 0; |
| 2162 |
T = (TTree*)file->Get("Physics"); |
T = (TTree*)file->Get("Physics"); |
| 2163 |
if ( !T || T->IsZombie() ) throw -16; |
if ( !T || T->IsZombie() ) throw -16; |
| 2171 |
bobt = OBT(ph->GetOrbitalTime()); |
bobt = OBT(ph->GetOrbitalTime()); |
| 2172 |
firstev++; |
firstev++; |
| 2173 |
}; |
}; |
| 2174 |
if ( IsDebug() ) printf(" Check overlapping events done: %i %i %llu %llu firstev is %i\n",apkt,bpkt,aobt,bobt,firstev); |
if ( IsDebug() ) printf(" Check overlapping events done: %u %u %llu %llu firstev is %i\n",apkt,bpkt,aobt,bobt,firstev); |
| 2175 |
// |
// |
| 2176 |
glrun1->SetPKT_COUNTER(glrun->GetPKT_COUNTER()); |
glrun1->SetPKT_COUNTER(glrun->GetPKT_COUNTER()); |
| 2177 |
glrun1->SetPKT_READY_COUNTER(glrun->GetPKT_READY_COUNTER()); |
glrun1->SetPKT_READY_COUNTER(glrun->GetPKT_READY_COUNTER()); |
| 2354 |
ULong64_t aobt = OBT(glrun->GetRUNTRAILER_OBT()); |
ULong64_t aobt = OBT(glrun->GetRUNTRAILER_OBT()); |
| 2355 |
UInt_t bpkt = PKT(glrun1->GetRUNHEADER_PKT()); |
UInt_t bpkt = PKT(glrun1->GetRUNHEADER_PKT()); |
| 2356 |
ULong64_t bobt = OBT(glrun1->GetRUNHEADER_OBT()); |
ULong64_t bobt = OBT(glrun1->GetRUNHEADER_OBT()); |
| 2357 |
if ( IsDebug() ) printf(" Check overlapping events: %i %i %llu %llu lastev is %i\n",apkt,bpkt,aobt,bobt,lastev); |
if ( IsDebug() ) printf(" Check overlapping events: %u %u %llu %llu lastev is %i\n",apkt,bpkt,aobt,bobt,lastev); |
| 2358 |
TTree *T= 0; |
TTree *T= 0; |
| 2359 |
T = (TTree*)file->Get("Physics"); |
T = (TTree*)file->Get("Physics"); |
| 2360 |
if ( !T || T->IsZombie() ) throw -16; |
if ( !T || T->IsZombie() ) throw -16; |
| 2368 |
aobt = OBT(ph->GetOrbitalTime()); |
aobt = OBT(ph->GetOrbitalTime()); |
| 2369 |
lastev--; |
lastev--; |
| 2370 |
}; |
}; |
| 2371 |
if ( IsDebug() ) printf(" Check overlapping events done: %i %i %llu %llu lastev is %i\n",apkt,bpkt,aobt,bobt,lastev); |
if ( IsDebug() ) printf(" Check overlapping events done: %u %u %llu %llu lastev is %i\n",apkt,bpkt,aobt,bobt,lastev); |
| 2372 |
// |
// |
| 2373 |
glrun->SetEV_TO(lastev); |
glrun->SetEV_TO(lastev); |
| 2374 |
glrun->SetNEVENTS(lastev-firstev+1); |
glrun->SetNEVENTS(lastev-firstev+1); |
| 2975 |
fromtime = this->GetAbsTime(ph->GetOrbitalTime()); |
fromtime = this->GetAbsTime(ph->GetOrbitalTime()); |
| 2976 |
if ( this->PKT(pkt) >= this->PKT(pktfirst) && this->OBT(obt) >= this->OBT(obtfirst) ){ |
if ( this->PKT(pkt) >= this->PKT(pktfirst) && this->OBT(obt) >= this->OBT(obtfirst) ){ |
| 2977 |
// |
// |
| 2978 |
if ( IsDebug() ) printf(" Calo calibration for section %i at time %i obt %i pkt %i \n",section,fromtime,obt,pkt); |
if ( IsDebug() ) printf(" Calo calibration for section %i at time %u obt %u pkt %u \n",section,fromtime,obt,pkt); |
| 2979 |
// |
// |
| 2980 |
// check if the calibration has already been inserted |
// check if the calibration has already been inserted |
| 2981 |
// |
// |
| 3020 |
// |
// |
| 3021 |
if ( IsDebug() ) printf(" Calibration with fromtime lower than others to be inserted in the DB for section %i \n",section); |
if ( IsDebug() ) printf(" Calibration with fromtime lower than others to be inserted in the DB for section %i \n",section); |
| 3022 |
if ( fromtime < 1150871000 ){ //1150866904 |
if ( fromtime < 1150871000 ){ //1150866904 |
| 3023 |
if ( IsDebug() ) printf(" First PAMELA flight calibration at time %i \n",fromtime); |
if ( IsDebug() ) printf(" First PAMELA flight calibration at time %u \n",fromtime); |
| 3024 |
fromtime = 0;// the first flight calibration was taken at about 1156429100 s, this line allow to analyze first runs in raw mode |
fromtime = 0;// the first flight calibration was taken at about 1156429100 s, this line allow to analyze first runs in raw mode |
| 3025 |
}; |
}; |
| 3026 |
// |
// |
| 3082 |
// |
// |
| 3083 |
} else { |
} else { |
| 3084 |
// |
// |
| 3085 |
if ( IsDebug() ) printf(" Repetead calo calibration for section %i at time %i obt %i pkt %i \n",section,fromtime,obt,pkt); |
if ( IsDebug() ) printf(" Repeated calo calibration for section %i at time %u obt %u pkt %u \n",section,fromtime,obt,pkt); |
| 3086 |
// |
// |
| 3087 |
}; |
}; |
| 3088 |
// |
// |
| 3293 |
pkt1 = ph1->GetCounter(); |
pkt1 = ph1->GetCounter(); |
| 3294 |
fromtime = this->GetAbsTime(ph1->GetOrbitalTime()); |
fromtime = this->GetAbsTime(ph1->GetOrbitalTime()); |
| 3295 |
// |
// |
| 3296 |
valid = 1; |
// valid = 1; |
| 3297 |
// |
// // |
| 3298 |
if ( caltrk1->unpackError != 0 && caltrk1->good0 == 0 ) valid = 0;// CONDITIONS ON THE GOODNESS OF THE CALIBRATION PKT1 |
// if ( caltrk1->unpackError != 0 && caltrk1->good0 == 0 ) valid = 0;// CONDITIONS ON THE GOODNESS OF THE CALIBRATION PKT1 |
| 3299 |
// |
// |
| 3300 |
// |
// |
| 3301 |
if ( this->PKT(pkt1) >= this->PKT(pktfirst) && this->OBT(obt1) >= this->OBT(obtfirst) ){ |
if ( this->PKT(pkt1) >= this->PKT(pktfirst) && this->OBT(obt1) >= this->OBT(obtfirst) ){ |
| 3302 |
// |
// |
| 3303 |
if ( IsDebug() ) printf(" Trk calibration1 at time %i obt %i pkt %i \n",fromtime,obt1,pkt1); |
if ( IsDebug() ) printf(" Trk calibration1 at time %u obt %u pkt %u \n",fromtime,obt1,pkt1); |
| 3304 |
|
// |
| 3305 |
|
valid = ValidateTrkCalib( caltrk1, eh1 ); |
| 3306 |
|
if ( IsDebug() ) cout << " pkt1 validation --> "<<valid<<endl; |
| 3307 |
// |
// |
| 3308 |
// Do we have the second calibration packet? |
// Do we have the second calibration packet? |
| 3309 |
// |
// |
| 3320 |
obt2 = ph2->GetOrbitalTime(); |
obt2 = ph2->GetOrbitalTime(); |
| 3321 |
pkt2 = ph2->GetCounter(); |
pkt2 = ph2->GetCounter(); |
| 3322 |
// |
// |
| 3323 |
if ( caltrk2->unpackError != 0 || caltrk2->good0 == 0 ) valid = 0; // CONDITIONS ON THE GOODNESS OF THE CALIBRATION PKT2 |
// if ( caltrk2->unpackError != 0 || caltrk2->good0 == 0 ) valid = 0; // CONDITIONS ON THE GOODNESS OF THE CALIBRATION PKT2 |
| 3324 |
// |
// |
| 3325 |
} else { |
} else { |
| 3326 |
// |
// |
| 3343 |
// |
// |
| 3344 |
}; |
}; |
| 3345 |
// |
// |
| 3346 |
if ( IsDebug() ) printf(" Found trk calibration2 at obt %i pkt %i t2 is %i \n",obt2,pkt2,t2); |
if ( IsDebug() ) printf(" Found trk calibration2 at obt %u pkt %u t2 is %u \n",obt2,pkt2,t2); |
| 3347 |
// |
// |
| 3348 |
// The calibration is good |
// The calibration is good |
| 3349 |
// |
// |
| 3350 |
if ( this->PKT(pkt2) == this->PKT(pkt1)+1 ){ |
if ( this->PKT(pkt2) == this->PKT(pkt1)+1 ){ |
| 3351 |
// |
// |
| 3352 |
if ( IsDebug() ) printf(" The trk calibration2 at obt %i pkt %i t2 is %i is good \n",obt2,pkt2,t2); |
if ( IsDebug() ) printf(" The trk calibration2 at obt %u pkt %u t2 is %u is good \n",obt2,pkt2,t2); |
| 3353 |
|
// |
| 3354 |
|
UInt_t valid2 = ValidateTrkCalib( caltrk2, eh2 ); |
| 3355 |
|
if ( IsDebug() ) cout << " pkt2 validation --> "<<valid2<<endl; |
| 3356 |
|
valid = valid & valid2; |
| 3357 |
// |
// |
| 3358 |
// Handle good calib |
// Handle good calib |
| 3359 |
// |
// |
| 3363 |
// |
// |
| 3364 |
if ( t2 != pret2+1 ){ |
if ( t2 != pret2+1 ){ |
| 3365 |
// |
// |
| 3366 |
if ( IsDebug() ) printf(" Missing the trk calibration1! Next one at obt %i pkt %i t2 is %i pret2 is %i \n",obt2,pkt2,t2,pret2); |
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); |
| 3367 |
// |
// |
| 3368 |
while ( t2 > pret2+1 ){ |
while ( t2 > pret2+1 ){ |
| 3369 |
// |
// |
| 3392 |
// |
// |
| 3393 |
// Check for missing calibtrk2 |
// Check for missing calibtrk2 |
| 3394 |
// |
// |
| 3395 |
if ( IsDebug() ) printf(" Missing the trk calibration2! Next one at obt %i pkt %i t2 is %i\n",obt2,pkt2,t2); |
if ( IsDebug() ) printf(" Missing the trk calibration2! Next one at obt %u pkt %u t2 is %u\n",obt2,pkt2,t2); |
| 3396 |
t2 = pret2; |
t2 = pret2; |
| 3397 |
// |
// |
| 3398 |
// handle missing calib2 |
// handle missing calib2 |
| 3406 |
// |
// |
| 3407 |
} else { |
} else { |
| 3408 |
// |
// |
| 3409 |
if ( IsDebug() ) printf(" Repetead trk calibration1 at time %i obt %i pkt %i \n",fromtime,obt1,pkt1); |
if ( IsDebug() ) printf(" Repetead trk calibration1 at time %u obt %u pkt %u \n",fromtime,obt1,pkt1); |
| 3410 |
// |
// |
| 3411 |
}; |
}; |
| 3412 |
// |
// |
| 3431 |
valid = 0; |
valid = 0; |
| 3432 |
if ( this->PKT(pkt2) > this->PKT(pktfirst) || this->OBT(obt2) > this->OBT(obtfirst) ){ |
if ( this->PKT(pkt2) > this->PKT(pktfirst) || this->OBT(obt2) > this->OBT(obtfirst) ){ |
| 3433 |
// |
// |
| 3434 |
if ( IsDebug() ) printf(" Missing the trk calibration1! Next one at obt %i pkt %i t2 is %i\n",obt2,pkt2,t2); |
if ( IsDebug() ) printf(" Missing the trk calibration1! Next one at obt %u pkt %u t2 is %u\n",obt2,pkt2,t2); |
| 3435 |
// |
// |
| 3436 |
this->HandleTRK_CALIB(false,true); |
this->HandleTRK_CALIB(false,true); |
| 3437 |
// |
// |
| 3485 |
fromtime = this->GetAbsTime(ph->GetOrbitalTime()); |
fromtime = this->GetAbsTime(ph->GetOrbitalTime()); |
| 3486 |
if ( this->PKT(pkt) >= this->PKT(pktfirst) && this->OBT(obt) >= this->OBT(obtfirst) ){ |
if ( this->PKT(pkt) >= this->PKT(pktfirst) && this->OBT(obt) >= this->OBT(obtfirst) ){ |
| 3487 |
// |
// |
| 3488 |
if ( IsDebug() ) printf(" S4 calibration at time %i obt %i pkt %i \n",fromtime,obt,pkt); |
if ( IsDebug() ) printf(" S4 calibration at time %u obt %u pkt %u \n",fromtime,obt,pkt); |
| 3489 |
// |
// |
| 3490 |
// check if the calibration has already been inserted |
// check if the calibration has already been inserted |
| 3491 |
// |
// |
| 3528 |
// |
// |
| 3529 |
if ( IsDebug() ) printf(" Calibration with fromtime lower than others to be inserted in the DB \n"); |
if ( IsDebug() ) printf(" Calibration with fromtime lower than others to be inserted in the DB \n"); |
| 3530 |
if ( fromtime < 1150871000 ){ |
if ( fromtime < 1150871000 ){ |
| 3531 |
if ( IsDebug() ) printf(" First PAMELA flight calibration at time %i \n",fromtime); |
if ( IsDebug() ) printf(" First PAMELA flight calibration at time %u \n",fromtime); |
| 3532 |
fromtime = 0;// the first flight calibration was taken at about 1156429100 s, this line allow to analyze first runs in raw mode |
fromtime = 0;// the first flight calibration was taken at about 1156429100 s, this line allow to analyze first runs in raw mode |
| 3533 |
}; |
}; |
| 3534 |
// |
// |
| 3587 |
// |
// |
| 3588 |
} else { |
} else { |
| 3589 |
// |
// |
| 3590 |
if ( IsDebug() ) printf(" Repetead S4 calibration at time %i obt %i pkt %i \n",fromtime,obt,pkt); |
if ( IsDebug() ) printf(" Repeated S4 calibration at time %u obt %u pkt %u \n",fromtime,obt,pkt); |
| 3591 |
// |
// |
| 3592 |
}; |
}; |
| 3593 |
// |
// |
| 3798 |
row = result->Next(); |
row = result->Next(); |
| 3799 |
t_stop = (UInt_t)atoll(row->GetField(4)); |
t_stop = (UInt_t)atoll(row->GetField(4)); |
| 3800 |
}; |
}; |
| 3801 |
if ( IsDebug() ) printf("Validation interval: from time %i - to time %i \n\n",t_stop,t_start); |
if ( IsDebug() ) printf("Validation interval: from time %u - to time %u \n\n",t_stop,t_start); |
| 3802 |
// -------------------------------------------------------------- |
// -------------------------------------------------------------- |
| 3803 |
// now retrieves runs to be validated |
// now retrieves runs to be validated |
| 3804 |
// -------------------------------------------------------------- |
// -------------------------------------------------------------- |
| 3969 |
}else printf("ValidateRuns ***WARNING*** : run sequence exceed assumed size (%i) \n",nseq_max); |
}else printf("ValidateRuns ***WARNING*** : run sequence exceed assumed size (%i) \n",nseq_max); |
| 3970 |
}; |
}; |
| 3971 |
|
|
| 3972 |
if ( IsDebug() ) printf("%i Run %i \n",nrow,this_run->ID); |
if ( IsDebug() ) printf("%i Run %u \n",nrow,this_run->ID); |
| 3973 |
nrow++; |
nrow++; |
| 3974 |
|
|
| 3975 |
}; |
}; |
| 3998 |
// which should be equal to the time between ascending-nodes. |
// which should be equal to the time between ascending-nodes. |
| 3999 |
//============================================================== |
//============================================================== |
| 4000 |
if ( t2 - trkcalib->FROM_TIME > 5700) { |
if ( t2 - trkcalib->FROM_TIME > 5700) { |
| 4001 |
if ( IsDebug() )printf("Long time between calib and run start %i :-( ==> there might be a missing calib \n",t2 - trkcalib->FROM_TIME); |
if ( IsDebug() )printf("Long time between calib and run start %u :-( ==> there might be a missing calib \n",t2 - trkcalib->FROM_TIME); |
| 4002 |
//============================================================== |
//============================================================== |
| 4003 |
// there might be a missing calibration, due to: |
// there might be a missing calibration, due to: |
| 4004 |
// - MM full |
// - MM full |
| 4019 |
// it is enough to say that there are no missing calibrations |
// it is enough to say that there are no missing calibrations |
| 4020 |
//============================================================== |
//============================================================== |
| 4021 |
// the long time interval bewteen runs might be due to download |
// the long time interval bewteen runs might be due to download |
| 4022 |
if ( IsDebug() )printf("Short time between calib and run start %i :-) ==> OK! \n",t2 - trkcalib->FROM_TIME); |
if ( IsDebug() )printf("Short time between calib and run start %u :-) ==> OK! \n",t2 - trkcalib->FROM_TIME); |
| 4023 |
return(false); |
return(false); |
| 4024 |
|
|
| 4025 |
}; |
}; |
| 4335 |
}; |
}; |
| 4336 |
}; |
}; |
| 4337 |
}; |
}; |
| 4338 |
if ( IsDebug() ) printf(" %i runs have been unvalidated \n",unv); |
if ( IsDebug() ) printf(" %u runs have been unvalidated \n",unv); |
| 4339 |
}; |
}; |
| 4340 |
|
|
| 4341 |
/** |
/** |
| 4366 |
if ( IsDebug() ) printf(" Deleting run from GL_RUN table \n"); |
if ( IsDebug() ) printf(" Deleting run from GL_RUN table \n"); |
| 4367 |
while ( Row ){ |
while ( Row ){ |
| 4368 |
delrun->DeleteRun(conn,(UInt_t)atoll(Row->GetField(0)),"GL_RUN"); |
delrun->DeleteRun(conn,(UInt_t)atoll(Row->GetField(0)),"GL_RUN"); |
| 4369 |
if ( IsDebug() ) printf(" del run %i \n",(UInt_t)atoll(Row->GetField(0))); |
if ( IsDebug() ) printf(" del run %u \n",(UInt_t)atoll(Row->GetField(0))); |
| 4370 |
drun++; |
drun++; |
| 4371 |
Row = pResult->Next(); |
Row = pResult->Next(); |
| 4372 |
}; |
}; |
| 4387 |
} else { |
} else { |
| 4388 |
if ( IsDebug() ) printf(" Deleting run fragments from GL_RUN table \n"); |
if ( IsDebug() ) printf(" Deleting run fragments from GL_RUN table \n"); |
| 4389 |
while ( Row ){ |
while ( Row ){ |
| 4390 |
if ( IsDebug() ) printf(" restore run %i \n",(UInt_t)atoll(Row->GetField(1))); |
if ( IsDebug() ) printf(" restore run %u \n",(UInt_t)atoll(Row->GetField(1))); |
| 4391 |
delrun->RestoreRun(conn,(UInt_t)atoll(Row->GetField(1)),"GL_RUN_FRAGMENTS"); |
delrun->RestoreRun(conn,(UInt_t)atoll(Row->GetField(1)),"GL_RUN_FRAGMENTS"); |
| 4392 |
if ( IsDebug() ) printf(" del run %i \n",(UInt_t)atoll(Row->GetField(1))); |
if ( IsDebug() ) printf(" del run %u \n",(UInt_t)atoll(Row->GetField(1))); |
| 4393 |
delrun->DeleteRun(conn,(UInt_t)atoll(Row->GetField(1)),"GL_RUN"); |
delrun->DeleteRun(conn,(UInt_t)atoll(Row->GetField(1)),"GL_RUN"); |
| 4394 |
if ( (UInt_t)atoll(Row->GetField(1)) != (UInt_t)atoll(Row->GetField(0)) ){ |
if ( (UInt_t)atoll(Row->GetField(1)) != (UInt_t)atoll(Row->GetField(0)) ){ |
| 4395 |
if ( IsDebug() ) printf(" del run %i \n",(UInt_t)atoll(Row->GetField(0))); |
if ( IsDebug() ) printf(" del run %u \n",(UInt_t)atoll(Row->GetField(0))); |
| 4396 |
delrun->DeleteRun(conn,(UInt_t)atoll(Row->GetField(0)),"GL_RUN"); |
delrun->DeleteRun(conn,(UInt_t)atoll(Row->GetField(0)),"GL_RUN"); |
| 4397 |
}; |
}; |
| 4398 |
drun++; |
drun++; |
| 4418 |
} else { |
} else { |
| 4419 |
if ( IsDebug() ) printf(" Deleting run fragments from GL_RUN_TRASH table \n"); |
if ( IsDebug() ) printf(" Deleting run fragments from GL_RUN_TRASH table \n"); |
| 4420 |
while ( Row ){ |
while ( Row ){ |
| 4421 |
if ( IsDebug() ) printf(" del run idtrash %i \n",(UInt_t)atoll(Row->GetField(0))); |
if ( IsDebug() ) printf(" del run idtrash %u \n",(UInt_t)atoll(Row->GetField(0))); |
| 4422 |
myquery.str(""); |
myquery.str(""); |
| 4423 |
myquery << " DELETE FROM GL_RUN_TRASH where ID_TRASH=" << Row->GetField(0) <<";"; |
myquery << " DELETE FROM GL_RUN_TRASH where ID_TRASH=" << Row->GetField(0) <<";"; |
| 4424 |
conn->Query(myquery.str().c_str()); |
conn->Query(myquery.str().c_str()); |
| 4427 |
}; |
}; |
| 4428 |
}; |
}; |
| 4429 |
// |
// |
| 4430 |
if ( IsDebug() ) printf(" Deleted %i run(s) from GL_RUN_TRASH table \n",drun); |
if ( IsDebug() ) printf(" Deleted %u run(s) from GL_RUN_TRASH table \n",drun); |
| 4431 |
// |
// |
| 4432 |
// |
// |
| 4433 |
// |
// |
| 4445 |
} else { |
} else { |
| 4446 |
if ( IsDebug() ) printf(" Deleting run fragments from GL_RUN_FRAGMENTS table \n"); |
if ( IsDebug() ) printf(" Deleting run fragments from GL_RUN_FRAGMENTS table \n"); |
| 4447 |
while ( Row ){ |
while ( Row ){ |
| 4448 |
if ( IsDebug() ) printf(" del run %i \n",(UInt_t)atoll(Row->GetField(0))); |
if ( IsDebug() ) printf(" del run %u \n",(UInt_t)atoll(Row->GetField(0))); |
| 4449 |
myquery.str(""); |
myquery.str(""); |
| 4450 |
myquery << " DELETE FROM GL_RUN_FRAGMENTS where ID=" << Row->GetField(0) <<";"; |
myquery << " DELETE FROM GL_RUN_FRAGMENTS where ID=" << Row->GetField(0) <<";"; |
| 4451 |
conn->Query(myquery.str().c_str()); |
conn->Query(myquery.str().c_str()); |
| 4454 |
}; |
}; |
| 4455 |
}; |
}; |
| 4456 |
// |
// |
| 4457 |
if ( IsDebug() ) printf(" Deleted %i run(s) from GL_RUN_FRAGMENTS table \n",drun); |
if ( IsDebug() ) printf(" Deleted %u run(s) from GL_RUN_FRAGMENTS table \n",drun); |
| 4458 |
// |
// |
| 4459 |
// |
// |
| 4460 |
// |
// |
| 4623 |
// |
// |
| 4624 |
}; |
}; |
| 4625 |
}; |
}; |
| 4626 |
|
|
| 4627 |
|
/** |
| 4628 |
|
* |
| 4629 |
|
* Rearrange calibration tables |
| 4630 |
|
* |
| 4631 |
|
**/ |
| 4632 |
|
UInt_t PamelaDBOperations::ValidateTrkCalib( CalibTrk1Event* caltrk, EventHeader *eh ){ |
| 4633 |
|
|
| 4634 |
|
Int_t vorder[]={5,5,3,3,4,4,2,2,1,1,0,0}; |
| 4635 |
|
UInt_t timeaftercalib=120000; //2000; |
| 4636 |
|
// ---------- |
| 4637 |
|
// Check CRCs |
| 4638 |
|
// ---------- |
| 4639 |
|
for(Int_t ipkt=0; ipkt<6; ipkt++){ |
| 4640 |
|
if( caltrk->crc_hcal[ipkt] )return 0; // :-( |
| 4641 |
|
for(Int_t ilad=0; ilad<3; ilad++)if( caltrk->crc_cal[ipkt][ilad] )return 0; // :-( |
| 4642 |
|
} |
| 4643 |
|
// ----------------------- |
| 4644 |
|
// Check missing packets: |
| 4645 |
|
// ----------------------- |
| 4646 |
|
// Readout order: |
| 4647 |
|
// ------------------ |
| 4648 |
|
// DSP packet board |
| 4649 |
|
// ------------------ |
| 4650 |
|
// 12 0 1 |
| 4651 |
|
// 10 1 1 |
| 4652 |
|
// 8 2 1 |
| 4653 |
|
// 4 3 1 |
| 4654 |
|
// 6 4 1 |
| 4655 |
|
// 2 5 1 |
| 4656 |
|
// ------------------ |
| 4657 |
|
// 11 0 2 |
| 4658 |
|
// 9 1 2 |
| 4659 |
|
// 7 2 2 |
| 4660 |
|
// 3 3 2 |
| 4661 |
|
// 5 4 2 |
| 4662 |
|
// 1 5 2 |
| 4663 |
|
// ------------------ |
| 4664 |
|
// ------------------------------------------------- |
| 4665 |
|
// Check if it is first or second calibration packet |
| 4666 |
|
// ------------------------------------------------- |
| 4667 |
|
UInt_t build=0; |
| 4668 |
|
TString classname = caltrk->GetName(); |
| 4669 |
|
UInt_t base=0; |
| 4670 |
|
UInt_t mask=0; |
| 4671 |
|
if(classname.Contains("CalibTrk1Event")){ |
| 4672 |
|
base=12; |
| 4673 |
|
mask=0x03F000; |
| 4674 |
|
} |
| 4675 |
|
if(classname.Contains("CalibTrk2Event")){ |
| 4676 |
|
base=18; |
| 4677 |
|
mask=0xFC0000; |
| 4678 |
|
} |
| 4679 |
|
// ------------------------------------------------- |
| 4680 |
|
// Count number of packets and set build variable |
| 4681 |
|
// ------------------------------------------------- |
| 4682 |
|
Int_t npkts=0; |
| 4683 |
|
for(Int_t ipkt=0; ipkt<6; ipkt++){ |
| 4684 |
|
if(caltrk->DSPnumber[ipkt]>0 && caltrk->DSPnumber[ipkt]<=12){ |
| 4685 |
|
npkts++; |
| 4686 |
|
build = build | ( 1<<(base+vorder[caltrk->DSPnumber[ipkt]-1]) ); |
| 4687 |
|
} |
| 4688 |
|
} |
| 4689 |
|
// if( npkts==6 )return 1; // :-) |
| 4690 |
|
|
| 4691 |
|
// cout << classname << " "<<eh->GetPscuHeader()->GetOrbitalTime()<<endl; |
| 4692 |
|
|
| 4693 |
|
// ----------------------------------------------- |
| 4694 |
|
// If missing packets: check the acq configuration |
| 4695 |
|
// (some DSPs might be excluded from acquisition) |
| 4696 |
|
// ----------------------------------------------- |
| 4697 |
|
|
| 4698 |
|
// ----------------------------------------------- |
| 4699 |
|
// retrieve the first run header after calib |
| 4700 |
|
// ----------------------------------------------- |
| 4701 |
|
PacketType *pctp; |
| 4702 |
|
EventCounter *cod; |
| 4703 |
|
cod = eh->GetCounter(); |
| 4704 |
|
Int_t irun = cod->Get(pctp->RunHeader); |
| 4705 |
|
TTree *rh=(TTree*)file->Get("RunHeader"); |
| 4706 |
|
if ( !rh || rh->IsZombie() ) throw -17; |
| 4707 |
|
if( rh->GetEntries() == irun ){ |
| 4708 |
|
if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) no runs after calib (1) -- cannot validate :-( "<<endl; |
| 4709 |
|
return 0; // :-( |
| 4710 |
|
} |
| 4711 |
|
|
| 4712 |
|
RunHeaderEvent *run = 0; |
| 4713 |
|
EventHeader *hrun = 0; |
| 4714 |
|
rh->SetBranchAddress("RunHeader", &run); |
| 4715 |
|
rh->SetBranchAddress("Header", &hrun); |
| 4716 |
|
rh->GetEntry(irun); |
| 4717 |
|
// cout << classname << " "<<eh->GetPscuHeader()->GetOrbitalTime() << " Run " << hrun->GetPscuHeader()->GetOrbitalTime() <<endl; |
| 4718 |
|
|
| 4719 |
|
if( OBT(hrun->GetPscuHeader()->GetOrbitalTime()) < OBT(eh->GetPscuHeader()->GetOrbitalTime())){ |
| 4720 |
|
if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) no runs after calib (2) -- cannot validate :-( "<<endl; |
| 4721 |
|
return 0; // :-( |
| 4722 |
|
} |
| 4723 |
|
|
| 4724 |
|
if( !run->RM_ACQ_AFTER_CALIB ){ |
| 4725 |
|
if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) RM_ACQ_AFTER_CALIB=0 -- cannot validate :-( "<<endl; |
| 4726 |
|
return 0; // :-( |
| 4727 |
|
} |
| 4728 |
|
|
| 4729 |
|
UInt_t dtime = OBT(hrun->GetPscuHeader()->GetOrbitalTime()) - OBT(eh->GetPscuHeader()->GetOrbitalTime()); |
| 4730 |
|
if( dtime > timeaftercalib ){ |
| 4731 |
|
if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) run after calib too far ( "<<dtime<<"ms ) -- cannot validate :-( "<<endl; |
| 4732 |
|
return 0; // :-( |
| 4733 |
|
} |
| 4734 |
|
|
| 4735 |
|
|
| 4736 |
|
|
| 4737 |
|
if( (run->ACQ_BUILD_INFO & mask) != build ){ |
| 4738 |
|
if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) ACQ_BUILD_INFO= >>> "<<hex << (run->ACQ_BUILD_INFO&mask) << " != "<< build << dec<<endl; |
| 4739 |
|
return 0; // :-( |
| 4740 |
|
} |
| 4741 |
|
return 1; // :-) |
| 4742 |
|
|
| 4743 |
|
} |
| 4744 |
|
|
| 4745 |
|
/** |
| 4746 |
|
* |
| 4747 |
|
* Check the DB (only for overlapping runs at the moment) |
| 4748 |
|
* |
| 4749 |
|
**/ |
| 4750 |
|
UInt_t PamelaDBOperations::Check(){ |
| 4751 |
|
// |
| 4752 |
|
UInt_t test = 0; |
| 4753 |
|
// |
| 4754 |
|
UInt_t thisrht = 0; |
| 4755 |
|
UInt_t thisrtt = 0; |
| 4756 |
|
UInt_t thisid = 0; |
| 4757 |
|
UInt_t prevrht = 0; |
| 4758 |
|
UInt_t prevrtt = 0; |
| 4759 |
|
UInt_t previd = 0; |
| 4760 |
|
// |
| 4761 |
|
UInt_t prevl0id = 0; |
| 4762 |
|
UInt_t thisl0id = 0; |
| 4763 |
|
// |
| 4764 |
|
stringstream oss; |
| 4765 |
|
TSQLResult *result = 0; |
| 4766 |
|
TSQLRow *row = 0; |
| 4767 |
|
TSQLResult *result2 = 0; |
| 4768 |
|
TSQLRow *row2 = 0; |
| 4769 |
|
TSQLResult *result3 = 0; |
| 4770 |
|
TSQLRow *row3 = 0; |
| 4771 |
|
oss.str(""); |
| 4772 |
|
oss << "SELECT ID,ID_ROOT_L0,RUNHEADER_TIME,RUNTRAILER_TIME,NEVENTS FROM GL_RUN order by RUNHEADER_TIME asc;"; |
| 4773 |
|
// oss << "SELECT ID,RUNHEADER_TIME,RUNTRAILER_TIME FROM GL_RUN where ID>10170 and ID<10190 order by RUNHEADER_TIME asc;"; |
| 4774 |
|
result = conn->Query(oss.str().c_str()); |
| 4775 |
|
// |
| 4776 |
|
if ( !result ) throw -4;; |
| 4777 |
|
// |
| 4778 |
|
row = result->Next(); |
| 4779 |
|
UInt_t nid = 0; |
| 4780 |
|
// |
| 4781 |
|
while ( row ){ |
| 4782 |
|
nid++; |
| 4783 |
|
if ( !(nid%1000) && nid ) printf(" %iK run scanned \n",nid/1000); |
| 4784 |
|
thisid = (UInt_t)atoll(row->GetField(0)); |
| 4785 |
|
thisl0id = (UInt_t)atoll(row->GetField(1)); |
| 4786 |
|
thisrht = (UInt_t)atoll(row->GetField(2)); |
| 4787 |
|
thisrtt = (UInt_t)atoll(row->GetField(3)); |
| 4788 |
|
// |
| 4789 |
|
if ( (UInt_t)atoll(row->GetField(4)) > 1 ){ |
| 4790 |
|
// |
| 4791 |
|
// |
| 4792 |
|
// |
| 4793 |
|
oss.str(""); |
| 4794 |
|
oss << "SELECT ID,ID_ROOT_L0,RUNHEADER_TIME,RUNTRAILER_TIME FROM GL_RUN WHERE ID!=" |
| 4795 |
|
<< thisid << " AND ( RUNHEADER_TIME=" |
| 4796 |
|
<< thisrht << " OR RUNTRAILER_TIME=" |
| 4797 |
|
<< thisrtt << " ) AND NEVENTS!=0 AND NEVENTS!=1 order by RUNHEADER_TIME asc;"; |
| 4798 |
|
result3 = conn->Query(oss.str().c_str()); |
| 4799 |
|
if ( IsDebug() ) printf(" query is %s \n",oss.str().c_str()); |
| 4800 |
|
if ( result3 ){ |
| 4801 |
|
// |
| 4802 |
|
oss.str(""); |
| 4803 |
|
oss << "SELECT ID,ID_ROOT_L0,RUNHEADER_TIME,RUNTRAILER_TIME FROM GL_RUN WHERE ID!=" |
| 4804 |
|
<< thisid << " AND RUNHEADER_TIME=" |
| 4805 |
|
<< thisrht << " AND RUNTRAILER_TIME!=" |
| 4806 |
|
<< thisrtt << " AND NEVENTS!=0 AND NEVENTS!=1 order by RUNHEADER_TIME asc;"; |
| 4807 |
|
result3 = conn->Query(oss.str().c_str()); |
| 4808 |
|
if ( IsDebug() ) printf(" query is %s \n",oss.str().c_str()); |
| 4809 |
|
if ( result3 ){ |
| 4810 |
|
row3 = result3->Next(); |
| 4811 |
|
// |
| 4812 |
|
while ( row3 ){ |
| 4813 |
|
// |
| 4814 |
|
// 2 runs with same runheader |
| 4815 |
|
// |
| 4816 |
|
printf(" CHECK n.4 RUNs %u and %u HAVE SAME RUNHEADER \n",thisid,(UInt_t)atoll(row3->GetField(0))); |
| 4817 |
|
row3 = result3->Next(); |
| 4818 |
|
}; |
| 4819 |
|
}; |
| 4820 |
|
// |
| 4821 |
|
oss.str(""); |
| 4822 |
|
oss << "SELECT ID,ID_ROOT_L0,RUNHEADER_TIME,RUNTRAILER_TIME FROM GL_RUN WHERE ID!=" |
| 4823 |
|
<< thisid << " AND RUNHEADER_TIME!=" |
| 4824 |
|
<< thisrht << " AND RUNTRAILER_TIME=" |
| 4825 |
|
<< thisrtt << " AND NEVENTS!=0 AND NEVENTS!=1 order by RUNHEADER_TIME asc;"; |
| 4826 |
|
result3 = conn->Query(oss.str().c_str()); |
| 4827 |
|
if ( IsDebug() ) printf(" query is %s \n",oss.str().c_str()); |
| 4828 |
|
if ( result3 ){ |
| 4829 |
|
row3 = result3->Next(); |
| 4830 |
|
// |
| 4831 |
|
while ( row3 ){ |
| 4832 |
|
// |
| 4833 |
|
// 2 runs with same runtrailer |
| 4834 |
|
// |
| 4835 |
|
printf(" CHECK n.5 RUNs %u and %u HAVE SAME RUNTRAILER \n",thisid,(UInt_t)atoll(row3->GetField(0))); |
| 4836 |
|
row3 = result3->Next(); |
| 4837 |
|
}; |
| 4838 |
|
}; |
| 4839 |
|
// |
| 4840 |
|
oss.str(""); |
| 4841 |
|
oss << "SELECT ID,ID_ROOT_L0,RUNHEADER_TIME,RUNTRAILER_TIME FROM GL_RUN WHERE ID!=" |
| 4842 |
|
<< thisid << " AND RUNHEADER_TIME=" |
| 4843 |
|
<< thisrht << " AND RUNTRAILER_TIME=" |
| 4844 |
|
<< thisrtt << " AND ID_RUN_FRAG!=" |
| 4845 |
|
<< thisid << " order by RUNHEADER_TIME asc;"; |
| 4846 |
|
result3 = conn->Query(oss.str().c_str()); |
| 4847 |
|
if ( result3 ){ |
| 4848 |
|
row3 = result3->Next(); |
| 4849 |
|
// |
| 4850 |
|
while ( row3 ){ |
| 4851 |
|
// |
| 4852 |
|
// duplicated run |
| 4853 |
|
// |
| 4854 |
|
printf(" CHECK n.7 RUNs %u and %u HAVE SAME RUNTRAILER AND RUNHEADER (ARE THE SAME?) \n",thisid,(UInt_t)atoll(row3->GetField(0))); |
| 4855 |
|
row3 = result3->Next(); |
| 4856 |
|
}; |
| 4857 |
|
}; |
| 4858 |
|
}; |
| 4859 |
|
// |
| 4860 |
|
oss.str(""); |
| 4861 |
|
oss << "SELECT ID,ID_ROOT_L0,RUNHEADER_TIME,RUNTRAILER_TIME FROM GL_RUN WHERE ID!=" |
| 4862 |
|
<< thisid << " AND RUNHEADER_TIME>" |
| 4863 |
|
<< thisrht << " AND RUNTRAILER_TIME<" |
| 4864 |
|
<< thisrtt << " order by RUNHEADER_TIME asc;"; |
| 4865 |
|
result3 = conn->Query(oss.str().c_str()); |
| 4866 |
|
if ( result3 ){ |
| 4867 |
|
row3 = result3->Next(); |
| 4868 |
|
// |
| 4869 |
|
while ( row3 ){ |
| 4870 |
|
// |
| 4871 |
|
// run contained in the checked one |
| 4872 |
|
// |
| 4873 |
|
printf(" CHECK n.6 RUN %u CONTAINS RUN %u \n",thisid,(UInt_t)atoll(row3->GetField(0))); |
| 4874 |
|
row3 = result3->Next(); |
| 4875 |
|
}; |
| 4876 |
|
}; |
| 4877 |
|
// |
| 4878 |
|
}; |
| 4879 |
|
// |
| 4880 |
|
// if ( thisrht < prevrtt || thisrtt < prevrht || thisrht > thisrtt && !(!prevrht && !prevrtt &&!previd) ){ |
| 4881 |
|
// if ( (thisrht < prevrtt || thisrtt < prevrht || thisrht > thisrtt) && (thisrht != prevrht) ){ |
| 4882 |
|
if ( (thisrht < prevrtt) && (thisrht != prevrht) ){ |
| 4883 |
|
if ( IsDebug() ) printf(" IDprev %u ID %u prevrht %u prevrtt %u thisrht %u thisrtt %u \n",previd,thisid,prevrht,prevrtt,thisrht,thisrtt); |
| 4884 |
|
printf(" CHECK n.1 TIME SCREW of %i s AROUND RUNs %u and %u \n",(thisrht-prevrtt),previd,thisid); |
| 4885 |
|
TString prevf = ""; |
| 4886 |
|
TString thisf = ""; |
| 4887 |
|
oss.str(""); |
| 4888 |
|
oss << "SELECT NAME FROM GL_ROOT where ID=" << (UInt_t)prevl0id <<";"; |
| 4889 |
|
result2 = conn->Query(oss.str().c_str()); |
| 4890 |
|
if ( !result2 ) throw -4;; |
| 4891 |
|
row2 = result2->Next(); |
| 4892 |
|
prevf = (TString)row2->GetField(0); |
| 4893 |
|
oss.str(""); |
| 4894 |
|
oss << "SELECT NAME FROM GL_ROOT where ID=" << (UInt_t)thisl0id <<";"; |
| 4895 |
|
result2 = conn->Query(oss.str().c_str()); |
| 4896 |
|
if ( !result2 ) throw -4;; |
| 4897 |
|
row2 = result2->Next(); |
| 4898 |
|
thisf = (TString)row2->GetField(0); |
| 4899 |
|
if ( IsDebug() ) printf(" ==> files %s and %s \n",prevf.Data(),thisf.Data()); |
| 4900 |
|
test = 1; |
| 4901 |
|
}; |
| 4902 |
|
// |
| 4903 |
|
if ( (thisrtt < prevrht) && (thisrht != prevrht) ){ |
| 4904 |
|
if ( IsDebug() ) printf(" IDprev %u ID %u prevrht %u prevrtt %u thisrht %u thisrtt %u \n",previd,thisid,prevrht,prevrtt,thisrht,thisrtt); |
| 4905 |
|
printf(" CHECK n.2 TIME SCREW of %i s AROUND RUNs %u and %u \n",(thisrtt-prevrht),previd,thisid); |
| 4906 |
|
TString prevf = ""; |
| 4907 |
|
TString thisf = ""; |
| 4908 |
|
oss.str(""); |
| 4909 |
|
oss << "SELECT NAME FROM GL_ROOT where ID=" << (UInt_t)prevl0id <<";"; |
| 4910 |
|
result2 = conn->Query(oss.str().c_str()); |
| 4911 |
|
if ( !result2 ) throw -4; |
| 4912 |
|
row2 = result2->Next(); |
| 4913 |
|
prevf = (TString)row2->GetField(0); |
| 4914 |
|
oss.str(""); |
| 4915 |
|
oss << "SELECT NAME FROM GL_ROOT where ID=" << (UInt_t)thisl0id <<";"; |
| 4916 |
|
result2 = conn->Query(oss.str().c_str()); |
| 4917 |
|
if ( !result2 ) throw -4;; |
| 4918 |
|
row2 = result2->Next(); |
| 4919 |
|
thisf = (TString)row2->GetField(0); |
| 4920 |
|
if ( IsDebug() ) printf(" ==> files %s and %s \n",prevf.Data(),thisf.Data()); |
| 4921 |
|
test = 1; |
| 4922 |
|
}; |
| 4923 |
|
// |
| 4924 |
|
if ( (thisrht > thisrtt) && (thisrht != prevrht) ){ |
| 4925 |
|
if ( IsDebug() ) printf(" IDprev %u ID %u prevrht %u prevrtt %u thisrht %u thisrtt %u \n",previd,thisid,prevrht,prevrtt,thisrht,thisrtt); |
| 4926 |
|
printf(" CHECK n.3 TIME SCREW of %i s AROUND RUNs %u and %u \n",(thisrht-thisrtt),previd,thisid); |
| 4927 |
|
TString prevf = ""; |
| 4928 |
|
TString thisf = ""; |
| 4929 |
|
oss.str(""); |
| 4930 |
|
oss << "SELECT NAME FROM GL_ROOT where ID=" << (UInt_t)prevl0id <<";"; |
| 4931 |
|
result2 = conn->Query(oss.str().c_str()); |
| 4932 |
|
if ( !result2 ) throw -4;; |
| 4933 |
|
row2 = result2->Next(); |
| 4934 |
|
prevf = (TString)row2->GetField(0); |
| 4935 |
|
oss.str(""); |
| 4936 |
|
oss << "SELECT NAME FROM GL_ROOT where ID=" << (UInt_t)thisl0id <<";"; |
| 4937 |
|
result2 = conn->Query(oss.str().c_str()); |
| 4938 |
|
if ( !result2 ) throw -4;; |
| 4939 |
|
row2 = result2->Next(); |
| 4940 |
|
thisf = (TString)row2->GetField(0); |
| 4941 |
|
if ( IsDebug() ) printf(" ==> files %s and %s \n",prevf.Data(),thisf.Data()); |
| 4942 |
|
test = 1; |
| 4943 |
|
}; |
| 4944 |
|
|
| 4945 |
|
// |
| 4946 |
|
prevrht = thisrht; |
| 4947 |
|
prevrtt = thisrtt; |
| 4948 |
|
previd = thisid; |
| 4949 |
|
prevl0id = thisl0id; |
| 4950 |
|
row = result->Next(); |
| 4951 |
|
}; |
| 4952 |
|
// |
| 4953 |
|
return(test); |
| 4954 |
|
// |
| 4955 |
|
}; |