28 |
// other parameters |
// other parameters |
29 |
// ---------------- |
// ---------------- |
30 |
cDbg TrkParams::init__dbg_mode = {0,0,0}; |
cDbg TrkParams::init__dbg_mode = {0,0,0}; |
31 |
int TrkParams::init__pfa = 14;//COG4 |
//int TrkParams::init__pfa = 14;//COG4 |
32 |
|
int TrkParams::init__pfa = 5;//ETAL |
33 |
int TrkParams::init__mini_trackmode = 0; |
int TrkParams::init__mini_trackmode = 0; |
34 |
int TrkParams::init__mini_istepmin = 3; |
int TrkParams::init__mini_istepmin = 5; //3; |
35 |
double TrkParams::init__mini_fact = 100.; |
double TrkParams::init__mini_fact = 1.e4; //100.; |
36 |
|
float TrkParams::init__pfa_e234ax[] = {0.,10.,10.,15.,15.,90.}; |
37 |
|
float TrkParams::init__pfa_e234ay[] = {0.,20.,90.,90.,90.,90.}; |
38 |
|
double TrkParams::init__deltab_0 = 0.; |
39 |
|
double TrkParams::init__deltab_1 = 0.; |
40 |
|
double TrkParams::init__dlt = 1.e-5; |
41 |
|
|
42 |
TrkParams::TrkParams(){ |
TrkParams::TrkParams(){ |
43 |
|
|
57 |
ret1=(float)ret; |
ret1=(float)ret; |
58 |
return ret1; |
return ret1; |
59 |
} |
} |
60 |
|
|
61 |
|
/** |
62 |
|
* Static method to open a DB connection. |
63 |
|
* HOST, USER and PASSWORD are taken from enviroment variables $PAM_DBHOST, |
64 |
|
* $PAM_DBUSER and $PAM_DBPSW |
65 |
|
* NB! The method create a new connection, which has to be closed by the user. |
66 |
|
*/ |
67 |
|
TSQLServer* TrkParams::SetDBConnection(){ |
68 |
|
|
69 |
|
TString host = "mysql://localhost/pamelaprod"; |
70 |
|
TString user = "anonymous"; |
71 |
|
TString psw = ""; |
72 |
|
const char *pamdbhost=gSystem->Getenv("PAM_DBHOST"); |
73 |
|
const char *pamdbuser=gSystem->Getenv("PAM_DBUSER"); |
74 |
|
const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW"); |
75 |
|
if ( !pamdbhost ) pamdbhost = ""; |
76 |
|
if ( !pamdbuser ) pamdbuser = ""; |
77 |
|
if ( !pamdbpsw ) pamdbpsw = ""; |
78 |
|
if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
79 |
|
if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
80 |
|
if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw; |
81 |
|
if(TrkParams::VerboseMode()){ |
82 |
|
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
83 |
|
cout<<"Connecting to DB"<<endl; |
84 |
|
cout<<"HOST "<<host<<endl; |
85 |
|
cout<<"USER "<<user<<endl; |
86 |
|
cout<<"PSW "<<psw<<endl; |
87 |
|
} |
88 |
|
TSQLServer *dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
89 |
|
if( !dbc )return NULL; |
90 |
|
if( !dbc->IsConnected() )return NULL; |
91 |
|
stringstream myquery; // EMILIANO |
92 |
|
myquery.str(""); // EMILIANO |
93 |
|
myquery << "SET time_zone='+0:00'"; // EMILIANO |
94 |
|
dbc->Query(myquery.str().c_str()); // EMILIANO |
95 |
|
if(TrkParams::VerboseMode()){ |
96 |
|
cout << " ...done"<<endl; |
97 |
|
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
98 |
|
} |
99 |
|
|
100 |
|
return dbc; |
101 |
|
} |
102 |
/** |
/** |
103 |
* \brief Static method to set the calibration to be loaded. |
* \brief Static method to set the calibration to be loaded. |
104 |
|
|
118 |
glrun->RUNHEADER_TIME > calib.TO_TIME || |
glrun->RUNHEADER_TIME > calib.TO_TIME || |
119 |
false ){ |
false ){ |
120 |
|
|
|
// cout <<">>> isloaded? "<< CalibIsLoaded() << endl; |
|
|
// cout <<">>> trk_calib_used "<< glrun->TRK_CALIB_USED<<endl; |
|
|
// cout <<">>> 104 loaded? "<< calib104 <<endl; |
|
|
// cout <<">>> from time "<< calib.FROM_TIME<<endl; |
|
|
// cout <<">>> to time "<< calib.TO_TIME<<endl; |
|
|
// if( !dbc || (dbc && !dbc->IsConnected()) ){ |
|
|
|
|
|
// if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl; |
|
|
// TString host = "mysql://localhost/pamelaprod"; |
|
|
// TString user = "anonymous"; |
|
|
// TString psw = ""; |
|
|
// const char *pamdbhost=gSystem->Getenv("PAM_DBHOST"); |
|
|
// const char *pamdbuser=gSystem->Getenv("PAM_DBUSER"); |
|
|
// const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW"); |
|
|
// if ( !pamdbhost ) pamdbhost = ""; |
|
|
// if ( !pamdbuser ) pamdbuser = ""; |
|
|
// if ( !pamdbpsw ) pamdbpsw = ""; |
|
|
// if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
|
|
// if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
|
|
// if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw; |
|
|
// if(TrkParams::VerboseMode()){ |
|
|
// cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
|
|
// cout<<"Connecting to DB"<<endl; |
|
|
// cout<<"HOST "<<host<<endl; |
|
|
// cout<<"USER "<<user<<endl; |
|
|
// cout<<"PSW "<<psw<<endl; |
|
|
// } |
|
|
// dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
|
|
// if( !dbc )return false; |
|
|
// if( !dbc->IsConnected() )return false; |
|
|
// if(TrkParams::VerboseMode()){ |
|
|
// cout << " ...done"<<endl; |
|
|
// cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
|
|
// } |
|
|
// } |
|
121 |
|
|
122 |
GL_TRK_CALIB q2; |
GL_TRK_CALIB q2; |
123 |
GL_ROOT q3; |
GL_ROOT q3; |
124 |
GL_PARAM q4; |
GL_PARAM q4; |
125 |
|
|
126 |
|
|
127 |
|
bool LOCAL_CONNECTION = false; |
128 |
|
if( !dbc || (dbc && !dbc->IsConnected()) ){ |
129 |
|
|
130 |
|
if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl; |
131 |
|
dbc = TrkParams::SetDBConnection(); |
132 |
|
if(dbc && dbc->IsConnected())LOCAL_CONNECTION = true; |
133 |
|
|
134 |
|
} |
135 |
|
|
136 |
|
|
137 |
if(TrkParams::VerboseMode()){ |
if(TrkParams::VerboseMode()){ |
138 |
cout << "--------------------------------------"<<endl; |
cout << "--------------------------------------"<<endl; |
159 |
calibpatht = q4.PATH + q4.NAME; |
calibpatht = q4.PATH + q4.NAME; |
160 |
} |
} |
161 |
|
|
162 |
|
if(LOCAL_CONNECTION){ |
163 |
|
dbc->Close(); |
164 |
|
delete dbc; |
165 |
|
} |
166 |
|
|
167 |
// return TrkParams::LoadCalib(); |
// return TrkParams::LoadCalib(); |
168 |
return true; |
return true; |
641 |
* @param dbc Database |
* @param dbc Database |
642 |
* @param type Parameter type |
* @param type Parameter type |
643 |
* @return FALSE if parameter set fails. |
* @return FALSE if parameter set fails. |
644 |
* If glrun==NULL the last parameter entry from GL_PARAM table is set. |
* If glrun==NULL the first parameter entry from GL_PARAM table is set. |
645 |
* If dbc==NULL, try to open a connection taking DB-connection |
* If dbc==NULL, try to open a connection taking DB-connection |
646 |
* parameters from PAMELA environment variables. |
* parameters from PAMELA environment variables. |
647 |
*/ |
*/ |
651 |
UInt_t index = TrkParams::GetIndex( type ); |
UInt_t index = TrkParams::GetIndex( type ); |
652 |
if(index < 0)return false; |
if(index < 0)return false; |
653 |
|
|
654 |
|
UInt_t runheadtime=0; |
655 |
|
UInt_t runid=0; |
656 |
|
// UInt_t runheadtime = numeric_limits<UInt_t>::max(); |
657 |
|
if(glrun){ |
658 |
|
runheadtime = glrun->RUNHEADER_TIME; |
659 |
|
runid = glrun->ID; |
660 |
|
}else cout <<"Bool_t TrkParams::Set(GL_RUN*,TSQLServer*,UInt_t) >> Missing run info -- taking first entry (**WARNING** check that this is ok!! )"<<endl; |
661 |
|
|
662 |
|
// if(TrkParams::VerboseMode()) |
663 |
|
cout << "<< set TrkParams type "<<type<<" from DB << RUN "<<runid<<endl; |
664 |
|
|
665 |
|
|
666 |
if( !TrkParams::IsLoaded(type) || |
if( !TrkParams::IsLoaded(type) || |
667 |
glrun->RUNHEADER_TIME < gl[index].FROM_TIME || |
runheadtime < gl[index].FROM_TIME || |
668 |
glrun->RUNHEADER_TIME > gl[index].TO_TIME || |
runheadtime > gl[index].TO_TIME || |
669 |
false ){ |
false ){ |
670 |
|
|
671 |
|
bool LOCAL_CONNECTION = false; |
672 |
if( !dbc || (dbc && !dbc->IsConnected()) ){ |
if( !dbc || (dbc && !dbc->IsConnected()) ){ |
673 |
|
|
674 |
if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl; |
if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl; |
675 |
TString host = "mysql://localhost/pamelaprod"; |
dbc = TrkParams::SetDBConnection(); |
676 |
TString user = "anonymous"; |
if(dbc && dbc->IsConnected())LOCAL_CONNECTION = true; |
|
TString psw = ""; |
|
|
const char *pamdbhost=gSystem->Getenv("PAM_DBHOST"); |
|
|
const char *pamdbuser=gSystem->Getenv("PAM_DBUSER"); |
|
|
const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW"); |
|
|
if ( !pamdbhost ) pamdbhost = ""; |
|
|
if ( !pamdbuser ) pamdbuser = ""; |
|
|
if ( !pamdbpsw ) pamdbpsw = ""; |
|
|
if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
|
|
if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
|
|
if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw; |
|
|
if(TrkParams::VerboseMode()){ |
|
|
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
|
|
cout<<"Connecting to DB"<<endl; |
|
|
cout<<"HOST "<<host<<endl; |
|
|
cout<<"USER "<<user<<endl; |
|
|
cout<<"PSW "<<psw<<endl; |
|
|
} |
|
|
dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
|
|
if( !dbc )return false; |
|
|
if( !dbc->IsConnected() )return false; |
|
|
if(TrkParams::VerboseMode()){ |
|
|
cout << " ...done"<<endl; |
|
|
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
|
|
} |
|
|
} |
|
677 |
|
|
678 |
|
} |
|
UInt_t runheadtime = numeric_limits<UInt_t>::max(); |
|
|
if(glrun)runheadtime = glrun->RUNHEADER_TIME; |
|
|
else cout <<"Missing run info -- taking last entry "<<endl; |
|
679 |
|
|
680 |
GL_PARAM q4; |
GL_PARAM q4; |
681 |
if( q4.Query_GL_PARAM(runheadtime,type,dbc) )return false; |
if( q4.Query_GL_PARAM(runheadtime,type,dbc) )return false; |
682 |
|
if(LOCAL_CONNECTION){ |
683 |
|
dbc->Close(); |
684 |
|
delete dbc; |
685 |
|
} |
686 |
gl[index] = q4; |
gl[index] = q4; |
687 |
glpath[index] = q4.PATH+q4.NAME; |
glpath[index] = q4.PATH+q4.NAME; |
688 |
glload[index] = false; |
glload[index] = false; |
689 |
if(TrkParams::VerboseMode()) |
|
|
cout << "<< set TrkParams type "<<type<<" from DB << RUN "<<glrun->ID<<endl; |
|
690 |
return true; |
return true; |
691 |
|
|
692 |
} |
} |
723 |
*/ |
*/ |
724 |
Bool_t TrkParams::Set(UInt_t type){ |
Bool_t TrkParams::Set(UInt_t type){ |
725 |
|
|
|
UInt_t index = TrkParams::GetIndex( type ); |
|
|
if(index < 0)return false; |
|
726 |
|
|
727 |
gl[index].TYPE= type; |
return Set(0,0,type); |
|
glload[index] = false; |
|
728 |
|
|
|
// ----------------------------------------- |
|
|
// check if enviroment variables are defined |
|
|
// ----------------------------------------- |
|
|
glpath[index] = gSystem->Getenv("PAM_CALIB"); |
|
|
|
|
|
if( !glpath[index].IsNull() ){ |
|
|
|
|
|
switch(type){ |
|
|
case 1: |
|
|
glpath[index].Append("/trk-param/field_param-0/"); |
|
|
break; |
|
|
case 2: |
|
|
glpath[index].Append("/trk-param/mip_param-0/"); |
|
|
break; |
|
|
case 3: |
|
|
glpath[index].Append("/trk-param/charge_param-1/"); |
|
|
break; |
|
|
case 4: |
|
|
glpath[index].Append("/trk-param/eta_param-0/"); |
|
|
break; |
|
|
case 5: |
|
|
glpath[index].Append("/trk-param/align_param-0/"); |
|
|
break; |
|
|
case 6: |
|
|
glpath[index].Append("/trk-param/mask_param-1/"); |
|
|
break; |
|
|
case 7: |
|
|
glpath[index].Append("/trk-param/default_calib/"); |
|
|
break; |
|
|
} |
|
|
|
|
|
}else{ |
|
|
cout << " TrkParams::Set( UInt_t type) ==> No PAMELA environment variables defined "<<endl; |
|
|
return false; |
|
|
|
|
|
} |
|
|
|
|
|
if(TrkParams::VerboseMode())cout << "<< set TrkParams type "<<type<<" (from env var PAM_CALIB) >>"<<endl; |
|
|
// return TrkParams::Load(type); |
|
|
return true; |
|
729 |
|
|
730 |
}; |
}; |
731 |
/** |
/** |
736 |
*/ |
*/ |
737 |
Bool_t TrkParams::Set( ){ |
Bool_t TrkParams::Set( ){ |
738 |
|
|
|
Bool_t connected = false; |
|
739 |
|
|
740 |
// cout <<" Missing DB connection -- check PAMELA environment variables "<<endl; |
for(Int_t i=0; i<NTYPES; i++)if ( !TrkParams::Set(trkparamtype[i])) return false; |
|
TString host = "mysql://localhost/pamelaprod"; |
|
|
TString user = "anonymous"; |
|
|
TString psw = ""; |
|
|
const char *pamdbhost=gSystem->Getenv("PAM_DBHOST"); |
|
|
const char *pamdbuser=gSystem->Getenv("PAM_DBUSER"); |
|
|
const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW"); |
|
|
if ( !pamdbhost ) pamdbhost = ""; |
|
|
if ( !pamdbuser ) pamdbuser = ""; |
|
|
if ( !pamdbpsw ) pamdbpsw = ""; |
|
|
if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
|
|
if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
|
|
if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw; |
|
|
if(TrkParams::VerboseMode()){ |
|
|
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
|
|
cout<<"Connecting to DB"<<endl; |
|
|
cout<<"HOST "<<host<<endl; |
|
|
cout<<"USER "<<user<<endl; |
|
|
cout<<"PSW "<<psw<<endl; |
|
|
} |
|
|
TSQLServer *dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
|
|
if( dbc || dbc->IsConnected() )connected = true; |
|
|
else cout << " >> DB connection FAILED!!!"<<endl; |
|
|
if(TrkParams::VerboseMode())cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
|
|
|
|
|
if(connected){ |
|
|
if ( !TrkParams::Set(0,dbc) )return false; |
|
|
dbc->Close(); |
|
|
}else for(Int_t i=0; i<NTYPES; i++)if ( !TrkParams::Set(trkparamtype[i])) return false; |
|
741 |
|
|
742 |
return true; |
return true; |
743 |
} |
} |
880 |
} |
} |
881 |
|
|
882 |
|
|
|
|
|
883 |
/** |
/** |
884 |
* \brief Set tracking mode (0=standard. 1=???) |
* \brief Set tracking mode (0=standard. 1=???) |
885 |
*/ |
*/ |
886 |
void TrkParams::SetTrackingMode(int trackmode) { |
void TrkParams::SetTrackingMode(int trackmode) { |
887 |
init__mini_trackmode = trackmode; |
init__mini_trackmode = trackmode; |
888 |
SetTrackingMode(); |
SetTrackingMode(); //fill F77 common |
889 |
}; |
}; |
890 |
/** |
/** |
891 |
* \brief Set fit-precision factor (typical value fact=100.) |
* \brief Set fit-precision factor (typical value fact=100.) |
892 |
*/ |
*/ |
893 |
void TrkParams::SetPrecisionFactor(double fact){ |
void TrkParams::SetPrecisionFactor(double fact){ |
894 |
init__mini_fact = fact; |
init__mini_fact = fact; |
895 |
SetPrecisionFactor(); |
SetPrecisionFactor(); //fill F77 common |
896 |
}; |
}; |
897 |
/** |
/** |
898 |
* \brief Set minimum number of step in track fitting |
* \brief Set minimum number of step in track fitting |
899 |
*/ |
*/ |
900 |
void TrkParams::SetStepMin(int istepmin){ |
void TrkParams::SetStepMin(int istepmin){ |
901 |
init__mini_istepmin = istepmin; |
init__mini_istepmin = istepmin; |
902 |
SetStepMin(); |
SetStepMin(); //fill F77 common |
903 |
|
}; |
904 |
|
/** |
905 |
|
* \brief Set deltaB parameters (id=0,1) |
906 |
|
*/ |
907 |
|
void TrkParams::SetDeltaB(int id,double db){ |
908 |
|
if(id!=0 && id!=1)cout << "void TrkParams::SetDeltaB(int id,double db) -- wrong input parameters: "<<id<<" "<<db<<endl; |
909 |
|
if(id==0)init__deltab_0 = db; |
910 |
|
if(id==1)init__deltab_1 = db; |
911 |
|
SetDeltaB(); //fill F77 common |
912 |
|
}; |
913 |
|
/** |
914 |
|
* \brief Set DLT-grkuta precision factor (default 1.e-4) |
915 |
|
*/ |
916 |
|
void TrkParams::SetDLT(double fact){ |
917 |
|
init__dlt = fact; |
918 |
|
SetDLT(); //fill F77 common |
919 |
}; |
}; |
920 |
|
|
921 |
/** |
/** |
922 |
|
* \brief Fill F77 commons with PFA settings |
923 |
|
*/ |
924 |
|
void TrkParams::SetPFA(){ |
925 |
|
sw_.pfaid = init__pfa; |
926 |
|
for(int i=0; i<6; i++){ |
927 |
|
pfa_.e234ax[i] = init__pfa_e234ax[i]; |
928 |
|
pfa_.e234ay[i] = init__pfa_e234ay[i]; |
929 |
|
} |
930 |
|
}; |
931 |
|
/** |
932 |
* \brief Set p.f.a. |
* \brief Set p.f.a. |
933 |
* |
* |
934 |
* Implemented algorythms: |
* Implemented algorythms: |
946 |
*/ |
*/ |
947 |
void TrkParams::SetPFA(int pfaid){ |
void TrkParams::SetPFA(int pfaid){ |
948 |
init__pfa = pfaid; |
init__pfa = pfaid; |
949 |
SetPFA(); |
SetPFA(); //fill F77 common |
950 |
}; |
}; |
951 |
/** |
/** |
952 |
|
* \brief Set p.f.a. angular intervals |
953 |
|
* |
954 |
|
* This methods allows to set amgular intervals to apply ETA2,ETA3 or ETA4 |
955 |
|
* algorythm, in case ETA or ETAL is set (see TrkParams::SetPFA(int pfaid)). |
956 |
|
* @param v Pointer to a vector of 12 components, which represent the |
957 |
|
* angular limits for ETA2,ETA3 and ETA4, for x and y views, respectivelly. |
958 |
|
* |
959 |
|
*/ |
960 |
|
void TrkParams::SetPFA(float *v){ |
961 |
|
for(int i=0; i<6; i++){ |
962 |
|
init__pfa_e234ax[i] = v[i]; |
963 |
|
init__pfa_e234ay[i] = v[i+6]; |
964 |
|
} |
965 |
|
SetPFA(); //fill F77 common |
966 |
|
}; |
967 |
|
|
968 |
|
|
969 |
|
/** |
970 |
* \brief Get spatial resolution. |
* \brief Get spatial resolution. |
971 |
* |
* |
972 |
* Method to retrieve the spatial resolution associated with the |
* Method to retrieve the spatial resolution associated with the |
988 |
|
|
989 |
|
|
990 |
|
|
991 |
|
|
992 |
ClassImp(TrkParams); |
ClassImp(TrkParams); |