6 |
*/ |
*/ |
7 |
// |
// |
8 |
#include <sstream> |
#include <sstream> |
9 |
|
#include <iostream> |
10 |
// |
// |
11 |
#include <TFile.h> |
#include <TFile.h> |
12 |
#include <TTree.h> |
#include <TTree.h> |
13 |
|
#include <TTimeStamp.h> |
14 |
#include <EventHeader.h> |
#include <EventHeader.h> |
15 |
#include <PscuHeader.h> |
#include <PscuHeader.h> |
16 |
// |
// |
17 |
#include <GLTables.h> |
#include <GLTables.h> |
18 |
|
#include <sgp4.h> |
19 |
// |
// |
20 |
|
ClassImp(GL_TABLES); |
21 |
ClassImp(GL_TRK_CALIB); |
ClassImp(GL_TRK_CALIB); |
22 |
ClassImp(GL_RUN); |
ClassImp(GL_RUN); |
23 |
ClassImp(GL_ROOT); |
ClassImp(GL_ROOT); |
25 |
ClassImp(GL_S4_CALIB); |
ClassImp(GL_S4_CALIB); |
26 |
ClassImp(GL_CALO_CALIB); |
ClassImp(GL_CALO_CALIB); |
27 |
ClassImp(GL_TIMESYNC); |
ClassImp(GL_TIMESYNC); |
28 |
|
ClassImp(GL_TLE); |
29 |
// |
// |
30 |
using namespace std; |
using namespace std; |
31 |
|
|
32 |
|
GL_TABLES::GL_TABLES(){ |
33 |
|
}; |
34 |
|
|
35 |
|
GL_TABLES::GL_TABLES(TString host, TString user, TString psw){ |
36 |
|
fHost = new TString(host.Data()); |
37 |
|
fUser = new TString(user.Data()); |
38 |
|
fPsw = new TString(psw.Data()); |
39 |
|
fSet = true; |
40 |
|
fNquery = 0; |
41 |
|
}; |
42 |
|
|
43 |
|
|
44 |
|
void GL_TABLES::Set(TString host, TString user, TString psw){ |
45 |
|
fHost = new TString(host.Data()); |
46 |
|
fUser = new TString(user.Data()); |
47 |
|
fPsw = new TString(psw.Data()); |
48 |
|
fSet = true; |
49 |
|
fNquery = 0; |
50 |
|
}; |
51 |
|
|
52 |
|
Bool_t GL_TABLES::IsConnected(TSQLServer *dbc){ |
53 |
|
// |
54 |
|
// |
55 |
|
// |
56 |
|
if ( !fSet ){ |
57 |
|
return true; |
58 |
|
}; |
59 |
|
// |
60 |
|
// |
61 |
|
// |
62 |
|
// printf(" host is %s \n",fHost->Data()); |
63 |
|
// |
64 |
|
stringstream myquery; |
65 |
|
myquery.str(""); |
66 |
|
myquery << "show databases;"; |
67 |
|
dbc->Query(myquery.str().c_str()); |
68 |
|
fNquery++; |
69 |
|
// |
70 |
|
if ( dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006 ){ |
71 |
|
// is connected |
72 |
|
return true; |
73 |
|
} else { |
74 |
|
// |
75 |
|
printf(" WARNING: Lost connection to DB! try to recover... \n"); |
76 |
|
// |
77 |
|
TString host = fHost->Data(); |
78 |
|
TString user = fUser->Data(); |
79 |
|
TString psw = fPsw->Data(); |
80 |
|
delete dbc; |
81 |
|
dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
82 |
|
// |
83 |
|
myquery.str(""); |
84 |
|
myquery << "show databases;"; |
85 |
|
dbc->Query(myquery.str().c_str()); |
86 |
|
fNquery++; |
87 |
|
// |
88 |
|
if ( dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006 ){ |
89 |
|
// |
90 |
|
printf(" ...connection recovered, I can continue! \n"); |
91 |
|
// |
92 |
|
myquery.str(""); |
93 |
|
myquery << "SET time_zone='+0:00'"; |
94 |
|
dbc->Query(myquery.str().c_str()); |
95 |
|
fNquery++; |
96 |
|
myquery.str(""); |
97 |
|
myquery << "SET wait_timeout=173000;"; |
98 |
|
dbc->Query(myquery.str().c_str()); |
99 |
|
fNquery++; |
100 |
|
return true; |
101 |
|
}; |
102 |
|
}; |
103 |
|
// |
104 |
|
printf(" GLTABLES: connection is gone away, query will fail\n"); |
105 |
|
// |
106 |
|
return false; |
107 |
|
// |
108 |
|
}; |
109 |
|
|
110 |
|
void GL_TABLES::ResetCounters(){ |
111 |
|
fNquery = 0; |
112 |
|
}; |
113 |
|
|
114 |
|
void GL_TABLES::AddQ(){ |
115 |
|
if ( fSet ) fNquery++; |
116 |
|
}; |
117 |
|
|
118 |
|
UInt_t GL_TABLES::GetNqueries(){ |
119 |
|
UInt_t rn = 0; |
120 |
|
rn += (UInt_t&)fNquery; |
121 |
|
return(rn); |
122 |
|
}; |
123 |
|
|
124 |
GL_RUN::GL_RUN() { |
GL_RUN::GL_RUN() { |
125 |
ID = 0; |
ID = 0; |
126 |
ID_RUN_FRAG = 0; |
ID_RUN_FRAG = 0; |
155 |
VALIDATION = 0; |
VALIDATION = 0; |
156 |
} |
} |
157 |
|
|
158 |
|
|
159 |
void GL_RUN::Clear() { |
void GL_RUN::Clear() { |
160 |
ID = 0; |
ID = 0; |
161 |
ID_RUN_FRAG = 0; |
ID_RUN_FRAG = 0; |
220 |
OBT2 = 0; |
OBT2 = 0; |
221 |
PKT1 = 0; |
PKT1 = 0; |
222 |
PKT2 = 0; |
PKT2 = 0; |
223 |
|
BOOT_NUMBER = 0; |
224 |
|
VALIDATION = 0; |
225 |
} |
} |
226 |
|
|
227 |
GL_CALO_CALIB::GL_CALO_CALIB(){ |
GL_CALO_CALIB::GL_CALO_CALIB(){ |
247 |
obtfirst = 0; |
obtfirst = 0; |
248 |
pktfirst = 0; |
pktfirst = 0; |
249 |
toffset = 0; |
toffset = 0; |
250 |
ID = 0; |
// ID = 0; |
251 |
ID_RAW = 0; |
// ID_RAW = 0; |
252 |
OBT0 = 0; |
OBT0 = 0; |
253 |
TIMESYNC = 0; |
TIMESYNC = 0; |
254 |
TYPE = 0; |
TYPE = 0; |
255 |
}// **************************************************** |
} |
256 |
|
|
257 |
|
// **************************************************** |
258 |
|
|
259 |
void GL_RUN::SetEV_FROM(UInt_t evfrom){ |
void GL_RUN::SetEV_FROM(UInt_t evfrom){ |
260 |
EV_FROM = evfrom; |
EV_FROM = evfrom; |
428 |
CAL_DSP_MASK = 0; |
CAL_DSP_MASK = 0; |
429 |
}; |
}; |
430 |
|
|
431 |
|
void GL_RUN::Set_GL_RUN(TSQLRow *Row){ |
432 |
|
for( Int_t t = 0; t < 30; t++){ |
433 |
|
if (t== 0) ID = (UInt_t)atoll(Row->GetField(t)); |
434 |
|
if (t== 1) ID_RUN_FRAG = (UInt_t)atoll(Row->GetField(t)); |
435 |
|
if (t== 2) ID_ROOT_L0 = (UInt_t)atoll(Row->GetField(t)); |
436 |
|
if (t== 3) ID_ROOT_L2 = (UInt_t)atoll(Row->GetField(t)); |
437 |
|
if (t== 4) RUNHEADER_TIME = (UInt_t)atoll(Row->GetField(t)); |
438 |
|
if (t== 5) RUNTRAILER_TIME = (UInt_t)atoll(Row->GetField(t)); |
439 |
|
if (t== 6) RUNHEADER_OBT = (UInt_t)atoll(Row->GetField(t)); |
440 |
|
if (t== 7) RUNTRAILER_OBT = (UInt_t)atoll(Row->GetField(t)); |
441 |
|
if (t== 8) RUNHEADER_PKT = (UInt_t)atoll(Row->GetField(t)); |
442 |
|
if (t== 9) RUNTRAILER_PKT = (UInt_t)atoll(Row->GetField(t)); |
443 |
|
if (t==10) BOOT_NUMBER = (UInt_t)atoll(Row->GetField(t)); |
444 |
|
if (t==11) EV_FROM = (UInt_t)atoll(Row->GetField(t)); |
445 |
|
if (t==12) EV_TO = (UInt_t)atoll(Row->GetField(t)); |
446 |
|
if (t==13) NEVENTS = (UInt_t)atoll(Row->GetField(t)); |
447 |
|
if (t==14) PKT_COUNTER = (UInt_t)atoll(Row->GetField(t)); |
448 |
|
if (t==15) PKT_READY_COUNTER = (UInt_t)atoll(Row->GetField(t)); |
449 |
|
if (t==16) COMPILATIONTIMESTAMP = (UInt_t)atoll(Row->GetField(t)); |
450 |
|
if (t==17) FAV_WRK_SCHEDULE = (UInt_t)atoll(Row->GetField(t)); |
451 |
|
if (t==18) EFF_WRK_SCHEDULE = (UInt_t)atoll(Row->GetField(t)); |
452 |
|
if (t==19) PRH_VAR_TRG_MODE_A= (UInt_t)atoll(Row->GetField(t)); |
453 |
|
if (t==20) PRH_VAR_TRG_MODE_B= (UInt_t)atoll(Row->GetField(t)); |
454 |
|
if (t==21) ACQ_BUILD_INFO = (UInt_t)atoll(Row->GetField(t)); |
455 |
|
if (t==22) ACQ_VAR_INFO = (UInt_t)atoll(Row->GetField(t)); |
456 |
|
if (t==23) RM_ACQ_AFTER_CALIB= (UInt_t)atoll(Row->GetField(t)); |
457 |
|
if (t==24) RM_ACQ_SETTING_MODE = (UInt_t)atoll(Row->GetField(t)); |
458 |
|
if (t==25) TRK_CALIB_USED = (UInt_t)atoll(Row->GetField(t)); |
459 |
|
if (t==26) CAL_DSP_MASK = (UInt_t)atoll(Row->GetField(t)); |
460 |
|
if (t==27) LAST_TIMESYNC = (UInt_t)atoll(Row->GetField(t)); |
461 |
|
if (t==28) OBT_TIMESYNC = (UInt_t)atoll(Row->GetField(t)); |
462 |
|
if (t==29) VALIDATION = (UInt_t)atoll(Row->GetField(t)); |
463 |
|
}; |
464 |
|
|
465 |
|
} |
466 |
|
|
467 |
|
/** |
468 |
|
* This method delete the run from the "FromTable" table and store it in the GL_RUN_TRASH table |
469 |
|
* If IDRUN is 0 "this->ID" run is used. |
470 |
|
* |
471 |
|
**/ |
472 |
|
Int_t GL_RUN::DeleteRun(TSQLServer *dbc,UInt_t IDRUN,TString FromTable){ |
473 |
|
// MySQL variables |
474 |
|
TSQLResult *pResult; |
475 |
|
TSQLRow *Row; |
476 |
|
stringstream myquery; |
477 |
|
// |
478 |
|
if ( !IDRUN ) IDRUN = ID; |
479 |
|
if ( !IDRUN ) return 1; |
480 |
|
// ---------------- |
481 |
|
myquery.str(""); |
482 |
|
myquery << " INSERT INTO GL_RUN_TRASH ("; |
483 |
|
myquery << "ID"; |
484 |
|
myquery << ",ID_RUN_FRAG"; |
485 |
|
myquery << ",ID_ROOT_L0"; |
486 |
|
myquery << ",ID_ROOT_L2"; |
487 |
|
myquery << ",RUNHEADER_TIME"; |
488 |
|
myquery << ",RUNTRAILER_TIME"; |
489 |
|
myquery << ",RUNHEADER_OBT"; |
490 |
|
myquery << ",RUNTRAILER_OBT"; |
491 |
|
myquery << ",RUNHEADER_PKT"; |
492 |
|
myquery << ",RUNTRAILER_PKT"; |
493 |
|
myquery << ",BOOT_NUMBER"; |
494 |
|
myquery << ",EV_FROM"; |
495 |
|
myquery << ",EV_TO"; |
496 |
|
myquery << ",NEVENTS"; |
497 |
|
myquery << ",PKT_COUNTER"; |
498 |
|
myquery << ",PKT_READY_COUNTER"; |
499 |
|
myquery << ",COMPILATIONTIMESTAMP"; |
500 |
|
myquery << ",FAV_WRK_SCHEDULE"; |
501 |
|
myquery << ",EFF_WRK_SCHEDULE"; |
502 |
|
myquery << ",PRH_VAR_TRG_MODE_A"; |
503 |
|
myquery << ",PRH_VAR_TRG_MODE_B"; |
504 |
|
myquery << ",ACQ_BUILD_INFO"; |
505 |
|
myquery << ",ACQ_VAR_INFO"; |
506 |
|
myquery << ",RM_ACQ_AFTER_CALIB"; |
507 |
|
myquery << ",RM_ACQ_SETTING_MODE"; |
508 |
|
myquery << ",TRK_CALIB_USED"; |
509 |
|
myquery << ",CAL_DSP_MASK"; |
510 |
|
myquery << ",LAST_TIMESYNC"; |
511 |
|
myquery << ",OBT_TIMESYNC"; |
512 |
|
myquery << ",VALIDATION"; |
513 |
|
myquery << ",INSERT_TIME"; |
514 |
|
myquery << ") SELECT * FROM "; |
515 |
|
myquery << FromTable.Data(); |
516 |
|
myquery << " WHERE ID="; |
517 |
|
myquery << (UInt_t)IDRUN << ";"; |
518 |
|
// |
519 |
|
// printf("1myquery is %s \n",myquery.str().c_str()); |
520 |
|
// |
521 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
522 |
|
this->GetGLTABLES()->AddQ(); |
523 |
|
dbc->Query(myquery.str().c_str()); |
524 |
|
// |
525 |
|
// retrieve this ID_TRASH |
526 |
|
// |
527 |
|
myquery.str(""); |
528 |
|
myquery << " SELECT ID_TRASH,ID_ROOT_L0,ID_ROOT_L2 FROM GL_RUN_TRASH ORDER BY ID_TRASH DESC LIMIT 1"; |
529 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
530 |
|
this->GetGLTABLES()->AddQ(); |
531 |
|
pResult = dbc->Query(myquery.str().c_str()); |
532 |
|
// |
533 |
|
UInt_t idtrash = 0; |
534 |
|
UInt_t idl0 = 0; |
535 |
|
UInt_t idl2 = 0; |
536 |
|
// |
537 |
|
Row = pResult->Next(); |
538 |
|
if( Row != NULL ){ |
539 |
|
idtrash = (UInt_t)atoll(Row->GetField(0)); |
540 |
|
idl0 = (UInt_t)atoll(Row->GetField(1)); |
541 |
|
idl2 = (UInt_t)atoll(Row->GetField(2)); |
542 |
|
}; |
543 |
|
// |
544 |
|
TString fileL0 = ""; |
545 |
|
TString fileL2 = ""; |
546 |
|
myquery.str(""); |
547 |
|
myquery << " SELECT NAME FROM GL_ROOT WHERE ID="; |
548 |
|
myquery << idl0 << ";"; |
549 |
|
// |
550 |
|
// printf("2myquery is %s \n",myquery.str().c_str()); |
551 |
|
// |
552 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
553 |
|
this->GetGLTABLES()->AddQ(); |
554 |
|
pResult = dbc->Query(myquery.str().c_str()); |
555 |
|
// |
556 |
|
Row = pResult->Next(); |
557 |
|
if( Row != NULL ){ |
558 |
|
fileL0 = (TString)Row->GetField(0); |
559 |
|
}; |
560 |
|
// |
561 |
|
// |
562 |
|
// |
563 |
|
myquery.str(""); |
564 |
|
myquery << " SELECT NAME FROM GL_ROOT WHERE ID="; |
565 |
|
myquery << idl2 << ";"; |
566 |
|
// |
567 |
|
// printf("3myquery is %s \n",myquery.str().c_str()); |
568 |
|
// |
569 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
570 |
|
this->GetGLTABLES()->AddQ(); |
571 |
|
pResult = dbc->Query(myquery.str().c_str()); |
572 |
|
// |
573 |
|
Row = pResult->Next(); |
574 |
|
if( Row != NULL ){ |
575 |
|
fileL2 = (TString)Row->GetField(0); |
576 |
|
}; |
577 |
|
// |
578 |
|
// |
579 |
|
// |
580 |
|
myquery.str(""); |
581 |
|
myquery << " UPDATE GL_RUN_TRASH SET FILENAMEL0='"; |
582 |
|
myquery << fileL0.Data() << "' where ID_TRASH="; |
583 |
|
myquery << idtrash << ";"; |
584 |
|
// |
585 |
|
// printf("4myquery is %s \n",myquery.str().c_str()); |
586 |
|
// |
587 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
588 |
|
this->GetGLTABLES()->AddQ(); |
589 |
|
dbc->Query(myquery.str().c_str()); |
590 |
|
// |
591 |
|
myquery.str(""); |
592 |
|
myquery << " UPDATE GL_RUN_TRASH SET FILENAMEL2='"; |
593 |
|
myquery << fileL2.Data() << "' where ID_TRASH="; |
594 |
|
myquery << idtrash << ";"; |
595 |
|
// |
596 |
|
// printf("4myquery is %s \n",myquery.str().c_str()); |
597 |
|
// |
598 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
599 |
|
this->GetGLTABLES()->AddQ(); |
600 |
|
dbc->Query(myquery.str().c_str()); |
601 |
|
// |
602 |
|
myquery.str(""); |
603 |
|
myquery << " UPDATE GL_RUN_TRASH SET BELONGED_TO='"; |
604 |
|
myquery << FromTable.Data() << "' where ID_TRASH="; |
605 |
|
myquery << idtrash << ";"; |
606 |
|
// |
607 |
|
// printf("4myquery is %s \n",myquery.str().c_str()); |
608 |
|
// |
609 |
|
// |
610 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
611 |
|
this->GetGLTABLES()->AddQ(); |
612 |
|
dbc->Query(myquery.str().c_str()); |
613 |
|
// |
614 |
|
myquery.str(""); |
615 |
|
myquery << " DELETE FROM "; |
616 |
|
myquery << FromTable.Data() << " where ID="; |
617 |
|
myquery << IDRUN << ";"; |
618 |
|
// |
619 |
|
// printf("5myquery is %s \n",myquery.str().c_str()); |
620 |
|
// |
621 |
|
// |
622 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
623 |
|
this->GetGLTABLES()->AddQ(); |
624 |
|
dbc->Query(myquery.str().c_str()); |
625 |
|
// |
626 |
|
return 0; |
627 |
|
}; |
628 |
|
|
629 |
|
|
630 |
|
|
631 |
|
/** |
632 |
|
* This method restore a run from the GL_RUN_TRASH table. |
633 |
|
* If ID is 0 "this->ID" is used; if "ToTable" is empty BELONG_TO field of GL_RUN_TRASH is used. |
634 |
|
* |
635 |
|
**/ |
636 |
|
Int_t GL_RUN::RestoreRun(TSQLServer *dbc,UInt_t IDRUN,TString ToTable){ |
637 |
|
// insert into GL_RUN_FRAGMENTS select * FROM GL_RUN where ID=11; |
638 |
|
//insert into GL_RUN_TRASH VALUES (ID , ID_RUN_FRAG , ID_ROOT_L0 , ID_ROOT_L2 , RUNHEADER_TIME , RUNTRAILER_TIME , RUNHEADER_OBT , RUNTRAILER_OBT , RUNHEADER_PKT , RUNTRAILER_PKT , BOOT_NUMBER , EV_FROM , EV_TO , NEVENTS , PKT_COUNTER , PKT_READY_COUNTER , COMPILATIONTIMESTAMP , FAV_WRK_SCHEDULE , EFF_WRK_SCHEDULE , PRH_VAR_TRG_MODE_A , PRH_VAR_TRG_MODE_B , ACQ_BUILD_INFO , ACQ_VAR_INFO , RM_ACQ_AFTER_CALIB , RM_ACQ_SETTING_MODE, TRK_CALIB_USED,CAL_DSP_MASK, LAST_TIMESYNC, OBT_TIMESYNC, VALIDATION, INSERT_TIME) select * FROM GL_RUN where ID=11; |
639 |
|
// MySQL variables |
640 |
|
TSQLResult *pResult; |
641 |
|
TSQLRow *Row; |
642 |
|
stringstream myquery; |
643 |
|
// |
644 |
|
if ( !IDRUN ) IDRUN = ID; |
645 |
|
if ( !IDRUN ) return 1; |
646 |
|
// |
647 |
|
if ( !strcmp(ToTable.Data(),"") ){ |
648 |
|
// |
649 |
|
myquery.str(""); |
650 |
|
myquery << " SELECT BELONGED_TO FROM GL_RUN_TRASH WHERE ID="; |
651 |
|
myquery << (UInt_t)IDRUN << ";"; |
652 |
|
// |
653 |
|
printf(" qui? myquery is %s \n",myquery.str().c_str()); |
654 |
|
// |
655 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
656 |
|
this->GetGLTABLES()->AddQ(); |
657 |
|
pResult = dbc->Query(myquery.str().c_str()); |
658 |
|
// |
659 |
|
Row = pResult->Next(); |
660 |
|
if( Row != NULL ){ |
661 |
|
ToTable = (TString)Row->GetField(0); |
662 |
|
} else { |
663 |
|
return 1; |
664 |
|
}; |
665 |
|
}; |
666 |
|
// ---------------- |
667 |
|
myquery.str(""); |
668 |
|
myquery << " INSERT INTO "; |
669 |
|
myquery << ToTable.Data(); |
670 |
|
myquery << " ("; |
671 |
|
myquery << "ID"; |
672 |
|
myquery << ",ID_RUN_FRAG"; |
673 |
|
myquery << ",ID_ROOT_L0"; |
674 |
|
myquery << ",ID_ROOT_L2"; |
675 |
|
myquery << ",RUNHEADER_TIME"; |
676 |
|
myquery << ",RUNTRAILER_TIME"; |
677 |
|
myquery << ",RUNHEADER_OBT"; |
678 |
|
myquery << ",RUNTRAILER_OBT"; |
679 |
|
myquery << ",RUNHEADER_PKT"; |
680 |
|
myquery << ",RUNTRAILER_PKT"; |
681 |
|
myquery << ",BOOT_NUMBER"; |
682 |
|
myquery << ",EV_FROM"; |
683 |
|
myquery << ",EV_TO"; |
684 |
|
myquery << ",NEVENTS"; |
685 |
|
myquery << ",PKT_COUNTER"; |
686 |
|
myquery << ",PKT_READY_COUNTER"; |
687 |
|
myquery << ",COMPILATIONTIMESTAMP"; |
688 |
|
myquery << ",FAV_WRK_SCHEDULE"; |
689 |
|
myquery << ",EFF_WRK_SCHEDULE"; |
690 |
|
myquery << ",PRH_VAR_TRG_MODE_A"; |
691 |
|
myquery << ",PRH_VAR_TRG_MODE_B"; |
692 |
|
myquery << ",ACQ_BUILD_INFO"; |
693 |
|
myquery << ",ACQ_VAR_INFO"; |
694 |
|
myquery << ",RM_ACQ_AFTER_CALIB"; |
695 |
|
myquery << ",RM_ACQ_SETTING_MODE"; |
696 |
|
myquery << ",TRK_CALIB_USED"; |
697 |
|
myquery << ",CAL_DSP_MASK"; |
698 |
|
myquery << ",LAST_TIMESYNC"; |
699 |
|
myquery << ",OBT_TIMESYNC"; |
700 |
|
myquery << ",VALIDATION"; |
701 |
|
myquery << ",INSERT_TIME"; |
702 |
|
myquery << ") SELECT "; |
703 |
|
myquery << "ID"; |
704 |
|
myquery << ",ID_RUN_FRAG"; |
705 |
|
myquery << ",ID_ROOT_L0"; |
706 |
|
myquery << ",ID_ROOT_L2"; |
707 |
|
myquery << ",RUNHEADER_TIME"; |
708 |
|
myquery << ",RUNTRAILER_TIME"; |
709 |
|
myquery << ",RUNHEADER_OBT"; |
710 |
|
myquery << ",RUNTRAILER_OBT"; |
711 |
|
myquery << ",RUNHEADER_PKT"; |
712 |
|
myquery << ",RUNTRAILER_PKT"; |
713 |
|
myquery << ",BOOT_NUMBER"; |
714 |
|
myquery << ",EV_FROM"; |
715 |
|
myquery << ",EV_TO"; |
716 |
|
myquery << ",NEVENTS"; |
717 |
|
myquery << ",PKT_COUNTER"; |
718 |
|
myquery << ",PKT_READY_COUNTER"; |
719 |
|
myquery << ",COMPILATIONTIMESTAMP"; |
720 |
|
myquery << ",FAV_WRK_SCHEDULE"; |
721 |
|
myquery << ",EFF_WRK_SCHEDULE"; |
722 |
|
myquery << ",PRH_VAR_TRG_MODE_A"; |
723 |
|
myquery << ",PRH_VAR_TRG_MODE_B"; |
724 |
|
myquery << ",ACQ_BUILD_INFO"; |
725 |
|
myquery << ",ACQ_VAR_INFO"; |
726 |
|
myquery << ",RM_ACQ_AFTER_CALIB"; |
727 |
|
myquery << ",RM_ACQ_SETTING_MODE"; |
728 |
|
myquery << ",TRK_CALIB_USED"; |
729 |
|
myquery << ",CAL_DSP_MASK"; |
730 |
|
myquery << ",LAST_TIMESYNC"; |
731 |
|
myquery << ",OBT_TIMESYNC"; |
732 |
|
myquery << ",VALIDATION"; |
733 |
|
myquery << ",INSERT_TIME"; |
734 |
|
myquery << " FROM GL_RUN_TRASH "; |
735 |
|
myquery << " WHERE BELONGED_TO='GL_RUN_FRAGMENTS' AND ID="; |
736 |
|
myquery << (UInt_t)IDRUN << ";"; |
737 |
|
// |
738 |
|
// printf("5myquery is %s \n",myquery.str().c_str()); |
739 |
|
// |
740 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
741 |
|
this->GetGLTABLES()->AddQ(); |
742 |
|
dbc->Query(myquery.str().c_str()); |
743 |
|
// |
744 |
|
// |
745 |
|
myquery.str(""); |
746 |
|
myquery << " DELETE FROM GL_RUN_TRASH where BELONGED_TO='GL_RUN_FRAGMENTS' AND ID="; |
747 |
|
myquery << IDRUN << ";"; |
748 |
|
// |
749 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
750 |
|
this->GetGLTABLES()->AddQ(); |
751 |
|
dbc->Query(myquery.str().c_str()); |
752 |
|
// |
753 |
|
return 0; |
754 |
|
}; |
755 |
|
|
756 |
/** |
/** |
757 |
* Function to fill the GL_RUN table of the DB. |
* Function to fill the GL_RUN table of the DB. |
830 |
// |
// |
831 |
// printf("myquery is %s \n",myquery.str().c_str()); |
// printf("myquery is %s \n",myquery.str().c_str()); |
832 |
// |
// |
833 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
834 |
|
this->GetGLTABLES()->AddQ(); |
835 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
836 |
// |
// |
837 |
return 0; |
return 0; |
908 |
// |
// |
909 |
// printf("myquery is %s \n",myquery.str().c_str()); |
// printf("myquery is %s \n",myquery.str().c_str()); |
910 |
// |
// |
911 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
912 |
|
this->GetGLTABLES()->AddQ(); |
913 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
914 |
// |
// |
915 |
return 0; |
return 0; |
966 |
myquery << ",VALIDATION"; |
myquery << ",VALIDATION"; |
967 |
myquery << " from GL_RUN where ID=" << run << ";"; |
myquery << " from GL_RUN where ID=" << run << ";"; |
968 |
// |
// |
969 |
|
// printf(" myquery is %s \n",myquery.str().c_str()); |
970 |
|
if ( !this->IsConnected(dbc) ) return -57; |
971 |
|
this->AddQ(); |
972 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
973 |
if(!pResult->GetRowCount())return(-50); |
// |
974 |
|
// printf(" getrowcount %i \n",pResult->GetRowCount()); |
975 |
|
// |
976 |
|
if( !pResult->GetRowCount() ) return(-50); |
977 |
|
// |
978 |
for( r=0; r < 1000; r++){ |
for( r=0; r < 1000; r++){ |
979 |
Row = pResult->Next(); |
Row = pResult->Next(); |
980 |
if( Row == NULL ) break; |
if( Row == NULL ) break; |
981 |
|
// Set_GL_RUN(Row); |
982 |
for( t = 0; t < pResult->GetFieldCount(); t++){ |
for( t = 0; t < pResult->GetFieldCount(); t++){ |
983 |
if (t== 0) ID = (UInt_t)atoll(Row->GetField(t)); |
if (t== 0) ID = (UInt_t)atoll(Row->GetField(t)); |
984 |
if (t== 1) ID_RUN_FRAG = (UInt_t)atoll(Row->GetField(t)); |
if (t== 1) ID_RUN_FRAG = (UInt_t)atoll(Row->GetField(t)); |
985 |
if (t== 2) ID_ROOT_L0 = (UInt_t)atoll(Row->GetField(t)); |
if (t== 2) ID_ROOT_L0 = (UInt_t)atoll(Row->GetField(t)); |
986 |
if (t== 3) ID_ROOT_L2 = (UInt_t)atoll(Row->GetField(t)); |
if (t== 3) ID_ROOT_L2 = (UInt_t)atoll(Row->GetField(t)); |
987 |
if (t== 4) RUNHEADER_TIME = (UInt_t)atoll(Row->GetField(t)); |
if (t== 4) RUNHEADER_TIME = (UInt_t)atoll(Row->GetField(t)); |
988 |
if (t== 5) RUNTRAILER_TIME = (UInt_t)atoll(Row->GetField(t)); |
if (t== 5) RUNTRAILER_TIME = (UInt_t)atoll(Row->GetField(t)); |
989 |
if (t== 6) RUNHEADER_OBT = (UInt_t)atoll(Row->GetField(t)); |
if (t== 6) RUNHEADER_OBT = (UInt_t)atoll(Row->GetField(t)); |
990 |
if (t== 7) RUNTRAILER_OBT = (UInt_t)atoll(Row->GetField(t)); |
if (t== 7) RUNTRAILER_OBT = (UInt_t)atoll(Row->GetField(t)); |
991 |
if (t== 8) RUNHEADER_PKT = (UInt_t)atoll(Row->GetField(t)); |
if (t== 8) RUNHEADER_PKT = (UInt_t)atoll(Row->GetField(t)); |
992 |
if (t== 9) RUNTRAILER_PKT = (UInt_t)atoll(Row->GetField(t)); |
if (t== 9) RUNTRAILER_PKT = (UInt_t)atoll(Row->GetField(t)); |
993 |
if (t==10) EV_FROM = (UInt_t)atoll(Row->GetField(t)); |
if (t==10) EV_FROM = (UInt_t)atoll(Row->GetField(t)); |
994 |
if (t==11) EV_TO = (UInt_t)atoll(Row->GetField(t)); |
if (t==11) EV_TO = (UInt_t)atoll(Row->GetField(t)); |
995 |
if (t==12) NEVENTS = (UInt_t)atoll(Row->GetField(t)); |
if (t==12) NEVENTS = (UInt_t)atoll(Row->GetField(t)); |
996 |
if (t==13) LAST_TIMESYNC = (UInt_t)atoll(Row->GetField(t)); |
if (t==13) LAST_TIMESYNC = (UInt_t)atoll(Row->GetField(t)); |
997 |
if (t==14) OBT_TIMESYNC = (UInt_t)atoll(Row->GetField(t)); |
if (t==14) OBT_TIMESYNC = (UInt_t)atoll(Row->GetField(t)); |
998 |
if (t==15) COMPILATIONTIMESTAMP = (UInt_t)atoll(Row->GetField(t)); |
if (t==15) COMPILATIONTIMESTAMP = (UInt_t)atoll(Row->GetField(t)); |
999 |
if (t==16) FAV_WRK_SCHEDULE = (UInt_t)atoll(Row->GetField(t)); |
if (t==16) FAV_WRK_SCHEDULE = (UInt_t)atoll(Row->GetField(t)); |
1000 |
if (t==17) EFF_WRK_SCHEDULE = (UInt_t)atoll(Row->GetField(t)); |
if (t==17) EFF_WRK_SCHEDULE = (UInt_t)atoll(Row->GetField(t)); |
1001 |
if (t==18) PRH_VAR_TRG_MODE_A= (UInt_t)atoll(Row->GetField(t)); |
if (t==18) PRH_VAR_TRG_MODE_A= (UInt_t)atoll(Row->GetField(t)); |
1002 |
if (t==19) PRH_VAR_TRG_MODE_B= (UInt_t)atoll(Row->GetField(t)); |
if (t==19) PRH_VAR_TRG_MODE_B= (UInt_t)atoll(Row->GetField(t)); |
1003 |
if (t==20) ACQ_BUILD_INFO = (UInt_t)atoll(Row->GetField(t)); |
if (t==20) ACQ_BUILD_INFO = (UInt_t)atoll(Row->GetField(t)); |
1004 |
if (t==21) ACQ_VAR_INFO = (UInt_t)atoll(Row->GetField(t)); |
if (t==21) ACQ_VAR_INFO = (UInt_t)atoll(Row->GetField(t)); |
1005 |
if (t==22) RM_ACQ_AFTER_CALIB= (UInt_t)atoll(Row->GetField(t)); |
if (t==22) RM_ACQ_AFTER_CALIB= (UInt_t)atoll(Row->GetField(t)); |
1006 |
if (t==23) RM_ACQ_SETTING_MODE = (UInt_t)atoll(Row->GetField(t)); |
if (t==23) RM_ACQ_SETTING_MODE = (UInt_t)atoll(Row->GetField(t)); |
1007 |
if (t==24) PKT_COUNTER = (UInt_t)atoll(Row->GetField(t)); |
if (t==24) PKT_COUNTER = (UInt_t)atoll(Row->GetField(t)); |
1008 |
if (t==25) PKT_READY_COUNTER = (UInt_t)atoll(Row->GetField(t)); |
if (t==25) PKT_READY_COUNTER = (UInt_t)atoll(Row->GetField(t)); |
1009 |
if (t==26) TRK_CALIB_USED = (UInt_t)atoll(Row->GetField(t)); |
if (t==26) TRK_CALIB_USED = (UInt_t)atoll(Row->GetField(t)); |
1010 |
if (t==27) CAL_DSP_MASK = (UInt_t)atoll(Row->GetField(t)); |
if (t==27) CAL_DSP_MASK = (UInt_t)atoll(Row->GetField(t)); |
1011 |
if (t==28) BOOT_NUMBER = (UInt_t)atoll(Row->GetField(t)); |
if (t==28) BOOT_NUMBER = (UInt_t)atoll(Row->GetField(t)); |
1012 |
if (t==29) VALIDATION = (UInt_t)atoll(Row->GetField(t)); |
if (t==29) VALIDATION = (UInt_t)atoll(Row->GetField(t)); |
|
|
|
|
|
|
1013 |
}; |
}; |
1014 |
}; |
}; |
1015 |
delete pResult; |
// delete pResult; |
1016 |
|
return(0); |
|
return 0; |
|
|
|
|
1017 |
}; |
}; |
1018 |
|
|
1019 |
/** |
/** |
1067 |
// |
// |
1068 |
// printf(" query is %s \n",myquery.str().c_str()); |
// printf(" query is %s \n",myquery.str().c_str()); |
1069 |
// |
// |
1070 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1071 |
|
this->GetGLTABLES()->AddQ(); |
1072 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1073 |
if(!pResult->GetRowCount())return(-50); |
if(!pResult->GetRowCount())return(-50); |
1074 |
for( r=0; r < 1000; r++){ |
for( r=0; r < 1000; r++){ |
1134 |
myquery << ",NAME"; |
myquery << ",NAME"; |
1135 |
myquery << " from GL_ROOT where ID=" << id << ";"; |
myquery << " from GL_ROOT where ID=" << id << ";"; |
1136 |
// |
// |
1137 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1138 |
|
this->GetGLTABLES()->AddQ(); |
1139 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1140 |
if(!pResult->GetRowCount())return (-51); |
if(!pResult->GetRowCount())return (-51); |
1141 |
for( r=0; r < 1000; r++){ |
for( r=0; r < 1000; r++){ |
1145 |
if(t==0) ID = (UInt_t)atoll(Row->GetField(t)); |
if(t==0) ID = (UInt_t)atoll(Row->GetField(t)); |
1146 |
if(t==1) ID_RAW = (UInt_t)atoll(Row->GetField(t)); |
if(t==1) ID_RAW = (UInt_t)atoll(Row->GetField(t)); |
1147 |
if(t==2) ID_TIMESYNC = (UInt_t)atoll(Row->GetField(t)); |
if(t==2) ID_TIMESYNC = (UInt_t)atoll(Row->GetField(t)); |
1148 |
if(t==3) PATH = Row->GetField(t); |
if(t==3) PATH = (TString)gSystem->ExpandPathName(Row->GetField(t))+'/'; |
1149 |
if(t==4) NAME = Row->GetField(t); |
if(t==4) NAME = Row->GetField(t); |
1150 |
}; |
}; |
1151 |
}; |
}; |
1157 |
* Function to query the GL_TRK_CALIB table of the DB. |
* Function to query the GL_TRK_CALIB table of the DB. |
1158 |
* |
* |
1159 |
* \param run starting time |
* \param run starting time |
1160 |
|
* \param dbc DB server |
1161 |
* \return struct of type GL_TRK_CALIB_data, which stores the query result |
* \return struct of type GL_TRK_CALIB_data, which stores the query result |
1162 |
*/ |
*/ |
1163 |
Int_t GL_TRK_CALIB::Query_GL_TRK_CALIB(UInt_t time, TSQLServer *dbc){ |
Int_t GL_TRK_CALIB::Query_GL_TRK_CALIB(UInt_t time, TSQLServer *dbc){ |
1169 |
stringstream myquery; |
stringstream myquery; |
1170 |
// ---------------- |
// ---------------- |
1171 |
myquery.str(""); |
myquery.str(""); |
1172 |
myquery << "select ID,ID_ROOT_L0,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,FROM_TIME,TO_TIME,OBT1,OBT2,PKT1,PKT2 from GL_TRK_CALIB where FROM_TIME <= "<< time; |
myquery << "select ID,ID_ROOT_L0,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,FROM_TIME,TO_TIME,OBT1,OBT2,PKT1,PKT2,BOOT_NUMBER,VALIDATION from GL_TRK_CALIB where FROM_TIME <= "<< time; |
1173 |
myquery << " AND VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;"; |
// myquery << " AND VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;"; // RIVEDERE LA VALIDAZIONE!!! |
1174 |
|
myquery << " and EV_ROOT_CALIBTRK1>=0 and and EV_ROOT_CALIBTRK2>=0"; // EM! SE MANCA UN PACCHETTO DEI DUE IL PROCESSAMENTO CRASHA... DA RIVEDERE LA VALIDAZIONE |
1175 |
|
myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
1176 |
// myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
// myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
1177 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1178 |
|
this->GetGLTABLES()->AddQ(); |
1179 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1180 |
if(!pResult->GetRowCount())return (-53); |
if(!pResult->GetRowCount())return (-53); |
1181 |
for( r=0; r < 1000; r++){ |
for( r=0; r < 1000; r++){ |
1185 |
stringstream row; |
stringstream row; |
1186 |
row.str(""); |
row.str(""); |
1187 |
row << "0" << Row->GetField(t); // add leading 0 since we have two fields that could be "null" and we want to avoid crashes due to atoll |
row << "0" << Row->GetField(t); // add leading 0 since we have two fields that could be "null" and we want to avoid crashes due to atoll |
1188 |
if (t==0) ID = (UInt_t)atoll(Row->GetField(t)); |
if (t==0) ID = (UInt_t)atoll(Row->GetField(t)); |
1189 |
if (t==1) ID_ROOT_L0 = (UInt_t)atoll(Row->GetField(t)); |
if (t==1) ID_ROOT_L0 = (UInt_t)atoll(Row->GetField(t)); |
1190 |
if (t==2) EV_ROOT_CALIBTRK1 = (UInt_t)atoll(row.str().c_str()); |
if (t==2) EV_ROOT_CALIBTRK1 = (UInt_t)atoll(row.str().c_str()); |
1191 |
if (t==3) EV_ROOT_CALIBTRK2 = (UInt_t)atoll(row.str().c_str()); |
if (t==3) EV_ROOT_CALIBTRK2 = (UInt_t)atoll(row.str().c_str()); |
1192 |
if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t)); |
if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t)); |
1193 |
if (t==5) TO_TIME = (UInt_t)atoll(Row->GetField(t)); |
if (t==5) TO_TIME = (UInt_t)atoll(Row->GetField(t)); |
1194 |
// |
// |
1195 |
if (t==6) OBT1 = (UInt_t)atoll(Row->GetField(t)); |
if (t==6) OBT1 = (UInt_t)atoll(Row->GetField(t)); |
1196 |
if (t==7) OBT2 = (UInt_t)atoll(Row->GetField(t)); |
if (t==7) OBT2 = (UInt_t)atoll(Row->GetField(t)); |
1197 |
if (t==8) PKT1 = (UInt_t)atoll(Row->GetField(t)); |
if (t==8) PKT1 = (UInt_t)atoll(Row->GetField(t)); |
1198 |
if (t==9) PKT2 = (UInt_t)atoll(Row->GetField(t)); |
if (t==9) PKT2 = (UInt_t)atoll(Row->GetField(t)); |
1199 |
}; |
if (t==10) BOOT_NUMBER = (UInt_t)atoll(Row->GetField(t)); |
1200 |
|
if (t==11) VALIDATION = (UInt_t)atoll(Row->GetField(t)); |
1201 |
|
}; |
1202 |
}; |
}; |
1203 |
delete pResult; |
delete pResult; |
1204 |
|
// |
1205 |
|
// if ( TO_TIME < time ) return(51); |
1206 |
// |
// |
|
if(TO_TIME < time)return(51); |
|
1207 |
if ( (!OBT1 && !PKT1 ) || (!OBT2 && !PKT2) ) return(52); // ONE CALIBRATION PACKET IS MISSING! |
if ( (!OBT1 && !PKT1 ) || (!OBT2 && !PKT2) ) return(52); // ONE CALIBRATION PACKET IS MISSING! |
1208 |
// |
// |
1209 |
return 0; |
return 0; |
1216 |
* \param run starting time |
* \param run starting time |
1217 |
* \return struct of type GL_CALO_CALIB_data, which stores the query result |
* \return struct of type GL_CALO_CALIB_data, which stores the query result |
1218 |
*/ |
*/ |
1219 |
Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB(UInt_t time, UInt_t section, TSQLServer *dbc){ |
Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB(UInt_t time, UInt_t &uptime, UInt_t section, TSQLServer *dbc){ |
1220 |
// MySQL variables |
// MySQL variables |
1221 |
TSQLResult *pResult; |
TSQLResult *pResult; |
1222 |
TSQLRow *Row; |
TSQLRow *Row; |
1223 |
int t; |
int t; |
1224 |
stringstream myquery; |
stringstream myquery; |
1225 |
|
uptime = 0; |
1226 |
// |
// |
1227 |
// select the correct calibration |
// select the correct calibration |
1228 |
// |
// |
1230 |
myquery << "select ID_ROOT_L0, FROM_TIME, TO_TIME, EV_ROOT,VALIDATION from GL_CALO_CALIB where SECTION=" << section; |
myquery << "select ID_ROOT_L0, FROM_TIME, TO_TIME, EV_ROOT,VALIDATION from GL_CALO_CALIB where SECTION=" << section; |
1231 |
myquery << " and FROM_TIME <= " << time; |
myquery << " and FROM_TIME <= " << time; |
1232 |
myquery << " and TO_TIME > " << time; |
myquery << " and TO_TIME > " << time; |
1233 |
myquery << " and VALIDATION=1;"; |
myquery << " ;"; |
1234 |
|
//myquery << " and VALIDATION=1;"; |
1235 |
// |
// |
1236 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1237 |
|
this->GetGLTABLES()->AddQ(); |
1238 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1239 |
|
// printf(" mysquery is %s\n",myquery.str().c_str()); |
1240 |
|
// |
1241 |
|
if( !pResult->GetRowCount() ) return(-54); |
1242 |
|
Row = pResult->Next(); |
1243 |
|
if( Row == NULL ) return (-54); |
1244 |
|
// |
1245 |
|
uptime = (UInt_t)atoll(Row->GetField(2)); |
1246 |
// |
// |
1247 |
// if it is corrupted validation is 0 and we have no results from the query... |
// if it is corrupted validation is 0 and we have no results from the query... |
1248 |
// |
// |
1249 |
if( !pResult->GetRowCount() ){ |
if( atoi(Row->GetField(4)) == 0 ){ // if validation = 0 |
|
// pResult->Delete(); |
|
1250 |
// |
// |
1251 |
// in this case take relax the conditions and take the valid calibration that preceed the correct one |
// in this case take relax the conditions and take the valid calibration that preceed the correct one |
1252 |
// |
// |
1254 |
myquery << "select ID_ROOT_L0, FROM_TIME, TO_TIME, EV_ROOT,VALIDATION from GL_CALO_CALIB where SECTION=" << section; |
myquery << "select ID_ROOT_L0, FROM_TIME, TO_TIME, EV_ROOT,VALIDATION from GL_CALO_CALIB where SECTION=" << section; |
1255 |
myquery << " and FROM_TIME <= " << time; |
myquery << " and FROM_TIME <= " << time; |
1256 |
myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;"; |
myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;"; |
1257 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1258 |
|
this->GetGLTABLES()->AddQ(); |
1259 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1260 |
|
// printf(" mysquery is %s\n",myquery.str().c_str()); |
1261 |
// |
// |
1262 |
// if no results yet quit with error |
// if no results yet quit with error |
1263 |
// |
// |
1264 |
if( !pResult->GetRowCount() ) return (-54); |
if( !pResult->GetRowCount() ) return (-54); |
1265 |
|
// |
1266 |
|
Row = pResult->Next(); |
1267 |
|
// |
1268 |
}; |
}; |
1269 |
// |
// |
1270 |
// store infos and exit |
// store infos and exit |
1271 |
// |
// |
|
Row = pResult->Next(); |
|
1272 |
if( Row == NULL ) return (-54); |
if( Row == NULL ) return (-54); |
1273 |
for( t = 0; t < pResult->GetFieldCount(); t++){ |
for( t = 0; t < pResult->GetFieldCount(); t++){ |
1274 |
if (t==0) ID_ROOT_L0 = (UInt_t)atoll(Row->GetField(t)); |
if (t==0) ID_ROOT_L0 = (UInt_t)atoll(Row->GetField(t)); |
1296 |
// ---------------- |
// ---------------- |
1297 |
myquery.str(""); |
myquery.str(""); |
1298 |
myquery << "select * from GL_S4_CALIB where FROM_TIME <= "<< time; |
myquery << "select * from GL_S4_CALIB where FROM_TIME <= "<< time; |
1299 |
myquery << " AND VALIDATION = 1 ORDER BY FROM_TIME DESC LIMIT 1;"; |
myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
1300 |
// myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
// myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
1301 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1302 |
|
this->GetGLTABLES()->AddQ(); |
1303 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1304 |
if(!pResult->GetRowCount())return (-55);//throw -55; |
if(!pResult->GetRowCount())return (-55);//throw -55; |
1305 |
for( r=0; r < 1000; r++){ |
for( r=0; r < 1000; r++){ |
1340 |
// ---------------- |
// ---------------- |
1341 |
myquery.str(""); |
myquery.str(""); |
1342 |
myquery << " select "; |
myquery << " select "; |
1343 |
myquery << " ID, PATH, NAME, DESCR, TYPE, FROM_TIME,TO_TIME "; |
myquery << " ID, PATH, NAME, DESCR, FROM_TIME,TO_TIME, TYPE "; |
1344 |
myquery << " from GL_PARAM "; |
myquery << " from GL_PARAM "; |
1345 |
myquery << " where TYPE = '"<<type<<"' "; |
myquery << " where TYPE = '"<<type<<"' "; |
1346 |
myquery << " and FROM_TIME <= " << time; |
myquery << " and FROM_TIME <= " << time; |
1347 |
myquery << " ORDER BY TO_TIME DESC LIMIT 1;"; |
myquery << " ORDER BY TO_TIME DESC LIMIT 1;"; |
1348 |
// |
// |
1349 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1350 |
|
this->GetGLTABLES()->AddQ(); |
1351 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1352 |
if(!pResult->GetRowCount())return (-52); |
if(!pResult->GetRowCount())return (-52); |
1353 |
for( r=0; r < 1000; r++){ |
for( r=0; r < 1000; r++){ |
1355 |
if( Row == NULL ) break; |
if( Row == NULL ) break; |
1356 |
for( t = 0; t < pResult->GetFieldCount(); t++){ |
for( t = 0; t < pResult->GetFieldCount(); t++){ |
1357 |
if (t==0) ID = (UInt_t)atoll(Row->GetField(t)); |
if (t==0) ID = (UInt_t)atoll(Row->GetField(t)); |
1358 |
if (t==1) PATH = Row->GetField(t);// put in fpath the path to that file |
if (t==1) PATH = (TString)gSystem->ExpandPathName(Row->GetField(t))+'/';// put in fpath the path to that file |
1359 |
if (t==2) NAME = Row->GetField(t); |
if (t==2) NAME = Row->GetField(t); |
1360 |
if (t==3) DESCR = Row->GetField(t); |
if (t==3) DESCR = Row->GetField(t); |
1361 |
if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t)); |
if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t)); |
1400 |
TSQLResult *pResult; |
TSQLResult *pResult; |
1401 |
TSQLRow *Row; |
TSQLRow *Row; |
1402 |
stringstream myquery; |
stringstream myquery; |
1403 |
|
stringstream rname; |
1404 |
|
// pcksList packetsNames; |
1405 |
|
// pcksList::iterator Iter; |
1406 |
|
// getPacketsNames(packetsNames); |
1407 |
|
rname.str(""); |
1408 |
// ---------------- |
// ---------------- |
1409 |
myquery.str(""); |
myquery.str(""); |
1410 |
myquery << "select "; |
myquery << "select "; |
1414 |
myquery << type.Data(); |
myquery << type.Data(); |
1415 |
myquery << "=" << id << ";"; |
myquery << "=" << id << ";"; |
1416 |
// |
// |
1417 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return; |
1418 |
|
this->GetGLTABLES()->AddQ(); |
1419 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1420 |
if( pResult->GetRowCount() ){ |
if( pResult->GetRowCount() ){ |
1421 |
Row = pResult->Next(); |
Row = pResult->Next(); |
1422 |
if( Row ){ |
if( Row ){ |
1423 |
stringstream fname; |
stringstream fname; |
1424 |
fname.str(""); |
fname.str(""); |
1425 |
fname << Row->GetField(0) << "/" << Row->GetField(1); |
fname << gSystem->ExpandPathName(Row->GetField(0)) << "/" << Row->GetField(1); |
1426 |
|
rname << Row->GetField(1); |
1427 |
file = new TFile(fname.str().c_str(),"READ"); |
file = new TFile(fname.str().c_str(),"READ"); |
1428 |
idraw = (UInt_t)atoll(Row->GetField(2)); |
idraw = (UInt_t)atoll(Row->GetField(2)); |
1429 |
}; |
}; |
1439 |
ph = eh->GetPscuHeader(); |
ph = eh->GetPscuHeader(); |
1440 |
pktfirst = ph->GetCounter(); |
pktfirst = ph->GetCounter(); |
1441 |
obtfirst = ph->GetOrbitalTime(); |
obtfirst = ph->GetOrbitalTime(); |
1442 |
|
// |
1443 |
|
// code = eh->GetCounter(); |
1444 |
|
// UInt_t en = 0; |
1445 |
|
// for(Iter = packetsNames.begin(); Iter != packetsNames.end(); Iter++){ |
1446 |
|
// en = code->Get(GetPacketType(*Iter)); |
1447 |
|
// if ( !strcmp("CalibCalPed",*Iter) || !strcmp("CalibTrk1",*Iter) || !strcmp("CalibTrk2",*Iter) || !strcmp("CalibS4",*Iter) ){ |
1448 |
|
// // |
1449 |
|
// TTree *TC = 0; |
1450 |
|
// TC = (TTree*)file->Get("CalibCalPed"); |
1451 |
|
// if ( !TC || TC->IsZombie() ) return; |
1452 |
|
// EventHeader *ehc = 0; |
1453 |
|
// PscuHeader *phc = 0; |
1454 |
|
// TC->SetBranchAddress("Header", &ehc); |
1455 |
|
// TC->GetEntry(0); |
1456 |
|
// phc = ehc->GetPscuHeader(); |
1457 |
|
// pktfirst = phc->GetCounter(); |
1458 |
|
// obtfirst = phc->GetOrbitalTime(); |
1459 |
|
// // |
1460 |
|
// }; |
1461 |
|
// }; |
1462 |
|
// |
1463 |
}; |
}; |
1464 |
// |
// |
1465 |
// look for Resurs offset |
// look for Resurs offset |
1466 |
// |
// |
1467 |
UInt_t t0 = 0; |
T0 = 0; |
1468 |
// |
// |
1469 |
myquery.str(""); |
// |
1470 |
myquery << "SELECT OFFSET_DATE FROM GL_RESURS_OFFSET WHERE FROM_ID_RAW<= " |
stringstream oss; |
1471 |
<< idraw << " AND TO_ID_RAW >= " |
TString frn = rname.str().c_str(); |
1472 |
<< idraw << ";"; |
frn = frn.ReplaceAll(".root",5,".pam",4); |
1473 |
pResult = dbc->Query(myquery.str().c_str()); |
oss.str(""); |
1474 |
if ( pResult ){ |
oss << "SELECT YEAR(OFFSET_DATE),MONTH(OFFSET_DATE),DAY(OFFSET_DATE),HOUR(OFFSET_DATE),MINUTE(OFFSET_DATE),SECOND(OFFSET_DATE) FROM GL_RESURS_OFFSET WHERE SPECIAL_FILE='" |
1475 |
|
<< frn.Data() << "';"; |
1476 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return; |
1477 |
|
this->GetGLTABLES()->AddQ(); |
1478 |
|
pResult = dbc->Query(oss.str().c_str()); |
1479 |
|
Row = pResult->Next(); |
1480 |
|
// |
1481 |
|
TString name=rname.str().c_str(); |
1482 |
|
UInt_t dworbit = 0; |
1483 |
|
Int_t nlength = name.Length(); |
1484 |
|
if ( nlength < 5 ) return; |
1485 |
|
TString dwo = 0; |
1486 |
|
for (Int_t i = 0; i<5; i++){ |
1487 |
|
dwo.Append(name[i],1); |
1488 |
|
}; |
1489 |
|
if ( dwo.IsDigit() ){ |
1490 |
|
dworbit = (UInt_t)dwo.Atoi(); |
1491 |
|
} else { |
1492 |
|
dwo=""; |
1493 |
|
for (Int_t i = 8; i<13; i++){ |
1494 |
|
dwo.Append(name[i],1); |
1495 |
|
}; |
1496 |
|
if ( dwo.IsDigit() ){ |
1497 |
|
dworbit = (UInt_t)dwo.Atoi(); |
1498 |
|
} else { |
1499 |
|
dworbit = 1; |
1500 |
|
}; |
1501 |
|
}; |
1502 |
|
// |
1503 |
|
// |
1504 |
|
if ( !Row ){ |
1505 |
|
oss.str(""); |
1506 |
|
oss << "SELECT YEAR(OFFSET_DATE),MONTH(OFFSET_DATE),DAY(OFFSET_DATE),HOUR(OFFSET_DATE),MINUTE(OFFSET_DATE),SECOND(OFFSET_DATE) FROM GL_RESURS_OFFSET WHERE FROM_ORBIT< " |
1507 |
|
<< dworbit << " order by FROM_ORBIT desc limit 1;"; |
1508 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return; |
1509 |
|
this->GetGLTABLES()->AddQ(); |
1510 |
|
pResult = dbc->Query(oss.str().c_str()); |
1511 |
Row = pResult->Next(); |
Row = pResult->Next(); |
1512 |
if ( Row ){ |
if ( !Row ){ |
1513 |
// |
printf(" ERROR FROM GLTables! cannot determine Resurs offset \n"); |
1514 |
t0 = (UInt_t)TDatime(Row->GetField(0)).Convert(); |
return; |
|
// |
|
1515 |
}; |
}; |
1516 |
}; |
}; |
1517 |
// |
// |
1518 |
|
TTimeStamp tu = TTimeStamp((UInt_t)atoi(Row->GetField(0)),(UInt_t)atoi(Row->GetField(1)),(UInt_t)atoi(Row->GetField(2)),(UInt_t)atoi(Row->GetField(3)),(UInt_t)atoi(Row->GetField(4)),(UInt_t)atoi(Row->GetField(5)),0,true,0); |
1519 |
|
T0 = (UInt_t)tu.GetSec(); |
1520 |
// |
// |
1521 |
// look for the correct timesync entry |
// look for the correct timesync entry |
1522 |
// |
// |
1523 |
myquery.str(""); |
myquery.str(""); |
1524 |
myquery << " SELECT OBT0,TIMESYNC FROM GL_TIMESYNC " |
myquery << " SELECT OBT0,TIMESYNC,TYPE FROM GL_TIMESYNC " |
1525 |
<< " WHERE ID_RAW = " << idraw |
<< " WHERE ID_RAW = " << idraw |
1526 |
<< ";"; |
<< ";"; |
1527 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return; |
1528 |
|
this->GetGLTABLES()->AddQ(); |
1529 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1530 |
if ( pResult ){ |
if ( pResult ){ |
1531 |
Row = pResult->Next(); |
Row = pResult->Next(); |
1532 |
if ( (Row != NULL) && ((UInt_t)atoll(Row->GetField(0)) > 0 ) ){ |
if ( (Row != NULL) && ((UInt_t)atoll(Row->GetField(0)) > 0 ) ){ |
1533 |
toffset = (UInt_t)atoll(Row->GetField(1)) - (UInt_t)(this->DBobt((UInt_t)atoll(Row->GetField(0)))/1000) + t0; |
OBT0 = (UInt_t)atoll(Row->GetField(0)); |
1534 |
|
TIMESYNC = (UInt_t)atoll(Row->GetField(1)); |
1535 |
|
TYPE = (UInt_t)atoll(Row->GetField(2)); |
1536 |
|
toffset = (UInt_t)atoll(Row->GetField(1)) - (UInt_t)(this->DBobt((UInt_t)atoll(Row->GetField(0)))/1000) + T0; |
1537 |
}; |
}; |
1538 |
}; |
}; |
1539 |
// |
// |
1552 |
// |
// |
1553 |
}; |
}; |
1554 |
|
|
1555 |
|
/** |
1556 |
|
* |
1557 |
|
* Returns the Resurs time given the OBT needed to process inclination and orbital infos |
1558 |
|
* |
1559 |
|
*/ |
1560 |
|
UInt_t GL_TIMESYNC::ResursTime(UInt_t OBT){ |
1561 |
|
// |
1562 |
|
return(((UInt_t)((Int_t)(this->DBobt(OBT)-this->DBobt(OBT0))/1000)+TIMESYNC)); |
1563 |
|
// |
1564 |
|
}; |
1565 |
|
|
1566 |
|
|
1567 |
ULong64_t GL_TIMESYNC::DBobt(UInt_t obt){ |
/** |
1568 |
|
* Return the correct packet number if we went back to zero |
1569 |
|
*/ |
1570 |
|
Long64_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){ |
1571 |
// |
// |
1572 |
if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((ULong64_t)(obt+numeric_limits<UInt_t>::max())); |
if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2) ){ |
1573 |
|
return((Long64_t)pkt_num+16777215LL); |
1574 |
|
}; |
1575 |
// |
// |
1576 |
if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){ |
if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){ |
1577 |
if ( (obt-numeric_limits<UInt_t>::max()) < 0 ){ |
return((Long64_t)pkt_num-16777215LL); |
|
return((ULong64_t)(numeric_limits<UInt_t>::max()-obt)); |
|
|
} else { |
|
|
return((ULong64_t)(obt-numeric_limits<UInt_t>::max())); |
|
|
}; |
|
1578 |
}; |
}; |
1579 |
// |
// |
1580 |
return((ULong64_t)obt); |
return((Long64_t)pkt_num); |
1581 |
// |
// |
1582 |
}; |
}; |
1583 |
|
|
1584 |
UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){ |
/** |
1585 |
|
* Return the correct On Board Time if we went back to zero |
1586 |
|
*/ |
1587 |
|
Long64_t GL_TIMESYNC::DBobt(UInt_t obt){ |
1588 |
// |
// |
1589 |
if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2) ) return((pkt_num+16777215)); |
if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((Long64_t)(obt+numeric_limits<UInt_t>::max())); |
1590 |
// |
// |
1591 |
if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){ |
if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){ |
1592 |
if ( (pkt_num-16777215) < 0 ){ |
return((Long64_t)obt-(Long64_t)numeric_limits<UInt_t>::max()); |
|
return((16777215-pkt_num)); |
|
|
} else { |
|
|
return((pkt_num-16777215)); |
|
|
}; |
|
1593 |
}; |
}; |
1594 |
// |
// |
1595 |
return(pkt_num); |
return((Long64_t)obt); |
|
// |
|
1596 |
}; |
}; |
1597 |
|
|
1598 |
|
|
1599 |
|
|
1600 |
|
// ULong64_t GL_TIMESYNC::DBobt(UInt_t obt){ |
1601 |
|
// // |
1602 |
|
// if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((ULong64_t)(obt+numeric_limits<UInt_t>::max())); |
1603 |
|
// // |
1604 |
|
// if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){ |
1605 |
|
// if ( (obt-numeric_limits<UInt_t>::max()) < 0 ){ |
1606 |
|
// return((ULong64_t)(numeric_limits<UInt_t>::max()-obt)); |
1607 |
|
// } else { |
1608 |
|
// return((ULong64_t)(obt-numeric_limits<UInt_t>::max())); |
1609 |
|
// }; |
1610 |
|
// }; |
1611 |
|
// // |
1612 |
|
// return((ULong64_t)obt); |
1613 |
|
// // |
1614 |
|
// }; |
1615 |
|
|
1616 |
|
// UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){ |
1617 |
|
// // |
1618 |
|
// if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2) ) return((pkt_num+16777215)); |
1619 |
|
// // |
1620 |
|
// if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){ |
1621 |
|
// if ( (pkt_num-16777215) < 0 ){ |
1622 |
|
// return((16777215-pkt_num)); |
1623 |
|
// } else { |
1624 |
|
// return((pkt_num-16777215)); |
1625 |
|
// }; |
1626 |
|
// }; |
1627 |
|
// // |
1628 |
|
// return(pkt_num); |
1629 |
|
// // |
1630 |
|
// }; |
1631 |
|
|
1632 |
|
/* |
1633 |
|
* |
1634 |
|
* Convert the time in the DB from UInt_t to a string |
1635 |
|
* |
1636 |
|
* @param dbt time in the DB |
1637 |
|
* @param tzone Time Zone, can be UTC,GMT,CET,CEST,MSD default is MSK |
1638 |
|
* |
1639 |
|
*/ |
1640 |
|
TString GL_TIMESYNC::ConvertTime(TString &tzone, UInt_t dbt){ |
1641 |
|
// |
1642 |
|
Int_t offset = 0; |
1643 |
|
TString rtime; |
1644 |
|
Bool_t found = false; |
1645 |
|
// |
1646 |
|
if ( !strcmp(tzone.Data(),"MSK") || !strcmp(tzone.Data(),"MWT") ){ |
1647 |
|
// |
1648 |
|
offset = 60*60*3; // UTC (Coordinated Universal Time) + 3hs = Moscow Winter Time |
1649 |
|
found = true; |
1650 |
|
// |
1651 |
|
}; |
1652 |
|
// |
1653 |
|
if ( !strcmp(tzone.Data(),"CET") ){ |
1654 |
|
// |
1655 |
|
offset = 60*60*1; // CET (Central European Time) = UTC + 1 hs |
1656 |
|
found = true; |
1657 |
|
// |
1658 |
|
}; |
1659 |
|
// |
1660 |
|
if ( !strcmp(tzone.Data(),"CEST") ){ |
1661 |
|
// |
1662 |
|
offset = 60*60*2; // CEST (Central European Summer Time) = UTC + 2 h |
1663 |
|
found = true; |
1664 |
|
// |
1665 |
|
}; |
1666 |
|
// |
1667 |
|
if ( !strcmp(tzone.Data(),"MSD") || !strcmp(tzone.Data(),"MST")){ |
1668 |
|
// |
1669 |
|
offset = 60*60*4; // MSD (Moscow Summer Time) = UTC + 4 h |
1670 |
|
found = true; |
1671 |
|
// |
1672 |
|
}; |
1673 |
|
// |
1674 |
|
if ( !found && strcmp(tzone.Data(),"UTC") && strcmp(tzone.Data(),"GMT") && strcmp(tzone.Data(),"") ){ |
1675 |
|
printf("\n Unknown time zone %s using UTC \n",tzone.Data()); |
1676 |
|
tzone = "UTC"; |
1677 |
|
}; |
1678 |
|
// |
1679 |
|
dbt += offset; |
1680 |
|
// |
1681 |
|
TTimeStamp *time = new TTimeStamp((time_t)dbt,0); |
1682 |
|
// |
1683 |
|
rtime = time->AsString("s"); |
1684 |
|
// |
1685 |
|
delete time; |
1686 |
|
// |
1687 |
|
return(rtime); |
1688 |
|
} |
1689 |
|
|
1690 |
|
/* |
1691 |
|
* |
1692 |
|
* Convert the time from TZONE to UTC |
1693 |
|
* |
1694 |
|
* @param dbt time in the DB |
1695 |
|
* @param tzone Time Zone, can be UTC,GMT,CET,CEST,MSD default is MSK |
1696 |
|
* |
1697 |
|
*/ |
1698 |
|
TString GL_TIMESYNC::UnConvertTime(TString &tzone, UInt_t dbt){ |
1699 |
|
// |
1700 |
|
Int_t offset = 0; |
1701 |
|
TString rtime; |
1702 |
|
// |
1703 |
|
Bool_t found = false; |
1704 |
|
// |
1705 |
|
if ( !strcmp(tzone.Data(),"MSK") || !strcmp(tzone.Data(),"MWT") ){ |
1706 |
|
// |
1707 |
|
offset = -60*60*3; // UTC (Coordinated Universal Time) = Moscow Winter Time - 3hs |
1708 |
|
found = true; |
1709 |
|
// |
1710 |
|
}; |
1711 |
|
// |
1712 |
|
if ( !strcmp(tzone.Data(),"CET") ){ |
1713 |
|
// |
1714 |
|
offset = -60*60*1; // CET (Central European Time) - 1 hs = UTC |
1715 |
|
found = true; |
1716 |
|
// |
1717 |
|
}; |
1718 |
|
// |
1719 |
|
if ( !strcmp(tzone.Data(),"CEST") ){ |
1720 |
|
// |
1721 |
|
offset = -60*60*2; // CEST (Central European Summer Time) - 2 h = UTC |
1722 |
|
found = true; |
1723 |
|
// |
1724 |
|
}; |
1725 |
|
// |
1726 |
|
if ( !strcmp(tzone.Data(),"MSD") || !strcmp(tzone.Data(),"MST") ){ |
1727 |
|
// |
1728 |
|
offset = -60*60*4; // MSD (Moscow Summer Time) - 4 h = UTC |
1729 |
|
found = true; |
1730 |
|
// |
1731 |
|
}; |
1732 |
|
// |
1733 |
|
if ( !found && strcmp(tzone.Data(),"UTC") && strcmp(tzone.Data(),"GMT") && strcmp(tzone.Data(),"") ){ |
1734 |
|
// |
1735 |
|
offset = 0; |
1736 |
|
printf("\n Unknown time zone %s using UTC \n",tzone.Data()); |
1737 |
|
tzone = "UTC"; |
1738 |
|
}; |
1739 |
|
// |
1740 |
|
dbt += offset; |
1741 |
|
TTimeStamp *time = new TTimeStamp((time_t)dbt,0); |
1742 |
|
// |
1743 |
|
rtime = time->AsString("s"); |
1744 |
|
// |
1745 |
|
return(rtime); |
1746 |
|
} |
1747 |
|
|
1748 |
|
|
1749 |
|
// |
1750 |
|
// Build a query and call DoQuery. |
1751 |
|
// |
1752 |
|
// date it's an SQL datetime date and dbc is the connection to be |
1753 |
|
// used. It will query for the tle with the nearest but previous date |
1754 |
|
// and the immediatly next one. |
1755 |
|
// |
1756 |
|
Int_t GL_TLE::Query(TString date, TSQLServer *dbc){ |
1757 |
|
stringstream myquery; |
1758 |
|
myquery.str(""); |
1759 |
|
|
1760 |
|
myquery << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE " |
1761 |
|
<< "WHERE FROM_TIME <= '" << date.Data() |
1762 |
|
<< "' ORDER BY FROM_TIME DESC LIMIT 1) " |
1763 |
|
<< "UNION " |
1764 |
|
<< "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE " |
1765 |
|
<< "WHERE FROM_TIME > '" << date.Data() |
1766 |
|
<< "' ORDER BY FROM_TIME ASC LIMIT 1)"; |
1767 |
|
|
1768 |
|
return DoQuery(myquery.str().c_str(), dbc); |
1769 |
|
} |
1770 |
|
|
1771 |
|
|
1772 |
|
// |
1773 |
|
// Build a query and call DoQuery. |
1774 |
|
// |
1775 |
|
// time is the UTC date in unix time (UTC) and dbc is the connection |
1776 |
|
// to be used. It will query for the tle with the nearest but |
1777 |
|
// previous date and the immediatly next one. |
1778 |
|
// |
1779 |
|
// Returns the value returned by DoQuery(). |
1780 |
|
// |
1781 |
|
Int_t GL_TLE::Query(UInt_t time, TSQLServer *dbc){ |
1782 |
|
stringstream myquery; |
1783 |
|
myquery.str(""); |
1784 |
|
|
1785 |
|
myquery << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE " |
1786 |
|
<< "WHERE FROM_TIME <= FROM_UNIXTIME('" << time |
1787 |
|
<< "') ORDER BY FROM_TIME DESC LIMIT 1) " |
1788 |
|
<< "UNION " |
1789 |
|
<< "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE " |
1790 |
|
<< "WHERE FROM_TIME > FROM_UNIXTIME('" << time |
1791 |
|
<< "') ORDER BY FROM_TIME ASC LIMIT 1)"; |
1792 |
|
|
1793 |
|
return DoQuery(myquery.str().c_str(), dbc); |
1794 |
|
} |
1795 |
|
|
1796 |
|
|
1797 |
|
// |
1798 |
|
// Do the query myquery on the connectio dbc. Initialize tle, |
1799 |
|
// tleFromTime and tleToTime. |
1800 |
|
// |
1801 |
|
// We should have two rows (unless the table is old). From the last |
1802 |
|
// one we only take tleToTime. |
1803 |
|
// |
1804 |
|
// Returns 0 for success, 1 for failure. |
1805 |
|
// |
1806 |
|
Int_t GL_TLE::DoQuery(TString myquery, TSQLServer *dbc){ |
1807 |
|
TSQLResult *result; |
1808 |
|
TSQLRow *row; |
1809 |
|
|
1810 |
|
// Set the right time_zone (otherwise horrible things will occur! :) |
1811 |
|
dbc->Query("SET time_zone = '+0:00'"); |
1812 |
|
|
1813 |
|
// Do the query |
1814 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1815 |
|
this->GetGLTABLES()->AddQ(); |
1816 |
|
result = dbc->Query(myquery.Data()); |
1817 |
|
if(! result->GetRowCount() ) { |
1818 |
|
cerr << "GL_TLE: query failed: " << myquery.Data() << endl; |
1819 |
|
return 1; |
1820 |
|
} |
1821 |
|
|
1822 |
|
// Get results |
1823 |
|
row = result->Next(); // first tle row |
1824 |
|
tle = GiveTle(row); |
1825 |
|
|
1826 |
|
tleFromTime = strtol(row->GetField(4), NULL, 10); |
1827 |
|
|
1828 |
|
row = result->Next(); // second tle row |
1829 |
|
if(row) |
1830 |
|
tleToTime = strtol(row->GetField(4), NULL, 10); |
1831 |
|
else { |
1832 |
|
cerr << "GL_TLE: Warning: using last avaible TLE. Please update GL_TLE table!\n"; |
1833 |
|
tleToTime = UINT_MAX; |
1834 |
|
} |
1835 |
|
|
1836 |
|
delete row; |
1837 |
|
delete result; |
1838 |
|
|
1839 |
|
return 0; |
1840 |
|
} |
1841 |
|
|
1842 |
|
|
1843 |
|
// |
1844 |
|
// Build a cTle object from the GL_TLE row. |
1845 |
|
// |
1846 |
|
cTle* GL_TLE::GiveTle(TSQLRow *row) { |
1847 |
|
cTle *thistle = NULL; |
1848 |
|
string tle1, tle2, tle3; |
1849 |
|
|
1850 |
|
// Build cTle object |
1851 |
|
tle1 = row->GetField(1); |
1852 |
|
tle2 = row->GetField(2); |
1853 |
|
tle3 = row->GetField(3); |
1854 |
|
|
1855 |
|
thistle = new cTle(tle1, tle2, tle3); |
1856 |
|
|
1857 |
|
return thistle; |
1858 |
|
} |