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

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.19

  ViewVC Help
Powered by ViewVC 1.1.23