| 1 |
|
|
| 2 |
/** |
/** |
| 3 |
* \file TrkParams.cpp |
* \file TrkParams.cpp |
| 4 |
* \author Elena Vannuccini |
* \author Elena Vannuccini |
| 18 |
TString TrkParams::calibpathf = ""; |
TString TrkParams::calibpathf = ""; |
| 19 |
Bool_t TrkParams::calib104 = 0; |
Bool_t TrkParams::calib104 = 0; |
| 20 |
Bool_t TrkParams::calibload = false; |
Bool_t TrkParams::calibload = false; |
| 21 |
|
TrkCalib* TrkParams::calib1 = 0; |
| 22 |
|
TrkCalib* TrkParams::calib2 = 0; |
| 23 |
// ------------------------- |
// ------------------------- |
| 24 |
// PARAMETERS loaded from DB |
// PARAMETERS loaded from DB |
| 25 |
// ------------------------- |
// ------------------------- |
| 31 |
// other parameters |
// other parameters |
| 32 |
// ---------------- |
// ---------------- |
| 33 |
cDbg TrkParams::init__dbg_mode = {0,0,0}; |
cDbg TrkParams::init__dbg_mode = {0,0,0}; |
| 34 |
int TrkParams::init__pfa = 14;//COG4 |
//int TrkParams::init__pfa = 14;//COG4 |
| 35 |
|
int TrkParams::init__pfa = 5;//ETAL |
| 36 |
int TrkParams::init__mini_trackmode = 0; |
int TrkParams::init__mini_trackmode = 0; |
| 37 |
int TrkParams::init__mini_istepmin = 3; |
int TrkParams::init__mini_istepmin = 5; //3; |
| 38 |
double TrkParams::init__mini_fact = 100.; |
double TrkParams::init__mini_fact = 1.e4; //100.; |
| 39 |
|
float TrkParams::init__pfa_e234ax[] = {0.,10.,10.,15.,15.,90.}; |
| 40 |
|
float TrkParams::init__pfa_e234ay[] = {0.,20.,90.,90.,90.,90.}; |
| 41 |
|
double TrkParams::init__deltab_0 = 0.; |
| 42 |
|
double TrkParams::init__deltab_1 = 0.; |
| 43 |
|
double TrkParams::init__dlt = 1.e-5; |
| 44 |
|
// ------------------------------------------ |
| 45 |
|
// nominal z-coordinates to define acceptance |
| 46 |
|
// ------------------------------------------ |
| 47 |
|
int TrkParams::nGF = NGF; |
| 48 |
|
float TrkParams::zGF[] = {+53.74,+53.04,+23.94,+23.44,+22.29,+21.83,+13.39,+4.49,-4.41,-13.31,-21.83,-22.22,-23.49,-24.34}; |
| 49 |
|
float TrkParams::xGF_min[] = {-20.40,-20.40,-9.00,-9.00,-8.07,-8.07,-8.07,-8.07,-8.07,-8.07,-8.07,-8.07,-9.00,-9.00}; |
| 50 |
|
float TrkParams::xGF_max[] = {+20.40,+20.40,+9.00,+9.00,+8.07,+8.07,+8.07,+8.07,+8.07,+8.07,+8.07,+8.07,+9.00,+9.00}; |
| 51 |
|
// float TrkParams::yGF_min[] = {-16.50,-16.50,-7.50,-7.50,-7.25,-6.57,-7.25,-7.25,-7.25,-7.25,-6.57,-6.75,-7.50,-7.50}; |
| 52 |
|
// float TrkParams::yGF_max[] = {+16.50,+16.50,+7.50,+7.50,+6.75,+6.57,+6.75,+6.75,+6.75,+6.75,+6.57,+7.25,+7.50,+7.50}; |
| 53 |
|
// per i piani interni alla cavita`, gli estremi sono dati dalla cavita` stessa |
| 54 |
|
float TrkParams::yGF_min[] = {-16.50,-16.50,-7.50,-7.50,-7.25,-6.57,-6.57,-6.57,-6.57,-6.57,-6.57,-6.75,-7.50,-7.50}; |
| 55 |
|
float TrkParams::yGF_max[] = {+16.50,+16.50,+7.50,+7.50,+6.75,+6.57,+6.57,+6.57,+6.57,+6.57,+6.57,+7.25,+7.50,+7.50}; |
| 56 |
|
TString TrkParams::GF_element[] = {"S11","S12","S21","S22","T1","CUF","T2","T3","T4","T5","CLF","T6","S31","S32"}; |
| 57 |
|
|
| 58 |
TrkParams::TrkParams(){ |
TrkParams::TrkParams(){ |
| 59 |
|
|
| 73 |
ret1=(float)ret; |
ret1=(float)ret; |
| 74 |
return ret1; |
return ret1; |
| 75 |
} |
} |
| 76 |
|
|
| 77 |
|
/** |
| 78 |
|
* Static method to open a DB connection. |
| 79 |
|
* HOST, USER and PASSWORD are taken from enviroment variables $PAM_DBHOST, |
| 80 |
|
* $PAM_DBUSER and $PAM_DBPSW |
| 81 |
|
* NB! The method create a new connection, which has to be closed by the user. |
| 82 |
|
*/ |
| 83 |
|
TSQLServer* TrkParams::SetDBConnection(){ |
| 84 |
|
|
| 85 |
|
TString host = "mysql://localhost/pamelaprod"; |
| 86 |
|
TString user = "anonymous"; |
| 87 |
|
TString psw = ""; |
| 88 |
|
const char *pamdbhost=gSystem->Getenv("PAM_DBHOST"); |
| 89 |
|
const char *pamdbuser=gSystem->Getenv("PAM_DBUSER"); |
| 90 |
|
const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW"); |
| 91 |
|
if ( !pamdbhost ) pamdbhost = ""; |
| 92 |
|
if ( !pamdbuser ) pamdbuser = ""; |
| 93 |
|
if ( !pamdbpsw ) pamdbpsw = ""; |
| 94 |
|
if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
| 95 |
|
if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
| 96 |
|
if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw; |
| 97 |
|
if(TrkParams::DebugMode()){ |
| 98 |
|
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
| 99 |
|
cout<<"TrkParams::SetDBConnection() >> Connecting to DB"<<endl; |
| 100 |
|
cout<<"HOST "<<host<<endl; |
| 101 |
|
cout<<"USER "<<user<<endl; |
| 102 |
|
cout<<"PSW "<<psw<<endl; |
| 103 |
|
} |
| 104 |
|
TSQLServer *dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
| 105 |
|
if( !dbc )return NULL; |
| 106 |
|
if( !dbc->IsConnected() )return NULL; |
| 107 |
|
stringstream myquery; // EMILIANO |
| 108 |
|
myquery.str(""); // EMILIANO |
| 109 |
|
myquery << "SET time_zone='+0:00'"; // EMILIANO |
| 110 |
|
dbc->Query(myquery.str().c_str()); // EMILIANO |
| 111 |
|
if(TrkParams::DebugMode()){ |
| 112 |
|
cout << " ...done"<<endl; |
| 113 |
|
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
| 114 |
|
} |
| 115 |
|
|
| 116 |
|
return dbc; |
| 117 |
|
} |
| 118 |
/** |
/** |
| 119 |
* \brief Static method to set the calibration to be loaded. |
* \brief Static method to set the calibration to be loaded. |
| 120 |
|
|
| 134 |
glrun->RUNHEADER_TIME > calib.TO_TIME || |
glrun->RUNHEADER_TIME > calib.TO_TIME || |
| 135 |
false ){ |
false ){ |
| 136 |
|
|
|
// 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; |
|
|
// } |
|
|
// } |
|
| 137 |
|
|
| 138 |
GL_TRK_CALIB q2; |
GL_TRK_CALIB q2; |
| 139 |
GL_ROOT q3; |
GL_ROOT q3; |
| 140 |
GL_PARAM q4; |
GL_PARAM q4; |
| 141 |
|
|
| 142 |
|
|
| 143 |
|
bool LOCAL_CONNECTION = false; |
| 144 |
|
if( !dbc || (dbc && !dbc->IsConnected()) ){ |
| 145 |
|
|
| 146 |
|
// if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl; |
| 147 |
|
dbc = TrkParams::SetDBConnection(); |
| 148 |
|
if(dbc && dbc->IsConnected())LOCAL_CONNECTION = true; |
| 149 |
|
|
| 150 |
|
} |
| 151 |
|
|
| 152 |
|
|
| 153 |
if(TrkParams::VerboseMode()){ |
if(TrkParams::VerboseMode()){ |
| 154 |
cout << "--------------------------------------"<<endl; |
cout << "--------------------------------------"<<endl; |
| 175 |
calibpatht = q4.PATH + q4.NAME; |
calibpatht = q4.PATH + q4.NAME; |
| 176 |
} |
} |
| 177 |
|
|
| 178 |
|
if(LOCAL_CONNECTION&&dbc){ |
| 179 |
|
dbc->Close(); |
| 180 |
|
delete dbc; |
| 181 |
|
if(TrkParams::DebugMode()){ |
| 182 |
|
cout << " DB connection closed."<<endl; |
| 183 |
|
} |
| 184 |
|
} |
| 185 |
|
|
| 186 |
// return TrkParams::LoadCalib(); |
// return TrkParams::LoadCalib(); |
| 187 |
return true; |
return true; |
| 338 |
TTree *tr1 = (TTree*)f0->Get("CalibTrk1"); |
TTree *tr1 = (TTree*)f0->Get("CalibTrk1"); |
| 339 |
TTree *tr2 = (TTree*)f0->Get("CalibTrk2"); |
TTree *tr2 = (TTree*)f0->Get("CalibTrk2"); |
| 340 |
|
|
| 341 |
CalibTrk1Event *calibdata1 = 0; |
if(!calib1)calib1 = new TrkCalib(); |
| 342 |
CalibTrk2Event *calibdata2 = 0; |
if(!calib2)calib2 = new TrkCalib(); |
| 343 |
tr1->SetBranchAddress("CalibTrk1",&calibdata1); |
// calibx->Set(calibdata1); |
| 344 |
tr2->SetBranchAddress("CalibTrk2",&calibdata2); |
// caliby->Set(calibdata2); |
| 345 |
tr1->GetEntry(ev_reg1); |
|
| 346 |
tr2->GetEntry(ev_reg2); |
// CalibTrk1Event *calibdata1 = 0; |
| 347 |
|
// CalibTrk2Event *calibdata2 = 0; |
| 348 |
|
// tr1->SetBranchAddress("CalibTrk1",&calibdata1); |
| 349 |
|
// tr2->SetBranchAddress("CalibTrk2",&calibdata2); |
| 350 |
|
tr1->SetBranchAddress("CalibTrk1",calib1->GetPointerTo()); |
| 351 |
|
tr2->SetBranchAddress("CalibTrk2",calib2->GetPointerTo()); |
| 352 |
|
if ( tr1->GetEntry(ev_reg1) <= 0 ) throw -36;//EM |
| 353 |
|
if ( tr2->GetEntry(ev_reg2) <= 0 ) throw -36;//EM |
| 354 |
Int_t dspn1(0),dspn2(0); |
Int_t dspn1(0),dspn2(0); |
| 355 |
|
|
| 356 |
|
|
| 357 |
// --- TEST TEST TEST TEST --- // |
// --- TEST TEST TEST TEST --- // |
| 358 |
// TrkParams::ValidateTrkCalib(calibdata1); |
// TrkParams::ValidateTrkCalib(calib1->Get()); |
| 359 |
// TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
// TrkParams::ValidateTrkCalib((CalibTrk1Event*)calib2->Get()); |
| 360 |
|
|
| 361 |
UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1); |
UInt_t test1 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)(calib1->Get())); |
| 362 |
UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)(calib2->Get())); |
| 363 |
if( !test1 || !test2 ){ |
if( !test1 || !test2 ){ |
| 364 |
if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl; |
// if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl; |
| 365 |
TrkParams::calib.VALIDATION = 0; |
TrkParams::calib.VALIDATION = 0; |
| 366 |
} |
} |
| 367 |
if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl; |
// if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl; |
| 368 |
|
|
| 369 |
for(Int_t i=0;i<6;i++){ |
for(Int_t i=0;i<6;i++){ |
| 370 |
dspn1=calibdata1->DSPnumber[i]-1; |
|
| 371 |
dspn2=calibdata2->DSPnumber[i]-1; |
|
| 372 |
|
dspn1=calib1->Get()->DSPnumber[i]-1; |
| 373 |
|
dspn2=calib2->Get()->DSPnumber[i]-1; |
| 374 |
// cout<<"dspn1= "<<dspn1<<" dspn2= "<<dspn2<<endl; |
// cout<<"dspn1= "<<dspn1<<" dspn2= "<<dspn2<<endl; |
| 375 |
for(Int_t ii=0;ii<3072;ii++){ |
for(Int_t ii=0;ii<3072;ii++){ |
| 376 |
Int_t j=(ii/128); |
Int_t j=(ii/128); |
| 377 |
Int_t jj=ii-j*128; |
Int_t jj=ii-j*128; |
| 378 |
if(dspn1>=0 && dspn1<12){ |
if(dspn1>=0 && dspn1<12){ |
| 379 |
ca->pedestal[jj][j][dspn1]=calibdata1->DSPped_par[i][ii]; |
ca->pedestal[jj][j][dspn1]=calib1->Get()->DSPped_par[i][ii]; |
| 380 |
ca->pedestal_t[jj][j][dspn1]=aint(calibdata1->DSPped_par[i][ii]); |
ca->pedestal_t[jj][j][dspn1]=aint(calib1->Get()->DSPped_par[i][ii]); |
| 381 |
ca->sigma[jj][j][dspn1]=calibdata1->DSPsig_par[i][ii]; |
ca->sigma[jj][j][dspn1]=calib1->Get()->DSPsig_par[i][ii]; |
| 382 |
ca->sigma_t[jj][j][dspn1]=anint(calibdata1->DSPsig_par[i][ii]); |
ca->sigma_t[jj][j][dspn1]=anint(calib1->Get()->DSPsig_par[i][ii]); |
| 383 |
if(calibdata1->DSPbad_par[i][ii]==0) |
if(calib1->Get()->DSPbad_par[i][ii]==0) |
| 384 |
ca->bad[jj][j][dspn1]=1; |
ca->bad[jj][j][dspn1]=1; |
| 385 |
else if(calibdata1->DSPbad_par[i][ii]==1) |
else if(calib1->Get()->DSPbad_par[i][ii]==1) |
| 386 |
ca->bad[jj][j][dspn1]=0; |
ca->bad[jj][j][dspn1]=0; |
| 387 |
// cout<<"sigma trk1= "<<sigma[jj][j][dspn1]<<endl; |
// cout<<"sigma trk1= "<<sigma[jj][j][dspn1]<<endl; |
| 388 |
// cout<<"sigma_t trk1= "<<sigma_t[jj][j][dspn1]<<endl; |
// cout<<"sigma_t trk1= "<<sigma_t[jj][j][dspn1]<<endl; |
| 389 |
} |
} |
| 390 |
|
|
| 391 |
if(dspn2>=0 && dspn2<12){ |
if(dspn2>=0 && dspn2<12){ |
| 392 |
ca->pedestal[jj][j][dspn2]=calibdata2->DSPped_par[i][ii]; |
ca->pedestal[jj][j][dspn2]=calib2->Get()->DSPped_par[i][ii]; |
| 393 |
ca->pedestal_t[jj][j][dspn2]=aint(calibdata2->DSPped_par[i][ii]); |
ca->pedestal_t[jj][j][dspn2]=aint(calib2->Get()->DSPped_par[i][ii]); |
| 394 |
ca->sigma[jj][j][dspn2]=calibdata2->DSPsig_par[i][ii]; |
ca->sigma[jj][j][dspn2]=calib2->Get()->DSPsig_par[i][ii]; |
| 395 |
ca->sigma_t[jj][j][dspn2]=anint(calibdata2->DSPsig_par[i][ii]); |
ca->sigma_t[jj][j][dspn2]=anint(calib2->Get()->DSPsig_par[i][ii]); |
| 396 |
if(calibdata2->DSPbad_par[i][ii]==0) |
if(calib2->Get()->DSPbad_par[i][ii]==0) |
| 397 |
ca->bad[jj][j][dspn2]=1; |
ca->bad[jj][j][dspn2]=1; |
| 398 |
else if(calibdata2->DSPbad_par[i][ii]==1) |
else if(calib2->Get()->DSPbad_par[i][ii]==1) |
| 399 |
ca->bad[jj][j][dspn2]=0; |
ca->bad[jj][j][dspn2]=0; |
| 400 |
// cout<<"sigma trk2= "<<sigma[jj][j][dspn2]<<endl; |
// cout<<"sigma trk2= "<<sigma[jj][j][dspn2]<<endl; |
| 401 |
// cout<<"sigma_t trk2= "<<sigma_t[jj][j][dspn2]<<endl; |
// cout<<"sigma_t trk2= "<<sigma_t[jj][j][dspn2]<<endl; |
| 409 |
/** |
/** |
| 410 |
* Method to fill the tracker calibration-parameter struct from on-line calibrations |
* Method to fill the tracker calibration-parameter struct from on-line calibrations |
| 411 |
*/ |
*/ |
| 412 |
void TrkParams::FillFCalibFrom(TFile* f0, Int_t ev_reg1, Int_t ev_reg2){ |
// void TrkParams::FillFCalibFrom(TFile* f0, Int_t ev_reg1, Int_t ev_reg2){ |
| 413 |
|
|
| 414 |
cTrkCalib *ca = &pedsigbad_; |
// cTrkCalib *ca = &pedsigbad_; |
| 415 |
// ca->Reset(); |
// // ca->Reset(); |
| 416 |
|
|
| 417 |
TTree *tr1 = (TTree*)f0->Get("CalibTrk1"); |
// TTree *tr1 = (TTree*)f0->Get("CalibTrk1"); |
| 418 |
TTree *tr2 = (TTree*)f0->Get("CalibTrk2"); |
// TTree *tr2 = (TTree*)f0->Get("CalibTrk2"); |
| 419 |
|
|
| 420 |
CalibTrk1Event *calibdata1 = 0; |
// CalibTrk1Event *calibdata1 = 0; |
| 421 |
CalibTrk2Event *calibdata2 = 0; |
// CalibTrk2Event *calibdata2 = 0; |
| 422 |
tr1->SetBranchAddress("CalibTrk1",&calibdata1); |
// tr1->SetBranchAddress("CalibTrk1",&calibdata1); |
| 423 |
tr2->SetBranchAddress("CalibTrk2",&calibdata2); |
// tr2->SetBranchAddress("CalibTrk2",&calibdata2); |
| 424 |
tr1->GetEntry(ev_reg1); |
// tr1->GetEntry(ev_reg1); |
| 425 |
tr2->GetEntry(ev_reg2); |
// tr2->GetEntry(ev_reg2); |
| 426 |
Int_t dspn1(0),dspn2(0); |
// Int_t dspn1(0),dspn2(0); |
| 427 |
|
|
| 428 |
// --- TEST TEST TEST TEST --- // |
// // --- TEST TEST TEST TEST --- // |
| 429 |
// TrkParams::ValidateTrkCalib(calibdata1); |
// // TrkParams::ValidateTrkCalib(calibdata1); |
| 430 |
// TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
// // TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
| 431 |
UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1); |
// UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1); |
| 432 |
UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
// UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
| 433 |
if( !test1 || !test2 ){ |
// if( !test1 || !test2 ){ |
| 434 |
if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl; |
// if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl; |
| 435 |
TrkParams::calib.VALIDATION = 0; |
// TrkParams::calib.VALIDATION = 0; |
| 436 |
} |
// } |
| 437 |
if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl; |
// if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl; |
| 438 |
|
|
| 439 |
for(Int_t i=0;i<6;i++){ |
// for(Int_t i=0;i<6;i++){ |
| 440 |
dspn1=calibdata1->DSPnumber[i]-1; |
// dspn1=calibdata1->DSPnumber[i]-1; |
| 441 |
dspn2=calibdata2->DSPnumber[i]-1; |
// dspn2=calibdata2->DSPnumber[i]-1; |
| 442 |
/* cout<<"dspn1= "<<dspn1<<" dspn2= "<<dspn2<<endl; */ |
// /* cout<<"dspn1= "<<dspn1<<" dspn2= "<<dspn2<<endl; */ |
| 443 |
for(Int_t ii=0;ii<3072;ii++){ |
// for(Int_t ii=0;ii<3072;ii++){ |
| 444 |
Int_t j=(ii/128); |
// Int_t j=(ii/128); |
| 445 |
Int_t jj=ii-j*128; |
// Int_t jj=ii-j*128; |
| 446 |
if(dspn1>=0 && dspn1<12){ |
// if(dspn1>=0 && dspn1<12){ |
| 447 |
ca->pedestal[jj][j][dspn1]=calibdata1->DSPped_par[i][ii]; |
// ca->pedestal[jj][j][dspn1]=calibdata1->DSPped_par[i][ii]; |
| 448 |
ca->sigma[jj][j][dspn1]=calibdata1->DSPsig_par[i][ii]; |
// ca->sigma[jj][j][dspn1]=calibdata1->DSPsig_par[i][ii]; |
| 449 |
if(calibdata1->DSPbad_par[i][ii]==0) |
// if(calibdata1->DSPbad_par[i][ii]==0) |
| 450 |
ca->bad[jj][j][dspn1]=1; |
// ca->bad[jj][j][dspn1]=1; |
| 451 |
else if(calibdata1->DSPbad_par[i][ii]==1) |
// else if(calibdata1->DSPbad_par[i][ii]==1) |
| 452 |
ca->bad[jj][j][dspn1]=0; |
// ca->bad[jj][j][dspn1]=0; |
| 453 |
// cout<<"sigma trk1= "<<sigma[jj][j][dspn1]<<endl; |
// // cout<<"sigma trk1= "<<sigma[jj][j][dspn1]<<endl; |
| 454 |
// cout<<"sigma_t trk1= "<<sigma_t[jj][j][dspn1]<<endl; |
// // cout<<"sigma_t trk1= "<<sigma_t[jj][j][dspn1]<<endl; |
| 455 |
} |
// } |
| 456 |
if(dspn2>=0 && dspn2<12){ |
// if(dspn2>=0 && dspn2<12){ |
| 457 |
ca->pedestal[jj][j][dspn2]=calibdata2->DSPped_par[i][ii]; |
// ca->pedestal[jj][j][dspn2]=calibdata2->DSPped_par[i][ii]; |
| 458 |
ca->sigma[jj][j][dspn2]=calibdata2->DSPsig_par[i][ii]; |
// ca->sigma[jj][j][dspn2]=calibdata2->DSPsig_par[i][ii]; |
| 459 |
if(calibdata2->DSPbad_par[i][ii]==0) |
// if(calibdata2->DSPbad_par[i][ii]==0) |
| 460 |
ca->bad[jj][j][dspn2]=1; |
// ca->bad[jj][j][dspn2]=1; |
| 461 |
else if(calibdata2->DSPbad_par[i][ii]==1) |
// else if(calibdata2->DSPbad_par[i][ii]==1) |
| 462 |
ca->bad[jj][j][dspn2]=0; |
// ca->bad[jj][j][dspn2]=0; |
| 463 |
// cout<<"sigma trk2= "<<sigma[jj][j][dspn2]<<endl; |
// // cout<<"sigma trk2= "<<sigma[jj][j][dspn2]<<endl; |
| 464 |
// cout<<"sigma_t trk2= "<<sigma_t[jj][j][dspn2]<<endl; |
// // cout<<"sigma_t trk2= "<<sigma_t[jj][j][dspn2]<<endl; |
| 465 |
} |
// } |
| 466 |
}; |
// }; |
| 467 |
}; |
// }; |
| 468 |
|
|
| 469 |
tr1->Delete(); |
// tr1->Delete(); |
| 470 |
tr2->Delete(); |
// tr2->Delete(); |
| 471 |
}; |
// }; |
| 472 |
/** |
/** |
| 473 |
* Method to fill the tracker calibration-parameter struct from on-line calibrations |
* Method to fill the tracker calibration-parameter struct from on-line calibrations |
| 474 |
*/ |
*/ |
| 475 |
void TrkParams::FillTCalibFrom(TFile* f0, Int_t ev_reg1, Int_t ev_reg2){ |
// void TrkParams::FillTCalibFrom(TFile* f0, Int_t ev_reg1, Int_t ev_reg2){ |
| 476 |
|
|
| 477 |
cTrkCalib *ca = &pedsigbad_; |
// cTrkCalib *ca = &pedsigbad_; |
| 478 |
// ca->Reset(); |
// // ca->Reset(); |
| 479 |
|
|
| 480 |
TTree *tr1 = (TTree*)f0->Get("CalibTrk1"); |
// TTree *tr1 = (TTree*)f0->Get("CalibTrk1"); |
| 481 |
TTree *tr2 = (TTree*)f0->Get("CalibTrk2"); |
// TTree *tr2 = (TTree*)f0->Get("CalibTrk2"); |
| 482 |
|
|
| 483 |
CalibTrk1Event *calibdata1 = 0; |
// CalibTrk1Event *calibdata1 = 0; |
| 484 |
CalibTrk2Event *calibdata2 = 0; |
// CalibTrk2Event *calibdata2 = 0; |
| 485 |
tr1->SetBranchAddress("CalibTrk1",&calibdata1); |
// tr1->SetBranchAddress("CalibTrk1",&calibdata1); |
| 486 |
tr2->SetBranchAddress("CalibTrk2",&calibdata2); |
// tr2->SetBranchAddress("CalibTrk2",&calibdata2); |
| 487 |
tr1->GetEntry(ev_reg1); |
// tr1->GetEntry(ev_reg1); |
| 488 |
tr2->GetEntry(ev_reg2); |
// tr2->GetEntry(ev_reg2); |
| 489 |
Int_t dspn1(0),dspn2(0); |
// Int_t dspn1(0),dspn2(0); |
| 490 |
|
|
| 491 |
// --- TEST TEST TEST TEST --- // |
// // --- TEST TEST TEST TEST --- // |
| 492 |
// TrkParams::ValidateTrkCalib(calibdata1); |
// // TrkParams::ValidateTrkCalib(calibdata1); |
| 493 |
// TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
// // TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
| 494 |
UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1); |
// UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1); |
| 495 |
UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
// UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
| 496 |
if( !test1 || !test2 ){ |
// if( !test1 || !test2 ){ |
| 497 |
if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl; |
// if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl; |
| 498 |
TrkParams::calib.VALIDATION = 0; |
// TrkParams::calib.VALIDATION = 0; |
| 499 |
} |
// } |
| 500 |
if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl; |
// if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl; |
| 501 |
|
|
| 502 |
for(Int_t i=0;i<6;i++){ |
// for(Int_t i=0;i<6;i++){ |
| 503 |
dspn1=calibdata1->DSPnumber[i]-1; |
// dspn1=calibdata1->DSPnumber[i]-1; |
| 504 |
dspn2=calibdata2->DSPnumber[i]-1; |
// dspn2=calibdata2->DSPnumber[i]-1; |
| 505 |
/* cout<<"dspn1= "<<dspn1<<" dspn2= "<<dspn2<<endl; */ |
// /* cout<<"dspn1= "<<dspn1<<" dspn2= "<<dspn2<<endl; */ |
| 506 |
for(Int_t ii=0;ii<3072;ii++){ |
// for(Int_t ii=0;ii<3072;ii++){ |
| 507 |
Int_t j=(ii/128); |
// Int_t j=(ii/128); |
| 508 |
Int_t jj=ii-j*128; |
// Int_t jj=ii-j*128; |
| 509 |
if(dspn1>=0 && dspn1<12){ |
// if(dspn1>=0 && dspn1<12){ |
| 510 |
ca->pedestal_t[jj][j][dspn1]=aint(calibdata1->DSPped_par[i][ii]); |
// ca->pedestal_t[jj][j][dspn1]=aint(calibdata1->DSPped_par[i][ii]); |
| 511 |
ca->sigma_t[jj][j][dspn1]=anint(calibdata1->DSPsig_par[i][ii]); |
// ca->sigma_t[jj][j][dspn1]=anint(calibdata1->DSPsig_par[i][ii]); |
| 512 |
} |
// } |
| 513 |
if(dspn2>=0 && dspn2<12){ |
// if(dspn2>=0 && dspn2<12){ |
| 514 |
ca->pedestal_t[jj][j][dspn2]=aint(calibdata2->DSPped_par[i][ii]); |
// ca->pedestal_t[jj][j][dspn2]=aint(calibdata2->DSPped_par[i][ii]); |
| 515 |
ca->sigma_t[jj][j][dspn2]=anint(calibdata2->DSPsig_par[i][ii]); |
// ca->sigma_t[jj][j][dspn2]=anint(calibdata2->DSPsig_par[i][ii]); |
| 516 |
} |
// } |
| 517 |
}; |
// }; |
| 518 |
}; |
// }; |
| 519 |
|
|
| 520 |
tr1->Delete(); |
// tr1->Delete(); |
| 521 |
tr2->Delete(); |
// tr2->Delete(); |
| 522 |
}; |
// }; |
| 523 |
/** |
/** |
| 524 |
* Method to fill the tracker calibration-parameter struct from default calibration |
* Method to fill the tracker calibration-parameter struct from default calibration |
| 525 |
*/ |
*/ |
| 548 |
//------------------------- |
//------------------------- |
| 549 |
tr = (TTree*)f0->Get("CalibTrk1"); |
tr = (TTree*)f0->Get("CalibTrk1"); |
| 550 |
tr->SetBranchAddress("CalibTrk1",calib->GetPointerTo()); |
tr->SetBranchAddress("CalibTrk1",calib->GetPointerTo()); |
| 551 |
tr->GetEntry(ev_reg1); |
if ( tr->GetEntry(ev_reg1) <= 0 ) throw -36;//EM |
| 552 |
} |
} |
| 553 |
if(i==1){ |
if(i==1){ |
| 554 |
//------------------------- |
//------------------------- |
| 556 |
//------------------------- |
//------------------------- |
| 557 |
tr = (TTree*)f0->Get("CalibTrk2"); |
tr = (TTree*)f0->Get("CalibTrk2"); |
| 558 |
tr->SetBranchAddress("CalibTrk2",calib->GetPointerTo()); |
tr->SetBranchAddress("CalibTrk2",calib->GetPointerTo()); |
| 559 |
tr->GetEntry(ev_reg2); |
if ( tr->GetEntry(ev_reg2) <= 0 ) throw -36; |
| 560 |
} |
} |
| 561 |
for(Int_t ipkt=0; ipkt<NPLANE; ipkt++){ |
for(Int_t ipkt=0; ipkt<NPLANE; ipkt++){ |
| 562 |
Int_t view = calib->GetView(ipkt); |
Int_t view = calib->GetView(ipkt); |
| 630 |
cout << " - full+truncated parameters "<<endl; |
cout << " - full+truncated parameters "<<endl; |
| 631 |
} |
} |
| 632 |
TrkParams::FillACalibFrom(f0_c,calib.EV_ROOT_CALIBTRK1,calib.EV_ROOT_CALIBTRK2); |
TrkParams::FillACalibFrom(f0_c,calib.EV_ROOT_CALIBTRK1,calib.EV_ROOT_CALIBTRK2); |
| 633 |
if(TrkParams::VerboseMode())cout << " - VK-mask "<<endl; |
if(TrkParams::VerboseMode())cout << " - VK-mask (RUN-by-RUN)"<<endl; |
| 634 |
TrkParams::FillMask(f0_c,calib.EV_ROOT_CALIBTRK1,calib.EV_ROOT_CALIBTRK2); |
TrkParams::FillMask(f0_c,calib.EV_ROOT_CALIBTRK1,calib.EV_ROOT_CALIBTRK2); |
| 635 |
|
|
| 636 |
// ============================================================= |
// ============================================================= |
| 670 |
* @param dbc Database |
* @param dbc Database |
| 671 |
* @param type Parameter type |
* @param type Parameter type |
| 672 |
* @return FALSE if parameter set fails. |
* @return FALSE if parameter set fails. |
| 673 |
* 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. |
| 674 |
* If dbc==NULL, try to open a connection taking DB-connection |
* If dbc==NULL, try to open a connection taking DB-connection |
| 675 |
* parameters from PAMELA environment variables. |
* parameters from PAMELA environment variables. |
| 676 |
*/ |
*/ |
| 680 |
UInt_t index = TrkParams::GetIndex( type ); |
UInt_t index = TrkParams::GetIndex( type ); |
| 681 |
if(index < 0)return false; |
if(index < 0)return false; |
| 682 |
|
|
| 683 |
|
|
| 684 |
|
UInt_t runheadtime=1; |
| 685 |
|
UInt_t runid=0; |
| 686 |
|
// UInt_t runheadtime = numeric_limits<UInt_t>::max(); |
| 687 |
|
if(glrun){ |
| 688 |
|
runheadtime = glrun->RUNHEADER_TIME; |
| 689 |
|
runid = glrun->ID; |
| 690 |
|
}else |
| 691 |
|
cout <<"Bool_t TrkParams::Set(GL_RUN* "<<glrun<<" ,TSQLServer* "<<dbc<<" ,UInt_t "<<type<<" ) >> GL_RUN==NULL -- taking first entry (**WARNING** check that this is ok!! )"<<endl; |
| 692 |
|
|
| 693 |
|
|
| 694 |
if( !TrkParams::IsLoaded(type) || |
if( !TrkParams::IsLoaded(type) || |
| 695 |
glrun->RUNHEADER_TIME < gl[index].FROM_TIME || |
runheadtime < gl[index].FROM_TIME || |
| 696 |
glrun->RUNHEADER_TIME > gl[index].TO_TIME || |
runheadtime > gl[index].TO_TIME || |
| 697 |
false ){ |
false ){ |
| 698 |
|
|
| 699 |
if( !dbc || (dbc && !dbc->IsConnected()) ){ |
// if(TrkParams::VerboseMode()) |
| 700 |
|
if(TrkParams::DebugMode())cout << "<< set TrkParams type "<<type<<" from DB << RUN "<<runid<<endl; |
| 701 |
|
|
| 702 |
if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl; |
bool LOCAL_CONNECTION = false; |
| 703 |
TString host = "mysql://localhost/pamelaprod"; |
if( !dbc || (dbc && !dbc->IsConnected()) ){ |
|
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; |
|
|
} |
|
|
} |
|
| 704 |
|
|
| 705 |
|
// if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl; |
| 706 |
|
dbc = TrkParams::SetDBConnection(); |
| 707 |
|
if(dbc && dbc->IsConnected())LOCAL_CONNECTION = true; |
| 708 |
|
|
| 709 |
UInt_t runheadtime = numeric_limits<UInt_t>::max(); |
} |
|
if(glrun)runheadtime = glrun->RUNHEADER_TIME; |
|
|
else cout <<"Missing run info -- taking last entry "<<endl; |
|
| 710 |
|
|
| 711 |
GL_PARAM q4; |
GL_PARAM q4; |
| 712 |
if( q4.Query_GL_PARAM(runheadtime,type,dbc) )return false; |
if( q4.Query_GL_PARAM(runheadtime,type,dbc) )return false; |
| 713 |
|
if(LOCAL_CONNECTION){ |
| 714 |
|
dbc->Close(); |
| 715 |
|
delete dbc; |
| 716 |
|
if(TrkParams::DebugMode()){ |
| 717 |
|
cout << " DB connection closed."<<endl; |
| 718 |
|
} |
| 719 |
|
} |
| 720 |
gl[index] = q4; |
gl[index] = q4; |
| 721 |
glpath[index] = q4.PATH+q4.NAME; |
glpath[index] = q4.PATH+q4.NAME; |
| 722 |
glload[index] = false; |
glload[index] = false; |
| 723 |
if(TrkParams::VerboseMode()) |
|
|
cout << "<< set TrkParams type "<<type<<" from DB << RUN "<<glrun->ID<<endl; |
|
| 724 |
return true; |
return true; |
| 725 |
|
|
| 726 |
} |
} |
| 757 |
*/ |
*/ |
| 758 |
Bool_t TrkParams::Set(UInt_t type){ |
Bool_t TrkParams::Set(UInt_t type){ |
| 759 |
|
|
|
UInt_t index = TrkParams::GetIndex( type ); |
|
|
if(index < 0)return false; |
|
| 760 |
|
|
| 761 |
gl[index].TYPE= type; |
return Set(0,0,type); |
|
glload[index] = false; |
|
|
|
|
|
// ----------------------------------------- |
|
|
// 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; |
|
|
|
|
|
} |
|
| 762 |
|
|
|
if(TrkParams::VerboseMode())cout << "<< set TrkParams type "<<type<<" (from env var PAM_CALIB) >>"<<endl; |
|
|
// return TrkParams::Load(type); |
|
|
return true; |
|
| 763 |
|
|
| 764 |
}; |
}; |
| 765 |
/** |
/** |
| 770 |
*/ |
*/ |
| 771 |
Bool_t TrkParams::Set( ){ |
Bool_t TrkParams::Set( ){ |
| 772 |
|
|
|
Bool_t connected = false; |
|
| 773 |
|
|
| 774 |
// 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; |
|
| 775 |
|
|
| 776 |
return true; |
return true; |
| 777 |
} |
} |
| 785 |
|
|
| 786 |
Int_t index = TrkParams::GetIndex( type ); |
Int_t index = TrkParams::GetIndex( type ); |
| 787 |
if( index<0 )return false; |
if( index<0 )return false; |
| 788 |
if( glload[index] )return true; |
if( glload[index] )return false; |
|
|
|
| 789 |
if( glpath[index].IsNull() )TrkParams::Set(type); |
if( glpath[index].IsNull() )TrkParams::Set(type); |
| 790 |
|
|
| 791 |
switch( type ){ |
switch( type ){ |
| 869 |
} |
} |
| 870 |
|
|
| 871 |
Bool_t TrkParams::Load( ){ |
Bool_t TrkParams::Load( ){ |
| 872 |
for(Int_t i=0 ; i<NTYPES; i++)if(!glload[i] && trkparamtype[i]>0 )if( !TrkParams::Load(trkparamtype[i]) )return false; |
Bool_t result = true; |
| 873 |
return true; |
for(Int_t i=0 ; i<NTYPES; i++) |
| 874 |
|
if(!glload[i] && trkparamtype[i]>0 ) |
| 875 |
|
if( !TrkParams::Load(trkparamtype[i]) ) |
| 876 |
|
result = false; |
| 877 |
|
return result; |
| 878 |
}; |
}; |
| 879 |
Bool_t TrkParams::IsLoaded( ){ |
Bool_t TrkParams::IsLoaded( ){ |
| 880 |
for(Int_t i=0 ; i<NTYPES; i++)if(!glload[i] && trkparamtype[i]>0 )return false; |
for(Int_t i=0 ; i<NTYPES; i++)if(!glload[i] && trkparamtype[i]>0 )return false; |
| 917 |
} |
} |
| 918 |
|
|
| 919 |
|
|
|
|
|
| 920 |
/** |
/** |
| 921 |
* \brief Set tracking mode (0=standard. 1=???) |
* \brief Set tracking mode (0=standard. 1=???) |
| 922 |
*/ |
*/ |
| 923 |
void TrkParams::SetTrackingMode(int trackmode) { |
void TrkParams::SetTrackingMode(int trackmode) { |
| 924 |
init__mini_trackmode = trackmode; |
init__mini_trackmode = trackmode; |
| 925 |
SetTrackingMode(); |
SetTrackingMode(); //fill F77 common |
| 926 |
}; |
}; |
| 927 |
/** |
/** |
| 928 |
* \brief Set fit-precision factor (typical value fact=100.) |
* \brief Set fit-precision factor (typical value fact=100.) |
| 929 |
*/ |
*/ |
| 930 |
void TrkParams::SetPrecisionFactor(double fact){ |
void TrkParams::SetPrecisionFactor(double fact){ |
| 931 |
init__mini_fact = fact; |
init__mini_fact = fact; |
| 932 |
SetPrecisionFactor(); |
SetPrecisionFactor(); //fill F77 common |
| 933 |
}; |
}; |
| 934 |
/** |
/** |
| 935 |
* \brief Set minimum number of step in track fitting |
* \brief Set minimum number of step in track fitting |
| 936 |
*/ |
*/ |
| 937 |
void TrkParams::SetStepMin(int istepmin){ |
void TrkParams::SetStepMin(int istepmin){ |
| 938 |
init__mini_istepmin = istepmin; |
init__mini_istepmin = istepmin; |
| 939 |
SetStepMin(); |
SetStepMin(); //fill F77 common |
| 940 |
|
}; |
| 941 |
|
/** |
| 942 |
|
* \brief Set deltaB parameters (id=0,1) |
| 943 |
|
*/ |
| 944 |
|
void TrkParams::SetDeltaB(int id,double db){ |
| 945 |
|
if(id!=0 && id!=1)cout << "void TrkParams::SetDeltaB(int id,double db) -- wrong input parameters: "<<id<<" "<<db<<endl; |
| 946 |
|
if(id==0)init__deltab_0 = db; |
| 947 |
|
if(id==1)init__deltab_1 = db; |
| 948 |
|
SetDeltaB(); //fill F77 common |
| 949 |
|
}; |
| 950 |
|
/** |
| 951 |
|
* \brief Set DLT-grkuta precision factor (default 1.e-4) |
| 952 |
|
*/ |
| 953 |
|
void TrkParams::SetDLT(double fact){ |
| 954 |
|
init__dlt = fact; |
| 955 |
|
SetDLT(); //fill F77 common |
| 956 |
}; |
}; |
| 957 |
|
|
| 958 |
/** |
/** |
| 959 |
|
* \brief Fill F77 commons with PFA settings |
| 960 |
|
*/ |
| 961 |
|
void TrkParams::SetPFA(){ |
| 962 |
|
sw_.pfaid = init__pfa; |
| 963 |
|
for(int i=0; i<6; i++){ |
| 964 |
|
pfa_.e234ax[i] = init__pfa_e234ax[i]; |
| 965 |
|
pfa_.e234ay[i] = init__pfa_e234ay[i]; |
| 966 |
|
} |
| 967 |
|
}; |
| 968 |
|
/** |
| 969 |
* \brief Set p.f.a. |
* \brief Set p.f.a. |
| 970 |
* |
* |
| 971 |
* Implemented algorythms: |
* Implemented algorythms: |
| 983 |
*/ |
*/ |
| 984 |
void TrkParams::SetPFA(int pfaid){ |
void TrkParams::SetPFA(int pfaid){ |
| 985 |
init__pfa = pfaid; |
init__pfa = pfaid; |
| 986 |
SetPFA(); |
SetPFA(); //fill F77 common |
| 987 |
}; |
}; |
| 988 |
/** |
/** |
| 989 |
|
* \brief Set p.f.a. angular intervals |
| 990 |
|
* |
| 991 |
|
* This methods allows to set amgular intervals to apply ETA2,ETA3 or ETA4 |
| 992 |
|
* algorythm, in case ETA or ETAL is set (see TrkParams::SetPFA(int pfaid)). |
| 993 |
|
* @param v Pointer to a vector of 12 components, which represent the |
| 994 |
|
* angular limits for ETA2,ETA3 and ETA4, for x and y views, respectivelly. |
| 995 |
|
* |
| 996 |
|
*/ |
| 997 |
|
void TrkParams::SetPFA(float *v){ |
| 998 |
|
for(int i=0; i<6; i++){ |
| 999 |
|
init__pfa_e234ax[i] = v[i]; |
| 1000 |
|
init__pfa_e234ay[i] = v[i+6]; |
| 1001 |
|
} |
| 1002 |
|
SetPFA(); //fill F77 common |
| 1003 |
|
}; |
| 1004 |
|
|
| 1005 |
|
|
| 1006 |
|
/** |
| 1007 |
* \brief Get spatial resolution. |
* \brief Get spatial resolution. |
| 1008 |
* |
* |
| 1009 |
* Method to retrieve the spatial resolution associated with the |
* Method to retrieve the spatial resolution associated with the |
| 1018 |
*/ |
*/ |
| 1019 |
float TrkParams::GetResolution(int view, float angle){ |
float TrkParams::GetResolution(int view, float angle){ |
| 1020 |
float res = 1000; |
float res = 1000; |
| 1021 |
if( init__pfa == 0 )res = riseta_(&view,&angle); |
if ( init__pfa == 0 )res = riseta_(&view,&angle); |
| 1022 |
|
else if( init__pfa == 5 )res = riseta_(&view,&angle); |
| 1023 |
else cout << "float TrkParams::GetResolution(int view, float angle) -- PFA "<<init__pfa<<" not yet implemented"<<endl; |
else cout << "float TrkParams::GetResolution(int view, float angle) -- PFA "<<init__pfa<<" not yet implemented"<<endl; |
| 1024 |
return res; |
return res; |
| 1025 |
} |
} |
| 1026 |
|
|
| 1027 |
|
/** |
| 1028 |
|
* Returns the number of angular bins for p.f.a. parameters |
| 1029 |
|
*/ |
| 1030 |
|
int TrkParams::GetPFA_NbinsAngle(){ |
| 1031 |
|
TrkParams::Load(4); |
| 1032 |
|
if( !TrkParams::IsLoaded(4) ){ |
| 1033 |
|
cout << "int TrkParams::GetPFA_NbinsAngle() --- ERROR --- p.f.a. parameters not loaded"<<endl; |
| 1034 |
|
return 0; |
| 1035 |
|
} |
| 1036 |
|
return pfa_.nangbin; |
| 1037 |
|
}; |
| 1038 |
|
/** |
| 1039 |
|
* Returns the number of eta bins for p.f.a. parameters |
| 1040 |
|
*/ |
| 1041 |
|
int TrkParams::GetPFA_NbinsETA(){ |
| 1042 |
|
TrkParams::Load(4); |
| 1043 |
|
if( !TrkParams::IsLoaded(4) ){ |
| 1044 |
|
cout << "int TrkParams::GetPFA_NbinsETA() --- ERROR --- p.f.a. parameters not loaded"<<endl; |
| 1045 |
|
return 0; |
| 1046 |
|
} |
| 1047 |
|
return pfa_.netaval; |
| 1048 |
|
}; |
| 1049 |
|
|
| 1050 |
|
/** |
| 1051 |
|
* Returns the pointer to a vector ( of size TrkParams::GetPFA_NbinsETA() ), |
| 1052 |
|
* with eta-correction values for each eta bin. |
| 1053 |
|
* Bin extremes are given by float* TrkParams::GetPFA_ETAabs(pfa,int). |
| 1054 |
|
* |
| 1055 |
|
* @param pfa "ETA2","ETA3" or "ETA4" |
| 1056 |
|
* @param nview View number (0-11) |
| 1057 |
|
* @param nladder Ladder number (0-2) |
| 1058 |
|
* @param nang Angular bin (@see int TrkParams::GetPFA_NbinsAngle()). |
| 1059 |
|
* |
| 1060 |
|
* NB! the vector must be deallocated! |
| 1061 |
|
* delete [] vname; |
| 1062 |
|
*/ |
| 1063 |
|
float* TrkParams::GetPFA_ETAcorr(TString pfa, int nview, int nladder, int nang){ |
| 1064 |
|
|
| 1065 |
|
TrkParams::Load(4); |
| 1066 |
|
if( !TrkParams::IsLoaded(4) ){ |
| 1067 |
|
cout << "float* TrkParams::GetPFA_ETAcorr(TString pfa, int nview, int nladder, int nang) --- ERROR --- p.f.a. parameters not loaded"<<endl; |
| 1068 |
|
return 0; |
| 1069 |
|
} |
| 1070 |
|
|
| 1071 |
|
int nbins = GetPFA_NbinsETA(); |
| 1072 |
|
if(!nbins)return 0; |
| 1073 |
|
|
| 1074 |
|
if( nview < 0 || |
| 1075 |
|
nview >= 12 || |
| 1076 |
|
nladder < 0 || |
| 1077 |
|
nladder >= 3 || |
| 1078 |
|
nang < 0 || |
| 1079 |
|
nang >= GetPFA_NbinsAngle() || |
| 1080 |
|
false)return 0; |
| 1081 |
|
|
| 1082 |
|
float *fcorr = new float [nbins]; |
| 1083 |
|
// float fcorr[nbins]; |
| 1084 |
|
|
| 1085 |
|
if(!pfa.CompareTo("ETA2",TString::kIgnoreCase)){ |
| 1086 |
|
for(int ib=0; ib<nbins; ib++){ |
| 1087 |
|
fcorr[ib] = pfa_.feta2[nang][nladder][nview][ib]; |
| 1088 |
|
// cout << pfa_.eta2[nang][ib] << " - " << pfa_.feta2[nang][nladder][nview][ib]<<endl;; |
| 1089 |
|
} |
| 1090 |
|
}else if (!pfa.CompareTo("ETA3",TString::kIgnoreCase)){ |
| 1091 |
|
for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.feta3[nang][nladder][nview][ib]; |
| 1092 |
|
}else if (!pfa.CompareTo("ETA4",TString::kIgnoreCase)){ |
| 1093 |
|
for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.feta4[nang][nladder][nview][ib]; |
| 1094 |
|
}else{ |
| 1095 |
|
cout << "float* TrkParams::GetPFA_ETAcorr("<<pfa<<",...) --- pfa parameters not implemented "<<endl; |
| 1096 |
|
return 0; |
| 1097 |
|
} |
| 1098 |
|
|
| 1099 |
|
return fcorr; |
| 1100 |
|
|
| 1101 |
|
}; |
| 1102 |
|
|
| 1103 |
|
/** |
| 1104 |
|
* Returns the pointer to a vector with eta-bin extremes (@see float* TrkParams::GetPFA_ETAcorr(TString,int,int,int)). |
| 1105 |
|
* |
| 1106 |
|
* @param pfa "ETA2","ETA3" or "ETA4" |
| 1107 |
|
* @param nang Angular bin (@see int TrkParams::GetPFA_NbinsAngle()). |
| 1108 |
|
* |
| 1109 |
|
* NB the vector must be deallocated |
| 1110 |
|
* delete [] vname; |
| 1111 |
|
*/ |
| 1112 |
|
float* TrkParams::GetPFA_ETAabs(TString pfa, int nang){ |
| 1113 |
|
|
| 1114 |
|
TrkParams::Load(4); |
| 1115 |
|
if( !TrkParams::IsLoaded(4) ){ |
| 1116 |
|
cout << "float* TrkParams::GetPFA_ETAabs(TString pfa, int nang) --- ERROR --- p.f.a. parameters not loaded"<<endl; |
| 1117 |
|
return 0; |
| 1118 |
|
} |
| 1119 |
|
|
| 1120 |
|
int nbins = GetPFA_NbinsETA(); |
| 1121 |
|
if(!nbins)return 0; |
| 1122 |
|
|
| 1123 |
|
float *fcorr = new float [nbins]; |
| 1124 |
|
// float fcorr[nbins]; |
| 1125 |
|
if( nang < 0 || |
| 1126 |
|
nang >= GetPFA_NbinsAngle() || |
| 1127 |
|
false)return 0; |
| 1128 |
|
|
| 1129 |
|
if(!pfa.CompareTo("ETA2",TString::kIgnoreCase)){ |
| 1130 |
|
for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta2[nang][ib]; |
| 1131 |
|
}else if (!pfa.CompareTo("ETA3",TString::kIgnoreCase)){ |
| 1132 |
|
for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta3[nang][ib]; |
| 1133 |
|
}else if (!pfa.CompareTo("ETA4",TString::kIgnoreCase)){ |
| 1134 |
|
for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta4[nang][ib]; |
| 1135 |
|
}else{ |
| 1136 |
|
cout << "float* TrkParams::GetPFA_ETAabs("<<pfa<<",...) --- pfa parameters not implemented "<<endl; |
| 1137 |
|
return 0; |
| 1138 |
|
} |
| 1139 |
|
|
| 1140 |
|
return fcorr; |
| 1141 |
|
|
| 1142 |
|
}; |
| 1143 |
|
/** |
| 1144 |
|
* Returns the "Landi-correction". |
| 1145 |
|
* |
| 1146 |
|
* @param nview View number (0-11) |
| 1147 |
|
* @param nladder Ladder number (0-2) |
| 1148 |
|
* @param nang Angular bin (@see int TrkParams::GetPFA_NbinsAngle()). |
| 1149 |
|
*/ |
| 1150 |
|
float TrkParams::GetPFA_ETAlandi(int nview, int nladder, int nang){ |
| 1151 |
|
|
| 1152 |
|
// TrkParams::Load(4); |
| 1153 |
|
// if( !TrkParams::IsLoaded(4) ){ |
| 1154 |
|
// cout << "float* TrkParams::GetPFA_ETAlandi(int nview, int nladder, int nang) --- ERROR --- p.f.a. parameters not loaded"<<endl; |
| 1155 |
|
// return 0; |
| 1156 |
|
// } |
| 1157 |
|
int nbins = GetPFA_NbinsAngle(); |
| 1158 |
|
if(!nbins)return 0; |
| 1159 |
|
|
| 1160 |
|
if( nview < 0 || |
| 1161 |
|
nview >= 12 || |
| 1162 |
|
nladder < 0 || |
| 1163 |
|
nladder >= 3 || |
| 1164 |
|
nang < 0 || |
| 1165 |
|
nang >= nbins || |
| 1166 |
|
false)return 0; |
| 1167 |
|
|
| 1168 |
|
|
| 1169 |
|
return pfa_.fcorr[nang][nladder][nview]; |
| 1170 |
|
|
| 1171 |
|
}; |
| 1172 |
|
|
| 1173 |
|
/** |
| 1174 |
|
* Returns the index (0, n.bin-1) of the angular bin for pfa parameters |
| 1175 |
|
* @param angle Effective angle (deg) |
| 1176 |
|
*/ |
| 1177 |
|
int TrkParams::GetPFA_AngleBin(float angle){ |
| 1178 |
|
|
| 1179 |
|
int nangbin = TrkParams::GetPFA_NbinsAngle(); |
| 1180 |
|
int istart = (int)(nangbin/2); |
| 1181 |
|
int idbin = -1; |
| 1182 |
|
// cout << angle <<" ??" << endl; |
| 1183 |
|
if( angle > pfa_.angR[istart] ){ |
| 1184 |
|
idbin = nangbin-1; |
| 1185 |
|
for(int id=istart+1; id<nangbin; id++ ){ |
| 1186 |
|
// cout << id << endl; |
| 1187 |
|
if( pfa_.angR[id] >= angle ){ |
| 1188 |
|
idbin = id; |
| 1189 |
|
break; |
| 1190 |
|
} |
| 1191 |
|
} |
| 1192 |
|
}else{ |
| 1193 |
|
idbin = 0; |
| 1194 |
|
for(int id=istart; id>=0; id-- ){ |
| 1195 |
|
// cout << id << endl; |
| 1196 |
|
if( pfa_.angL[id] < angle ){ |
| 1197 |
|
idbin = id; |
| 1198 |
|
break; |
| 1199 |
|
} |
| 1200 |
|
} |
| 1201 |
|
|
| 1202 |
|
} |
| 1203 |
|
// cout << ">>> "<<idbin<<" "<<pfa_.angL[idbin]<<" "<<pfa_.angR[idbin]<<endl; |
| 1204 |
|
return idbin; |
| 1205 |
|
} |
| 1206 |
|
|
| 1207 |
|
|
| 1208 |
|
|
| 1209 |
ClassImp(TrkParams); |
ClassImp(TrkParams); |