/[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.2 by pam-fi, Thu Mar 15 12:17:09 2007 UTC revision 1.13 by pam-fi, Wed Mar 5 17:00:18 2008 UTC
# Line 9  Line 9 
9  #include <TString.h>  #include <TString.h>
10  #include <TSQLServer.h>  #include <TSQLServer.h>
11  #include <TSystem.h>  #include <TSystem.h>
12    #include <TROOT.h> // EMILIANO: needed to compile with ROOT > 5.16/x
13    
14  #include <GLTables.h>  #include <GLTables.h>
15  #include <TrkStruct.h>  #include <TrkStruct.h>
16  #include <TrkCalib.h>  #include <TrkCalib.h>
17    
18  #define NTYPES 10  #define NTYPES 10
19    #define NGF 14
20    
21  /**  /**
22   * \brief Class to store tracker parameter information   * \brief Class to store tracker parameter information
23   *   *
24   * Tracker parameters include calibration parameters (PED, SIG and BAD) and   * Tracker parameters include calibration parameters (PED, SIG and BAD),
25   * other parameters.   * parameters loaded from DB (alignment, ADC-to-mip, etc. ) and some parameters
26   * The first can be either those evaluated online or default values.   * to configure tracker processing (PFA, ecc...).
27   * The second are labelled according to the DB convention:   *
28     * Calibrations can be either those evaluated online or default values.
29     * External parameter are labelled according to the DB convention:
30   *   *
31   * type  description   * type  description
32   * -----------------   * -----------------
# Line 34  Line 38 
38   * 6     VA1 mask   * 6     VA1 mask
39   * 7     default calibration   * 7     default calibration
40   *   *
41     * Internal parameters are initialized to default values
42    *
43   * TrkParams::SetCalib(...) and TrkParams::Set(...) methods allow to set   * TrkParams::SetCalib(...) and TrkParams::Set(...) methods allow to set
44   * 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
45   * run id) and from environment variable PAM_CALIB.   * run id) and from environment variable PAM_CALIB.
# Line 41  Line 47 
47   * F77 common.   * F77 common.
48   *   *
49   * Tracker libraries (TrkLevel0, TrkLevel1 and TrkLevel2) implement automatic   * Tracker libraries (TrkLevel0, TrkLevel1 and TrkLevel2) implement automatic
50   * setting (eother from DB or from environment variables) and loading of parameters.   * setting (either from DB or from environment variables) and loading of parameters.
51   * If one needs to load custom parameters, it is enough to call TrkParams::Set(...)   * If one needs to load custom parameters, it is enough to call TrkParams::Set(...)
52   * with proper arguments. All the methods are static, and can be used as standalone functions.   * with proper arguments. All the methods are static, and can be used as standalone functions.
53   *   *
# Line 75  public: Line 81  public:
81      static GL_PARAM  gl[NTYPES];      static GL_PARAM  gl[NTYPES];
82      static TString   glpath[NTYPES];      static TString   glpath[NTYPES];
83      static Bool_t    glload[NTYPES];      static Bool_t    glload[NTYPES];
84            // -----------------------------------------------
85        // some parameters to configure tracker processing
86        // -----------------------------------------------
87        static int init__pfa;
88        static int init__mini_trackmode;
89        static int init__mini_istepmin;
90        static double init__mini_fact;
91        static cDbg init__dbg_mode; //debug mode (for both c++ and F77 roiutines)
92        static float init__pfa_e234ax[6]; // angle intervals for eta2-3-4
93        static float init__pfa_e234ay[6]; // angle intervals for eta2-3-4
94        static double init__deltab_0;
95        static double init__deltab_1;
96        static double init__dlt;
97    
98        // ------------------------------------------
99        // nominal z-coordinates to define acceptance
100        // ------------------------------------------
101        static int   nGF;
102        static float zGF[NGF];
103        static float xGF_min[NGF];
104        static float xGF_max[NGF];
105        static float yGF_min[NGF];
106        static float yGF_max[NGF];
107        static TString GF_element[NGF];
108    
109      TrkParams();      TrkParams();
110              
111      // ---------------------------------------------      // ---------------------------------------------
112      // calibration (PED-SIG-BAD)      // calibration (PED-SIG-BAD)
113      // ---------------------------------------------      // ---------------------------------------------
114      static Bool_t SetCalib( GL_RUN* , TSQLServer*  );      static Bool_t SetCalib( GL_RUN* , TSQLServer*  );
115      static Bool_t LoadCalib( );      static Bool_t LoadCalib( );
116      static Bool_t CalibIsLoaded(){ return calibload; };      static Bool_t CalibIsLoaded(){ return calibload; };
117        static UInt_t ValidateTrkCalib( CalibTrk1Event* );
118      static void FillFCalibFrom(TFile* , Int_t , Int_t );//full      static void FillFCalibFrom(TFile* , Int_t , Int_t );//full
119      static void FillTCalibFrom(TFile* , Int_t , Int_t );//truncated      static void FillTCalibFrom(TFile* , Int_t , Int_t );//truncated
120      static void FillTCalibFrom(TString path);      static void FillTCalibFrom(TString path);
# Line 107  public: Line 138  public:
138      static Bool_t IsLoaded( UInt_t type ){return glload[TrkParams::GetIndex(type)];};      static Bool_t IsLoaded( UInt_t type ){return glload[TrkParams::GetIndex(type)];};
139      static Bool_t IsLoaded( );      static Bool_t IsLoaded( );
140    
141      ClassDef(TrkParams,1);      // ---------------------------------------------
142        // retrieve parameters
143        // ---------------------------------------------
144        static float GetBX(float*);
145        static float GetBY(float*);
146        static float GetBZ(float*);
147        static float GetResolution(int,float);
148        static int   GetPFA(){return sw_.pfaid;};
149    
150        // ---------------------------------------------
151        // debug mode
152        // ---------------------------------------------
153    
154        static void SetDebugMode()  {init__dbg_mode.SetDebug();   dbg_=init__dbg_mode;};
155        static void SetVerboseMode(){init__dbg_mode.SetVerbose(); dbg_=init__dbg_mode;};
156        static void SetWarningMode(){init__dbg_mode.SetWarning(); dbg_=init__dbg_mode;};    
157        static void SetQuietMode()  {init__dbg_mode.SetNone();    dbg_=init__dbg_mode;};    
158        static Bool_t DebugMode(){return init__dbg_mode.debug;};
159        static Bool_t WarningMode(){return init__dbg_mode.warning;};
160        static Bool_t VerboseMode(){return init__dbg_mode.verbose;};
161    
162        // ------------------------------------------------
163        // alcuni metodi che non sapevo dove mettere
164        // per inizializzare alcune variabili in F77 common
165        // ------------------------------------------------    
166        // set to default values
167        static void SetTrackingMode()   {track_.trackmode = init__mini_trackmode;};
168        static void SetPrecisionFactor(){track_.fact      = init__mini_fact;     };
169        static void SetStepMin()        {track_.istepmin  = init__mini_istepmin; };
170        static void SetDeltaB()         {deltab_.delta0   = init__deltab_0;
171                                         deltab_.delta1   = init__deltab_1;};    
172        static void SetDLT()            {deltab_.dlt   = init__dlt;};
173        static void SetMiniDefault()    {
174            SetTrackingMode();
175            SetPrecisionFactor();
176            SetStepMin();
177            SetDeltaB();
178            SetDLT();
179        }; //
180        static void SetPFA();
181        
182        // set to custom values
183        static void SetTrackingMode(int);
184        static void SetPrecisionFactor(double);
185        static void SetStepMin(int);
186        static void SetDeltaB(int,double);    
187        static void SetDLT(double);
188        static void SetPFA(int);
189        static void SetPFA(float *);
190        
191        // ---------------------------------------------
192        // varie ed eventuali...
193        // ---------------------------------------------
194        static TSQLServer* SetDBConnection();
195    
196    
197        ClassDef(TrkParams,2);
198    
199  };  };
200    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.13

  ViewVC Help
Powered by ViewVC 1.1.23