/[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.20 by pam-fi, Tue Jan 15 14:29:46 2008 UTC
# Line 35  int    TrkParams::init__mini_istepmin  = Line 35  int    TrkParams::init__mini_istepmin  =
35  double TrkParams::init__mini_fact      = 1.e4; //100.;  double TrkParams::init__mini_fact      = 1.e4; //100.;
36  float  TrkParams::init__pfa_e234ax[]   = {0.,10.,10.,15.,15.,90.};  float  TrkParams::init__pfa_e234ax[]   = {0.,10.,10.,15.,15.,90.};
37  float  TrkParams::init__pfa_e234ay[]   = {0.,20.,90.,90.,90.,90.};  float  TrkParams::init__pfa_e234ay[]   = {0.,20.,90.,90.,90.,90.};
38    double TrkParams::init__deltab_0       = 0.;
39    double TrkParams::init__deltab_1       = 0.;
40    double TrkParams::init__dlt            = 1.e-5;
41    
42  TrkParams::TrkParams(){  TrkParams::TrkParams(){
43    
# Line 54  float anint(float f){ Line 57  float anint(float f){
57      ret1=(float)ret;      ret1=(float)ret;
58      return ret1;              return ret1;        
59  }  }
60    
61    /**
62     * Static method to open a DB connection.
63     * HOST, USER and PASSWORD are taken from enviroment variables $PAM_DBHOST,
64     * $PAM_DBUSER and $PAM_DBPSW
65     * NB! The method create a new connection, which has to be closed by the user.
66     */
67    TSQLServer* TrkParams::SetDBConnection(){
68    
69        TString host = "mysql://localhost/pamelaprod";
70        TString user = "anonymous";
71        TString psw = "";
72        const char *pamdbhost=gSystem->Getenv("PAM_DBHOST");
73        const char *pamdbuser=gSystem->Getenv("PAM_DBUSER");
74        const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW");
75        if ( !pamdbhost ) pamdbhost = "";
76        if ( !pamdbuser ) pamdbuser = "";
77        if ( !pamdbpsw ) pamdbpsw = "";
78        if ( strcmp(pamdbhost,"") ) host = pamdbhost;
79        if ( strcmp(pamdbuser,"") ) user = pamdbuser;
80        if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw;
81        if(TrkParams::VerboseMode()){
82            cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
83            cout<<"Connecting to DB"<<endl;
84            cout<<"HOST "<<host<<endl;
85            cout<<"USER "<<user<<endl;
86            cout<<"PSW  "<<psw<<endl;
87        }
88        TSQLServer *dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
89        if( !dbc )return NULL;
90        if( !dbc->IsConnected() )return NULL;    
91        stringstream myquery;  // EMILIANO
92        myquery.str("");  // EMILIANO
93        myquery << "SET time_zone='+0:00'";  // EMILIANO
94        dbc->Query(myquery.str().c_str());  // EMILIANO
95        if(TrkParams::VerboseMode()){
96            cout << " ...done"<<endl;
97            cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
98        }
99        
100        return dbc;
101    }
102  /**  /**
103   * \brief Static method to set the calibration to be loaded.   * \brief Static method to set the calibration to be loaded.
104    
# Line 73  Bool_t TrkParams::SetCalib( GL_RUN *glru Line 118  Bool_t TrkParams::SetCalib( GL_RUN *glru
118          glrun->RUNHEADER_TIME > calib.TO_TIME     ||          glrun->RUNHEADER_TIME > calib.TO_TIME     ||
119          false ){          false ){
120    
 //      cout <<">>> isloaded?      "<< CalibIsLoaded() << endl;  
 //      cout <<">>> trk_calib_used "<< glrun->TRK_CALIB_USED<<endl;  
 //      cout <<">>> 104 loaded?    "<< calib104 <<endl;  
 //      cout <<">>> from time      "<< calib.FROM_TIME<<endl;  
 //      cout <<">>> to time        "<< calib.TO_TIME<<endl;  
 //      if( !dbc || (dbc && !dbc->IsConnected()) ){  
   
 //          if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl;  
 //          TString host = "mysql://localhost/pamelaprod";  
 //          TString user = "anonymous";  
 //          TString psw = "";  
 //          const char *pamdbhost=gSystem->Getenv("PAM_DBHOST");  
 //          const char *pamdbuser=gSystem->Getenv("PAM_DBUSER");  
 //          const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW");  
 //          if ( !pamdbhost ) pamdbhost = "";  
 //          if ( !pamdbuser ) pamdbuser = "";  
 //          if ( !pamdbpsw ) pamdbpsw = "";  
 //          if ( strcmp(pamdbhost,"") ) host = pamdbhost;  
 //          if ( strcmp(pamdbuser,"") ) user = pamdbuser;  
 //          if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw;  
 //          if(TrkParams::VerboseMode()){  
 //              cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;  
 //              cout<<"Connecting to DB"<<endl;  
 //              cout<<"HOST "<<host<<endl;  
 //              cout<<"USER "<<user<<endl;  
 //              cout<<"PSW  "<<psw<<endl;  
 //          }  
 //          dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());  
 //          if( !dbc )return false;  
 //          if( !dbc->IsConnected() )return false;      
 //          if(TrkParams::VerboseMode()){  
 //              cout << " ...done"<<endl;  
 //              cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;  
 //          }  
 //      }  
121    
122          GL_TRK_CALIB q2;          GL_TRK_CALIB q2;
123          GL_ROOT q3;          GL_ROOT q3;
124          GL_PARAM q4;          GL_PARAM q4;
125    
126    
127            bool LOCAL_CONNECTION = false;
128            if( !dbc || (dbc && !dbc->IsConnected()) ){
129    
130                if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl;
131                dbc = TrkParams::SetDBConnection();
132                if(dbc && dbc->IsConnected())LOCAL_CONNECTION = true;
133    
134            }
135    
136                    
137          if(TrkParams::VerboseMode()){          if(TrkParams::VerboseMode()){
138              cout << "--------------------------------------"<<endl;              cout << "--------------------------------------"<<endl;
# Line 138  Bool_t TrkParams::SetCalib( GL_RUN *glru Line 159  Bool_t TrkParams::SetCalib( GL_RUN *glru
159              calibpatht = q4.PATH + q4.NAME;              calibpatht = q4.PATH + q4.NAME;
160          }          }
161                    
162            if(LOCAL_CONNECTION){
163                dbc->Close();
164                delete dbc;
165            }
166    
167  //    return TrkParams::LoadCalib();  //    return TrkParams::LoadCalib();
168          return true;          return true;
# Line 616  Int_t TrkParams::GetIndex( UInt_t type ) Line 641  Int_t TrkParams::GetIndex( UInt_t type )
641   * @param dbc   Database   * @param dbc   Database
642   * @param type  Parameter type   * @param type  Parameter type
643   * @return FALSE if parameter set fails.   * @return FALSE if parameter set fails.
644   * If glrun==NULL the last parameter entry from GL_PARAM table is set.   * If glrun==NULL the first parameter entry from GL_PARAM table is set.
645   * If dbc==NULL, try to open a connection taking DB-connection   * If dbc==NULL, try to open a connection taking DB-connection
646   * parameters from PAMELA environment variables.   * parameters from PAMELA environment variables.
647   */   */
# Line 643  Bool_t TrkParams::Set( GL_RUN* glrun , T Line 668  Bool_t TrkParams::Set( GL_RUN* glrun , T
668          runheadtime > gl[index].TO_TIME     ||            runheadtime > gl[index].TO_TIME     ||  
669          false ){          false ){
670    
671            bool LOCAL_CONNECTION = false;
672          if( !dbc || (dbc && !dbc->IsConnected()) ){          if( !dbc || (dbc && !dbc->IsConnected()) ){
673    
674              if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl;              if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl;
675              TString host = "mysql://localhost/pamelaprod";              dbc = TrkParams::SetDBConnection();
676              TString user = "anonymous";              if(dbc && dbc->IsConnected())LOCAL_CONNECTION = true;
677              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;  
             }  
678          }          }
679    
680          GL_PARAM q4;          GL_PARAM q4;
681          if( q4.Query_GL_PARAM(runheadtime,type,dbc) )return false;          if( q4.Query_GL_PARAM(runheadtime,type,dbc) )return false;      
682            if(LOCAL_CONNECTION){
683                dbc->Close();
684                delete dbc;
685            }
686          gl[index]     = q4;          gl[index]     = q4;
687          glpath[index] = q4.PATH+q4.NAME;          glpath[index] = q4.PATH+q4.NAME;
688          glload[index] = false;          glload[index] = false;
# Line 724  Bool_t TrkParams::Set(UInt_t type){ Line 726  Bool_t TrkParams::Set(UInt_t type){
726    
727      return Set(0,0,type);      return Set(0,0,type);
728    
 //     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;  
729    
730  };  };
731  /**  /**
# Line 782  Bool_t TrkParams::Set(UInt_t type){ Line 736  Bool_t TrkParams::Set(UInt_t type){
736   */   */
737  Bool_t  TrkParams::Set( ){  Bool_t  TrkParams::Set( ){
738    
 //    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;  
739    
740      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;
741    
# Line 956  float TrkParams::GetBZ(float* v){ Line 880  float TrkParams::GetBZ(float* v){
880  }  }
881    
882    
   
883  /**  /**
884   * \brief Set tracking mode (0=standard. 1=???)   * \brief Set tracking mode (0=standard. 1=???)
885   */   */
886  void TrkParams::SetTrackingMode(int trackmode) {  void TrkParams::SetTrackingMode(int trackmode) {
887      init__mini_trackmode = trackmode;      init__mini_trackmode = trackmode;
888      SetTrackingMode();      SetTrackingMode(); //fill F77 common
889  };  };
890  /**  /**
891   * \brief Set fit-precision factor (typical value fact=100.)   * \brief Set fit-precision factor (typical value fact=100.)
892   */   */
893  void TrkParams::SetPrecisionFactor(double fact){  void TrkParams::SetPrecisionFactor(double fact){
894      init__mini_fact      = fact;      init__mini_fact      = fact;
895      SetPrecisionFactor();      SetPrecisionFactor(); //fill F77 common
896  };  };
897  /**  /**
898   * \brief Set minimum number of step in track fitting   * \brief Set minimum number of step in track fitting
899   */   */
900  void TrkParams::SetStepMin(int istepmin){  void TrkParams::SetStepMin(int istepmin){
901      init__mini_istepmin  = istepmin;      init__mini_istepmin  = istepmin;
902      SetStepMin();      SetStepMin(); //fill F77 common
903    };
904    /**
905     * \brief Set deltaB parameters (id=0,1)
906     */
907    void TrkParams::SetDeltaB(int id,double db){
908        if(id!=0 && id!=1)cout << "void TrkParams::SetDeltaB(int id,double db) -- wrong input parameters: "<<id<<" "<<db<<endl;
909        if(id==0)init__deltab_0 = db;
910        if(id==1)init__deltab_1 = db;
911        SetDeltaB(); //fill F77 common
912    };
913    /**
914     * \brief Set DLT-grkuta precision factor (default 1.e-4)
915     */
916    void TrkParams::SetDLT(double fact){
917        init__dlt               = fact;
918        SetDLT(); //fill F77 common
919  };  };
920    
921  /**  /**
922   * Fill F77 commons with PFA settings   * \brief Fill F77 commons with PFA settings
923   */   */
924  void TrkParams::SetPFA(){  void TrkParams::SetPFA(){
925      sw_.pfaid = init__pfa;          sw_.pfaid = init__pfa;    
# Line 1007  void TrkParams::SetPFA(){ Line 946  void TrkParams::SetPFA(){
946   */   */
947  void TrkParams::SetPFA(int pfaid){  void TrkParams::SetPFA(int pfaid){
948      init__pfa  = pfaid;      init__pfa  = pfaid;
949      SetPFA();      SetPFA(); //fill F77 common
950  };  };
951  /**  /**
952   * \brief Set p.f.a. angular intervals   * \brief Set p.f.a. angular intervals
953   *   *
954   * 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
955   * 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)).
956   * @param v Pointer to a vector of 12 components, which represent the   * @param v Pointer to a vector of 12 components, which represent the
957   * angular limits for ETA2,ETA3 and ETA4, for x and y views, respectivelly.   * angular limits for ETA2,ETA3 and ETA4, for x and y views, respectivelly.
958   *   *
# Line 1023  void TrkParams::SetPFA(float *v){ Line 962  void TrkParams::SetPFA(float *v){
962          init__pfa_e234ax[i]  = v[i];          init__pfa_e234ax[i]  = v[i];
963          init__pfa_e234ay[i]  = v[i+6];          init__pfa_e234ay[i]  = v[i+6];
964      }      }
965      SetPFA();      SetPFA(); //fill F77 common
966  };  };
967    
968    

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

  ViewVC Help
Powered by ViewVC 1.1.23