/[PAMELA software]/DarthVader/TrackerLevel2/inc/TrkParams.h
ViewVC logotype

Diff of /DarthVader/TrackerLevel2/inc/TrkParams.h

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

revision 1.4 by pam-fi, Fri Apr 27 10:39:57 2007 UTC revision 1.7 by pam-fi, Mon Aug 20 16:07:14 2007 UTC
# Line 19  Line 19 
19  /**  /**
20   * \brief Class to store tracker parameter information   * \brief Class to store tracker parameter information
21   *   *
22   * Tracker parameters include calibration parameters (PED, SIG and BAD) and   * Tracker parameters include calibration parameters (PED, SIG and BAD),
23   * other parameters (alignment, ADC-to-mip, etc. ).   * parameters loaded from DB (alignment, ADC-to-mip, etc. ) and some parameters
24   * The first can be either those evaluated online or default values.   * to configure tracker processing (PFA, ecc...).
25   * The second are labelled according to the DB convention:   *
26     * Calibrations can be either those evaluated online or default values.
27     * External parameter are labelled according to the DB convention:
28   *   *
29   * type  description   * type  description
30   * -----------------   * -----------------
# Line 34  Line 36 
36   * 6     VA1 mask   * 6     VA1 mask
37   * 7     default calibration   * 7     default calibration
38   *   *
39     * Internal parameters are initialized to default values
40    *
41   * TrkParams::SetCalib(...) and TrkParams::Set(...) methods allow to set   * TrkParams::SetCalib(...) and TrkParams::Set(...) methods allow to set
42   * required parameters, from an input path, from the DB (for a given input   * required parameters, from an input path, from the DB (for a given input
43   * run id) and from environment variable PAM_CALIB.   * run id) and from environment variable PAM_CALIB.
# Line 75  public: Line 79  public:
79      static GL_PARAM  gl[NTYPES];      static GL_PARAM  gl[NTYPES];
80      static TString   glpath[NTYPES];      static TString   glpath[NTYPES];
81      static Bool_t    glload[NTYPES];      static Bool_t    glload[NTYPES];
82        // -----------------------------------------------
83        // some parameters to configure tracker processing
84        // -----------------------------------------------
85        static int init__pfa;
86        static int init__mini_trackmode;
87        static int init__mini_istepmin;
88        static double init__mini_fact;
89        static cDbg init__dbg_mode; //debug mode (for both c++ and F77 roiutines)
90            
91      TrkParams();      TrkParams();
92            
# Line 108  public: Line 120  public:
120      static Bool_t IsLoaded( UInt_t type ){return glload[TrkParams::GetIndex(type)];};      static Bool_t IsLoaded( UInt_t type ){return glload[TrkParams::GetIndex(type)];};
121      static Bool_t IsLoaded( );      static Bool_t IsLoaded( );
122    
123        // ---------------------------------------------
124        // retrieve parameters
125        // ---------------------------------------------
126        static float GetBX(float*);
127        static float GetBY(float*);
128        static float GetBZ(float*);
129        static float GetResolution(int,float);
130    
131      // ---------------------------------------------      // ---------------------------------------------
132      // debug mode      // debug mode
133      // ---------------------------------------------      // ---------------------------------------------
     static cDbg dbg_mode; //debug mode (for both c++ and F77 roiutines)  
   
     static void SetDebugMode()  {dbg_mode.SetDebug();   dbg_=dbg_mode;};  
     static void SetVerboseMode(){dbg_mode.SetVerbose(); dbg_=dbg_mode;};  
     static void SetWarningMode(){dbg_mode.SetWarning(); dbg_=dbg_mode;};      
     static Bool_t DebugMode(){return dbg_mode.debug;};  
     static Bool_t WarningMode(){return dbg_mode.warning;};  
     static Bool_t VerboseMode(){return dbg_mode.verbose;};  
134    
135        static void SetDebugMode()  {init__dbg_mode.SetDebug();   dbg_=init__dbg_mode;};
136        static void SetVerboseMode(){init__dbg_mode.SetVerbose(); dbg_=init__dbg_mode;};
137        static void SetWarningMode(){init__dbg_mode.SetWarning(); dbg_=init__dbg_mode;};    
138        static void SetQuietMode()  {init__dbg_mode.SetNone();    dbg_=init__dbg_mode;};    
139        static Bool_t DebugMode(){return init__dbg_mode.debug;};
140        static Bool_t WarningMode(){return init__dbg_mode.warning;};
141        static Bool_t VerboseMode(){return init__dbg_mode.verbose;};
142    
143        // ------------------------------------------------
144        // alcuni metodi che non sapevo dove mettere
145        // per inizializzare alcune variabili in F77 common
146        // ------------------------------------------------    
147        // set to default values
148        static void SetTrackingMode()   {track_.trackmode = init__mini_trackmode;};
149        static void SetPrecisionFactor(){track_.fact      = init__mini_fact;     };
150        static void SetStepMin()        {track_.istepmin  = init__mini_istepmin; };
151        static void SetPFA()            {sw_.pfaid        = init__pfa;           };
152        // set to custom values
153        static void SetTrackingMode(int);
154        static void SetPrecisionFactor(double);
155        static void SetStepMin(int);
156        static void SetPFA(int);
157        
158      ClassDef(TrkParams,2);      ClassDef(TrkParams,2);
159    
160  };  };

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.7

  ViewVC Help
Powered by ViewVC 1.1.23