/[PAMELA software]/DarthVader/TrackerLevel2/src/TrkParams.cpp
ViewVC logotype

Contents of /DarthVader/TrackerLevel2/src/TrkParams.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.15 - (show annotations) (download)
Fri Aug 31 15:00:10 2007 UTC (17 years, 3 months ago) by pam-fi
Branch: MAIN
CVS Tags: v4r00
Changes since 1.14: +2 -1 lines
set eta+landi as default pfa

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

  ViewVC Help
Powered by ViewVC 1.1.23