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> |
20 |
/** |
/** |
21 |
* \brief Class to store tracker parameter information |
* \brief Class to store tracker parameter information |
22 |
* |
* |
23 |
* Tracker parameters include calibration parameters (PED, SIG and BAD) and |
* Tracker parameters include calibration parameters (PED, SIG and BAD), |
24 |
* other parameters. |
* parameters loaded from DB (alignment, ADC-to-mip, etc. ) and some parameters |
25 |
* The first can be either those evaluated online or default values. |
* to configure tracker processing (PFA, ecc...). |
26 |
* The second are labelled according to the DB convention: |
* |
27 |
|
* Calibrations can be either those evaluated online or default values. |
28 |
|
* External parameter are labelled according to the DB convention: |
29 |
* |
* |
30 |
* type description |
* type description |
31 |
* ----------------- |
* ----------------- |
37 |
* 6 VA1 mask |
* 6 VA1 mask |
38 |
* 7 default calibration |
* 7 default calibration |
39 |
* |
* |
40 |
|
* Internal parameters are initialized to default values |
41 |
|
* |
42 |
* TrkParams::SetCalib(...) and TrkParams::Set(...) methods allow to set |
* TrkParams::SetCalib(...) and TrkParams::Set(...) methods allow to set |
43 |
* 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 |
44 |
* run id) and from environment variable PAM_CALIB. |
* run id) and from environment variable PAM_CALIB. |
46 |
* F77 common. |
* F77 common. |
47 |
* |
* |
48 |
* Tracker libraries (TrkLevel0, TrkLevel1 and TrkLevel2) implement automatic |
* Tracker libraries (TrkLevel0, TrkLevel1 and TrkLevel2) implement automatic |
49 |
* setting (eother from DB or from environment variables) and loading of parameters. |
* setting (either from DB or from environment variables) and loading of parameters. |
50 |
* 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(...) |
51 |
* 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. |
52 |
* |
* |
80 |
static GL_PARAM gl[NTYPES]; |
static GL_PARAM gl[NTYPES]; |
81 |
static TString glpath[NTYPES]; |
static TString glpath[NTYPES]; |
82 |
static Bool_t glload[NTYPES]; |
static Bool_t glload[NTYPES]; |
83 |
|
// ----------------------------------------------- |
84 |
|
// some parameters to configure tracker processing |
85 |
|
// ----------------------------------------------- |
86 |
|
static int init__pfa; |
87 |
|
static int init__mini_trackmode; |
88 |
|
static int init__mini_istepmin; |
89 |
|
static double init__mini_fact; |
90 |
|
static cDbg init__dbg_mode; //debug mode (for both c++ and F77 roiutines) |
91 |
|
static float init__pfa_e234ax[6]; // angle intervals for eta2-3-4 |
92 |
|
static float init__pfa_e234ay[6]; // angle intervals for eta2-3-4 |
93 |
|
|
94 |
TrkParams(); |
TrkParams(); |
95 |
|
|
96 |
// --------------------------------------------- |
// --------------------------------------------- |
123 |
static Bool_t IsLoaded( UInt_t type ){return glload[TrkParams::GetIndex(type)];}; |
static Bool_t IsLoaded( UInt_t type ){return glload[TrkParams::GetIndex(type)];}; |
124 |
static Bool_t IsLoaded( ); |
static Bool_t IsLoaded( ); |
125 |
|
|
126 |
ClassDef(TrkParams,1); |
// --------------------------------------------- |
127 |
|
// retrieve parameters |
128 |
|
// --------------------------------------------- |
129 |
|
static float GetBX(float*); |
130 |
|
static float GetBY(float*); |
131 |
|
static float GetBZ(float*); |
132 |
|
static float GetResolution(int,float); |
133 |
|
static int GetPFA(){return sw_.pfaid;}; |
134 |
|
|
135 |
|
// --------------------------------------------- |
136 |
|
// debug mode |
137 |
|
// --------------------------------------------- |
138 |
|
|
139 |
|
static void SetDebugMode() {init__dbg_mode.SetDebug(); dbg_=init__dbg_mode;}; |
140 |
|
static void SetVerboseMode(){init__dbg_mode.SetVerbose(); dbg_=init__dbg_mode;}; |
141 |
|
static void SetWarningMode(){init__dbg_mode.SetWarning(); dbg_=init__dbg_mode;}; |
142 |
|
static void SetQuietMode() {init__dbg_mode.SetNone(); dbg_=init__dbg_mode;}; |
143 |
|
static Bool_t DebugMode(){return init__dbg_mode.debug;}; |
144 |
|
static Bool_t WarningMode(){return init__dbg_mode.warning;}; |
145 |
|
static Bool_t VerboseMode(){return init__dbg_mode.verbose;}; |
146 |
|
|
147 |
|
// ------------------------------------------------ |
148 |
|
// alcuni metodi che non sapevo dove mettere |
149 |
|
// per inizializzare alcune variabili in F77 common |
150 |
|
// ------------------------------------------------ |
151 |
|
// set to default values |
152 |
|
static void SetTrackingMode() {track_.trackmode = init__mini_trackmode;}; |
153 |
|
static void SetPrecisionFactor(){track_.fact = init__mini_fact; }; |
154 |
|
static void SetStepMin() {track_.istepmin = init__mini_istepmin; }; |
155 |
|
// set to custom values |
156 |
|
static void SetTrackingMode(int); |
157 |
|
static void SetPrecisionFactor(double); |
158 |
|
static void SetStepMin(int); |
159 |
|
static void SetPFA(int); |
160 |
|
static void SetPFA(float *); |
161 |
|
static void SetPFA(void); |
162 |
|
|
163 |
|
ClassDef(TrkParams,2); |
164 |
|
|
165 |
}; |
}; |
166 |
|
|