1 |
/** |
2 |
* \file TrkParams.cpp |
3 |
* \author Elena Vannuccini |
4 |
*/ |
5 |
|
6 |
#include <TrkParams.h> |
7 |
#include <iostream> |
8 |
#include <iomanip> |
9 |
using namespace std; |
10 |
|
11 |
|
12 |
// ------------------------- |
13 |
// CALIBRATION (PED,SIG,BAD) |
14 |
// ------------------------- |
15 |
GL_TRK_CALIB TrkParams::calib = GL_TRK_CALIB(); |
16 |
TString TrkParams::calibpatht = ""; |
17 |
TString TrkParams::calibpathf = ""; |
18 |
Bool_t TrkParams::calib104 = 0; |
19 |
Bool_t TrkParams::calibload = false; |
20 |
// ------------------------- |
21 |
// PARAMETERS loaded from DB |
22 |
// ------------------------- |
23 |
UInt_t TrkParams::trkparamtype[] = {1,2,3,4,5,6,7}; |
24 |
GL_PARAM TrkParams::gl[] = {GL_PARAM(),GL_PARAM(),GL_PARAM(),GL_PARAM(),GL_PARAM(),GL_PARAM(),GL_PARAM()}; |
25 |
TString TrkParams::glpath[] = {"","","","","","",""}; |
26 |
Bool_t TrkParams::glload[] = {false,false,false,false,false,false,false}; |
27 |
// ---------------- |
28 |
// other parameters |
29 |
// ---------------- |
30 |
cDbg TrkParams::init__dbg_mode = {0,0,0}; |
31 |
int TrkParams::init__pfa = 14;//COG4 |
32 |
int TrkParams::init__mini_trackmode = 0; |
33 |
int TrkParams::init__mini_istepmin = 3; |
34 |
double TrkParams::init__mini_fact = 100.; |
35 |
|
36 |
TrkParams::TrkParams(){ |
37 |
|
38 |
cout<<"TrkParams::TrkParams()"<<endl; |
39 |
|
40 |
} |
41 |
float aint(float f){ |
42 |
int ret = (int)f; |
43 |
float ret1 = 0; |
44 |
ret1=(float)ret; |
45 |
return ret1; |
46 |
} |
47 |
|
48 |
float anint(float f){ |
49 |
int ret = (int)(f+0.5); |
50 |
float ret1 = 0; |
51 |
ret1=(float)ret; |
52 |
return ret1; |
53 |
} |
54 |
/** |
55 |
* \brief Static method to set the calibration to be loaded. |
56 |
|
57 |
* It retrieves the calibration associated to a given run, from |
58 |
* a given DB. It fills the F77 common. |
59 |
* @param glrun Pointer to a GL_RUN row |
60 |
* @param dbc Pointer to a DB connection |
61 |
*/ |
62 |
Bool_t TrkParams::SetCalib( GL_RUN *glrun, TSQLServer* dbc ){ |
63 |
|
64 |
// cout << "glrun-> RUNHEADER_TIME "<<glrun->RUNHEADER_TIME <<endl; |
65 |
|
66 |
if( !CalibIsLoaded() || |
67 |
(glrun->TRK_CALIB_USED==104 && !calib104) || |
68 |
(glrun->TRK_CALIB_USED!=104 && calib104) || |
69 |
glrun->RUNHEADER_TIME < calib.FROM_TIME || |
70 |
glrun->RUNHEADER_TIME > calib.TO_TIME || |
71 |
false ){ |
72 |
|
73 |
// cout <<">>> isloaded? "<< CalibIsLoaded() << endl; |
74 |
// cout <<">>> trk_calib_used "<< glrun->TRK_CALIB_USED<<endl; |
75 |
// cout <<">>> 104 loaded? "<< calib104 <<endl; |
76 |
// cout <<">>> from time "<< calib.FROM_TIME<<endl; |
77 |
// cout <<">>> to time "<< calib.TO_TIME<<endl; |
78 |
// if( !dbc || (dbc && !dbc->IsConnected()) ){ |
79 |
|
80 |
// if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl; |
81 |
// TString host = "mysql://localhost/pamelaprod"; |
82 |
// TString user = "anonymous"; |
83 |
// TString psw = ""; |
84 |
// const char *pamdbhost=gSystem->Getenv("PAM_DBHOST"); |
85 |
// const char *pamdbuser=gSystem->Getenv("PAM_DBUSER"); |
86 |
// const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW"); |
87 |
// if ( !pamdbhost ) pamdbhost = ""; |
88 |
// if ( !pamdbuser ) pamdbuser = ""; |
89 |
// if ( !pamdbpsw ) pamdbpsw = ""; |
90 |
// if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
91 |
// if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
92 |
// if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw; |
93 |
// if(TrkParams::VerboseMode()){ |
94 |
// cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
95 |
// cout<<"Connecting to DB"<<endl; |
96 |
// cout<<"HOST "<<host<<endl; |
97 |
// cout<<"USER "<<user<<endl; |
98 |
// cout<<"PSW "<<psw<<endl; |
99 |
// } |
100 |
// dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
101 |
// if( !dbc )return false; |
102 |
// if( !dbc->IsConnected() )return false; |
103 |
// if(TrkParams::VerboseMode()){ |
104 |
// cout << " ...done"<<endl; |
105 |
// cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
106 |
// } |
107 |
// } |
108 |
|
109 |
GL_TRK_CALIB q2; |
110 |
GL_ROOT q3; |
111 |
GL_PARAM q4; |
112 |
|
113 |
if(TrkParams::VerboseMode()){ |
114 |
cout << "--------------------------------------"<<endl; |
115 |
cout << "UPDATING calibration -- run-header time "<< glrun->RUNHEADER_TIME <<endl; |
116 |
} |
117 |
if( q2.Query_GL_TRK_CALIB(glrun->RUNHEADER_TIME,dbc) ){ |
118 |
cout << " Bool_t TrkParams::SetCalib( GL_RUN* , TSQLServer* ) -- ERROR -- failed query to GL_TRK_CALIB "<<endl; |
119 |
return false; |
120 |
} |
121 |
if( q2.EV_ROOT_CALIBTRK1 != q2.EV_ROOT_CALIBTRK2 ) |
122 |
printf(" WARNING!! ---> EV_ROOT_CALIBTRK1=%d it's different from EV_ROOT_CALIBTRK2=%d \n\n",q2.EV_ROOT_CALIBTRK1,q2.EV_ROOT_CALIBTRK2); |
123 |
if( q3.Query_GL_ROOT(q2.ID_ROOT_L0,dbc) ){ |
124 |
cout << " Bool_t TrkParams::SetCalib( GL_RUN* , TSQLServer* ) -- ERROR -- failed query to GL_ROOT "<<endl; |
125 |
return false; |
126 |
} |
127 |
|
128 |
if(TrkParams::VerboseMode())cout << "selected DB entry "<<q2.ID<<" from_time "<<q2.FROM_TIME<<" to time "<<q2.TO_TIME<<" --> VALIDATION "<<q2.VALIDATION<<endl; |
129 |
calib = q2; |
130 |
calibpathf = q3.PATH + q3.NAME; |
131 |
calib104 = (glrun->TRK_CALIB_USED==104); |
132 |
calibload = kFALSE; |
133 |
if(calib104){ |
134 |
if (q4.Query_GL_PARAM(glrun->RUNHEADER_TIME,7,dbc) )return false; |
135 |
calibpatht = q4.PATH + q4.NAME; |
136 |
} |
137 |
|
138 |
|
139 |
// return TrkParams::LoadCalib(); |
140 |
return true; |
141 |
} |
142 |
|
143 |
return false; |
144 |
}; |
145 |
|
146 |
/** |
147 |
* Method to "validate" tracker calibration. Implemented for test purpose. Effective implementation |
148 |
* in YodaProfiler. |
149 |
*/ |
150 |
UInt_t TrkParams::ValidateTrkCalib( CalibTrk1Event* caltrk){ |
151 |
|
152 |
UInt_t validate = 1; |
153 |
Int_t vorder[]={5,5,3,3,4,4,2,2,1,1,0,0}; |
154 |
// UInt_t timeaftercalib=120000; //2000; |
155 |
TString classname = caltrk->GetName(); |
156 |
// ---------- |
157 |
// Check CRCs |
158 |
// ---------- |
159 |
if(TrkParams::VerboseMode())cout << " DSP: "; |
160 |
for(Int_t ipkt=0; ipkt<6; ipkt++){ |
161 |
if(TrkParams::VerboseMode())cout <<" "<<caltrk->DSPnumber[ipkt]; |
162 |
if(caltrk->DSPnumber[ipkt]>0 && caltrk->DSPnumber[ipkt]<=12){ |
163 |
if( caltrk->crc_hcal[ipkt] ){ |
164 |
if(TrkParams::WarningMode())cout<<"(CRC Header)"; |
165 |
// if(TrkParams::WarningMode())cout << "ValidateTrkCalib: "<<classname<<" --WARNING-- CRC error in calibration header: pkt "<<ipkt<<endl; |
166 |
// return 0; // :-( |
167 |
validate = 0; |
168 |
} |
169 |
for(Int_t ilad=0; ilad<3; ilad++)if( caltrk->crc_cal[ipkt][ilad] ){ |
170 |
if(TrkParams::WarningMode())cout<<"(CRC Pkt-"<<ilad<<")"; |
171 |
// if(TrkParams::WarningMode())cout << "ValidateTrkCalib: "<<classname<<" --WARNING-- CRC error in calibration packet: pkt "<<ipkt<<endl; |
172 |
// return 0; // :-( |
173 |
validate = 0; |
174 |
} |
175 |
} |
176 |
} |
177 |
if(TrkParams::VerboseMode())cout << endl;; |
178 |
// ----------------------- |
179 |
// Check missing packets: |
180 |
// ----------------------- |
181 |
// Readout order: |
182 |
// ------------------ |
183 |
// DSP packet board |
184 |
// ------------------ |
185 |
// 12 0 1 |
186 |
// 10 1 1 |
187 |
// 8 2 1 |
188 |
// 4 3 1 |
189 |
// 6 4 1 |
190 |
// 2 5 1 |
191 |
// ------------------ |
192 |
// 11 0 2 |
193 |
// 9 1 2 |
194 |
// 7 2 2 |
195 |
// 3 3 2 |
196 |
// 5 4 2 |
197 |
// 1 5 2 |
198 |
// ------------------ |
199 |
// ------------------------------------------------- |
200 |
// Check if it is first or second calibration packet |
201 |
// ------------------------------------------------- |
202 |
UInt_t build=0; |
203 |
UInt_t base=0; |
204 |
UInt_t mask=0; |
205 |
if(classname.Contains("CalibTrk1Event")){ |
206 |
base=12; |
207 |
mask=0x03F000; |
208 |
} |
209 |
if(classname.Contains("CalibTrk2Event")){ |
210 |
base=18; |
211 |
mask=0xFC0000; |
212 |
} |
213 |
// ------------------------------------------------- |
214 |
// Count number of packets and set build variable |
215 |
// ------------------------------------------------- |
216 |
Int_t npkts=0; |
217 |
for(Int_t ipkt=0; ipkt<6; ipkt++){ |
218 |
if(caltrk->DSPnumber[ipkt]>0 && caltrk->DSPnumber[ipkt]<=12){ |
219 |
npkts++; |
220 |
build = build | ( 1<<(base+vorder[caltrk->DSPnumber[ipkt]-1]) ); |
221 |
}; |
222 |
} |
223 |
if( npkts==6 ){}//return 1; // :-) |
224 |
else { |
225 |
if(TrkParams::WarningMode())cout << "ValidateTrkCalib: "<<classname<<" --WARNING-- there might be some missing packets :-( ( "<<npkts<<" instead of 6 ) --> "<<endl; |
226 |
validate = 0; |
227 |
} |
228 |
// cout << classname << " "<<eh->GetPscuHeader()->GetOrbitalTime()<<endl; |
229 |
|
230 |
// ----------------------------------------------- |
231 |
// If missing packets: check the acq configuration |
232 |
// (some DSPs might be excluded from acquisition) |
233 |
// ----------------------------------------------- |
234 |
|
235 |
// ----------------------------------------------- |
236 |
// retrieve the first run header after calib |
237 |
// ----------------------------------------------- |
238 |
// PacketType *pctp; |
239 |
// EventCounter *cod; |
240 |
// cod = eh->GetCounter(); |
241 |
// Int_t irun = cod->Get(pctp->RunHeader); |
242 |
// TTree *rh=(TTree*)file->Get("RunHeader"); |
243 |
// if ( !rh || rh->IsZombie() ) throw -17; |
244 |
// if( rh->GetEntries() == irun ){ |
245 |
// if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) no runs after calib (1) -- cannot validate :-( "<<endl; |
246 |
// return 0; // :-( |
247 |
// } |
248 |
|
249 |
// RunHeaderEvent *run = 0; |
250 |
// EventHeader *hrun = 0; |
251 |
// rh->SetBranchAddress("RunHeader", &run); |
252 |
// rh->SetBranchAddress("Header", &hrun); |
253 |
// rh->GetEntry(irun); |
254 |
// // cout << classname << " "<<eh->GetPscuHeader()->GetOrbitalTime() << " Run " << hrun->GetPscuHeader()->GetOrbitalTime() <<endl; |
255 |
|
256 |
// if( OBT(hrun->GetPscuHeader()->GetOrbitalTime()) < OBT(eh->GetPscuHeader()->GetOrbitalTime())){ |
257 |
// if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) no runs after calib (2) -- cannot validate :-( "<<endl; |
258 |
// return 0; // :-( |
259 |
// } |
260 |
|
261 |
// if( !run->RM_ACQ_AFTER_CALIB ){ |
262 |
// if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) RM_ACQ_AFTER_CALIB=0 -- cannot validate :-( "<<endl; |
263 |
// return 0; // :-( |
264 |
// } |
265 |
|
266 |
// UInt_t dtime = OBT(hrun->GetPscuHeader()->GetOrbitalTime()) - OBT(eh->GetPscuHeader()->GetOrbitalTime()); |
267 |
// if( dtime > timeaftercalib ){ |
268 |
// if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) run after calib too far ( "<<dtime<<"ms ) -- cannot validate :-( "<<endl; |
269 |
// return 0; // :-( |
270 |
// } |
271 |
|
272 |
// if( (run->ACQ_BUILD_INFO & mask) != build ){ |
273 |
// if ( IsDebug() ) cout << "ValidateTrkCalib: (MISSING VIEW) ACQ_BUILD_INFO= >>> "<<hex << (run->ACQ_BUILD_INFO&mask) << " != "<< build << dec<<endl; |
274 |
// return 0; // :-( |
275 |
// } |
276 |
|
277 |
// return 1; // :-) |
278 |
|
279 |
// cout << validate << endl; |
280 |
return validate; |
281 |
|
282 |
} |
283 |
/** |
284 |
* Method to fill the tracker calibration-parameter struct from on-line calibrations |
285 |
*/ |
286 |
void TrkParams::FillACalibFrom(TFile* f0, Int_t ev_reg1, Int_t ev_reg2){ |
287 |
|
288 |
cTrkCalib *ca = &pedsigbad_; |
289 |
ca->Reset(); |
290 |
|
291 |
TTree *tr1 = (TTree*)f0->Get("CalibTrk1"); |
292 |
TTree *tr2 = (TTree*)f0->Get("CalibTrk2"); |
293 |
|
294 |
CalibTrk1Event *calibdata1 = 0; |
295 |
CalibTrk2Event *calibdata2 = 0; |
296 |
tr1->SetBranchAddress("CalibTrk1",&calibdata1); |
297 |
tr2->SetBranchAddress("CalibTrk2",&calibdata2); |
298 |
tr1->GetEntry(ev_reg1); |
299 |
tr2->GetEntry(ev_reg2); |
300 |
Int_t dspn1(0),dspn2(0); |
301 |
|
302 |
// --- TEST TEST TEST TEST --- // |
303 |
// TrkParams::ValidateTrkCalib(calibdata1); |
304 |
// TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
305 |
|
306 |
UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1); |
307 |
UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
308 |
if( !test1 || !test2 ){ |
309 |
if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl; |
310 |
TrkParams::calib.VALIDATION = 0; |
311 |
} |
312 |
if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl; |
313 |
|
314 |
for(Int_t i=0;i<6;i++){ |
315 |
dspn1=calibdata1->DSPnumber[i]-1; |
316 |
dspn2=calibdata2->DSPnumber[i]-1; |
317 |
// cout<<"dspn1= "<<dspn1<<" dspn2= "<<dspn2<<endl; |
318 |
for(Int_t ii=0;ii<3072;ii++){ |
319 |
Int_t j=(ii/128); |
320 |
Int_t jj=ii-j*128; |
321 |
if(dspn1>=0 && dspn1<12){ |
322 |
ca->pedestal[jj][j][dspn1]=calibdata1->DSPped_par[i][ii]; |
323 |
ca->pedestal_t[jj][j][dspn1]=aint(calibdata1->DSPped_par[i][ii]); |
324 |
ca->sigma[jj][j][dspn1]=calibdata1->DSPsig_par[i][ii]; |
325 |
ca->sigma_t[jj][j][dspn1]=anint(calibdata1->DSPsig_par[i][ii]); |
326 |
if(calibdata1->DSPbad_par[i][ii]==0) |
327 |
ca->bad[jj][j][dspn1]=1; |
328 |
else if(calibdata1->DSPbad_par[i][ii]==1) |
329 |
ca->bad[jj][j][dspn1]=0; |
330 |
// cout<<"sigma trk1= "<<sigma[jj][j][dspn1]<<endl; |
331 |
// cout<<"sigma_t trk1= "<<sigma_t[jj][j][dspn1]<<endl; |
332 |
} |
333 |
|
334 |
if(dspn2>=0 && dspn2<12){ |
335 |
ca->pedestal[jj][j][dspn2]=calibdata2->DSPped_par[i][ii]; |
336 |
ca->pedestal_t[jj][j][dspn2]=aint(calibdata2->DSPped_par[i][ii]); |
337 |
ca->sigma[jj][j][dspn2]=calibdata2->DSPsig_par[i][ii]; |
338 |
ca->sigma_t[jj][j][dspn2]=anint(calibdata2->DSPsig_par[i][ii]); |
339 |
if(calibdata2->DSPbad_par[i][ii]==0) |
340 |
ca->bad[jj][j][dspn2]=1; |
341 |
else if(calibdata2->DSPbad_par[i][ii]==1) |
342 |
ca->bad[jj][j][dspn2]=0; |
343 |
// cout<<"sigma trk2= "<<sigma[jj][j][dspn2]<<endl; |
344 |
// cout<<"sigma_t trk2= "<<sigma_t[jj][j][dspn2]<<endl; |
345 |
} |
346 |
}; |
347 |
}; |
348 |
|
349 |
tr1->Delete(); |
350 |
tr2->Delete(); |
351 |
}; |
352 |
/** |
353 |
* Method to fill the tracker calibration-parameter struct from on-line calibrations |
354 |
*/ |
355 |
void TrkParams::FillFCalibFrom(TFile* f0, Int_t ev_reg1, Int_t ev_reg2){ |
356 |
|
357 |
cTrkCalib *ca = &pedsigbad_; |
358 |
// ca->Reset(); |
359 |
|
360 |
TTree *tr1 = (TTree*)f0->Get("CalibTrk1"); |
361 |
TTree *tr2 = (TTree*)f0->Get("CalibTrk2"); |
362 |
|
363 |
CalibTrk1Event *calibdata1 = 0; |
364 |
CalibTrk2Event *calibdata2 = 0; |
365 |
tr1->SetBranchAddress("CalibTrk1",&calibdata1); |
366 |
tr2->SetBranchAddress("CalibTrk2",&calibdata2); |
367 |
tr1->GetEntry(ev_reg1); |
368 |
tr2->GetEntry(ev_reg2); |
369 |
Int_t dspn1(0),dspn2(0); |
370 |
|
371 |
// --- TEST TEST TEST TEST --- // |
372 |
// TrkParams::ValidateTrkCalib(calibdata1); |
373 |
// TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
374 |
UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1); |
375 |
UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
376 |
if( !test1 || !test2 ){ |
377 |
if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl; |
378 |
TrkParams::calib.VALIDATION = 0; |
379 |
} |
380 |
if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl; |
381 |
|
382 |
for(Int_t i=0;i<6;i++){ |
383 |
dspn1=calibdata1->DSPnumber[i]-1; |
384 |
dspn2=calibdata2->DSPnumber[i]-1; |
385 |
/* cout<<"dspn1= "<<dspn1<<" dspn2= "<<dspn2<<endl; */ |
386 |
for(Int_t ii=0;ii<3072;ii++){ |
387 |
Int_t j=(ii/128); |
388 |
Int_t jj=ii-j*128; |
389 |
if(dspn1>=0 && dspn1<12){ |
390 |
ca->pedestal[jj][j][dspn1]=calibdata1->DSPped_par[i][ii]; |
391 |
ca->sigma[jj][j][dspn1]=calibdata1->DSPsig_par[i][ii]; |
392 |
if(calibdata1->DSPbad_par[i][ii]==0) |
393 |
ca->bad[jj][j][dspn1]=1; |
394 |
else if(calibdata1->DSPbad_par[i][ii]==1) |
395 |
ca->bad[jj][j][dspn1]=0; |
396 |
// cout<<"sigma trk1= "<<sigma[jj][j][dspn1]<<endl; |
397 |
// cout<<"sigma_t trk1= "<<sigma_t[jj][j][dspn1]<<endl; |
398 |
} |
399 |
if(dspn2>=0 && dspn2<12){ |
400 |
ca->pedestal[jj][j][dspn2]=calibdata2->DSPped_par[i][ii]; |
401 |
ca->sigma[jj][j][dspn2]=calibdata2->DSPsig_par[i][ii]; |
402 |
if(calibdata2->DSPbad_par[i][ii]==0) |
403 |
ca->bad[jj][j][dspn2]=1; |
404 |
else if(calibdata2->DSPbad_par[i][ii]==1) |
405 |
ca->bad[jj][j][dspn2]=0; |
406 |
// cout<<"sigma trk2= "<<sigma[jj][j][dspn2]<<endl; |
407 |
// cout<<"sigma_t trk2= "<<sigma_t[jj][j][dspn2]<<endl; |
408 |
} |
409 |
}; |
410 |
}; |
411 |
|
412 |
tr1->Delete(); |
413 |
tr2->Delete(); |
414 |
}; |
415 |
/** |
416 |
* Method to fill the tracker calibration-parameter struct from on-line calibrations |
417 |
*/ |
418 |
void TrkParams::FillTCalibFrom(TFile* f0, Int_t ev_reg1, Int_t ev_reg2){ |
419 |
|
420 |
cTrkCalib *ca = &pedsigbad_; |
421 |
// ca->Reset(); |
422 |
|
423 |
TTree *tr1 = (TTree*)f0->Get("CalibTrk1"); |
424 |
TTree *tr2 = (TTree*)f0->Get("CalibTrk2"); |
425 |
|
426 |
CalibTrk1Event *calibdata1 = 0; |
427 |
CalibTrk2Event *calibdata2 = 0; |
428 |
tr1->SetBranchAddress("CalibTrk1",&calibdata1); |
429 |
tr2->SetBranchAddress("CalibTrk2",&calibdata2); |
430 |
tr1->GetEntry(ev_reg1); |
431 |
tr2->GetEntry(ev_reg2); |
432 |
Int_t dspn1(0),dspn2(0); |
433 |
|
434 |
// --- TEST TEST TEST TEST --- // |
435 |
// TrkParams::ValidateTrkCalib(calibdata1); |
436 |
// TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
437 |
UInt_t test1 = TrkParams::ValidateTrkCalib(calibdata1); |
438 |
UInt_t test2 = TrkParams::ValidateTrkCalib((CalibTrk1Event*)calibdata2); |
439 |
if( !test1 || !test2 ){ |
440 |
if(TrkParams::calib.VALIDATION==1)cout << "--> modify DB info "<<endl; |
441 |
TrkParams::calib.VALIDATION = 0; |
442 |
} |
443 |
if(TrkParams::calib.VALIDATION==0)cout << " ** WARNING ** Calibration not validated "<<endl; |
444 |
|
445 |
for(Int_t i=0;i<6;i++){ |
446 |
dspn1=calibdata1->DSPnumber[i]-1; |
447 |
dspn2=calibdata2->DSPnumber[i]-1; |
448 |
/* cout<<"dspn1= "<<dspn1<<" dspn2= "<<dspn2<<endl; */ |
449 |
for(Int_t ii=0;ii<3072;ii++){ |
450 |
Int_t j=(ii/128); |
451 |
Int_t jj=ii-j*128; |
452 |
if(dspn1>=0 && dspn1<12){ |
453 |
ca->pedestal_t[jj][j][dspn1]=aint(calibdata1->DSPped_par[i][ii]); |
454 |
ca->sigma_t[jj][j][dspn1]=anint(calibdata1->DSPsig_par[i][ii]); |
455 |
} |
456 |
if(dspn2>=0 && dspn2<12){ |
457 |
ca->pedestal_t[jj][j][dspn2]=aint(calibdata2->DSPped_par[i][ii]); |
458 |
ca->sigma_t[jj][j][dspn2]=anint(calibdata2->DSPsig_par[i][ii]); |
459 |
} |
460 |
}; |
461 |
}; |
462 |
|
463 |
tr1->Delete(); |
464 |
tr2->Delete(); |
465 |
}; |
466 |
/** |
467 |
* Method to fill the tracker calibration-parameter struct from default calibration |
468 |
*/ |
469 |
void TrkParams::FillTCalibFrom(TString path){ |
470 |
|
471 |
path_.FillWith(path); |
472 |
fillpedsigfromdefault_(); |
473 |
if(path_.error) throw -216; |
474 |
|
475 |
}; |
476 |
/** |
477 |
* Method to fill the tracker VA1-mask struct from calibration |
478 |
*/ |
479 |
void TrkParams::FillMask(TFile* f0, Int_t ev_reg1, Int_t ev_reg2){ |
480 |
|
481 |
cTrkMask *ma = &mask_; |
482 |
ma->Reset(); |
483 |
|
484 |
TrkCalib *calib = new TrkCalib(); |
485 |
|
486 |
for(Int_t i=0; i<2; i++){ |
487 |
TTree *tr=0; |
488 |
if(i==0){ |
489 |
//------------------------- |
490 |
//read calibration packet 1 |
491 |
//------------------------- |
492 |
tr = (TTree*)f0->Get("CalibTrk1"); |
493 |
tr->SetBranchAddress("CalibTrk1",calib->GetPointerTo()); |
494 |
tr->GetEntry(ev_reg1); |
495 |
} |
496 |
if(i==1){ |
497 |
//------------------------- |
498 |
//read calibration packet 2 |
499 |
//------------------------- |
500 |
tr = (TTree*)f0->Get("CalibTrk2"); |
501 |
tr->SetBranchAddress("CalibTrk2",calib->GetPointerTo()); |
502 |
tr->GetEntry(ev_reg2); |
503 |
} |
504 |
for(Int_t ipkt=0; ipkt<NPLANE; ipkt++){ |
505 |
Int_t view = calib->GetView(ipkt); |
506 |
if( (view-1)>= 0 && (view-1)<12 ){ |
507 |
for(Int_t ivk=0; ivk<NVK; ivk++){ |
508 |
Float_t sigm = calib->GetMean("SIG-BAD",ipkt,ivk+1); |
509 |
Float_t sigmin = 0.; |
510 |
if(view%2)sigmin = 6.5; |
511 |
else sigmin = 2.5; |
512 |
Int_t mask = 1; |
513 |
if( sigm<sigmin )mask = 0; |
514 |
ma->mask_vk_run[ivk][view-1] = mask; |
515 |
} |
516 |
} |
517 |
} |
518 |
if(tr)tr->Delete(); |
519 |
} |
520 |
|
521 |
if(TrkParams::VerboseMode()){ |
522 |
for(Int_t iv=0; iv<NVIEW; iv++){ |
523 |
cout<<"view "<<setw(3)<<iv<<": "; |
524 |
for(Int_t ivk=0; ivk<NVK; ivk++)cout<<ma->mask_vk_run[ivk][iv]; |
525 |
cout << endl; |
526 |
} |
527 |
} |
528 |
|
529 |
if(calib)calib->Delete(); |
530 |
|
531 |
}; |
532 |
|
533 |
// Bool_t TrkParams::CalibIsLoaded(UInt_t time){ |
534 |
|
535 |
// if( !calibload ) return false; |
536 |
|
537 |
// }; |
538 |
|
539 |
|
540 |
/** |
541 |
* \brief Static method to load calibration. |
542 |
* Calibration is loaded ONLY IF TrkParams::CalibLoaded()==kTRUE, which appens after the method TrkParams::SetCalib(***) is called. |
543 |
*/ |
544 |
Bool_t TrkParams::LoadCalib( ){ |
545 |
|
546 |
if( TrkParams::CalibIsLoaded() )return false; |
547 |
|
548 |
// ============================================================= |
549 |
// retrieve calibration file needed to reduce data |
550 |
// ============================================================= |
551 |
// if run OBT is > last calibration "expiration date" |
552 |
// - search for new calibration packet |
553 |
// - load calibration parameters (full + truncated) |
554 |
if(TrkParams::VerboseMode()){ |
555 |
cout << "--------------------------------------"<<endl; |
556 |
cout << "Retrieve calibration (PED-SIG-BAD) ..."<<endl; |
557 |
cout << " Full pedestals for cluster finding:"; |
558 |
cout << " >> loading from LEVEL0 file: "<< calibpathf << endl; |
559 |
} |
560 |
FileStat_t t; |
561 |
if( gSystem->GetPathInfo(calibpathf.Data(),t) )return false; |
562 |
|
563 |
bool alreadyopened = false; |
564 |
TFile *f0_c=0; |
565 |
f0_c = (TFile*)gROOT->GetListOfFiles()->FindObject(calibpathf); |
566 |
if(f0_c)alreadyopened=true; |
567 |
else f0_c = new TFile(calibpathf); |
568 |
if ( !f0_c ) return false; |
569 |
|
570 |
if(TrkParams::VerboseMode()){ |
571 |
cout << " calibration entry "<< calib.EV_ROOT_CALIBTRK1 << " " << calib.EV_ROOT_CALIBTRK2; |
572 |
cout << " (from time "<< calib.FROM_TIME <<" to time "<< calib.TO_TIME <<")"<<endl; |
573 |
cout << " - full+truncated parameters "<<endl; |
574 |
} |
575 |
TrkParams::FillACalibFrom(f0_c,calib.EV_ROOT_CALIBTRK1,calib.EV_ROOT_CALIBTRK2); |
576 |
if(TrkParams::VerboseMode())cout << " - VK-mask "<<endl; |
577 |
TrkParams::FillMask(f0_c,calib.EV_ROOT_CALIBTRK1,calib.EV_ROOT_CALIBTRK2); |
578 |
|
579 |
// ============================================================= |
580 |
// retrieve calibration file needed to uncompress data |
581 |
// ============================================================= |
582 |
// if the run was compressed using default calib |
583 |
// load truncated pedestals from default |
584 |
// otherwise reload them from on-line calibration |
585 |
if(TrkParams::VerboseMode())cout << " Truncated pedestals for uncompression:"; |
586 |
if( calib104 ){ |
587 |
|
588 |
if(TrkParams::VerboseMode())cout << " >> loading default calibration: "<< calibpatht << endl; |
589 |
TrkParams::FillTCalibFrom(calibpatht); |
590 |
|
591 |
}else{ |
592 |
|
593 |
// if ( !f0_c ) return false; |
594 |
if(TrkParams::VerboseMode())cout << ">> already loaded " << endl; |
595 |
// TrkParams::FillTCalibFrom(f0_c,calib.EV_ROOT_CALIBTRK1,calib.EV_ROOT_CALIBTRK2); |
596 |
}; |
597 |
if(!alreadyopened)f0_c->Close(); |
598 |
if(TrkParams::VerboseMode())cout << "--------------------------------------"<<endl; |
599 |
|
600 |
calibload = kTRUE; |
601 |
return true; |
602 |
}; |
603 |
|
604 |
Int_t TrkParams::GetIndex( UInt_t type ){ |
605 |
Int_t index = -1; |
606 |
for (Int_t i=0; i< NTYPES; i++)if( type == trkparamtype[i] )index=i; |
607 |
return index; |
608 |
}; |
609 |
|
610 |
/** |
611 |
* Set tracker parameters proper for a run querying the DB. |
612 |
* @param glrun Input run info |
613 |
* @param dbc Database |
614 |
* @param type Parameter type |
615 |
* @return FALSE if parameter set fails. |
616 |
* If glrun==NULL the last parameter entry from GL_PARAM table is set. |
617 |
* If dbc==NULL, try to open a connection taking DB-connection |
618 |
* parameters from PAMELA environment variables. |
619 |
*/ |
620 |
Bool_t TrkParams::Set( GL_RUN* glrun , TSQLServer* dbc , UInt_t type){ |
621 |
|
622 |
|
623 |
UInt_t index = TrkParams::GetIndex( type ); |
624 |
if(index < 0)return false; |
625 |
|
626 |
if( !TrkParams::IsLoaded(type) || |
627 |
glrun->RUNHEADER_TIME < gl[index].FROM_TIME || |
628 |
glrun->RUNHEADER_TIME > gl[index].TO_TIME || |
629 |
false ){ |
630 |
|
631 |
if( !dbc || (dbc && !dbc->IsConnected()) ){ |
632 |
|
633 |
if(TrkParams::WarningMode())cout <<" Missing DB connection -- check PAMELA environment variables "<<endl; |
634 |
TString host = "mysql://localhost/pamelaprod"; |
635 |
TString user = "anonymous"; |
636 |
TString psw = ""; |
637 |
const char *pamdbhost=gSystem->Getenv("PAM_DBHOST"); |
638 |
const char *pamdbuser=gSystem->Getenv("PAM_DBUSER"); |
639 |
const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW"); |
640 |
if ( !pamdbhost ) pamdbhost = ""; |
641 |
if ( !pamdbuser ) pamdbuser = ""; |
642 |
if ( !pamdbpsw ) pamdbpsw = ""; |
643 |
if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
644 |
if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
645 |
if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw; |
646 |
if(TrkParams::VerboseMode()){ |
647 |
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
648 |
cout<<"Connecting to DB"<<endl; |
649 |
cout<<"HOST "<<host<<endl; |
650 |
cout<<"USER "<<user<<endl; |
651 |
cout<<"PSW "<<psw<<endl; |
652 |
} |
653 |
dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
654 |
if( !dbc )return false; |
655 |
if( !dbc->IsConnected() )return false; |
656 |
if(TrkParams::VerboseMode()){ |
657 |
cout << " ...done"<<endl; |
658 |
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
659 |
} |
660 |
} |
661 |
|
662 |
|
663 |
UInt_t runheadtime = numeric_limits<UInt_t>::max(); |
664 |
if(glrun)runheadtime = glrun->RUNHEADER_TIME; |
665 |
else cout <<"Missing run info -- taking last entry "<<endl; |
666 |
|
667 |
GL_PARAM q4; |
668 |
if( q4.Query_GL_PARAM(runheadtime,type,dbc) )return false; |
669 |
|
670 |
gl[index] = q4; |
671 |
glpath[index] = q4.PATH+q4.NAME; |
672 |
glload[index] = false; |
673 |
if(TrkParams::VerboseMode()) |
674 |
cout << "<< set TrkParams type "<<type<<" from DB << RUN "<<glrun->ID<<endl; |
675 |
return true; |
676 |
|
677 |
} |
678 |
return false; |
679 |
|
680 |
}; |
681 |
/** |
682 |
* Set tracker parameters proper for the run, from input. |
683 |
* @param path Path to parameters directory |
684 |
* @param type Parameter type |
685 |
* @return FALSE if parameter set fails. |
686 |
*/ |
687 |
Bool_t TrkParams::Set( TString path , UInt_t type){ |
688 |
|
689 |
UInt_t index = TrkParams::GetIndex( type ); |
690 |
if(index < 0)return false; |
691 |
|
692 |
gl[index].TYPE= type; |
693 |
glpath[index] = path; |
694 |
if(TrkParams::VerboseMode()) |
695 |
cout << "<< set TrkParams type "<<type<<" from path << "<<path<<endl; |
696 |
glload[index] = false; |
697 |
|
698 |
// return TrkParams::Load(type); |
699 |
return true; |
700 |
|
701 |
}; |
702 |
|
703 |
/** |
704 |
* Set and load tracker parameters. |
705 |
* @param type Parameter type |
706 |
* If no path as been yet specified, it set a default path. |
707 |
* @return FALSE if parameter set fails. |
708 |
*/ |
709 |
Bool_t TrkParams::Set(UInt_t type){ |
710 |
|
711 |
UInt_t index = TrkParams::GetIndex( type ); |
712 |
if(index < 0)return false; |
713 |
|
714 |
gl[index].TYPE= type; |
715 |
glload[index] = false; |
716 |
|
717 |
// ----------------------------------------- |
718 |
// check if enviroment variables are defined |
719 |
// ----------------------------------------- |
720 |
glpath[index] = gSystem->Getenv("PAM_CALIB"); |
721 |
|
722 |
if( !glpath[index].IsNull() ){ |
723 |
|
724 |
switch(type){ |
725 |
case 1: |
726 |
glpath[index].Append("/trk-param/field_param-0/"); |
727 |
break; |
728 |
case 2: |
729 |
glpath[index].Append("/trk-param/mip_param-0/"); |
730 |
break; |
731 |
case 3: |
732 |
glpath[index].Append("/trk-param/charge_param-1/"); |
733 |
break; |
734 |
case 4: |
735 |
glpath[index].Append("/trk-param/eta_param-0/"); |
736 |
break; |
737 |
case 5: |
738 |
glpath[index].Append("/trk-param/align_param-0/"); |
739 |
break; |
740 |
case 6: |
741 |
glpath[index].Append("/trk-param/mask_param-1/"); |
742 |
break; |
743 |
case 7: |
744 |
glpath[index].Append("/trk-param/default_calib/"); |
745 |
break; |
746 |
} |
747 |
|
748 |
}else{ |
749 |
cout << " TrkParams::Set( UInt_t type) ==> No PAMELA environment variables defined "<<endl; |
750 |
return false; |
751 |
|
752 |
} |
753 |
|
754 |
if(TrkParams::VerboseMode())cout << "<< set TrkParams type "<<type<<" (from env var PAM_CALIB) >>"<<endl; |
755 |
// return TrkParams::Load(type); |
756 |
return true; |
757 |
|
758 |
}; |
759 |
/** |
760 |
* Set tracker parameters. |
761 |
* If no path as been yet specified, try to read from DB |
762 |
* otherwise it set a default path. |
763 |
* @return FALSE if parameter set fails. |
764 |
*/ |
765 |
Bool_t TrkParams::Set( ){ |
766 |
|
767 |
Bool_t connected = false; |
768 |
|
769 |
// cout <<" Missing DB connection -- check PAMELA environment variables "<<endl; |
770 |
TString host = "mysql://localhost/pamelaprod"; |
771 |
TString user = "anonymous"; |
772 |
TString psw = ""; |
773 |
const char *pamdbhost=gSystem->Getenv("PAM_DBHOST"); |
774 |
const char *pamdbuser=gSystem->Getenv("PAM_DBUSER"); |
775 |
const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW"); |
776 |
if ( !pamdbhost ) pamdbhost = ""; |
777 |
if ( !pamdbuser ) pamdbuser = ""; |
778 |
if ( !pamdbpsw ) pamdbpsw = ""; |
779 |
if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
780 |
if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
781 |
if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw; |
782 |
if(TrkParams::VerboseMode()){ |
783 |
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
784 |
cout<<"Connecting to DB"<<endl; |
785 |
cout<<"HOST "<<host<<endl; |
786 |
cout<<"USER "<<user<<endl; |
787 |
cout<<"PSW "<<psw<<endl; |
788 |
} |
789 |
TSQLServer *dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
790 |
if( dbc || dbc->IsConnected() )connected = true; |
791 |
else cout << " >> DB connection FAILED!!!"<<endl; |
792 |
if(TrkParams::VerboseMode())cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl; |
793 |
|
794 |
if(connected){ |
795 |
if ( !TrkParams::Set(0,dbc) )return false; |
796 |
dbc->Close(); |
797 |
}else for(Int_t i=0; i<NTYPES; i++)if ( !TrkParams::Set(trkparamtype[i])) return false; |
798 |
|
799 |
return true; |
800 |
} |
801 |
|
802 |
/** |
803 |
* Load tracker parameter, if not already loaded. |
804 |
* @param type Parameter type |
805 |
* ( Any call to TrkParams::Set(...) forces reloading ) |
806 |
*/ |
807 |
Bool_t TrkParams::Load(UInt_t type){ |
808 |
|
809 |
Int_t index = TrkParams::GetIndex( type ); |
810 |
if( index<0 )return false; |
811 |
if( glload[index] )return true; |
812 |
|
813 |
if( glpath[index].IsNull() )TrkParams::Set(type); |
814 |
|
815 |
switch( type ){ |
816 |
//------------------------------------------ |
817 |
case 1: |
818 |
if(TrkParams::VerboseMode())cout <<type<<" -- Loading magnetic field "<<glpath[index]<<endl; |
819 |
strcpy(path_.path,glpath[index].Data()); |
820 |
path_.pathlen = glpath[index].Length(); |
821 |
path_.error = 0; |
822 |
readb_(); |
823 |
if(path_.error) return false; |
824 |
glload[index]=true; |
825 |
break; |
826 |
//------------------------------------------ |
827 |
case 2: |
828 |
if(TrkParams::VerboseMode())cout <<type<<" -- Loading ADC-to-MIP conversion parameters "<<glpath[index]<<endl; |
829 |
strcpy(path_.path,glpath[index].Data()); |
830 |
path_.pathlen = glpath[index].Length(); |
831 |
path_.error = 0; |
832 |
readmipparam_(); |
833 |
if(path_.error) return false; |
834 |
glload[index]=true; |
835 |
break; |
836 |
//------------------------------------------ |
837 |
case 3: |
838 |
if(TrkParams::VerboseMode())cout <<type<<" -- Loading charge-correlation parameters "<<glpath[index]<<endl; |
839 |
strcpy(path_.path,glpath[index].Data()); |
840 |
path_.pathlen = glpath[index].Length(); |
841 |
path_.error = 0; |
842 |
readchargeparam_(); |
843 |
if(path_.error) return false; |
844 |
glload[index]=true; |
845 |
break; |
846 |
//------------------------------------------ |
847 |
case 4: |
848 |
if(TrkParams::VerboseMode())cout <<type<<" -- Loading p.f.a. parameters "<<glpath[index]<<endl; |
849 |
strcpy(path_.path,glpath[index].Data()); |
850 |
path_.pathlen = glpath[index].Length(); |
851 |
path_.error = 0; |
852 |
readetaparam_(); |
853 |
if(path_.error) return false; |
854 |
glload[index]=true; |
855 |
break; |
856 |
//------------------------------------------ |
857 |
case 5: |
858 |
if(TrkParams::VerboseMode())cout <<type<<" -- Loading alignment parameters "<<glpath[index]<<endl; |
859 |
strcpy(path_.path,glpath[index].Data()); |
860 |
path_.pathlen = glpath[index].Length(); |
861 |
path_.error = 0; |
862 |
readalignparam_(); |
863 |
if(path_.error) return false; |
864 |
glload[index]=true; |
865 |
break; |
866 |
//------------------------------------------ |
867 |
case 6: |
868 |
if(TrkParams::VerboseMode())cout <<type<<" -- Loading VK-mask parameters "<<glpath[index]<<endl; |
869 |
strcpy(path_.path,glpath[index].Data()); |
870 |
path_.pathlen = glpath[index].Length(); |
871 |
path_.error = 0; |
872 |
readvkmask_(); |
873 |
if(path_.error) return false; |
874 |
glload[index]=true; |
875 |
break; |
876 |
//------------------------------------------ |
877 |
case 7: |
878 |
if(TrkParams::VerboseMode())cout <<type<<" -- Loading default calibration "<<glpath[index]<<endl; |
879 |
strcpy(path_.path,glpath[index].Data()); |
880 |
path_.pathlen = glpath[index].Length(); |
881 |
path_.error = 0; |
882 |
// fillpedsigfromdefault_(); |
883 |
if(TrkParams::VerboseMode())cout << ">> not implemented <<"<<endl; |
884 |
if(path_.error) return false; |
885 |
glload[index]=true; |
886 |
break; |
887 |
default: |
888 |
if(TrkParams::VerboseMode())cout << " Bool_t TrkParams::Load(UInt_t type) -- type "<< type << "not yet implemented"<<endl; |
889 |
return false; |
890 |
}; |
891 |
|
892 |
return true; |
893 |
} |
894 |
|
895 |
Bool_t TrkParams::Load( ){ |
896 |
for(Int_t i=0 ; i<NTYPES; i++)if(!glload[i] && trkparamtype[i]>0 )if( !TrkParams::Load(trkparamtype[i]) )return false; |
897 |
return true; |
898 |
}; |
899 |
Bool_t TrkParams::IsLoaded( ){ |
900 |
for(Int_t i=0 ; i<NTYPES; i++)if(!glload[i] && trkparamtype[i]>0 )return false; |
901 |
return true; |
902 |
}; |
903 |
|
904 |
|
905 |
/** |
906 |
* Get BY (kGauss) |
907 |
* @param v (x,y,z) coordinates in cm |
908 |
*/ |
909 |
float TrkParams::GetBX(float* v){ |
910 |
TrkParams::Load(1); |
911 |
if( !TrkParams::IsLoaded(1) )return 0.; |
912 |
float b[3]; |
913 |
gufld_(v,b); |
914 |
return b[0]/10.; |
915 |
} |
916 |
/** |
917 |
* Get BY (kGauss) |
918 |
* @param v (x,y,z) coordinates in cm |
919 |
*/ |
920 |
float TrkParams::GetBY(float* v){ |
921 |
TrkParams::Load(1); |
922 |
if( !TrkParams::IsLoaded(1) )return 0.; |
923 |
float b[3]; |
924 |
gufld_(v,b); |
925 |
return b[1]/10.; |
926 |
} |
927 |
/** |
928 |
* Get BY (kGauss) |
929 |
* @param v (x,y,z) coordinates in cm |
930 |
*/ |
931 |
float TrkParams::GetBZ(float* v){ |
932 |
TrkParams::Load(1); |
933 |
if( !TrkParams::IsLoaded(1) )return 0.; |
934 |
float b[3]; |
935 |
gufld_(v,b); |
936 |
return b[2]/10.; |
937 |
} |
938 |
|
939 |
|
940 |
|
941 |
/** |
942 |
* \brief Set tracking mode (0=standard. 1=???) |
943 |
*/ |
944 |
void TrkParams::SetTrackingMode(int trackmode) { |
945 |
init__mini_trackmode = trackmode; |
946 |
SetTrackingMode(); |
947 |
}; |
948 |
/** |
949 |
* \brief Set fit-precision factor (typical value fact=100.) |
950 |
*/ |
951 |
void TrkParams::SetPrecisionFactor(double fact){ |
952 |
init__mini_fact = fact; |
953 |
SetPrecisionFactor(); |
954 |
}; |
955 |
/** |
956 |
* \brief Set minimum number of step in track fitting |
957 |
*/ |
958 |
void TrkParams::SetStepMin(int istepmin){ |
959 |
init__mini_istepmin = istepmin; |
960 |
SetStepMin(); |
961 |
}; |
962 |
|
963 |
/** |
964 |
* \brief Set p.f.a. |
965 |
* |
966 |
* Implemented algorythms: |
967 |
* 0 ETA |
968 |
* 1 --- |
969 |
* 2 ETA2 |
970 |
* 3 ETA3 |
971 |
* 4 ETA4 |
972 |
* 5 ETAL ==> ETA+LANDI |
973 |
* 10 COG |
974 |
* 11 COG1 |
975 |
* 12 COG2 |
976 |
* 13 COG3 |
977 |
* 14 COG4 |
978 |
*/ |
979 |
void TrkParams::SetPFA(int pfaid){ |
980 |
init__pfa = pfaid; |
981 |
SetPFA(); |
982 |
}; |
983 |
/** |
984 |
* \brief Get spatial resolution. |
985 |
* |
986 |
* Method to retrieve the spatial resolution associated with the |
987 |
* adopted p.f.a. |
988 |
* @param view Tracker view (1-12) |
989 |
* @param angle Track projected angle |
990 |
* |
991 |
* In order to change p.f.a. use the SetPFA(int pfaid) method, eg.: |
992 |
* |
993 |
* TrkParams::SetPFA(0) // ETA |
994 |
* |
995 |
*/ |
996 |
float TrkParams::GetResolution(int view, float angle){ |
997 |
float res = 1000; |
998 |
if( init__pfa == 0 )res = riseta_(&view,&angle); |
999 |
else cout << "float TrkParams::GetResolution(int view, float angle) -- PFA "<<init__pfa<<" not yet implemented"<<endl; |
1000 |
return res; |
1001 |
} |
1002 |
|
1003 |
|
1004 |
|
1005 |
ClassImp(TrkParams); |