/[PAMELA software]/DarthVader/TrackerLevel2/src/TrkParams.cpp
ViewVC logotype

Diff of /DarthVader/TrackerLevel2/src/TrkParams.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.17 by mocchiut, Wed Oct 10 16:01:34 2007 UTC revision 1.30 by pam-fi, Thu Feb 27 11:24:43 2014 UTC
# Line 1  Line 1 
1    
2  /**  /**
3   * \file TrkParams.cpp   * \file TrkParams.cpp
4   * \author Elena Vannuccini   * \author Elena Vannuccini
# Line 9  Line 10 
10  using namespace std;  using namespace std;
11    
12    
13    Bool_t TrkParams::simuflag = kFALSE;
14  // -------------------------  // -------------------------
15  // CALIBRATION (PED,SIG,BAD)  // CALIBRATION (PED,SIG,BAD)
16  // -------------------------  // -------------------------
# Line 17  TString      TrkParams::calibpatht = ""; Line 19  TString      TrkParams::calibpatht = "";
19  TString      TrkParams::calibpathf = "";  TString      TrkParams::calibpathf = "";
20  Bool_t       TrkParams::calib104   = 0;  Bool_t       TrkParams::calib104   = 0;
21  Bool_t       TrkParams::calibload  = false;  Bool_t       TrkParams::calibload  = false;
22    TrkCalib*    TrkParams::calib1 = 0;
23    TrkCalib*    TrkParams::calib2 = 0;
24  // -------------------------  // -------------------------
25  // PARAMETERS loaded from DB  // PARAMETERS loaded from DB
26  // -------------------------  // -------------------------
# Line 35  int    TrkParams::init__mini_istepmin  = Line 39  int    TrkParams::init__mini_istepmin  =
39  double TrkParams::init__mini_fact      = 1.e4; //100.;  double TrkParams::init__mini_fact      = 1.e4; //100.;
40  float  TrkParams::init__pfa_e234ax[]   = {0.,10.,10.,15.,15.,90.};  float  TrkParams::init__pfa_e234ax[]   = {0.,10.,10.,15.,15.,90.};
41  float  TrkParams::init__pfa_e234ay[]   = {0.,20.,90.,90.,90.,90.};  float  TrkParams::init__pfa_e234ay[]   = {0.,20.,90.,90.,90.,90.};
42    double TrkParams::init__deltab_0       = 0.;
43    double TrkParams::init__deltab_1       = 0.;
44    double TrkParams::init__dlt            = 1.e-5;
45    // ------------------------------------------
46    // nominal z-coordinates to define acceptance
47    // ------------------------------------------
48    int   TrkParams::nGF   = NGF;
49    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};
50    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};
51    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};
52    // 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};
53    // 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};
54    // per i piani interni alla cavita`, gli estremi sono dati dalla cavita` stessa
55    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};
56    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};
57    TString TrkParams::GF_element[] = {"S11","S12","S21","S22","T1","CUF","T2","T3","T4","T5","CLF","T6","S31","S32"};
58    
59  TrkParams::TrkParams(){  TrkParams::TrkParams(){
60    
# Line 54  float anint(float f){ Line 74  float anint(float f){
74      ret1=(float)ret;      ret1=(float)ret;
75      return ret1;              return ret1;        
76  }  }
77    
78    void TrkParams::SetSimuFlag(Bool_t flag){
79      simuflag = flag;
80    }
81    
82    Bool_t TrkParams::GetSimuFlag(){
83      return simuflag;
84    }
85    
86    
87    /**
88     * Static method to open a DB connection.
89     * HOST, USER and PASSWORD are taken from enviroment variables $PAM_DBHOST,
90     * $PAM_DBUSER and $PAM_DBPSW
91     * NB! The method create a new connection, which has to be closed by the user.
92     */
93    TSQLServer* TrkParams::SetDBConnection(){
94    
95        TString host = "mysql://localhost/pamelaprod";
96        TString user = "anonymous";
97        TString psw = "";
98        const char *pamdbhost=gSystem->Getenv("PAM_DBHOST");
99        const char *pamdbuser=gSystem->Getenv("PAM_DBUSER");
100        const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW");
101        if ( !pamdbhost ) pamdbhost = "";
102        if ( !pamdbuser ) pamdbuser = "";
103        if ( !pamdbpsw ) pamdbpsw = "";
104        if ( strcmp(pamdbhost,"") ) host = pamdbhost;
105        if ( strcmp(pamdbuser,"") ) user = pamdbuser;
106        if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw;
107        if(TrkParams::DebugMode()){
108            cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
109            cout<<"TrkParams::SetDBConnection() >> Connecting to DB"<<endl;
110            cout<<"HOST "<<host<<endl;
111            cout<<"USER "<<user<<endl;
112            cout<<"PSW  "<<psw<<endl;
113        }
114        TSQLServer *dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
115        if( !dbc )return NULL;
116        if( !dbc->IsConnected() )return NULL;    
117        stringstream myquery;  // EMILIANO
118        myquery.str("");  // EMILIANO
119        myquery << "SET time_zone='+0:00'";  // EMILIANO
120        dbc->Query(myquery.str().c_str());  // EMILIANO
121        if(TrkParams::DebugMode()){
122            cout << " ...done"<<endl;
123            cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
124        }
125        
126        return dbc;
127    }
128  /**  /**
129   * \brief Static method to set the calibration to be loaded.   * \brief Static method to set the calibration to be loaded.
130    
# Line 73  Bool_t TrkParams::SetCalib( GL_RUN *glru Line 144  Bool_t TrkParams::SetCalib( GL_RUN *glru
144          glrun->RUNHEADER_TIME > calib.TO_TIME     ||          glrun->RUNHEADER_TIME > calib.TO_TIME     ||
145          false ){          false ){
146    
 //      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;  
 //          }  
 //      }  
147    
148          GL_TRK_CALIB q2;          GL_TRK_CALIB q2;
149          GL_ROOT q3;          GL_ROOT q3;
150          GL_PARAM q4;          GL_PARAM q4;
151    
152    
153            bool LOCAL_CONNECTION = false;
154            if( !dbc || (dbc && !dbc->IsConnected()) ){
155    
156    //          if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl;
157                dbc = TrkParams::SetDBConnection();
158                if(dbc && dbc->IsConnected())LOCAL_CONNECTION = true;
159    
160            }
161    
162                    
163          if(TrkParams::VerboseMode()){          if(TrkParams::VerboseMode()){
164              cout << "--------------------------------------"<<endl;              cout << "--------------------------------------"<<endl;
# Line 138  Bool_t TrkParams::SetCalib( GL_RUN *glru Line 185  Bool_t TrkParams::SetCalib( GL_RUN *glru
185              calibpatht = q4.PATH + q4.NAME;              calibpatht = q4.PATH + q4.NAME;
186          }          }
187                    
188            if(LOCAL_CONNECTION&&dbc){
189                dbc->Close();
190                delete dbc;
191                if(TrkParams::DebugMode()){
192                    cout << " DB connection closed."<<endl;
193                }      
194            }
195    
196  //    return TrkParams::LoadCalib();  //    return TrkParams::LoadCalib();
197          return true;          return true;
# Line 204  UInt_t TrkParams::ValidateTrkCalib( Cali Line 258  UInt_t TrkParams::ValidateTrkCalib( Cali
258  //  -------------------------------------------------  //  -------------------------------------------------
259      UInt_t build=0;      UInt_t build=0;
260      UInt_t base=0;      UInt_t base=0;
261      UInt_t mask=0;      //    UInt_t mask=0;// EM GCC 4.7
262      if(classname.Contains("CalibTrk1Event")){      if(classname.Contains("CalibTrk1Event")){
263          base=12;          base=12;
264          mask=0x03F000;          //      mask=0x03F000; // EM GCC 4.7
265      }      }
266      if(classname.Contains("CalibTrk2Event")){      if(classname.Contains("CalibTrk2Event")){
267          base=18;          base=18;
268          mask=0xFC0000;          //      mask=0xFC0000;  // EM GCC 4.7
269      }      }
270  //  -------------------------------------------------  //  -------------------------------------------------
271  //  Count number of packets and set build variable  //  Count number of packets and set build variable
# Line 294  void TrkParams::FillACalibFrom(TFile* f0 Line 348  void TrkParams::FillACalibFrom(TFile* f0
348      TTree *tr1 = (TTree*)f0->Get("CalibTrk1");        TTree *tr1 = (TTree*)f0->Get("CalibTrk1");  
349      TTree *tr2 = (TTree*)f0->Get("CalibTrk2");      TTree *tr2 = (TTree*)f0->Get("CalibTrk2");
350    
351      CalibTrk1Event *calibdata1 = 0;      if(!calib1)calib1 = new TrkCalib();
352      CalibTrk2Event *calibdata2 = 0;      if(!calib2)calib2 = new TrkCalib();
353      tr1->SetBranchAddress("CalibTrk1",&calibdata1);  //     calibx->Set(calibdata1);
354      tr2->SetBranchAddress("CalibTrk2",&calibdata2);  //     caliby->Set(calibdata2);
355      tr1->GetEntry(ev_reg1);  
356      tr2->GetEntry(ev_reg2);  //     CalibTrk1Event *calibdata1 = 0;
357    //     CalibTrk2Event *calibdata2 = 0;
358    //     tr1->SetBranchAddress("CalibTrk1",&calibdata1);
359    //     tr2->SetBranchAddress("CalibTrk2",&calibdata2);
360        tr1->SetBranchAddress("CalibTrk1",calib1->GetPointerTo());
361        tr2->SetBranchAddress("CalibTrk2",calib2->GetPointerTo());
362        if ( tr1->GetEntry(ev_reg1) <= 0 ) throw -36;//EM
363        if ( tr2->GetEntry(ev_reg2) <= 0 ) throw -36;//EM
364      Int_t dspn1(0),dspn2(0);      Int_t dspn1(0),dspn2(0);
365    
366    
367      // --- TEST TEST TEST TEST --- //      // --- TEST TEST TEST TEST --- //
368  //    TrkParams::ValidateTrkCalib(calibdata1);  //    TrkParams::ValidateTrkCalib(calib1->Get());
369  //    TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2);  //    TrkParams::ValidateTrkCalib((CalibTrk1Event*)calib2->Get());
370    
371      UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1);      UInt_t test1 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)(calib1->Get()));
372      UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2);      UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)(calib2->Get()));
373      if( !test1 || !test2 ){      if( !test1 || !test2 ){
374          if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl;  //      if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl;
375          TrkParams::calib.VALIDATION = 0;          TrkParams::calib.VALIDATION = 0;
376      }      }
377      if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl;  //    if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl;
378    
379      for(Int_t i=0;i<6;i++){      for(Int_t i=0;i<6;i++){
380          dspn1=calibdata1->DSPnumber[i]-1;  
381          dspn2=calibdata2->DSPnumber[i]-1;  
382            dspn1=calib1->Get()->DSPnumber[i]-1;
383            dspn2=calib2->Get()->DSPnumber[i]-1;
384  //      cout<<"dspn1= "<<dspn1<<"   dspn2= "<<dspn2<<endl;        //      cout<<"dspn1= "<<dspn1<<"   dspn2= "<<dspn2<<endl;      
385          for(Int_t ii=0;ii<3072;ii++){          for(Int_t ii=0;ii<3072;ii++){
386              Int_t j=(ii/128);              Int_t j=(ii/128);
387              Int_t jj=ii-j*128;              Int_t jj=ii-j*128;
388              if(dspn1>=0 && dspn1<12){              if(dspn1>=0 && dspn1<12){
389                  ca->pedestal[jj][j][dspn1]=calibdata1->DSPped_par[i][ii];                  ca->pedestal[jj][j][dspn1]=calib1->Get()->DSPped_par[i][ii];
390                  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]);
391                  ca->sigma[jj][j][dspn1]=calibdata1->DSPsig_par[i][ii];                  ca->sigma[jj][j][dspn1]=calib1->Get()->DSPsig_par[i][ii];
392                  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]);
393                  if(calibdata1->DSPbad_par[i][ii]==0)                  if(calib1->Get()->DSPbad_par[i][ii]==0)
394                      ca->bad[jj][j][dspn1]=1;                      ca->bad[jj][j][dspn1]=1;
395                  else if(calibdata1->DSPbad_par[i][ii]==1)                  else if(calib1->Get()->DSPbad_par[i][ii]==1)
396                      ca->bad[jj][j][dspn1]=0;                      ca->bad[jj][j][dspn1]=0;
397                  //            cout<<"sigma trk1= "<<sigma[jj][j][dspn1]<<endl;                  //            cout<<"sigma trk1= "<<sigma[jj][j][dspn1]<<endl;
398                  //        cout<<"sigma_t trk1= "<<sigma_t[jj][j][dspn1]<<endl;                  //        cout<<"sigma_t trk1= "<<sigma_t[jj][j][dspn1]<<endl;
399              }              }
400    
401              if(dspn2>=0 && dspn2<12){              if(dspn2>=0 && dspn2<12){
402                  ca->pedestal[jj][j][dspn2]=calibdata2->DSPped_par[i][ii];                  ca->pedestal[jj][j][dspn2]=calib2->Get()->DSPped_par[i][ii];
403                  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]);
404                  ca->sigma[jj][j][dspn2]=calibdata2->DSPsig_par[i][ii];                  ca->sigma[jj][j][dspn2]=calib2->Get()->DSPsig_par[i][ii];
405                  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]);
406                  if(calibdata2->DSPbad_par[i][ii]==0)                  if(calib2->Get()->DSPbad_par[i][ii]==0)
407                      ca->bad[jj][j][dspn2]=1;                      ca->bad[jj][j][dspn2]=1;
408                  else if(calibdata2->DSPbad_par[i][ii]==1)                  else if(calib2->Get()->DSPbad_par[i][ii]==1)
409                      ca->bad[jj][j][dspn2]=0;                      ca->bad[jj][j][dspn2]=0;
410                  //        cout<<"sigma trk2= "<<sigma[jj][j][dspn2]<<endl;                  //        cout<<"sigma trk2= "<<sigma[jj][j][dspn2]<<endl;
411                  //        cout<<"sigma_t trk2= "<<sigma_t[jj][j][dspn2]<<endl;                  //        cout<<"sigma_t trk2= "<<sigma_t[jj][j][dspn2]<<endl;
# Line 355  void TrkParams::FillACalibFrom(TFile* f0 Line 419  void TrkParams::FillACalibFrom(TFile* f0
419  /**  /**
420   * Method to fill the tracker calibration-parameter struct from on-line calibrations   * Method to fill the tracker calibration-parameter struct from on-line calibrations
421   */   */
422  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){
   
     cTrkCalib *ca = &pedsigbad_;  
 //    ca->Reset();  
423    
424      TTree *tr1 = (TTree*)f0->Get("CalibTrk1");    //     cTrkCalib *ca = &pedsigbad_;
425      TTree *tr2 = (TTree*)f0->Get("CalibTrk2");  // //    ca->Reset();
426    
427      CalibTrk1Event *calibdata1 = 0;  //     TTree *tr1 = (TTree*)f0->Get("CalibTrk1");  
428      CalibTrk2Event *calibdata2 = 0;  //     TTree *tr2 = (TTree*)f0->Get("CalibTrk2");
     tr1->SetBranchAddress("CalibTrk1",&calibdata1);  
     tr2->SetBranchAddress("CalibTrk2",&calibdata2);  
     tr1->GetEntry(ev_reg1);  
     tr2->GetEntry(ev_reg2);  
     Int_t dspn1(0),dspn2(0);  
429    
430      // --- TEST TEST TEST TEST --- //  //     CalibTrk1Event *calibdata1 = 0;
431  //     TrkParams::ValidateTrkCalib(calibdata1);  //     CalibTrk2Event *calibdata2 = 0;
432  //     TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2);  //     tr1->SetBranchAddress("CalibTrk1",&calibdata1);
433      UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1);  //     tr2->SetBranchAddress("CalibTrk2",&calibdata2);
434      UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2);  //     tr1->GetEntry(ev_reg1);
435      if( !test1 || !test2 ){  //     tr2->GetEntry(ev_reg2);
436          if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl;  //     Int_t dspn1(0),dspn2(0);
437          TrkParams::calib.VALIDATION = 0;  
438      }  //     // --- TEST TEST TEST TEST --- //
439      if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl;  // //     TrkParams::ValidateTrkCalib(calibdata1);
440    // //     TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2);
441    //     UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1);
442    //     UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2);
443    //     if( !test1 || !test2 ){
444    //      if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl;
445    //      TrkParams::calib.VALIDATION = 0;
446    //     }
447    //     if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl;
448                    
449      for(Int_t i=0;i<6;i++){  //     for(Int_t i=0;i<6;i++){
450          dspn1=calibdata1->DSPnumber[i]-1;  //      dspn1=calibdata1->DSPnumber[i]-1;
451          dspn2=calibdata2->DSPnumber[i]-1;  //      dspn2=calibdata2->DSPnumber[i]-1;
452          /*     cout<<"dspn1= "<<dspn1<<"   dspn2= "<<dspn2<<endl; */  //      /*     cout<<"dspn1= "<<dspn1<<"   dspn2= "<<dspn2<<endl; */
453          for(Int_t ii=0;ii<3072;ii++){  //      for(Int_t ii=0;ii<3072;ii++){
454              Int_t j=(ii/128);  //          Int_t j=(ii/128);
455              Int_t jj=ii-j*128;  //          Int_t jj=ii-j*128;
456              if(dspn1>=0 && dspn1<12){  //          if(dspn1>=0 && dspn1<12){
457                  ca->pedestal[jj][j][dspn1]=calibdata1->DSPped_par[i][ii];  //              ca->pedestal[jj][j][dspn1]=calibdata1->DSPped_par[i][ii];
458                  ca->sigma[jj][j][dspn1]=calibdata1->DSPsig_par[i][ii];  //              ca->sigma[jj][j][dspn1]=calibdata1->DSPsig_par[i][ii];
459                  if(calibdata1->DSPbad_par[i][ii]==0)  //              if(calibdata1->DSPbad_par[i][ii]==0)
460                      ca->bad[jj][j][dspn1]=1;  //                  ca->bad[jj][j][dspn1]=1;
461                  else if(calibdata1->DSPbad_par[i][ii]==1)  //              else if(calibdata1->DSPbad_par[i][ii]==1)
462                      ca->bad[jj][j][dspn1]=0;  //                  ca->bad[jj][j][dspn1]=0;
463                  //            cout<<"sigma trk1= "<<sigma[jj][j][dspn1]<<endl;  //              //            cout<<"sigma trk1= "<<sigma[jj][j][dspn1]<<endl;
464                  //        cout<<"sigma_t trk1= "<<sigma_t[jj][j][dspn1]<<endl;  //              //        cout<<"sigma_t trk1= "<<sigma_t[jj][j][dspn1]<<endl;
465              }  //          }
466              if(dspn2>=0 && dspn2<12){  //          if(dspn2>=0 && dspn2<12){
467                  ca->pedestal[jj][j][dspn2]=calibdata2->DSPped_par[i][ii];  //              ca->pedestal[jj][j][dspn2]=calibdata2->DSPped_par[i][ii];
468                  ca->sigma[jj][j][dspn2]=calibdata2->DSPsig_par[i][ii];  //              ca->sigma[jj][j][dspn2]=calibdata2->DSPsig_par[i][ii];
469                  if(calibdata2->DSPbad_par[i][ii]==0)  //              if(calibdata2->DSPbad_par[i][ii]==0)
470                      ca->bad[jj][j][dspn2]=1;  //                  ca->bad[jj][j][dspn2]=1;
471                  else if(calibdata2->DSPbad_par[i][ii]==1)  //              else if(calibdata2->DSPbad_par[i][ii]==1)
472                      ca->bad[jj][j][dspn2]=0;  //                  ca->bad[jj][j][dspn2]=0;
473                  //        cout<<"sigma trk2= "<<sigma[jj][j][dspn2]<<endl;  //              //        cout<<"sigma trk2= "<<sigma[jj][j][dspn2]<<endl;
474                  //        cout<<"sigma_t trk2= "<<sigma_t[jj][j][dspn2]<<endl;  //              //        cout<<"sigma_t trk2= "<<sigma_t[jj][j][dspn2]<<endl;
475              }  //          }
476          };  //      };
477      };  //     };
478                    
479      tr1->Delete();  //     tr1->Delete();
480      tr2->Delete();  //     tr2->Delete();
481  };  // };
482  /**  /**
483   * Method to fill the tracker calibration-parameter struct from on-line calibrations   * Method to fill the tracker calibration-parameter struct from on-line calibrations
484   */   */
485  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){
486    
487      cTrkCalib *ca = &pedsigbad_;  //     cTrkCalib *ca = &pedsigbad_;
488  //    ca->Reset();  // //    ca->Reset();
489    
490      TTree *tr1 = (TTree*)f0->Get("CalibTrk1");    //     TTree *tr1 = (TTree*)f0->Get("CalibTrk1");  
491      TTree *tr2 = (TTree*)f0->Get("CalibTrk2");  //     TTree *tr2 = (TTree*)f0->Get("CalibTrk2");
492    
493      CalibTrk1Event *calibdata1 = 0;  //     CalibTrk1Event *calibdata1 = 0;
494      CalibTrk2Event *calibdata2 = 0;  //     CalibTrk2Event *calibdata2 = 0;
495      tr1->SetBranchAddress("CalibTrk1",&calibdata1);  //     tr1->SetBranchAddress("CalibTrk1",&calibdata1);
496      tr2->SetBranchAddress("CalibTrk2",&calibdata2);  //     tr2->SetBranchAddress("CalibTrk2",&calibdata2);
497      tr1->GetEntry(ev_reg1);  //     tr1->GetEntry(ev_reg1);
498      tr2->GetEntry(ev_reg2);  //     tr2->GetEntry(ev_reg2);
499      Int_t dspn1(0),dspn2(0);  //     Int_t dspn1(0),dspn2(0);
500                    
501      // --- TEST TEST TEST TEST --- //  //     // --- TEST TEST TEST TEST --- //
502  //     TrkParams::ValidateTrkCalib(calibdata1);  // //     TrkParams::ValidateTrkCalib(calibdata1);
503  //     TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2);  // //     TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2);
504      UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1);  //     UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1);
505      UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2);  //     UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2);
506      if( !test1 || !test2 ){  //     if( !test1 || !test2 ){
507          if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl;  //      if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl;
508          TrkParams::calib.VALIDATION = 0;  //      TrkParams::calib.VALIDATION = 0;
509      }  //     }
510      if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl;  //     if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl;
511    
512      for(Int_t i=0;i<6;i++){  //     for(Int_t i=0;i<6;i++){
513          dspn1=calibdata1->DSPnumber[i]-1;  //      dspn1=calibdata1->DSPnumber[i]-1;
514          dspn2=calibdata2->DSPnumber[i]-1;  //      dspn2=calibdata2->DSPnumber[i]-1;
515          /*     cout<<"dspn1= "<<dspn1<<"   dspn2= "<<dspn2<<endl; */  //      /*     cout<<"dspn1= "<<dspn1<<"   dspn2= "<<dspn2<<endl; */
516          for(Int_t ii=0;ii<3072;ii++){  //      for(Int_t ii=0;ii<3072;ii++){
517              Int_t j=(ii/128);  //          Int_t j=(ii/128);
518              Int_t jj=ii-j*128;  //          Int_t jj=ii-j*128;
519              if(dspn1>=0 && dspn1<12){  //          if(dspn1>=0 && dspn1<12){
520                  ca->pedestal_t[jj][j][dspn1]=aint(calibdata1->DSPped_par[i][ii]);  //              ca->pedestal_t[jj][j][dspn1]=aint(calibdata1->DSPped_par[i][ii]);
521                  ca->sigma_t[jj][j][dspn1]=anint(calibdata1->DSPsig_par[i][ii]);  //              ca->sigma_t[jj][j][dspn1]=anint(calibdata1->DSPsig_par[i][ii]);
522              }  //          }
523              if(dspn2>=0 && dspn2<12){  //          if(dspn2>=0 && dspn2<12){
524                  ca->pedestal_t[jj][j][dspn2]=aint(calibdata2->DSPped_par[i][ii]);  //              ca->pedestal_t[jj][j][dspn2]=aint(calibdata2->DSPped_par[i][ii]);
525                  ca->sigma_t[jj][j][dspn2]=anint(calibdata2->DSPsig_par[i][ii]);  //              ca->sigma_t[jj][j][dspn2]=anint(calibdata2->DSPsig_par[i][ii]);
526              }    //          }  
527          };  //      };
528      };  //     };
529                    
530      tr1->Delete();  //     tr1->Delete();
531      tr2->Delete();  //     tr2->Delete();
532  };  // };
533  /**  /**
534   * Method to fill the tracker calibration-parameter struct from default calibration   * Method to fill the tracker calibration-parameter struct from default calibration
535   */   */
# Line 494  void TrkParams::FillMask(TFile* f0, Int_ Line 558  void TrkParams::FillMask(TFile* f0, Int_
558              //-------------------------              //-------------------------
559              tr = (TTree*)f0->Get("CalibTrk1");                tr = (TTree*)f0->Get("CalibTrk1");  
560              tr->SetBranchAddress("CalibTrk1",calib->GetPointerTo());              tr->SetBranchAddress("CalibTrk1",calib->GetPointerTo());
561              tr->GetEntry(ev_reg1);              if ( tr->GetEntry(ev_reg1) <= 0 ) throw -36;//EM
562          }          }
563          if(i==1){          if(i==1){
564              //-------------------------              //-------------------------
# Line 502  void TrkParams::FillMask(TFile* f0, Int_ Line 566  void TrkParams::FillMask(TFile* f0, Int_
566              //-------------------------              //-------------------------
567              tr = (TTree*)f0->Get("CalibTrk2");              tr = (TTree*)f0->Get("CalibTrk2");
568              tr->SetBranchAddress("CalibTrk2",calib->GetPointerTo());              tr->SetBranchAddress("CalibTrk2",calib->GetPointerTo());
569              tr->GetEntry(ev_reg2);              if ( tr->GetEntry(ev_reg2) <= 0 ) throw -36;
570          }          }
571          for(Int_t ipkt=0; ipkt<NPLANE; ipkt++){          for(Int_t ipkt=0; ipkt<NPLANE; ipkt++){
572              Int_t view   = calib->GetView(ipkt);              Int_t view   = calib->GetView(ipkt);
# Line 576  Bool_t TrkParams::LoadCalib( ){ Line 640  Bool_t TrkParams::LoadCalib( ){
640          cout << " - full+truncated parameters "<<endl;          cout << " - full+truncated parameters "<<endl;
641      }      }
642      TrkParams::FillACalibFrom(f0_c,calib.EV_ROOT_CALIBTRK1,calib.EV_ROOT_CALIBTRK2);      TrkParams::FillACalibFrom(f0_c,calib.EV_ROOT_CALIBTRK1,calib.EV_ROOT_CALIBTRK2);
643      if(TrkParams::VerboseMode())cout << " - VK-mask "<<endl;      if(TrkParams::VerboseMode())cout << " - VK-mask (RUN-by-RUN)"<<endl;
644      TrkParams::FillMask(f0_c,calib.EV_ROOT_CALIBTRK1,calib.EV_ROOT_CALIBTRK2);      TrkParams::FillMask(f0_c,calib.EV_ROOT_CALIBTRK1,calib.EV_ROOT_CALIBTRK2);
645    
646      // =============================================================      // =============================================================
# Line 616  Int_t TrkParams::GetIndex( UInt_t type ) Line 680  Int_t TrkParams::GetIndex( UInt_t type )
680   * @param dbc   Database   * @param dbc   Database
681   * @param type  Parameter type   * @param type  Parameter type
682   * @return FALSE if parameter set fails.   * @return FALSE if parameter set fails.
683   * 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.
684   * If dbc==NULL, try to open a connection taking DB-connection   * If dbc==NULL, try to open a connection taking DB-connection
685   * parameters from PAMELA environment variables.   * parameters from PAMELA environment variables.
686   */   */
687  Bool_t TrkParams::Set( GL_RUN* glrun , TSQLServer* dbc , UInt_t type){  Bool_t TrkParams::Set( GL_RUN* glrun , TSQLServer* dbc , UInt_t type, UInt_t abstime){
688    
689    
690      UInt_t index = TrkParams::GetIndex( type );      UInt_t index = TrkParams::GetIndex( type );
691      if(index < 0)return false;      if(index < 0)return false;
692    
693      UInt_t runheadtime=0;      if(TrkParams::VerboseMode())
694          cout <<"Calling Bool_t TrkParams::Set(GL_RUN* "<<glrun<<" ,TSQLServer* "<<dbc<<" ,UInt_t "<<type<<" ,UInt_t " <<abstime << " ) >> (**WARNING** check that this is all ok!! )"<<endl;
695    
696        UInt_t runheadtime=1;
697      UInt_t runid=0;      UInt_t runid=0;
698  //    UInt_t runheadtime = numeric_limits<UInt_t>::max();  //    UInt_t runheadtime = numeric_limits<UInt_t>::max();
699      if(glrun){      if(glrun){
700          runheadtime = glrun->RUNHEADER_TIME;          runheadtime = glrun->RUNHEADER_TIME;
701          runid       = glrun->ID;          runid       = glrun->ID;
702      }else cout <<"Bool_t TrkParams::Set(GL_RUN*,TSQLServer*,UInt_t) >> Missing run info -- taking first entry (**WARNING** check that this is ok!! )"<<endl;      }else
703          cout <<"Bool_t TrkParams::Set(GL_RUN* "<<glrun<<" ,TSQLServer* "<<dbc<<" ,UInt_t "<<type<<" ,UInt_t " <<abstime << " ) >> GL_RUN==NULL -- taking first entry (**WARNING** check that this is ok!! )"<<endl;
704    
 //    if(TrkParams::VerboseMode())  
     cout << "<< set TrkParams type "<<type<<" from DB << RUN "<<runid<<endl;  
705    
706        if( !abstime || !simuflag ) abstime = runheadtime;// EM: if simu?
707    
708      if( !TrkParams::IsLoaded(type) ||      if(TrkParams::VerboseMode())
709          runheadtime < gl[index].FROM_TIME   ||        cout << "TrkParams::IsLoaded(type)=" << TrkParams::IsLoaded(type) << " abstime=" << abstime << " runheadtime=" << runheadtime << " gl[index].FROM_TIME=" << gl[index].FROM_TIME << " gl[index].TO_TIME=" << gl[index].TO_TIME << endl;
         runheadtime > gl[index].TO_TIME     ||    
         false ){  
   
         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;      
             stringstream myquery;  // EMILIANO  
             myquery.str("");  // EMILIANO  
             myquery << "SET time_zone='+0:00'";  // EMILIANO  
             dbc->Query(myquery.str().c_str());  // EMILIANO  
             if(TrkParams::VerboseMode()){  
                 cout << " ...done"<<endl;  
                 cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;  
             }  
         }  
   
         GL_PARAM q4;  
         if( q4.Query_GL_PARAM(runheadtime,type,dbc) )return false;  
   
         gl[index]     = q4;  
         glpath[index] = q4.PATH+q4.NAME;  
         glload[index] = false;  
   
         return true;  
710    
711        if( !TrkParams::IsLoaded(type) ||
712            abstime < gl[index].FROM_TIME   ||
713            abstime > gl[index].TO_TIME     ||      
714            false ){
715          
716          if(TrkParams::VerboseMode())
717            cout << "<< set TrkParams type "<<type<<" from DB << RUN "<<runid<<endl;
718          
719          bool LOCAL_CONNECTION = false;
720          if( !dbc || (dbc && !dbc->IsConnected()) ){
721            
722            //          if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl;
723            dbc = TrkParams::SetDBConnection();
724            if(dbc && dbc->IsConnected())LOCAL_CONNECTION = true;
725            
726          }
727          
728          GL_PARAM q4;
729          //        if( q4.Query_GL_PARAM(runheadtime,type,dbc) )return false;      
730          if( q4.Query_GL_PARAM(abstime,type,dbc) )return false;     //VALERIO  
731          if(LOCAL_CONNECTION){
732            dbc->Close();
733            delete dbc;
734            if(TrkParams::DebugMode()){
735              cout << " DB connection closed."<<endl;
736            }          
737          }
738          gl[index]     = q4;
739          glpath[index] = q4.PATH+q4.NAME;
740          glload[index] = false;
741          
742          //return true;
743          
744      }      }
745      return false;      return true;
746        
747  };  };
748  /**  /**
749   * Set tracker parameters proper for the run, from input.   * Set tracker parameters proper for the run, from input.
# Line 724  Bool_t TrkParams::Set(UInt_t type){ Line 778  Bool_t TrkParams::Set(UInt_t type){
778    
779      return Set(0,0,type);      return Set(0,0,type);
780    
 //     UInt_t index = TrkParams::GetIndex( type );  
 //     if(index < 0)return false;  
   
 //     gl[index].TYPE= 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-2/");  
 //          break;  
 //      case 5:  
 //          glpath[index].Append("/trk-param/align_param-Q.A/");  
 //          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 + default path) >>"<<endl;  
 //     cout << "<< set TrkParams type "<<type<<" (from env var PAM_CALIB + default path) >>  **WARNING** does not use DB info !!!!"<<endl;  
   
 // //    return TrkParams::Load(type);  
 //     return true;  
781    
782  };  };
783  /**  /**
# Line 780  Bool_t TrkParams::Set(UInt_t type){ Line 786  Bool_t TrkParams::Set(UInt_t type){
786   * otherwise it set a default path.   * otherwise it set a default path.
787   * @return FALSE if parameter set fails.   * @return FALSE if parameter set fails.
788   */   */
789    
790  Bool_t  TrkParams::Set( ){  Bool_t  TrkParams::Set( ){
791    
 //    Bool_t connected = false;  
 //    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;  
 //     }  
 //     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;  
792    
793      for(Int_t i=0; i<NTYPES; i++)if ( !TrkParams::Set(trkparamtype[i])) return false;      for(Int_t i=0; i<NTYPES; i++)if ( !TrkParams::Set(trkparamtype[i])) return false;
794    
# Line 827  Bool_t TrkParams::Load(UInt_t type){ Line 804  Bool_t TrkParams::Load(UInt_t type){
804            
805      Int_t index = TrkParams::GetIndex( type );      Int_t index = TrkParams::GetIndex( type );
806      if( index<0 )return false;      if( index<0 )return false;
807      if( glload[index] )return true;      if( glload[index] )return false;
   
808      if( glpath[index].IsNull() )TrkParams::Set(type);      if( glpath[index].IsNull() )TrkParams::Set(type);
809    
810      switch( type ){      switch( type ){
# Line 912  Bool_t TrkParams::Load(UInt_t type){ Line 888  Bool_t TrkParams::Load(UInt_t type){
888  }  }
889    
890  Bool_t TrkParams::Load( ){  Bool_t TrkParams::Load( ){
891      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;
892      return true;      for(Int_t i=0 ; i<NTYPES; i++)
893          if(!glload[i] && trkparamtype[i]>0 )
894            if( !TrkParams::Load(trkparamtype[i]) )
895              result = false;
896        return result;
897  };  };
898  Bool_t TrkParams::IsLoaded( ){  Bool_t TrkParams::IsLoaded( ){
899      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;
900      return true;      return true;
901  };  };
902    
903    /**
904     * Get ADC-to-MIP conversion parameters
905     * @param nl ladder number (0-2)
906     * @param nv view number (0-11)
907     */
908    float TrkParams::GetMIP(int nl, int nv){
909        TrkParams::Load(2);
910        if( !TrkParams::IsLoaded(2) )return 0.;
911        return adc2mip_.mip[nl][nv];
912    }
913    
914  /**  /**
915   * Get BY (kGauss)   * Get BY (kGauss)
# Line 956  float TrkParams::GetBZ(float* v){ Line 946  float TrkParams::GetBZ(float* v){
946  }  }
947    
948    
   
949  /**  /**
950   * \brief Set tracking mode (0=standard. 1=???)   * \brief Set tracking mode (0=standard. 1=???)
951   */   */
952  void TrkParams::SetTrackingMode(int trackmode) {  void TrkParams::SetTrackingMode(int trackmode) {
953      init__mini_trackmode = trackmode;      init__mini_trackmode = trackmode;
954      SetTrackingMode();      SetTrackingMode(); //fill F77 common
955  };  };
956  /**  /**
957   * \brief Set fit-precision factor (typical value fact=100.)   * \brief Set fit-precision factor (typical value fact=100.)
958   */   */
959  void TrkParams::SetPrecisionFactor(double fact){  void TrkParams::SetPrecisionFactor(double fact){
960      init__mini_fact      = fact;      init__mini_fact      = fact;
961      SetPrecisionFactor();      SetPrecisionFactor(); //fill F77 common
962  };  };
963  /**  /**
964   * \brief Set minimum number of step in track fitting   * \brief Set minimum number of step in track fitting
965   */   */
966  void TrkParams::SetStepMin(int istepmin){  void TrkParams::SetStepMin(int istepmin){
967      init__mini_istepmin  = istepmin;      init__mini_istepmin  = istepmin;
968      SetStepMin();      SetStepMin(); //fill F77 common
969    };
970    /**
971     * \brief Set deltaB parameters (id=0,1)
972     */
973    void TrkParams::SetDeltaB(int id,double db){
974        if(id!=0 && id!=1)cout << "void TrkParams::SetDeltaB(int id,double db) -- wrong input parameters: "<<id<<" "<<db<<endl;
975        if(id==0)init__deltab_0 = db;
976        if(id==1)init__deltab_1 = db;
977        SetDeltaB(); //fill F77 common
978    };
979    /**
980     * \brief Set DLT-grkuta precision factor (default 1.e-4)
981     */
982    void TrkParams::SetDLT(double fact){
983        init__dlt               = fact;
984        SetDLT(); //fill F77 common
985  };  };
986    
987  /**  /**
988   * Fill F77 commons with PFA settings   * \brief Fill F77 commons with PFA settings
989   */   */
990  void TrkParams::SetPFA(){  void TrkParams::SetPFA(){
991      sw_.pfaid = init__pfa;          sw_.pfaid = init__pfa;    
# Line 1007  void TrkParams::SetPFA(){ Line 1012  void TrkParams::SetPFA(){
1012   */   */
1013  void TrkParams::SetPFA(int pfaid){  void TrkParams::SetPFA(int pfaid){
1014      init__pfa  = pfaid;      init__pfa  = pfaid;
1015      SetPFA();      SetPFA(); //fill F77 common
1016  };  };
1017  /**  /**
1018   * \brief Set p.f.a. angular intervals   * \brief Set p.f.a. angular intervals
1019   *   *
1020   * This methods allows to set these amgular intervals to apply ETA2,ETA3 or ETA4   * This methods allows to set amgular intervals to apply ETA2,ETA3 or ETA4
1021   * algorythm, in case ETA or ETAL is chosen (see TrkParams::SetPFA(int pfaid)).   * algorythm, in case ETA or ETAL is set (see TrkParams::SetPFA(int pfaid)).
1022   * @param v Pointer to a vector of 12 components, which represent the   * @param v Pointer to a vector of 12 components, which represent the
1023   * angular limits for ETA2,ETA3 and ETA4, for x and y views, respectivelly.   * angular limits for ETA2,ETA3 and ETA4, for x and y views, respectivelly.
1024   *   *
# Line 1023  void TrkParams::SetPFA(float *v){ Line 1028  void TrkParams::SetPFA(float *v){
1028          init__pfa_e234ax[i]  = v[i];          init__pfa_e234ax[i]  = v[i];
1029          init__pfa_e234ay[i]  = v[i+6];          init__pfa_e234ay[i]  = v[i+6];
1030      }      }
1031      SetPFA();      SetPFA(); //fill F77 common
1032  };  };
1033    
1034    
# Line 1042  void TrkParams::SetPFA(float *v){ Line 1047  void TrkParams::SetPFA(float *v){
1047   */   */
1048  float TrkParams::GetResolution(int view, float angle){  float TrkParams::GetResolution(int view, float angle){
1049      float res = 1000;      float res = 1000;
1050      if( init__pfa == 0 )res = riseta_(&view,&angle);      if     ( init__pfa == 0 )res = riseta_(&view,&angle);
1051        else if( init__pfa == 5 )res = riseta_(&view,&angle);
1052      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;
1053      return res;      return res;
1054  }  }
1055    
1056    /**
1057     * Returns the number of angular bins for p.f.a. parameters
1058     */
1059    int TrkParams::GetPFA_NbinsAngle(){
1060        TrkParams::Load(4);
1061        if( !TrkParams::IsLoaded(4) ){
1062            cout << "int TrkParams::GetPFA_NbinsAngle() --- ERROR --- p.f.a. parameters  not loaded"<<endl;
1063            return 0;
1064        }
1065        return pfa_.nangbin;
1066    };
1067    /**
1068     * Returns the number of eta bins for p.f.a. parameters
1069     */
1070    int TrkParams::GetPFA_NbinsETA(){
1071        TrkParams::Load(4);
1072        if( !TrkParams::IsLoaded(4) ){
1073            cout << "int TrkParams::GetPFA_NbinsETA() --- ERROR --- p.f.a. parameters  not loaded"<<endl;
1074            return 0;
1075        }
1076        return pfa_.netaval;
1077    };
1078    
1079    /**
1080     * Returns the pointer to a vector ( of size TrkParams::GetPFA_NbinsETA() ),
1081     * with eta-correction values for each eta bin.
1082     * Bin extremes are given by float* TrkParams::GetPFA_ETAabs(pfa,int).
1083     *
1084     * @param pfa "ETA2","ETA3" or "ETA4"
1085     * @param nview View number (0-11)
1086     * @param nladder Ladder number (0-2)
1087     * @param nang Angular bin (@see int TrkParams::GetPFA_NbinsAngle()).
1088     *
1089     * NB! the vector must be deallocated!
1090     * delete [] vname;
1091     */
1092    float* TrkParams::GetPFA_ETAcorr(TString pfa, int nview, int nladder, int nang){
1093    
1094        TrkParams::Load(4);
1095        if( !TrkParams::IsLoaded(4) ){
1096            cout << "float* TrkParams::GetPFA_ETAcorr(TString pfa, int nview, int nladder, int nang) --- ERROR --- p.f.a. parameters  not loaded"<<endl;
1097            return 0;
1098        }
1099      
1100        int nbins = GetPFA_NbinsETA();
1101        if(!nbins)return 0;
1102    
1103        if( nview   <   0 ||
1104            nview   >= 12 ||
1105            nladder <   0 ||
1106            nladder >=  3 ||
1107            nang    <   0 ||
1108            nang    >=  GetPFA_NbinsAngle() ||
1109            false)return 0;
1110    
1111         float *fcorr = new float [nbins];
1112    //    float fcorr[nbins];
1113    
1114        if(!pfa.CompareTo("ETA2",TString::kIgnoreCase)){
1115            for(int ib=0; ib<nbins; ib++){
1116                fcorr[ib] = pfa_.feta2[nang][nladder][nview][ib];
1117    //          cout << pfa_.eta2[nang][ib] << " - " <<  pfa_.feta2[nang][nladder][nview][ib]<<endl;;
1118            }
1119        }else if (!pfa.CompareTo("ETA3",TString::kIgnoreCase)){
1120            for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.feta3[nang][nladder][nview][ib];
1121        }else if (!pfa.CompareTo("ETA4",TString::kIgnoreCase)){
1122            for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.feta4[nang][nladder][nview][ib];
1123        }else{
1124            cout << "float* TrkParams::GetPFA_ETAcorr("<<pfa<<",...) ---  pfa parameters not implemented "<<endl;
1125            return 0;
1126        }    
1127    
1128        return fcorr;
1129    
1130    };
1131    
1132    /**
1133     * Returns the pointer to a vector with eta-bin extremes (@see float* TrkParams::GetPFA_ETAcorr(TString,int,int,int)).
1134     *
1135     * @param pfa "ETA2","ETA3" or "ETA4"
1136     * @param nang Angular bin (@see int TrkParams::GetPFA_NbinsAngle()).
1137     *
1138     * NB the vector must be deallocated
1139     * delete [] vname;
1140     */
1141    float* TrkParams::GetPFA_ETAabs(TString pfa, int nang){
1142      
1143        TrkParams::Load(4);
1144        if( !TrkParams::IsLoaded(4) ){
1145            cout << "float* TrkParams::GetPFA_ETAabs(TString pfa, int nang) --- ERROR --- p.f.a. parameters  not loaded"<<endl;
1146            return 0;
1147        }
1148    
1149        int nbins = GetPFA_NbinsETA();
1150        if(!nbins)return 0;
1151    
1152        float *fcorr = new float [nbins];
1153    //    float fcorr[nbins];
1154        if( nang    <   0 ||
1155            nang    >=  GetPFA_NbinsAngle() ||
1156            false)return 0;
1157    
1158        if(!pfa.CompareTo("ETA2",TString::kIgnoreCase)){
1159            for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta2[nang][ib];
1160        }else if (!pfa.CompareTo("ETA3",TString::kIgnoreCase)){
1161            for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta3[nang][ib];
1162        }else if (!pfa.CompareTo("ETA4",TString::kIgnoreCase)){
1163            for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta4[nang][ib];
1164        }else{
1165            cout << "float* TrkParams::GetPFA_ETAabs("<<pfa<<",...) ---  pfa parameters not implemented "<<endl;
1166            return 0;
1167        }    
1168    
1169        return fcorr;
1170    
1171    };
1172    /**
1173     * Returns the "Landi-correction".
1174     *
1175     * @param nview View number (0-11)
1176     * @param nladder Ladder number (0-2)
1177     * @param nang Angular bin (@see int TrkParams::GetPFA_NbinsAngle()).
1178     */
1179    float TrkParams::GetPFA_ETAlandi(int nview, int nladder, int nang){
1180    
1181    //     TrkParams::Load(4);
1182    //     if( !TrkParams::IsLoaded(4) ){
1183    //      cout << "float* TrkParams::GetPFA_ETAlandi(int nview, int nladder, int nang) --- ERROR --- p.f.a. parameters  not loaded"<<endl;
1184    //      return 0;
1185    //     }
1186        int nbins = GetPFA_NbinsAngle();
1187        if(!nbins)return 0;
1188    
1189        if( nview   <   0 ||
1190            nview   >= 12 ||
1191            nladder <   0 ||
1192            nladder >=  3 ||
1193            nang    <   0 ||
1194            nang    >=  nbins ||
1195            false)return 0;
1196      
1197    
1198        return pfa_.fcorr[nang][nladder][nview];
1199    
1200    };
1201    
1202    /**
1203     * Returns the index (0, n.bin-1) of the angular bin for pfa parameters
1204     * @param angle Effective angle (deg)
1205     */
1206    int TrkParams::GetPFA_AngleBin(float angle){
1207        
1208        int nangbin = TrkParams::GetPFA_NbinsAngle();
1209        int istart = (int)(nangbin/2);
1210        int idbin = -1;
1211    //    cout << angle <<" ??" << endl;
1212        if( angle > pfa_.angR[istart] ){
1213            idbin = nangbin-1;
1214            for(int id=istart+1; id<nangbin; id++ ){
1215    //          cout << id << endl;
1216                if( pfa_.angR[id] >= angle ){
1217                    idbin = id;
1218                    break;
1219                }
1220            }
1221        }else{
1222            idbin = 0;
1223            for(int id=istart; id>=0; id-- ){
1224    //          cout << id << endl;
1225                if( pfa_.angL[id] < angle ){
1226                    idbin = id;
1227                    break;
1228                }
1229            }
1230    
1231        }
1232    //    cout << ">>> "<<idbin<<" "<<pfa_.angL[idbin]<<" "<<pfa_.angR[idbin]<<endl;
1233        return idbin;
1234    }
1235    
1236    
1237    

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.30

  ViewVC Help
Powered by ViewVC 1.1.23