4 |
*/ |
*/ |
5 |
#include <TrkLevel2.h> |
#include <TrkLevel2.h> |
6 |
#include <iostream> |
#include <iostream> |
7 |
|
#include <math.h> |
8 |
using namespace std; |
using namespace std; |
9 |
//...................................... |
//...................................... |
10 |
// F77 routines |
// F77 routines |
12 |
extern "C" { |
extern "C" { |
13 |
void dotrack_(int*, double*, double*, double*, double*, int*); |
void dotrack_(int*, double*, double*, double*, double*, int*); |
14 |
void dotrack2_(int*, double*, double*, double*, double*,double*, double*, double*,int*); |
void dotrack2_(int*, double*, double*, double*, double*,double*, double*, double*,int*); |
15 |
int readb_(const char*); |
// int readb_(const char*); |
16 |
|
// int readb_(); |
17 |
|
void mini2_(int*,int*,int*); |
18 |
|
void guess_(); |
19 |
|
void gufld_(float*, float*); |
20 |
} |
} |
21 |
|
|
22 |
//-------------------------------------- |
//-------------------------------------- |
23 |
// |
// |
24 |
// |
// |
25 |
//-------------------------------------- |
//-------------------------------------- |
26 |
TrkTrack::TrkTrack(){ |
TrkTrack::TrkTrack(){ |
27 |
|
// cout << "TrkTrack::TrkTrack()" << endl; |
28 |
seqno = -1; |
seqno = -1; |
29 |
image = -1; |
image = -1; |
30 |
chi2 = 0; |
chi2 = 0; |
31 |
nstep = 0; |
nstep = 0; |
32 |
for(int it1=0;it1<5;it1++){ |
for(int it1=0;it1<5;it1++){ |
33 |
al[it1] = 0; |
al[it1] = 0; |
34 |
for(int it2=0;it2<5;it2++)coval[it1][it2] = 0; |
for(int it2=0;it2<5;it2++)coval[it1][it2] = 0; |
35 |
}; |
}; |
36 |
for(int ip=0;ip<6;ip++){ |
for(int ip=0;ip<6;ip++){ |
37 |
xgood[ip] = 0; |
xgood[ip] = 0; |
38 |
ygood[ip] = 0; |
ygood[ip] = 0; |
39 |
xm[ip] = 0; |
xm[ip] = 0; |
40 |
ym[ip] = 0; |
ym[ip] = 0; |
41 |
zm[ip] = 0; |
zm[ip] = 0; |
42 |
resx[ip] = 0; |
resx[ip] = 0; |
43 |
resy[ip] = 0; |
resy[ip] = 0; |
44 |
xv[ip] = 0; |
xv[ip] = 0; |
45 |
yv[ip] = 0; |
yv[ip] = 0; |
46 |
zv[ip] = 0; |
zv[ip] = 0; |
47 |
axv[ip] = 0; |
axv[ip] = 0; |
48 |
ayv[ip] = 0; |
ayv[ip] = 0; |
49 |
dedx_x[ip] = 0; |
dedx_x[ip] = 0; |
50 |
dedx_y[ip] = 0; |
dedx_y[ip] = 0; |
51 |
// clx[ip] = 0; |
}; |
52 |
// cly[ip] = 0; |
clx = 0; |
53 |
}; |
cly = 0; |
54 |
clx = new TRefArray(6,0); |
// clx = new TRefArray(6,0); |
55 |
cly = new TRefArray(6,0); |
// cly = new TRefArray(6,0); |
56 |
}; |
}; |
57 |
//-------------------------------------- |
//-------------------------------------- |
58 |
// |
// |
62 |
seqno = t.seqno; |
seqno = t.seqno; |
63 |
image = t.image; |
image = t.image; |
64 |
chi2 = t.chi2; |
chi2 = t.chi2; |
65 |
nstep = t.nstep; |
nstep = t.nstep; |
66 |
for(int it1=0;it1<5;it1++){ |
for(int it1=0;it1<5;it1++){ |
67 |
al[it1] = t.al[it1]; |
al[it1] = t.al[it1]; |
68 |
for(int it2=0;it2<5;it2++)coval[it1][it2] = t.coval[it1][it2]; |
for(int it2=0;it2<5;it2++)coval[it1][it2] = t.coval[it1][it2]; |
69 |
}; |
}; |
70 |
for(int ip=0;ip<6;ip++){ |
for(int ip=0;ip<6;ip++){ |
71 |
xgood[ip] = t.xgood[ip]; |
xgood[ip] = t.xgood[ip]; |
72 |
ygood[ip] = t.ygood[ip]; |
ygood[ip] = t.ygood[ip]; |
73 |
xm[ip] = t.xm[ip]; |
xm[ip] = t.xm[ip]; |
74 |
ym[ip] = t.ym[ip]; |
ym[ip] = t.ym[ip]; |
75 |
zm[ip] = t.zm[ip]; |
zm[ip] = t.zm[ip]; |
76 |
resx[ip] = t.resx[ip]; |
resx[ip] = t.resx[ip]; |
77 |
resy[ip] = t.resy[ip]; |
resy[ip] = t.resy[ip]; |
78 |
xv[ip] = t.xv[ip]; |
xv[ip] = t.xv[ip]; |
79 |
yv[ip] = t.yv[ip]; |
yv[ip] = t.yv[ip]; |
80 |
zv[ip] = t.zv[ip]; |
zv[ip] = t.zv[ip]; |
81 |
axv[ip] = t.axv[ip]; |
axv[ip] = t.axv[ip]; |
82 |
ayv[ip] = t.ayv[ip]; |
ayv[ip] = t.ayv[ip]; |
83 |
dedx_x[ip] = t.dedx_x[ip]; |
dedx_x[ip] = t.dedx_x[ip]; |
84 |
dedx_y[ip] = t.dedx_y[ip]; |
dedx_y[ip] = t.dedx_y[ip]; |
85 |
// clx[ip] = 0;//<<<<pointer |
}; |
86 |
// cly[ip] = 0;//<<<<pointer |
clx = 0; |
87 |
}; |
cly = 0; |
88 |
clx = new TRefArray(*(t.clx)); |
if(t.clx)clx = new TRefArray(*(t.clx)); |
89 |
cly = new TRefArray(*(t.cly)); |
if(t.cly)cly = new TRefArray(*(t.cly)); |
90 |
|
|
91 |
}; |
}; |
92 |
//-------------------------------------- |
//-------------------------------------- |
93 |
// |
// |
94 |
// |
// |
95 |
//-------------------------------------- |
//-------------------------------------- |
96 |
|
void TrkTrack::Copy(TrkTrack& t){ |
97 |
|
|
98 |
|
t.seqno = seqno; |
99 |
|
t.image = image; |
100 |
|
t.chi2 = chi2; |
101 |
|
t.nstep = nstep; |
102 |
|
for(int it1=0;it1<5;it1++){ |
103 |
|
t.al[it1] = al[it1]; |
104 |
|
for(int it2=0;it2<5;it2++)t.coval[it1][it2] = coval[it1][it2]; |
105 |
|
}; |
106 |
|
for(int ip=0;ip<6;ip++){ |
107 |
|
t.xgood[ip] = xgood[ip]; |
108 |
|
t.ygood[ip] = ygood[ip]; |
109 |
|
t.xm[ip] = xm[ip]; |
110 |
|
t.ym[ip] = ym[ip]; |
111 |
|
t.zm[ip] = zm[ip]; |
112 |
|
t.resx[ip] = resx[ip]; |
113 |
|
t.resy[ip] = resy[ip]; |
114 |
|
t.xv[ip] = xv[ip]; |
115 |
|
t.yv[ip] = yv[ip]; |
116 |
|
t.zv[ip] = zv[ip]; |
117 |
|
t.axv[ip] = axv[ip]; |
118 |
|
t.ayv[ip] = ayv[ip]; |
119 |
|
t.dedx_x[ip] = dedx_x[ip]; |
120 |
|
t.dedx_y[ip] = dedx_y[ip]; |
121 |
|
|
122 |
|
}; |
123 |
|
|
124 |
|
}; |
125 |
|
//-------------------------------------- |
126 |
|
// |
127 |
|
// |
128 |
|
//-------------------------------------- |
129 |
/** |
/** |
130 |
* Evaluates the trajectory in the apparatus associated to the track. |
* Evaluates the trajectory in the apparatus associated to the track. |
131 |
* It integrates the equations of motion in the magnetic field. The magnetic field should be previously loaded ( by calling TrkLevel2::LoadField() ), otherwise an error message is returned. |
* It integrates the equations of motion in the magnetic field. The magnetic field should be previously loaded ( by calling TrkLevel2::LoadField() ), otherwise an error message is returned. |
145 |
for (int i=0; i<5; i++) dal[i] = (double)al[i]; |
for (int i=0; i<5; i++) dal[i] = (double)al[i]; |
146 |
for (int i=0; i<t->npoint; i++) dzin[i] = (double)t->z[i]; |
for (int i=0; i<t->npoint; i++) dzin[i] = (double)t->z[i]; |
147 |
|
|
148 |
|
TrkParams::Load(1); |
149 |
|
if( !TrkParams::IsLoaded(1) ){ |
150 |
|
cout << "int TrkTrack::DoTrack(Trajectory* t) --- ERROR --- m.field not loaded"<<endl; |
151 |
|
return 0; |
152 |
|
} |
153 |
dotrack_(&(t->npoint),dzin,dxout,dyout,dal,&ifail); |
dotrack_(&(t->npoint),dzin,dxout,dyout,dal,&ifail); |
154 |
|
|
155 |
for (int i=0; i<t->npoint; i++){ |
for (int i=0; i<t->npoint; i++){ |
189 |
for (int i=0; i<5; i++) dal[i] = (double)al[i]; |
for (int i=0; i<5; i++) dal[i] = (double)al[i]; |
190 |
for (int i=0; i<t->npoint; i++) dzin[i] = (double)t->z[i]; |
for (int i=0; i<t->npoint; i++) dzin[i] = (double)t->z[i]; |
191 |
|
|
192 |
|
TrkParams::Load(1); |
193 |
|
if( !TrkParams::IsLoaded(1) ){ |
194 |
|
cout << "int TrkTrack::DoTrack2(Trajectory* t) --- ERROR --- m.field not loaded"<<endl; |
195 |
|
return 0; |
196 |
|
} |
197 |
dotrack2_(&(t->npoint),dzin,dxout,dyout,dthxout,dthyout,dtlout,dal,&ifail); |
dotrack2_(&(t->npoint),dzin,dxout,dyout,dthxout,dthyout,dtlout,dal,&ifail); |
198 |
|
|
199 |
for (int i=0; i<t->npoint; i++){ |
for (int i=0; i<t->npoint; i++){ |
246 |
//-------------------------------------- |
//-------------------------------------- |
247 |
void TrkTrack::Dump(){ |
void TrkTrack::Dump(){ |
248 |
cout << endl << "========== Track " ; |
cout << endl << "========== Track " ; |
249 |
cout << endl << "seq. n. : "<< seqno; |
cout << endl << "seq. n. : "<< seqno; |
250 |
cout << endl << "image n. : "<< image; |
cout << endl << "image n. : "<< image; |
251 |
cout << endl << "al : "; for(int i=0; i<5; i++)cout << al[i] << " "; |
cout << endl << "al : "; for(int i=0; i<5; i++)cout << al[i] << " "; |
252 |
cout << endl << "chi^2 : "<< chi2; |
cout << endl << "chi^2 : "<< chi2; |
253 |
cout << endl << "n.step : "<< nstep; |
cout << endl << "n.step : "<< nstep; |
254 |
cout << endl << "xgood : "; for(int i=0; i<6; i++)cout << xgood[i] ; |
cout << endl << "xgood : "; for(int i=0; i<6; i++)cout << xgood[i] ; |
255 |
cout << endl << "ygood : "; for(int i=0; i<6; i++)cout << ygood[i] ; |
cout << endl << "ygood : "; for(int i=0; i<6; i++)cout << ygood[i] ; |
256 |
cout << endl << "xm : "; for(int i=0; i<6; i++)cout << xm[i] << " "; |
cout << endl << "xm : "; for(int i=0; i<6; i++)cout << xm[i] << " "; |
257 |
cout << endl << "ym : "; for(int i=0; i<6; i++)cout << ym[i] << " "; |
cout << endl << "ym : "; for(int i=0; i<6; i++)cout << ym[i] << " "; |
258 |
cout << endl << "zm : "; for(int i=0; i<6; i++)cout << zm[i] << " "; |
cout << endl << "zm : "; for(int i=0; i<6; i++)cout << zm[i] << " "; |
259 |
|
cout << endl << "xv : "; for(int i=0; i<6; i++)cout << xv[i] << " "; |
260 |
|
cout << endl << "yv : "; for(int i=0; i<6; i++)cout << yv[i] << " "; |
261 |
|
cout << endl << "zv : "; for(int i=0; i<6; i++)cout << zv[i] << " "; |
262 |
|
cout << endl << "resx : "; for(int i=0; i<6; i++)cout << resx[i] << " "; |
263 |
|
cout << endl << "resy : "; for(int i=0; i<6; i++)cout << resy[i] << " "; |
264 |
|
cout << endl << "coval : "; for(int i=0; i<5; i++)cout << coval[0][i]<<" "; |
265 |
|
cout << endl << " "; for(int i=0; i<5; i++)cout << coval[1][i]<<" "; |
266 |
|
cout << endl << " "; for(int i=0; i<5; i++)cout << coval[2][i]<<" "; |
267 |
|
cout << endl << " "; for(int i=0; i<5; i++)cout << coval[3][i]<<" "; |
268 |
|
cout << endl << " "; for(int i=0; i<5; i++)cout << coval[4][i]<<" "; |
269 |
cout << endl << "dedx_x : "; for(int i=0; i<6; i++)cout << dedx_x[i] << " "; |
cout << endl << "dedx_x : "; for(int i=0; i<6; i++)cout << dedx_x[i] << " "; |
270 |
cout << endl << "dedx_y : "; for(int i=0; i<6; i++)cout << dedx_y[i] << " "; |
cout << endl << "dedx_y : "; for(int i=0; i<6; i++)cout << dedx_y[i] << " "; |
271 |
|
cout << endl; |
272 |
|
} |
273 |
|
/** |
274 |
|
* Set the TrkTrack position measurements |
275 |
|
*/ |
276 |
|
void TrkTrack::SetMeasure(double *xmeas, double *ymeas, double *zmeas){ |
277 |
|
for(int i=0; i<6; i++) xm[i]=*xmeas++; |
278 |
|
for(int i=0; i<6; i++) ym[i]=*ymeas++; |
279 |
|
for(int i=0; i<6; i++) zm[i]=*zmeas++; |
280 |
|
} |
281 |
|
/** |
282 |
|
* Set the TrkTrack position resolution |
283 |
|
*/ |
284 |
|
void TrkTrack::SetResolution(double *rx, double *ry){ |
285 |
|
for(int i=0; i<6; i++) resx[i]=*rx++; |
286 |
|
for(int i=0; i<6; i++) resy[i]=*ry++; |
287 |
|
} |
288 |
|
/** |
289 |
|
* Set the TrkTrack good measurement |
290 |
|
*/ |
291 |
|
void TrkTrack::SetGood(int *xg, int *yg){ |
292 |
|
for(int i=0; i<6; i++) xgood[i]=*xg++; |
293 |
|
for(int i=0; i<6; i++) ygood[i]=*yg++; |
294 |
|
} |
295 |
|
|
296 |
|
/** |
297 |
|
* Load the magnetic field |
298 |
|
*/ |
299 |
|
void TrkTrack::LoadField(TString path){ |
300 |
|
|
301 |
|
// strcpy(path_.path,path.Data()); |
302 |
|
// path_.pathlen = path.Length(); |
303 |
|
// path_.error = 0; |
304 |
|
// readb_(); |
305 |
|
|
306 |
|
TrkParams::Set(path,1); |
307 |
|
|
308 |
|
}; |
309 |
|
|
310 |
|
|
311 |
|
/** |
312 |
|
* Method to fill minimization-routine common |
313 |
|
*/ |
314 |
|
void TrkTrack::FillMiniStruct(cMini2track& track){ |
315 |
|
|
316 |
|
for(int i=0; i<6; i++){ |
317 |
|
|
318 |
|
track.xgood[i]=xgood[i]; |
319 |
|
track.ygood[i]=ygood[i]; |
320 |
|
|
321 |
|
track.xm[i]=xm[i]; |
322 |
|
track.ym[i]=ym[i]; |
323 |
|
track.zm[i]=zm[i]; |
324 |
|
|
325 |
|
// --- temporaneo ---------------------------- |
326 |
|
// andrebbe inserita la dimensione del sensore |
327 |
|
float segment = 100.; |
328 |
|
track.xm_a[i]=xm[i]; |
329 |
|
track.xm_b[i]=xm[i]; |
330 |
|
track.ym_a[i]=ym[i]; |
331 |
|
track.ym_b[i]=ym[i]; |
332 |
|
if( xgood[i] && !ygood[i] ){ |
333 |
|
track.ym_a[i] = track.ym_a[i]+segment; |
334 |
|
track.ym_b[i] = track.ym_b[i]-segment; |
335 |
|
}else if( !xgood[i] && ygood[i]){ |
336 |
|
track.xm_a[i] = track.xm_a[i]+segment; |
337 |
|
track.xm_b[i] = track.xm_b[i]-segment; |
338 |
|
} |
339 |
|
// --- temporaneo ---------------------------- |
340 |
|
|
341 |
|
track.resx[i]=resx[i]; |
342 |
|
track.resy[i]=resy[i]; |
343 |
|
} |
344 |
|
|
345 |
|
for(int i=0; i<5; i++) track.al[i]=al[i]; |
346 |
|
track.zini = 23.5; |
347 |
|
// ZINI = 23.5 !!! it should be the same parameter in all codes |
348 |
|
|
349 |
} |
} |
350 |
|
/** |
351 |
|
* Method to set values from minimization-routine common |
352 |
|
*/ |
353 |
|
void TrkTrack::SetFromMiniStruct(cMini2track *track){ |
354 |
|
|
355 |
|
for(int i=0; i<5; i++) { |
356 |
|
al[i]=track->al[i]; |
357 |
|
for(int j=0; j<5; j++) coval[i][j]=track->cov[i][j]; |
358 |
|
} |
359 |
|
chi2 = track->chi2; |
360 |
|
nstep = track->nstep; |
361 |
|
for(int i=0; i<6; i++){ |
362 |
|
xv[i] = track->xv[i]; |
363 |
|
yv[i] = track->yv[i]; |
364 |
|
zv[i] = track->zv[i]; |
365 |
|
xm[i] = track->xm[i]; |
366 |
|
ym[i] = track->ym[i]; |
367 |
|
zm[i] = track->zm[i]; |
368 |
|
axv[i] = track->axv[i]; |
369 |
|
ayv[i] = track->ayv[i]; |
370 |
|
} |
371 |
|
|
372 |
|
} |
373 |
|
/** |
374 |
|
* Tracking method. It calls F77 mini routine. |
375 |
|
*/ |
376 |
|
void TrkTrack::Fit(double pfixed, int& fail, int iprint){ |
377 |
|
|
378 |
|
float al_ini[] = {0.,0.,0.,0.,0.}; |
379 |
|
|
380 |
|
extern cMini2track track_; |
381 |
|
fail = 0; |
382 |
|
FillMiniStruct(track_); |
383 |
|
|
384 |
|
// if fit variables have been reset, evaluate the initial guess |
385 |
|
if(al[0]==-9999.&&al[1]==-9999.&&al[2]==-9999.&&al[3]==-9999.&&al[4]==-9999.)guess_(); |
386 |
|
|
387 |
|
// --------------------- free momentum |
388 |
|
if(pfixed==0.) { |
389 |
|
track_.pfixed=0.; |
390 |
|
} |
391 |
|
// --------------------- fixed momentum |
392 |
|
if(pfixed!=0.) { |
393 |
|
al[4]=1./pfixed; |
394 |
|
track_.pfixed=pfixed; |
395 |
|
} |
396 |
|
|
397 |
|
// store temporarily the initial guess |
398 |
|
for(int i=0; i<5; i++) al_ini[i]=track_.al[i]; |
399 |
|
|
400 |
|
// ------------------------------------------ |
401 |
|
// call mini routine |
402 |
|
TrkParams::Load(1); |
403 |
|
if( !TrkParams::IsLoaded(1) ){ |
404 |
|
cout << "void TrkTrack::Fit(double pfixed, int& fail, int iprint) --- ERROR --- m.field not loaded"<<endl; |
405 |
|
return; |
406 |
|
} |
407 |
|
int istep=0; |
408 |
|
int ifail=0; |
409 |
|
mini2_(&istep,&ifail, &iprint); |
410 |
|
if(ifail!=0) { |
411 |
|
if(iprint)cout << "ERROR: ifail= " << ifail << endl; |
412 |
|
fail = 1; |
413 |
|
} |
414 |
|
// ------------------------------------------ |
415 |
|
|
416 |
|
SetFromMiniStruct(&track_); |
417 |
|
// cout << endl << "eta ===> " << track_.al[4] << endl; |
418 |
|
|
419 |
|
// for(int i=0; i<5; i++) al[i]=track_.al[i]; |
420 |
|
// chi2=track_.chi2; |
421 |
|
// nstep=track_.nstep; |
422 |
|
// for(int i=0; i<6; i++) xv[i]=track_.xv[i]; |
423 |
|
// for(int i=0; i<6; i++) yv[i]=track_.yv[i]; |
424 |
|
// for(int i=0; i<6; i++) zv[i]=track_.zv[i]; |
425 |
|
// for(int i=0; i<6; i++) axv[i]=track_.axv[i]; |
426 |
|
// for(int i=0; i<6; i++) ayv[i]=track_.ayv[i]; |
427 |
|
// for(int i=0; i<5; i++) { |
428 |
|
// for(int j=0; j<5; j++) coval[i][j]=track_.cov[i][j]; |
429 |
|
// } |
430 |
|
|
431 |
|
if(fail){ |
432 |
|
if(iprint)cout << " >>>> fit failed >>>> drawing initial par"<<endl; |
433 |
|
for(int i=0; i<5; i++) al[i]=al_ini[i]; |
434 |
|
} |
435 |
|
|
436 |
|
}; |
437 |
|
/* |
438 |
|
* Reset the fit parameters |
439 |
|
*/ |
440 |
|
void TrkTrack::FitReset(){ |
441 |
|
for(int i=0; i<5; i++) al[i]=-9999.; |
442 |
|
chi2=0.; |
443 |
|
nstep=0; |
444 |
|
for(int i=0; i<6; i++) xv[i]=0.; |
445 |
|
for(int i=0; i<6; i++) yv[i]=0.; |
446 |
|
for(int i=0; i<6; i++) zv[i]=0.; |
447 |
|
for(int i=0; i<6; i++) axv[i]=0.; |
448 |
|
for(int i=0; i<6; i++) ayv[i]=0.; |
449 |
|
for(int i=0; i<5; i++) { |
450 |
|
for(int j=0; j<5; j++) coval[i][j]=0.; |
451 |
|
} |
452 |
|
} |
453 |
|
void TrkTrack::SetTrackingMode(int trackmode){ |
454 |
|
extern cMini2track track_; |
455 |
|
track_.trackmode = trackmode; |
456 |
|
} |
457 |
|
|
458 |
//-------------------------------------- |
//-------------------------------------- |
459 |
// |
// |
460 |
// |
// |
461 |
//-------------------------------------- |
//-------------------------------------- |
462 |
void TrkTrack::Clear(){ |
void TrkTrack::Clear(){ |
463 |
seqno = -1; |
// cout << "TrkTrack::Clear()"<<endl; |
464 |
image = -1; |
seqno = -1; |
465 |
chi2 = 0; |
image = -1; |
466 |
nstep = 0; |
chi2 = 0; |
467 |
for(int it1=0;it1<5;it1++){ |
nstep = 0; |
468 |
al[it1] = 0; |
for(int it1=0;it1<5;it1++){ |
469 |
for(int it2=0;it2<5;it2++)coval[it1][it2] = 0; |
al[it1] = 0; |
470 |
}; |
for(int it2=0;it2<5;it2++)coval[it1][it2] = 0; |
471 |
for(int ip=0;ip<6;ip++){ |
}; |
472 |
xgood[ip] = 0; |
for(int ip=0;ip<6;ip++){ |
473 |
ygood[ip] = 0; |
xgood[ip] = 0; |
474 |
xm[ip] = 0; |
ygood[ip] = 0; |
475 |
ym[ip] = 0; |
xm[ip] = 0; |
476 |
zm[ip] = 0; |
ym[ip] = 0; |
477 |
resx[ip] = 0; |
zm[ip] = 0; |
478 |
resy[ip] = 0; |
resx[ip] = 0; |
479 |
xv[ip] = 0; |
resy[ip] = 0; |
480 |
yv[ip] = 0; |
xv[ip] = 0; |
481 |
zv[ip] = 0; |
yv[ip] = 0; |
482 |
axv[ip] = 0; |
zv[ip] = 0; |
483 |
ayv[ip] = 0; |
axv[ip] = 0; |
484 |
dedx_x[ip] = 0; |
ayv[ip] = 0; |
485 |
dedx_y[ip] = 0; |
dedx_x[ip] = 0; |
486 |
// clx[ip] = 0; |
dedx_y[ip] = 0; |
487 |
// cly[ip] = 0; |
|
488 |
}; |
}; |
489 |
clx->Clear(); |
if(clx)clx->Clear(); |
490 |
cly->Clear(); |
if(cly)cly->Clear(); |
491 |
|
}; |
492 |
|
//-------------------------------------- |
493 |
|
// |
494 |
|
// |
495 |
|
//-------------------------------------- |
496 |
|
void TrkTrack::Delete(){ |
497 |
|
// cout << "TrkTrack::Delete()"<<endl; |
498 |
|
// Clear(); |
499 |
|
if(clx)delete clx; |
500 |
|
if(cly)delete cly; |
501 |
}; |
}; |
502 |
//-------------------------------------- |
//-------------------------------------- |
503 |
// |
// |
509 |
// |
// |
510 |
//-------------------------------------- |
//-------------------------------------- |
511 |
TrkSinglet::TrkSinglet(){ |
TrkSinglet::TrkSinglet(){ |
512 |
|
// cout << "TrkSinglet::TrkSinglet() " << GetUniqueID()<<endl; |
513 |
plane = 0; |
plane = 0; |
514 |
coord[0] = 0; |
coord[0] = 0; |
515 |
coord[1] = 0; |
coord[1] = 0; |
516 |
sgnl = 0; |
sgnl = 0; |
517 |
cls = 0; |
// cls = 0; |
518 |
}; |
}; |
519 |
//-------------------------------------- |
//-------------------------------------- |
520 |
// |
// |
521 |
// |
// |
522 |
//-------------------------------------- |
//-------------------------------------- |
523 |
TrkSinglet::TrkSinglet(const TrkSinglet& s){ |
TrkSinglet::TrkSinglet(const TrkSinglet& s){ |
524 |
|
// cout << "TrkSinglet::TrkSinglet(const TrkSinglet& s) " << GetUniqueID()<<endl; |
525 |
plane = s.plane; |
plane = s.plane; |
526 |
coord[0] = s.coord[0]; |
coord[0] = s.coord[0]; |
527 |
coord[1] = s.coord[1]; |
coord[1] = s.coord[1]; |
528 |
sgnl = s.sgnl; |
sgnl = s.sgnl; |
529 |
// cls = 0;//<<<<pointer |
// cls = 0;//<<<<pointer |
530 |
cls = TRef(s.cls); |
cls = TRef(s.cls); |
531 |
}; |
}; |
532 |
//-------------------------------------- |
//-------------------------------------- |
533 |
// |
// |
544 |
// |
// |
545 |
// |
// |
546 |
//-------------------------------------- |
//-------------------------------------- |
547 |
|
void TrkSinglet::Clear(){ |
548 |
|
// cout << "TrkSinglet::Clear() " << GetUniqueID()<<endl; |
549 |
|
// cls=0; |
550 |
|
plane=-1; |
551 |
|
coord[0]=-999; |
552 |
|
coord[1]=-999; |
553 |
|
sgnl=0; |
554 |
|
|
555 |
|
} |
556 |
|
//-------------------------------------- |
557 |
|
// |
558 |
|
// |
559 |
|
//-------------------------------------- |
560 |
TrkLevel2::TrkLevel2(){ |
TrkLevel2::TrkLevel2(){ |
561 |
// good2 = -1; |
// cout <<"TrkLevel2::TrkLevel2()"<<endl; |
562 |
for(Int_t i=0; i<12 ; i++){ |
for(Int_t i=0; i<12 ; i++){ |
|
// crc[i] = -1; |
|
563 |
good[i] = -1; |
good[i] = -1; |
564 |
}; |
}; |
565 |
Track = new TClonesArray("TrkTrack"); |
// okkio!! memory-leak |
566 |
SingletX = new TClonesArray("TrkSinglet"); |
// Track = new TClonesArray("TrkTrack"); |
567 |
SingletY = new TClonesArray("TrkSinglet"); |
// SingletX = new TClonesArray("TrkSinglet"); |
568 |
|
// SingletY = new TClonesArray("TrkSinglet"); |
569 |
|
Track = 0; |
570 |
|
SingletX = 0; |
571 |
|
SingletY = 0; |
572 |
|
|
573 |
// PhysicalTrack = new TClonesArray("TrkTrack"); |
} |
574 |
//sostituire con TRefArray... appena ho capito come si usa |
//-------------------------------------- |
575 |
|
// |
576 |
|
// |
577 |
|
//-------------------------------------- |
578 |
|
void TrkLevel2::Set(){ |
579 |
|
if(!Track)Track = new TClonesArray("TrkTrack"); |
580 |
|
if(!SingletX)SingletX = new TClonesArray("TrkSinglet"); |
581 |
|
if(!SingletY)SingletY = new TClonesArray("TrkSinglet"); |
582 |
} |
} |
583 |
//-------------------------------------- |
//-------------------------------------- |
584 |
// |
// |
586 |
//-------------------------------------- |
//-------------------------------------- |
587 |
void TrkLevel2::Dump(){ |
void TrkLevel2::Dump(){ |
588 |
|
|
|
TClonesArray &t = *Track; |
|
|
TClonesArray &sx = *SingletX; |
|
|
TClonesArray &sy = *SingletY; |
|
589 |
// |
// |
590 |
cout << endl << endl << "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-"; |
cout << endl << endl << "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-"; |
591 |
cout << endl << "good : "; for(int i=0; i<12; i++) cout << good[i]<<" "; |
cout << endl << "good : "; for(int i=0; i<12; i++) cout << good[i]<<" "; |
592 |
cout << endl << "ntrk() : " << this->ntrk() ; |
cout << endl << "ntrk() : " << this->ntrk() ; |
593 |
cout << endl << "nclsx() : " << this->nclsx(); |
cout << endl << "nclsx() : " << this->nclsx(); |
594 |
cout << endl << "nclsy() : " << this->nclsy(); |
cout << endl << "nclsy() : " << this->nclsy(); |
595 |
for(int i=0; i<this->ntrk(); i++) ((TrkTrack *)t[i])->Dump(); |
// TClonesArray &t = *Track; |
596 |
for(int i=0; i<this->nclsx(); i++) ((TrkSinglet *)sx[i])->Dump(); |
// TClonesArray &sx = *SingletX; |
597 |
for(int i=0; i<this->nclsy(); i++) ((TrkSinglet *)sy[i])->Dump(); |
// TClonesArray &sy = *SingletY; |
598 |
|
// for(int i=0; i<ntrk(); i++) ((TrkTrack *)t[i])->Dump(); |
599 |
|
// for(int i=0; i<nclsx(); i++) ((TrkSinglet *)sx[i])->Dump(); |
600 |
|
// for(int i=0; i<nclsy(); i++) ((TrkSinglet *)sy[i])->Dump(); |
601 |
|
if(Track){ |
602 |
|
TClonesArray &t = *Track; |
603 |
|
for(int i=0; i<ntrk(); i++) ((TrkTrack *)t[i])->Dump(); |
604 |
|
} |
605 |
|
if(SingletX){ |
606 |
|
TClonesArray &sx = *SingletX; |
607 |
|
for(int i=0; i<nclsx(); i++) ((TrkSinglet *)sx[i])->Dump(); |
608 |
|
} |
609 |
|
if(SingletY){ |
610 |
|
TClonesArray &sy = *SingletY; |
611 |
|
for(int i=0; i<nclsy(); i++) ((TrkSinglet *)sy[i])->Dump(); |
612 |
|
} |
613 |
} |
} |
614 |
//-------------------------------------- |
//-------------------------------------- |
615 |
// |
// |
618 |
/** |
/** |
619 |
* Fills a TrkLevel2 object with values from a struct cTrkLevel2 (to get data from F77 common). |
* Fills a TrkLevel2 object with values from a struct cTrkLevel2 (to get data from F77 common). |
620 |
*/ |
*/ |
621 |
void TrkLevel2::SetFromLevel2Struct(cTrkLevel2 *l2){ |
// void TrkLevel2::SetFromLevel2Struct(cTrkLevel2 *l2){ |
622 |
|
|
623 |
// temporary objects: |
// // temporary objects: |
624 |
TrkSinglet* t_singlet = new TrkSinglet(); |
// TrkSinglet* t_singlet = new TrkSinglet(); |
625 |
TrkTrack* t_track = new TrkTrack(); |
// TrkTrack* t_track = new TrkTrack(); |
626 |
|
|
627 |
// **** general variables **** |
// // **** general variables **** |
628 |
// good2 = l2->good2; |
// // good2 = l2->good2; |
629 |
for(Int_t i=0; i<12 ; i++){ |
// for(Int_t i=0; i<12 ; i++){ |
630 |
// crc[i] = l2->crc[i]; |
// // crc[i] = l2->crc[i]; |
631 |
good[i] = l2->good[i]; |
// good[i] = l2->good[i]; |
632 |
}; |
// }; |
633 |
// *** TRACKS *** |
// // *** TRACKS *** |
634 |
TClonesArray &t = *Track; |
// if(!Track) Track = new TClonesArray("TrkTrack"); |
635 |
for(int i=0; i<l2->ntrk; i++){ |
// TClonesArray &t = *Track; |
636 |
t_track->seqno = i;// NBNBNBNB deve sempre essere = i |
// for(int i=0; i<l2->ntrk; i++){ |
637 |
t_track->image = l2->image[i]-1; |
// t_track->seqno = i;// NBNBNBNB deve sempre essere = i |
638 |
// cout << "track "<<i<<t_track->seqno << t_track->image<<endl; |
// t_track->image = l2->image[i]-1; |
639 |
t_track->chi2 = l2->chi2_nt[i]; |
// // cout << "track "<<i<<t_track->seqno << t_track->image<<endl; |
640 |
t_track->nstep = l2->nstep_nt[i]; |
// t_track->chi2 = l2->chi2_nt[i]; |
641 |
for(int it1=0;it1<5;it1++){ |
// t_track->nstep = l2->nstep_nt[i]; |
642 |
t_track->al[it1] = l2->al_nt[i][it1]; |
// for(int it1=0;it1<5;it1++){ |
643 |
for(int it2=0;it2<5;it2++) |
// t_track->al[it1] = l2->al_nt[i][it1]; |
644 |
t_track->coval[it1][it2] = l2->coval[i][it2][it1]; |
// for(int it2=0;it2<5;it2++) |
645 |
}; |
// t_track->coval[it1][it2] = l2->coval[i][it2][it1]; |
646 |
for(int ip=0;ip<6;ip++){ |
// }; |
647 |
t_track->xgood[ip] = l2->xgood_nt[i][ip]; |
// for(int ip=0;ip<6;ip++){ |
648 |
t_track->ygood[ip] = l2->ygood_nt[i][ip]; |
// t_track->xgood[ip] = l2->xgood_nt[i][ip]; |
649 |
t_track->xm[ip] = l2->xm_nt[i][ip]; |
// t_track->ygood[ip] = l2->ygood_nt[i][ip]; |
650 |
t_track->ym[ip] = l2->ym_nt[i][ip]; |
// t_track->xm[ip] = l2->xm_nt[i][ip]; |
651 |
t_track->zm[ip] = l2->zm_nt[i][ip]; |
// t_track->ym[ip] = l2->ym_nt[i][ip]; |
652 |
t_track->resx[ip] = l2->resx_nt[i][ip]; |
// t_track->zm[ip] = l2->zm_nt[i][ip]; |
653 |
t_track->resy[ip] = l2->resy_nt[i][ip]; |
// t_track->resx[ip] = l2->resx_nt[i][ip]; |
654 |
t_track->xv[ip] = l2->xv_nt[i][ip]; |
// t_track->resy[ip] = l2->resy_nt[i][ip]; |
655 |
t_track->yv[ip] = l2->yv_nt[i][ip]; |
// t_track->xv[ip] = l2->xv_nt[i][ip]; |
656 |
t_track->zv[ip] = l2->zv_nt[i][ip]; |
// t_track->yv[ip] = l2->yv_nt[i][ip]; |
657 |
t_track->axv[ip] = l2->axv_nt[i][ip]; |
// t_track->zv[ip] = l2->zv_nt[i][ip]; |
658 |
t_track->ayv[ip] = l2->ayv_nt[i][ip]; |
// t_track->axv[ip] = l2->axv_nt[i][ip]; |
659 |
t_track->dedx_x[ip] = l2->dedx_x[i][ip]; |
// t_track->ayv[ip] = l2->ayv_nt[i][ip]; |
660 |
t_track->dedx_y[ip] = l2->dedx_y[i][ip]; |
// t_track->dedx_x[ip] = l2->dedx_x[i][ip]; |
661 |
// t_track->clx[ip] = 0; |
// t_track->dedx_y[ip] = l2->dedx_y[i][ip]; |
662 |
// t_track->cly[ip] = 0; |
// // t_track->clx[ip] = 0; |
663 |
}; |
// // t_track->cly[ip] = 0; |
664 |
new(t[i]) TrkTrack(*t_track); |
// }; |
665 |
t_track->Clear(); |
// new(t[i]) TrkTrack(*t_track); |
666 |
}; |
// t_track->Clear(); |
667 |
// *** SINGLETS *** |
// }; |
668 |
TClonesArray &sx = *SingletX; |
// // *** SINGLETS *** |
669 |
for(int i=0; i<l2->nclsx; i++){ |
// if(!SingletX)SingletX = new TClonesArray("TrkSinglet"); |
670 |
t_singlet->plane = l2->planex[i]; |
// TClonesArray &sx = *SingletX; |
671 |
t_singlet->coord[0] = l2->xs[i][0]; |
// for(int i=0; i<l2->nclsx; i++){ |
672 |
t_singlet->coord[1] = l2->xs[i][1]; |
// t_singlet->plane = l2->planex[i]; |
673 |
t_singlet->sgnl = l2->signlxs[i]; |
// t_singlet->coord[0] = l2->xs[i][0]; |
674 |
// t_singlet->cls = 0; |
// t_singlet->coord[1] = l2->xs[i][1]; |
675 |
new(sx[i]) TrkSinglet(*t_singlet); |
// t_singlet->sgnl = l2->signlxs[i]; |
676 |
t_singlet->Clear(); |
// // t_singlet->cls = 0; |
677 |
} |
// new(sx[i]) TrkSinglet(*t_singlet); |
678 |
TClonesArray &sy = *SingletY; |
// t_singlet->Clear(); |
679 |
for(int i=0; i<l2->nclsy; i++){ |
// } |
680 |
t_singlet->plane = l2->planey[i]; |
// if(!SingletY)SingletY = new TClonesArray("TrkSinglet"); |
681 |
t_singlet->coord[0] = l2->ys[i][0]; |
// TClonesArray &sy = *SingletY; |
682 |
t_singlet->coord[1] = l2->ys[i][1]; |
// for(int i=0; i<l2->nclsy; i++){ |
683 |
t_singlet->sgnl = l2->signlys[i]; |
// t_singlet->plane = l2->planey[i]; |
684 |
// t_singlet->cls = 0; |
// t_singlet->coord[0] = l2->ys[i][0]; |
685 |
new(sy[i]) TrkSinglet(*t_singlet); |
// t_singlet->coord[1] = l2->ys[i][1]; |
686 |
t_singlet->Clear(); |
// t_singlet->sgnl = l2->signlys[i]; |
687 |
}; |
// // t_singlet->cls = 0; |
688 |
|
// new(sy[i]) TrkSinglet(*t_singlet); |
689 |
|
// t_singlet->Clear(); |
690 |
|
// }; |
691 |
|
|
692 |
delete t_track; |
// delete t_track; |
693 |
delete t_singlet; |
// delete t_singlet; |
694 |
} |
// } |
695 |
//-------------------------------------- |
//-------------------------------------- |
696 |
// |
// |
697 |
// |
// |
712 |
good[i] = l2->good[i]; |
good[i] = l2->good[i]; |
713 |
}; |
}; |
714 |
// *** TRACKS *** |
// *** TRACKS *** |
715 |
|
if(!Track) Track = new TClonesArray("TrkTrack"); |
716 |
TClonesArray &t = *Track; |
TClonesArray &t = *Track; |
717 |
|
//----------------------------------------------------- |
718 |
|
if(l1 && !t_track->clx)t_track->clx = new TRefArray(6,0); |
719 |
|
if(l1 && !t_track->cly)t_track->cly = new TRefArray(6,0); |
720 |
|
//----------------------------------------------------- |
721 |
for(int i=0; i<l2->ntrk; i++){ |
for(int i=0; i<l2->ntrk; i++){ |
722 |
t_track->seqno = i;// NBNBNBNB deve sempre essere = i |
t_track->seqno = i;// NBNBNBNB deve sempre essere = i |
723 |
t_track->image = l2->image[i]-1; |
t_track->image = l2->image[i]-1; |
744 |
t_track->ayv[ip] = l2->ayv_nt[i][ip]; |
t_track->ayv[ip] = l2->ayv_nt[i][ip]; |
745 |
t_track->dedx_x[ip] = l2->dedx_x[i][ip]; |
t_track->dedx_x[ip] = l2->dedx_x[i][ip]; |
746 |
t_track->dedx_y[ip] = l2->dedx_y[i][ip]; |
t_track->dedx_y[ip] = l2->dedx_y[i][ip]; |
|
// cout << "traccia "<<i<<" -- "<< ip << " "<< l2->cltrx[i][ip] <<" "<< l2->cltry[i][ip] <<" "<< t_track->xgood[ip] << t_track->ygood[ip]<<endl; |
|
747 |
//----------------------------------------------------- |
//----------------------------------------------------- |
748 |
// t_track->clx[ip] = l1->GetCluster(l2->cltrx[i][ip]-1); |
//----------------------------------------------------- |
749 |
// t_track->cly[ip] = l1->GetCluster(l2->cltry[i][ip]-1); |
if(l1 && t_track->xgood[ip])t_track->clx->AddAt(l1->GetCluster(l2->cltrx[i][ip]-1),ip); |
750 |
if(t_track->xgood[ip])t_track->clx->AddAt(l1->GetCluster(l2->cltrx[i][ip]-1),ip); |
if(l1 && t_track->ygood[ip])t_track->cly->AddAt(l1->GetCluster(l2->cltry[i][ip]-1),ip); |
751 |
if(t_track->ygood[ip])t_track->cly->AddAt(l1->GetCluster(l2->cltry[i][ip]-1),ip); |
//----------------------------------------------------- |
|
// if(t_track->ygood[ip])cout<<" i "<<i<<" ip "<<ip<<" l2->cltry[i][ip] "<<l2->cltry[i][ip]<< " l1->GetCluster(l2->cltry[i][ip]-1) "<<l1->GetCluster(l2->cltry[i][ip]-1)<<endl; |
|
|
// if(t_track->xgood[ip])cout<<" i "<<i<<" ip "<<ip<<" l2->cltrx[i][ip] "<<l2->cltrx[i][ip]<< " l1->GetCluster(l2->cltrx[i][ip]-1) "<<l1->GetCluster(l2->cltrx[i][ip]-1)<<endl; |
|
752 |
//----------------------------------------------------- |
//----------------------------------------------------- |
753 |
}; |
}; |
754 |
new(t[i]) TrkTrack(*t_track); |
new(t[i]) TrkTrack(*t_track); |
755 |
t_track->Clear(); |
t_track->Clear(); |
756 |
}; |
}; |
757 |
// *** SINGLETS *** |
// *** SINGLETS *** |
758 |
|
if(!SingletX)SingletX = new TClonesArray("TrkSinglet"); |
759 |
TClonesArray &sx = *SingletX; |
TClonesArray &sx = *SingletX; |
760 |
for(int i=0; i<l2->nclsx; i++){ |
for(int i=0; i<l2->nclsx; i++){ |
761 |
t_singlet->plane = l2->planex[i]; |
t_singlet->plane = l2->planex[i]; |
763 |
t_singlet->coord[1] = l2->xs[i][1]; |
t_singlet->coord[1] = l2->xs[i][1]; |
764 |
t_singlet->sgnl = l2->signlxs[i]; |
t_singlet->sgnl = l2->signlxs[i]; |
765 |
//----------------------------------------------------- |
//----------------------------------------------------- |
766 |
// cout << "singolo x "<<i<<" -- "<< l2->clsx[i] <<endl; |
if(l1) t_singlet->cls = l1->GetCluster(l2->clsx[i]-1); |
|
t_singlet->cls = l1->GetCluster(l2->clsx[i]-1); |
|
|
// cout<<" i "<<i<<" l2->clsx[i] "<<l2->clsx[i]<< " l1->GetCluster(l2->clsx[i]-1) "<<l1->GetCluster(l2->clsx[i]-1)<<endl; |
|
767 |
//----------------------------------------------------- |
//----------------------------------------------------- |
768 |
new(sx[i]) TrkSinglet(*t_singlet); |
new(sx[i]) TrkSinglet(*t_singlet); |
769 |
t_singlet->Clear(); |
t_singlet->Clear(); |
770 |
} |
} |
771 |
|
if(!SingletY)SingletY = new TClonesArray("TrkSinglet"); |
772 |
TClonesArray &sy = *SingletY; |
TClonesArray &sy = *SingletY; |
773 |
for(int i=0; i<l2->nclsy; i++){ |
for(int i=0; i<l2->nclsy; i++){ |
774 |
t_singlet->plane = l2->planey[i]; |
t_singlet->plane = l2->planey[i]; |
776 |
t_singlet->coord[1] = l2->ys[i][1]; |
t_singlet->coord[1] = l2->ys[i][1]; |
777 |
t_singlet->sgnl = l2->signlys[i]; |
t_singlet->sgnl = l2->signlys[i]; |
778 |
//----------------------------------------------------- |
//----------------------------------------------------- |
779 |
// cout << "singolo y "<<i<<" -- "<< l2->clsy[i] <<endl; |
if(l1) t_singlet->cls = l1->GetCluster(l2->clsy[i]-1); |
|
t_singlet->cls = l1->GetCluster(l2->clsy[i]-1); |
|
|
// cout<<" i "<<i<<" l2->clsy[i] "<<l2->clsy[i]<< " l1->GetCluster(l2->clsy[i]-1) "<<l1->GetCluster(l2->clsy[i]-1)<<endl; |
|
780 |
//----------------------------------------------------- |
//----------------------------------------------------- |
781 |
new(sy[i]) TrkSinglet(*t_singlet); |
new(sy[i]) TrkSinglet(*t_singlet); |
782 |
t_singlet->Clear(); |
t_singlet->Clear(); |
799 |
}; |
}; |
800 |
// *** TRACKS *** |
// *** TRACKS *** |
801 |
|
|
802 |
l2->ntrk = Track->GetEntries(); |
if(Track){ |
803 |
for(Int_t i=0;i<l2->ntrk;i++){ |
l2->ntrk = Track->GetEntries(); |
804 |
l2->image[i] = 1 + ((TrkTrack *)Track->At(i))->image; |
for(Int_t i=0;i<l2->ntrk;i++){ |
805 |
l2->chi2_nt[i] = ((TrkTrack *)Track->At(i))->chi2; |
l2->image[i] = 1 + ((TrkTrack *)Track->At(i))->image; |
806 |
l2->nstep_nt[i] = ((TrkTrack *)Track->At(i))->nstep; |
l2->chi2_nt[i] = ((TrkTrack *)Track->At(i))->chi2; |
807 |
for(int it1=0;it1<5;it1++){ |
l2->nstep_nt[i] = ((TrkTrack *)Track->At(i))->nstep; |
808 |
l2->al_nt[i][it1] = ((TrkTrack *)Track->At(i))->al[it1]; |
for(int it1=0;it1<5;it1++){ |
809 |
for(int it2=0;it2<5;it2++) |
l2->al_nt[i][it1] = ((TrkTrack *)Track->At(i))->al[it1]; |
810 |
l2->coval[i][it2][it1] = ((TrkTrack *)Track->At(i))->coval[it1][it2]; |
for(int it2=0;it2<5;it2++) |
811 |
}; |
l2->coval[i][it2][it1] = ((TrkTrack *)Track->At(i))->coval[it1][it2]; |
812 |
for(int ip=0;ip<6;ip++){ |
}; |
813 |
l2->xgood_nt[i][ip] = ((TrkTrack *)Track->At(i))->xgood[ip]; |
for(int ip=0;ip<6;ip++){ |
814 |
l2->ygood_nt[i][ip] = ((TrkTrack *)Track->At(i))->ygood[ip]; |
l2->xgood_nt[i][ip] = ((TrkTrack *)Track->At(i))->xgood[ip]; |
815 |
l2->xm_nt[i][ip] = ((TrkTrack *)Track->At(i))->xm[ip]; |
l2->ygood_nt[i][ip] = ((TrkTrack *)Track->At(i))->ygood[ip]; |
816 |
l2->ym_nt[i][ip] = ((TrkTrack *)Track->At(i))->ym[ip]; |
l2->xm_nt[i][ip] = ((TrkTrack *)Track->At(i))->xm[ip]; |
817 |
l2->zm_nt[i][ip] = ((TrkTrack *)Track->At(i))->zm[ip]; |
l2->ym_nt[i][ip] = ((TrkTrack *)Track->At(i))->ym[ip]; |
818 |
l2->resx_nt[i][ip] = ((TrkTrack *)Track->At(i))->resx[ip]; |
l2->zm_nt[i][ip] = ((TrkTrack *)Track->At(i))->zm[ip]; |
819 |
l2->resy_nt[i][ip] = ((TrkTrack *)Track->At(i))->resy[ip]; |
l2->resx_nt[i][ip] = ((TrkTrack *)Track->At(i))->resx[ip]; |
820 |
l2->xv_nt[i][ip] = ((TrkTrack *)Track->At(i))->xv[ip]; |
l2->resy_nt[i][ip] = ((TrkTrack *)Track->At(i))->resy[ip]; |
821 |
l2->yv_nt[i][ip] = ((TrkTrack *)Track->At(i))->yv[ip]; |
l2->xv_nt[i][ip] = ((TrkTrack *)Track->At(i))->xv[ip]; |
822 |
l2->zv_nt[i][ip] = ((TrkTrack *)Track->At(i))->zv[ip]; |
l2->yv_nt[i][ip] = ((TrkTrack *)Track->At(i))->yv[ip]; |
823 |
l2->axv_nt[i][ip] = ((TrkTrack *)Track->At(i))->axv[ip]; |
l2->zv_nt[i][ip] = ((TrkTrack *)Track->At(i))->zv[ip]; |
824 |
l2->ayv_nt[i][ip] = ((TrkTrack *)Track->At(i))->ayv[ip]; |
l2->axv_nt[i][ip] = ((TrkTrack *)Track->At(i))->axv[ip]; |
825 |
l2->dedx_x[i][ip] = ((TrkTrack *)Track->At(i))->dedx_x[ip]; |
l2->ayv_nt[i][ip] = ((TrkTrack *)Track->At(i))->ayv[ip]; |
826 |
l2->dedx_y[i][ip] = ((TrkTrack *)Track->At(i))->dedx_y[ip]; |
l2->dedx_x[i][ip] = ((TrkTrack *)Track->At(i))->dedx_x[ip]; |
827 |
}; |
l2->dedx_y[i][ip] = ((TrkTrack *)Track->At(i))->dedx_y[ip]; |
828 |
|
}; |
829 |
|
} |
830 |
} |
} |
|
|
|
831 |
// *** SINGLETS *** |
// *** SINGLETS *** |
832 |
l2->nclsx = SingletX->GetEntries(); |
if(SingletX){ |
833 |
for(Int_t i=0;i<l2->nclsx;i++){ |
l2->nclsx = SingletX->GetEntries(); |
834 |
l2->planex[i] = ((TrkSinglet *)SingletX->At(i))->plane; |
for(Int_t i=0;i<l2->nclsx;i++){ |
835 |
l2->xs[i][0] = ((TrkSinglet *)SingletX->At(i))->coord[0]; |
l2->planex[i] = ((TrkSinglet *)SingletX->At(i))->plane; |
836 |
l2->xs[i][1] = ((TrkSinglet *)SingletX->At(i))->coord[1]; |
l2->xs[i][0] = ((TrkSinglet *)SingletX->At(i))->coord[0]; |
837 |
l2->signlxs[i] = ((TrkSinglet *)SingletX->At(i))->sgnl; |
l2->xs[i][1] = ((TrkSinglet *)SingletX->At(i))->coord[1]; |
838 |
} |
l2->signlxs[i] = ((TrkSinglet *)SingletX->At(i))->sgnl; |
839 |
l2->nclsy = SingletY->GetEntries(); |
} |
840 |
for(Int_t i=0;i<l2->nclsy;i++){ |
} |
841 |
l2->planey[i] = ((TrkSinglet *)SingletY->At(i))->plane; |
|
842 |
l2->ys[i][0] = ((TrkSinglet *)SingletY->At(i))->coord[0]; |
if(SingletY){ |
843 |
l2->ys[i][1] = ((TrkSinglet *)SingletY->At(i))->coord[1]; |
l2->nclsy = SingletY->GetEntries(); |
844 |
l2->signlys[i] = ((TrkSinglet *)SingletY->At(i))->sgnl; |
for(Int_t i=0;i<l2->nclsy;i++){ |
845 |
|
l2->planey[i] = ((TrkSinglet *)SingletY->At(i))->plane; |
846 |
|
l2->ys[i][0] = ((TrkSinglet *)SingletY->At(i))->coord[0]; |
847 |
|
l2->ys[i][1] = ((TrkSinglet *)SingletY->At(i))->coord[1]; |
848 |
|
l2->signlys[i] = ((TrkSinglet *)SingletY->At(i))->sgnl; |
849 |
|
} |
850 |
} |
} |
851 |
} |
} |
852 |
//-------------------------------------- |
//-------------------------------------- |
854 |
// |
// |
855 |
//-------------------------------------- |
//-------------------------------------- |
856 |
void TrkLevel2::Clear(){ |
void TrkLevel2::Clear(){ |
|
// good2 = -1; |
|
857 |
for(Int_t i=0; i<12 ; i++){ |
for(Int_t i=0; i<12 ; i++){ |
858 |
// crc[i] = -1; |
good[i] = -1; |
859 |
good[i] = -1; |
}; |
860 |
}; |
// if(Track)Track->Clear("C"); |
861 |
/* Track->RemoveAll(); |
// if(SingletX)SingletX->Clear("C"); |
862 |
SingletX->RemoveAll(); |
// if(SingletY)SingletY->Clear("C"); |
863 |
SingletY->RemoveAll();*/ |
if(Track)Track->Delete(); |
864 |
// modify to avoid memory leakage |
if(SingletX)SingletX->Delete(); |
865 |
Track->Clear(); |
if(SingletY)SingletY->Delete(); |
866 |
SingletX->Clear(); |
} |
867 |
SingletY->Clear(); |
// //-------------------------------------- |
868 |
|
// // |
869 |
|
// // |
870 |
|
// //-------------------------------------- |
871 |
|
void TrkLevel2::Delete(){ |
872 |
|
|
873 |
|
// cout << "void TrkLevel2::Delete()"<<endl; |
874 |
|
Clear(); |
875 |
|
if(Track)delete Track; |
876 |
|
if(SingletX)delete SingletX; |
877 |
|
if(SingletY)delete SingletY; |
878 |
|
|
879 |
} |
} |
880 |
//-------------------------------------- |
//-------------------------------------- |
881 |
// |
// |
887 |
*/ |
*/ |
888 |
TRefArray *TrkLevel2::GetTracks_NFitSorted(){ |
TRefArray *TrkLevel2::GetTracks_NFitSorted(){ |
889 |
|
|
890 |
TRefArray *sorted = new TRefArray(); |
if(!Track)return 0; |
891 |
|
|
892 |
|
TRefArray *sorted = new TRefArray(); |
893 |
|
|
894 |
TClonesArray &t = *Track; |
TClonesArray &t = *Track; |
895 |
// TClonesArray &ts = *PhysicalTrack; |
// TClonesArray &ts = *PhysicalTrack; |
896 |
int N = ntrk(); |
int N = ntrk(); |
897 |
vector<int> m(N); for(int i=0; i<N; i++)m[i]=1; |
vector<int> m(N); for(int i=0; i<N; i++)m[i]=1; |
898 |
// int m[50]; for(int i=0; i<N; i++)m[i]=1; |
// int m[50]; for(int i=0; i<N; i++)m[i]=1; |
899 |
|
|
900 |
int indo=0; |
int indo=0; |
901 |
int indi=0; |
int indi=0; |
902 |
while(N != 0){ |
while(N > 0){ |
903 |
int nfit =0; |
// while(N != 0){ |
904 |
float chi2ref = numeric_limits<float>::max(); |
int nfit =0; |
905 |
|
float chi2ref = numeric_limits<float>::max(); |
906 |
|
|
907 |
// first loop to search maximum num. of fit points |
// first loop to search maximum num. of fit points |
908 |
for(int i=0; i < ntrk(); i++){ |
for(int i=0; i < ntrk(); i++){ |
909 |
if( ((TrkTrack *)t[i])->GetNtot() >= nfit && m[i]==1){ |
if( ((TrkTrack *)t[i])->GetNtot() >= nfit && m[i]==1){ |
910 |
nfit = ((TrkTrack *)t[i])->GetNtot(); |
nfit = ((TrkTrack *)t[i])->GetNtot(); |
911 |
} |
} |
912 |
} |
} |
913 |
//second loop to search minimum chi2 among selected |
//second loop to search minimum chi2 among selected |
914 |
for(int i=0; i<this->ntrk(); i++){ |
for(int i=0; i<ntrk(); i++){ |
915 |
Float_t chi2 = ((TrkTrack *)t[i])->chi2; |
Float_t chi2 = ((TrkTrack *)t[i])->chi2; |
916 |
if(chi2 < 0) chi2 = chi2*1000; |
if(chi2 < 0) chi2 = -chi2*1000; |
917 |
if( chi2 < chi2ref |
if( chi2 < chi2ref |
918 |
&& ((TrkTrack *)t[i])->GetNtot() == nfit |
&& ((TrkTrack *)t[i])->GetNtot() == nfit |
919 |
&& m[i]==1){ |
&& m[i]==1){ |
920 |
chi2ref = ((TrkTrack *)t[i])->chi2; |
chi2ref = ((TrkTrack *)t[i])->chi2; |
921 |
indi = i; |
indi = i; |
922 |
}; |
}; |
923 |
}; |
}; |
924 |
if( ((TrkTrack *)t[indi])->HasImage() ){ |
if( ((TrkTrack *)t[indi])->HasImage() ){ |
925 |
m[((TrkTrack *)t[indi])->image] = 0; |
m[((TrkTrack *)t[indi])->image] = 0; |
926 |
N--; |
N--; |
927 |
|
|
928 |
// cout << "i** "<< ((TrkTrack *)t[indi])->image << " " << nfiti <<" "<<chi2i<<endl; |
// cout << "i** "<< ((TrkTrack *)t[indi])->image << " " << nfiti <<" "<<chi2i<<endl; |
929 |
}; |
}; |
930 |
sorted->Add( (TrkTrack*)t[indi] ); |
sorted->Add( (TrkTrack*)t[indi] ); |
931 |
|
|
932 |
m[indi] = 0; |
m[indi] = 0; |
933 |
// cout << "SORTED "<< indo << " "<< indi << " "<< N << endl; |
// cout << "SORTED "<< indo << " "<< indi << " "<< N << " "<<((TrkTrack *)t[indi])->image<<" "<<chi2ref<<endl; |
934 |
N--; |
N--; |
935 |
indo++; |
indo++; |
936 |
} |
} |
937 |
m.clear(); |
m.clear(); |
938 |
// cout << "GetTracks_NFitSorted(it): Done"<< endl; |
// cout << "GetTracks_NFitSorted(it): Done"<< endl; |
939 |
|
|
940 |
return sorted; |
return sorted; |
941 |
// return PhysicalTrack; |
// return PhysicalTrack; |
942 |
} |
} |
943 |
//-------------------------------------- |
//-------------------------------------- |
956 |
cout << " Stored tracks ntrk() = "<< this->ntrk() << endl; |
cout << " Stored tracks ntrk() = "<< this->ntrk() << endl; |
957 |
return 0; |
return 0; |
958 |
} |
} |
959 |
|
if(!Track){ |
960 |
|
cout << "TrkTrack *TrkLevel2::GetStoredTrack(int is) >> (TClonesArray*) Track ==0 "<<endl; |
961 |
|
}; |
962 |
TClonesArray &t = *(Track); |
TClonesArray &t = *(Track); |
963 |
TrkTrack *track = (TrkTrack*)t[is]; |
TrkTrack *track = (TrkTrack*)t[is]; |
964 |
return track; |
return track; |
978 |
cout << " Stored x-singlets nclsx() = "<< this->nclsx() << endl; |
cout << " Stored x-singlets nclsx() = "<< this->nclsx() << endl; |
979 |
return 0; |
return 0; |
980 |
} |
} |
981 |
|
if(!SingletX)return 0; |
982 |
TClonesArray &t = *(SingletX); |
TClonesArray &t = *(SingletX); |
983 |
TrkSinglet *singlet = (TrkSinglet*)t[is]; |
TrkSinglet *singlet = (TrkSinglet*)t[is]; |
984 |
return singlet; |
return singlet; |
998 |
cout << " Stored y-singlets nclsy() = "<< this->nclsx() << endl; |
cout << " Stored y-singlets nclsy() = "<< this->nclsx() << endl; |
999 |
return 0; |
return 0; |
1000 |
} |
} |
1001 |
|
if(!SingletY)return 0; |
1002 |
TClonesArray &t = *(SingletY); |
TClonesArray &t = *(SingletY); |
1003 |
TrkSinglet *singlet = (TrkSinglet*)t[is]; |
TrkSinglet *singlet = (TrkSinglet*)t[is]; |
1004 |
return singlet; |
return singlet; |
1021 |
} |
} |
1022 |
|
|
1023 |
TRefArray *sorted = GetTracks(); //TEMPORANEO |
TRefArray *sorted = GetTracks(); //TEMPORANEO |
1024 |
|
if(!sorted)return 0; |
1025 |
TrkTrack *track = (TrkTrack*)sorted->At(it); |
TrkTrack *track = (TrkTrack*)sorted->At(it); |
1026 |
sorted->Delete(); |
sorted->Clear(); |
1027 |
|
delete sorted; |
1028 |
return track; |
return track; |
1029 |
} |
} |
1030 |
/** |
/** |
1033 |
Int_t TrkLevel2::GetNTracks(){ |
Int_t TrkLevel2::GetNTracks(){ |
1034 |
|
|
1035 |
Float_t ntot=0; |
Float_t ntot=0; |
1036 |
|
if(!Track)return 0; |
1037 |
TClonesArray &t = *Track; |
TClonesArray &t = *Track; |
1038 |
for(int i=0; i<ntrk(); i++) { |
for(int i=0; i<ntrk(); i++) { |
1039 |
if( ((TrkTrack *)t[i])->GetImageSeqNo() == -1 ) ntot+=1.; |
if( ((TrkTrack *)t[i])->GetImageSeqNo() == -1 ) ntot+=1.; |
1040 |
else ntot+=0.5; |
else ntot+=0.5; |
1041 |
} |
} |
1052 |
*/ |
*/ |
1053 |
TrkTrack *TrkLevel2::GetTrackImage(int it){ |
TrkTrack *TrkLevel2::GetTrackImage(int it){ |
1054 |
|
|
1055 |
if(it >= this->GetNTracks()){ |
if(it >= this->GetNTracks()){ |
1056 |
cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl; |
cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl; |
1057 |
cout << " Physical tracks GetNTracks() = "<< this->ntrk() << endl; |
cout << " Physical tracks GetNTracks() = "<< this->ntrk() << endl; |
1058 |
return 0; |
return 0; |
1059 |
} |
} |
1060 |
|
|
1061 |
TRefArray* sorted = GetTracks(); //TEMPORANEO |
TRefArray* sorted = GetTracks(); //TEMPORANEO |
1062 |
TrkTrack *track = (TrkTrack*)sorted->At(it); |
if(!sorted)return 0; |
1063 |
|
TrkTrack *track = (TrkTrack*)sorted->At(it); |
1064 |
|
|
1065 |
if(!track->HasImage()){ |
if(!track->HasImage()){ |
1066 |
cout << "** TrkLevel2 ** Track "<< it << "does not have image! " << endl; |
cout << "** TrkLevel2 ** Track "<< it << "does not have image! " << endl; |
1067 |
return 0; |
return 0; |
1068 |
} |
} |
1069 |
TrkTrack *image = (TrkTrack*)(*Track)[track->image]; |
if(!Track)return 0; |
1070 |
|
TrkTrack *image = (TrkTrack*)(*Track)[track->image]; |
1071 |
|
|
1072 |
sorted->Delete(); |
sorted->Delete(); |
1073 |
|
delete sorted; |
1074 |
return image; |
|
1075 |
|
return image; |
1076 |
|
|
1077 |
} |
} |
1078 |
//-------------------------------------- |
//-------------------------------------- |
1083 |
* Loads the magnetic field. |
* Loads the magnetic field. |
1084 |
* @param s Path of the magnetic-field files. |
* @param s Path of the magnetic-field files. |
1085 |
*/ |
*/ |
1086 |
void TrkLevel2::LoadField(TString s){ |
void TrkLevel2::LoadField(TString path){ |
1087 |
readb_(s.Data()); |
// |
1088 |
|
// strcpy(path_.path,path.Data()); |
1089 |
|
// path_.pathlen = path.Length(); |
1090 |
|
// path_.error = 0; |
1091 |
|
// readb_(); |
1092 |
|
|
1093 |
|
TrkParams::Set(path,1); |
1094 |
|
|
1095 |
|
// |
1096 |
}; |
}; |
1097 |
|
/** |
1098 |
|
* Get BY (kGauss) |
1099 |
|
* @param v (x,y,z) coordinates in cm |
1100 |
|
*/ |
1101 |
|
float TrkLevel2::GetBX(float* v){ |
1102 |
|
float b[3]; |
1103 |
|
gufld_(v,b); |
1104 |
|
return b[0]/10.; |
1105 |
|
} |
1106 |
|
/** |
1107 |
|
* Get BY (kGauss) |
1108 |
|
* @param v (x,y,z) coordinates in cm |
1109 |
|
*/ |
1110 |
|
float TrkLevel2::GetBY(float* v){ |
1111 |
|
float b[3]; |
1112 |
|
gufld_(v,b); |
1113 |
|
return b[1]/10.; |
1114 |
|
} |
1115 |
|
/** |
1116 |
|
* Get BY (kGauss) |
1117 |
|
* @param v (x,y,z) coordinates in cm |
1118 |
|
*/ |
1119 |
|
float TrkLevel2::GetBZ(float* v){ |
1120 |
|
float b[3]; |
1121 |
|
gufld_(v,b); |
1122 |
|
return b[2]/10.; |
1123 |
|
} |
1124 |
//-------------------------------------- |
//-------------------------------------- |
1125 |
// |
// |
1126 |
// |
// |
1217 |
tl = new float[npoint]; |
tl = new float[npoint]; |
1218 |
int i=0; |
int i=0; |
1219 |
do{ |
do{ |
1220 |
x[i] = 0; |
x[i] = 0; |
1221 |
y[i] = 0; |
y[i] = 0; |
1222 |
z[i] = zin[i]; |
z[i] = zin[i]; |
1223 |
thx[i] = 0; |
thx[i] = 0; |
1224 |
thy[i] = 0; |
thy[i] = 0; |
1225 |
tl[i] = 0; |
tl[i] = 0; |
1226 |
i++; |
i++; |
1227 |
}while(zin[i-1] > zin[i] && i < npoint); |
}while(zin[i-1] > zin[i] && i < npoint); |
1228 |
npoint=i; |
npoint=i; |
1229 |
if(npoint != n)cout << "NB! Trajectory created with "<<npoint<<" points"<<endl; |
if(npoint != n)cout << "NB! Trajectory created with "<<npoint<<" points"<<endl; |
1230 |
} |
} |
1231 |
|
void Trajectory::Delete(){ |
1232 |
|
|
1233 |
|
if(x) delete [] x; |
1234 |
|
if(y) delete [] y; |
1235 |
|
if(z) delete [] z; |
1236 |
|
if(thx) delete [] thx; |
1237 |
|
if(thy) delete [] thy; |
1238 |
|
if(tl) delete [] tl; |
1239 |
|
|
1240 |
|
} |
1241 |
//-------------------------------------- |
//-------------------------------------- |
1242 |
// |
// |
1243 |
// |
// |
1276 |
|
|
1277 |
} |
} |
1278 |
|
|
1279 |
|
/** |
1280 |
|
* Evaluates the trajectory in the apparatus associated to the track. |
1281 |
|
* It integrates the equations of motion in the magnetic field. The magnetic field should be previously loaded ( by calling TrkLevel2::LoadField() ), otherwise an error message is returned. |
1282 |
|
* @param t pointer to an object of the class Trajectory, |
1283 |
|
* which z coordinates should be previously initialized by calling the proper constructor ( Trajectory::Trajectory(int n, float* zin) ). |
1284 |
|
* @return error flag. |
1285 |
|
*/ |
1286 |
|
int Trajectory::DoTrack2(float* al){ |
1287 |
|
|
1288 |
|
double *dxout = new double[npoint]; |
1289 |
|
double *dyout = new double[npoint]; |
1290 |
|
double *dthxout = new double[npoint]; |
1291 |
|
double *dthyout = new double[npoint]; |
1292 |
|
double *dtlout = new double[npoint]; |
1293 |
|
double *dzin = new double[npoint]; |
1294 |
|
double dal[5]; |
1295 |
|
|
1296 |
|
int ifail = 0; |
1297 |
|
|
1298 |
|
for (int i=0; i<5; i++) dal[i] = (double)al[i]; |
1299 |
|
for (int i=0; i<npoint; i++) dzin[i] = (double)z[i]; |
1300 |
|
|
1301 |
|
TrkParams::Load(1); |
1302 |
|
if( !TrkParams::IsLoaded(1) ){ |
1303 |
|
cout << "int Trajectory::DoTrack2(float* al) --- ERROR --- m.field not loaded"<<endl; |
1304 |
|
return 0; |
1305 |
|
} |
1306 |
|
dotrack2_(&(npoint),dzin,dxout,dyout,dthxout,dthyout,dtlout,dal,&ifail); |
1307 |
|
|
1308 |
|
for (int i=0; i<npoint; i++){ |
1309 |
|
x[i] = (float)*dxout++; |
1310 |
|
y[i] = (float)*dyout++; |
1311 |
|
thx[i] = (float)*dthxout++; |
1312 |
|
thy[i] = (float)*dthyout++; |
1313 |
|
tl[i] = (float)*dtlout++; |
1314 |
|
} |
1315 |
|
|
1316 |
|
return ifail; |
1317 |
|
}; |
1318 |
|
|
1319 |
ClassImp(TrkLevel2); |
ClassImp(TrkLevel2); |
1320 |
ClassImp(TrkSinglet); |
ClassImp(TrkSinglet); |