1 |
mocchiut |
1.1 |
/** |
2 |
|
|
* \file TrkLevel2.cpp |
3 |
|
|
* \author Elena Vannuccini |
4 |
|
|
*/ |
5 |
|
|
#include <TrkLevel2.h> |
6 |
|
|
#include <iostream> |
7 |
pam-fi |
1.14 |
#include <math.h> |
8 |
mocchiut |
1.1 |
using namespace std; |
9 |
|
|
//...................................... |
10 |
|
|
// F77 routines |
11 |
|
|
//...................................... |
12 |
|
|
extern "C" { |
13 |
|
|
void dotrack_(int*, double*, double*, double*, double*, int*); |
14 |
pam-fi |
1.2 |
void dotrack2_(int*, double*, double*, double*, double*,double*, double*, double*,int*); |
15 |
pam-fi |
1.16 |
// int readb_(const char*); |
16 |
pam-fi |
1.26 |
// int readb_(); |
17 |
|
|
void mini2_(int*,int*,int*); |
18 |
|
|
void guess_(); |
19 |
|
|
void gufld_(float*, float*); |
20 |
mocchiut |
1.1 |
} |
21 |
pam-fi |
1.26 |
|
22 |
mocchiut |
1.1 |
//-------------------------------------- |
23 |
|
|
// |
24 |
|
|
// |
25 |
|
|
//-------------------------------------- |
26 |
|
|
TrkTrack::TrkTrack(){ |
27 |
pam-fi |
1.21 |
// cout << "TrkTrack::TrkTrack()" << endl; |
28 |
pam-fi |
1.3 |
seqno = -1; |
29 |
|
|
image = -1; |
30 |
mocchiut |
1.1 |
chi2 = 0; |
31 |
pam-fi |
1.14 |
nstep = 0; |
32 |
|
|
for(int it1=0;it1<5;it1++){ |
33 |
|
|
al[it1] = 0; |
34 |
|
|
for(int it2=0;it2<5;it2++)coval[it1][it2] = 0; |
35 |
mocchiut |
1.1 |
}; |
36 |
|
|
for(int ip=0;ip<6;ip++){ |
37 |
pam-fi |
1.21 |
xgood[ip] = 0; |
38 |
|
|
ygood[ip] = 0; |
39 |
|
|
xm[ip] = 0; |
40 |
|
|
ym[ip] = 0; |
41 |
|
|
zm[ip] = 0; |
42 |
|
|
resx[ip] = 0; |
43 |
|
|
resy[ip] = 0; |
44 |
|
|
xv[ip] = 0; |
45 |
|
|
yv[ip] = 0; |
46 |
|
|
zv[ip] = 0; |
47 |
|
|
axv[ip] = 0; |
48 |
|
|
ayv[ip] = 0; |
49 |
|
|
dedx_x[ip] = 0; |
50 |
|
|
dedx_y[ip] = 0; |
51 |
|
|
}; |
52 |
|
|
clx = 0; |
53 |
|
|
cly = 0; |
54 |
pam-fi |
1.23 |
// clx = new TRefArray(6,0); |
55 |
|
|
// cly = new TRefArray(6,0); |
56 |
mocchiut |
1.1 |
}; |
57 |
|
|
//-------------------------------------- |
58 |
|
|
// |
59 |
|
|
// |
60 |
|
|
//-------------------------------------- |
61 |
|
|
TrkTrack::TrkTrack(const TrkTrack& t){ |
62 |
pam-fi |
1.3 |
seqno = t.seqno; |
63 |
mocchiut |
1.1 |
image = t.image; |
64 |
|
|
chi2 = t.chi2; |
65 |
pam-fi |
1.14 |
nstep = t.nstep; |
66 |
|
|
for(int it1=0;it1<5;it1++){ |
67 |
|
|
al[it1] = t.al[it1]; |
68 |
|
|
for(int it2=0;it2<5;it2++)coval[it1][it2] = t.coval[it1][it2]; |
69 |
mocchiut |
1.1 |
}; |
70 |
|
|
for(int ip=0;ip<6;ip++){ |
71 |
pam-fi |
1.21 |
xgood[ip] = t.xgood[ip]; |
72 |
|
|
ygood[ip] = t.ygood[ip]; |
73 |
|
|
xm[ip] = t.xm[ip]; |
74 |
|
|
ym[ip] = t.ym[ip]; |
75 |
|
|
zm[ip] = t.zm[ip]; |
76 |
|
|
resx[ip] = t.resx[ip]; |
77 |
|
|
resy[ip] = t.resy[ip]; |
78 |
|
|
xv[ip] = t.xv[ip]; |
79 |
|
|
yv[ip] = t.yv[ip]; |
80 |
|
|
zv[ip] = t.zv[ip]; |
81 |
|
|
axv[ip] = t.axv[ip]; |
82 |
|
|
ayv[ip] = t.ayv[ip]; |
83 |
|
|
dedx_x[ip] = t.dedx_x[ip]; |
84 |
|
|
dedx_y[ip] = t.dedx_y[ip]; |
85 |
|
|
}; |
86 |
pam-fi |
1.22 |
clx = 0; |
87 |
|
|
cly = 0; |
88 |
|
|
if(t.clx)clx = new TRefArray(*(t.clx)); |
89 |
|
|
if(t.cly)cly = new TRefArray(*(t.cly)); |
90 |
pam-fi |
1.9 |
|
91 |
mocchiut |
1.1 |
}; |
92 |
|
|
//-------------------------------------- |
93 |
|
|
// |
94 |
|
|
// |
95 |
|
|
//-------------------------------------- |
96 |
pam-fi |
1.21 |
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 |
mocchiut |
1.1 |
/** |
130 |
|
|
* 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. |
132 |
|
|
* @param t pointer to an object of the class Trajectory, |
133 |
|
|
* which z coordinates should be previously initialized by calling the proper constructor ( Trajectory::Trajectory(int n, float* zin) ). |
134 |
|
|
* @return error flag. |
135 |
|
|
*/ |
136 |
|
|
int TrkTrack::DoTrack(Trajectory* t){ |
137 |
|
|
|
138 |
|
|
double *dxout = new double[t->npoint]; |
139 |
|
|
double *dyout = new double[t->npoint]; |
140 |
|
|
double *dzin = new double[t->npoint]; |
141 |
|
|
double dal[5]; |
142 |
|
|
|
143 |
|
|
int ifail = 0; |
144 |
|
|
|
145 |
|
|
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]; |
147 |
|
|
|
148 |
pam-fi |
1.26 |
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 |
mocchiut |
1.1 |
dotrack_(&(t->npoint),dzin,dxout,dyout,dal,&ifail); |
154 |
|
|
|
155 |
|
|
for (int i=0; i<t->npoint; i++){ |
156 |
|
|
t->x[i] = (float)*dxout++; |
157 |
|
|
t->y[i] = (float)*dyout++; |
158 |
|
|
} |
159 |
|
|
|
160 |
|
|
// delete [] dxout; |
161 |
|
|
// delete [] dyout; |
162 |
|
|
// delete [] dzin; |
163 |
|
|
|
164 |
|
|
return ifail; |
165 |
|
|
}; |
166 |
|
|
//-------------------------------------- |
167 |
|
|
// |
168 |
|
|
// |
169 |
|
|
//-------------------------------------- |
170 |
pam-fi |
1.2 |
/** |
171 |
|
|
* Evaluates the trajectory in the apparatus associated to the track. |
172 |
|
|
* 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. |
173 |
|
|
* @param t pointer to an object of the class Trajectory, |
174 |
|
|
* which z coordinates should be previously initialized by calling the proper constructor ( Trajectory::Trajectory(int n, float* zin) ). |
175 |
|
|
* @return error flag. |
176 |
|
|
*/ |
177 |
|
|
int TrkTrack::DoTrack2(Trajectory* t){ |
178 |
|
|
|
179 |
|
|
double *dxout = new double[t->npoint]; |
180 |
|
|
double *dyout = new double[t->npoint]; |
181 |
|
|
double *dthxout = new double[t->npoint]; |
182 |
|
|
double *dthyout = new double[t->npoint]; |
183 |
|
|
double *dtlout = new double[t->npoint]; |
184 |
|
|
double *dzin = new double[t->npoint]; |
185 |
|
|
double dal[5]; |
186 |
|
|
|
187 |
|
|
int ifail = 0; |
188 |
|
|
|
189 |
|
|
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]; |
191 |
|
|
|
192 |
pam-fi |
1.26 |
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 |
pam-fi |
1.2 |
dotrack2_(&(t->npoint),dzin,dxout,dyout,dthxout,dthyout,dtlout,dal,&ifail); |
198 |
|
|
|
199 |
|
|
for (int i=0; i<t->npoint; i++){ |
200 |
|
|
t->x[i] = (float)*dxout++; |
201 |
|
|
t->y[i] = (float)*dyout++; |
202 |
|
|
t->thx[i] = (float)*dthxout++; |
203 |
|
|
t->thy[i] = (float)*dthyout++; |
204 |
|
|
t->tl[i] = (float)*dtlout++; |
205 |
|
|
} |
206 |
|
|
|
207 |
|
|
// delete [] dxout; |
208 |
|
|
// delete [] dyout; |
209 |
|
|
// delete [] dzin; |
210 |
|
|
|
211 |
|
|
return ifail; |
212 |
|
|
}; |
213 |
|
|
//-------------------------------------- |
214 |
|
|
// |
215 |
|
|
// |
216 |
|
|
//-------------------------------------- |
217 |
mocchiut |
1.1 |
//float TrkTrack::BdL(){ |
218 |
|
|
//}; |
219 |
|
|
//-------------------------------------- |
220 |
|
|
// |
221 |
|
|
// |
222 |
|
|
//-------------------------------------- |
223 |
|
|
Float_t TrkTrack::GetRigidity(){ |
224 |
|
|
Float_t rig=0; |
225 |
|
|
if(chi2>0)rig=1./al[4]; |
226 |
|
|
if(rig<0) rig=-rig; |
227 |
|
|
return rig; |
228 |
|
|
}; |
229 |
|
|
// |
230 |
|
|
Float_t TrkTrack::GetDeflection(){ |
231 |
|
|
Float_t def=0; |
232 |
|
|
if(chi2>0)def=al[4]; |
233 |
|
|
return def; |
234 |
|
|
}; |
235 |
|
|
// |
236 |
|
|
Float_t TrkTrack::GetDEDX(){ |
237 |
|
|
Float_t dedx=0; |
238 |
|
|
for(Int_t i=0; i<6; i++)dedx+=dedx_x[i]*xgood[i]+dedx_y[i]*ygood[i]; |
239 |
|
|
dedx = dedx/(this->GetNX()+this->GetNY()); |
240 |
|
|
return dedx; |
241 |
|
|
}; |
242 |
|
|
|
243 |
|
|
//-------------------------------------- |
244 |
|
|
// |
245 |
|
|
// |
246 |
|
|
//-------------------------------------- |
247 |
|
|
void TrkTrack::Dump(){ |
248 |
|
|
cout << endl << "========== Track " ; |
249 |
pam-fi |
1.13 |
cout << endl << "seq. n. : "<< seqno; |
250 |
|
|
cout << endl << "image n. : "<< image; |
251 |
|
|
cout << endl << "al : "; for(int i=0; i<5; i++)cout << al[i] << " "; |
252 |
mocchiut |
1.1 |
cout << endl << "chi^2 : "<< chi2; |
253 |
pam-fi |
1.13 |
cout << endl << "n.step : "<< nstep; |
254 |
|
|
cout << endl << "xgood : "; for(int i=0; i<6; i++)cout << xgood[i] ; |
255 |
mocchiut |
1.1 |
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] << " "; |
257 |
|
|
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] << " "; |
259 |
pam-fi |
1.13 |
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 |
mocchiut |
1.1 |
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] << " "; |
271 |
pam-fi |
1.14 |
cout << endl; |
272 |
mocchiut |
1.1 |
} |
273 |
pam-fi |
1.13 |
/** |
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 |
pam-fi |
1.16 |
void TrkTrack::LoadField(TString path){ |
300 |
|
|
|
301 |
pam-fi |
1.26 |
// strcpy(path_.path,path.Data()); |
302 |
|
|
// path_.pathlen = path.Length(); |
303 |
|
|
// path_.error = 0; |
304 |
|
|
// readb_(); |
305 |
|
|
|
306 |
|
|
TrkParams::Set(path,1); |
307 |
pam-fi |
1.16 |
|
308 |
pam-fi |
1.13 |
}; |
309 |
pam-fi |
1.19 |
|
310 |
pam-fi |
1.25 |
|
311 |
pam-fi |
1.19 |
/** |
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 |
pam-fi |
1.13 |
/** |
374 |
|
|
* Tracking method. It calls F77 mini routine. |
375 |
|
|
*/ |
376 |
|
|
void TrkTrack::Fit(double pfixed, int& fail, int iprint){ |
377 |
pam-fi |
1.15 |
|
378 |
|
|
float al_ini[] = {0.,0.,0.,0.,0.}; |
379 |
|
|
|
380 |
pam-fi |
1.13 |
extern cMini2track track_; |
381 |
|
|
fail = 0; |
382 |
pam-fi |
1.19 |
FillMiniStruct(track_); |
383 |
pam-fi |
1.15 |
|
384 |
pam-fi |
1.19 |
// if fit variables have been reset, evaluate the initial guess |
385 |
pam-fi |
1.15 |
if(al[0]==-9999.&&al[1]==-9999.&&al[2]==-9999.&&al[3]==-9999.&&al[4]==-9999.)guess_(); |
386 |
|
|
|
387 |
pam-fi |
1.16 |
// --------------------- free momentum |
388 |
pam-fi |
1.14 |
if(pfixed==0.) { |
389 |
pam-fi |
1.19 |
track_.pfixed=0.; |
390 |
pam-fi |
1.14 |
} |
391 |
pam-fi |
1.16 |
// --------------------- fixed momentum |
392 |
pam-fi |
1.13 |
if(pfixed!=0.) { |
393 |
pam-fi |
1.19 |
al[4]=1./pfixed; |
394 |
|
|
track_.pfixed=pfixed; |
395 |
pam-fi |
1.13 |
} |
396 |
pam-fi |
1.15 |
|
397 |
pam-fi |
1.19 |
// store temporarily the initial guess |
398 |
pam-fi |
1.15 |
for(int i=0; i<5; i++) al_ini[i]=track_.al[i]; |
399 |
|
|
|
400 |
pam-fi |
1.19 |
// ------------------------------------------ |
401 |
|
|
// call mini routine |
402 |
pam-fi |
1.26 |
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 |
pam-fi |
1.13 |
int istep=0; |
408 |
|
|
int ifail=0; |
409 |
|
|
mini2_(&istep,&ifail, &iprint); |
410 |
|
|
if(ifail!=0) { |
411 |
pam-fi |
1.19 |
if(iprint)cout << "ERROR: ifail= " << ifail << endl; |
412 |
pam-fi |
1.13 |
fail = 1; |
413 |
|
|
} |
414 |
pam-fi |
1.19 |
// ------------------------------------------ |
415 |
pam-fi |
1.15 |
|
416 |
pam-fi |
1.19 |
SetFromMiniStruct(&track_); |
417 |
pam-fi |
1.13 |
// cout << endl << "eta ===> " << track_.al[4] << endl; |
418 |
|
|
|
419 |
pam-fi |
1.19 |
// 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 |
pam-fi |
1.15 |
|
431 |
pam-fi |
1.20 |
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 |
pam-fi |
1.15 |
|
436 |
pam-fi |
1.13 |
}; |
437 |
|
|
/* |
438 |
pam-fi |
1.15 |
* Reset the fit parameters |
439 |
pam-fi |
1.13 |
*/ |
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 |
pam-fi |
1.27 |
void TrkTrack::SetTrackingMode(int trackmode){ |
454 |
|
|
extern cMini2track track_; |
455 |
|
|
track_.trackmode = trackmode; |
456 |
|
|
} |
457 |
pam-fi |
1.13 |
|
458 |
mocchiut |
1.1 |
//-------------------------------------- |
459 |
|
|
// |
460 |
|
|
// |
461 |
|
|
//-------------------------------------- |
462 |
pam-fi |
1.10 |
void TrkTrack::Clear(){ |
463 |
pam-fi |
1.21 |
// cout << "TrkTrack::Clear()"<<endl; |
464 |
|
|
seqno = -1; |
465 |
|
|
image = -1; |
466 |
|
|
chi2 = 0; |
467 |
|
|
nstep = 0; |
468 |
|
|
for(int it1=0;it1<5;it1++){ |
469 |
|
|
al[it1] = 0; |
470 |
|
|
for(int it2=0;it2<5;it2++)coval[it1][it2] = 0; |
471 |
|
|
}; |
472 |
|
|
for(int ip=0;ip<6;ip++){ |
473 |
|
|
xgood[ip] = 0; |
474 |
|
|
ygood[ip] = 0; |
475 |
|
|
xm[ip] = 0; |
476 |
|
|
ym[ip] = 0; |
477 |
|
|
zm[ip] = 0; |
478 |
|
|
resx[ip] = 0; |
479 |
|
|
resy[ip] = 0; |
480 |
|
|
xv[ip] = 0; |
481 |
|
|
yv[ip] = 0; |
482 |
|
|
zv[ip] = 0; |
483 |
|
|
axv[ip] = 0; |
484 |
|
|
ayv[ip] = 0; |
485 |
|
|
dedx_x[ip] = 0; |
486 |
|
|
dedx_y[ip] = 0; |
487 |
|
|
|
488 |
|
|
}; |
489 |
|
|
if(clx)clx->Clear(); |
490 |
|
|
if(cly)cly->Clear(); |
491 |
pam-fi |
1.10 |
}; |
492 |
|
|
//-------------------------------------- |
493 |
|
|
// |
494 |
|
|
// |
495 |
|
|
//-------------------------------------- |
496 |
pam-fi |
1.11 |
void TrkTrack::Delete(){ |
497 |
pam-fi |
1.21 |
// cout << "TrkTrack::Delete()"<<endl; |
498 |
|
|
// Clear(); |
499 |
|
|
if(clx)delete clx; |
500 |
|
|
if(cly)delete cly; |
501 |
pam-fi |
1.11 |
}; |
502 |
pam-fi |
1.21 |
//-------------------------------------- |
503 |
pam-fi |
1.11 |
// |
504 |
|
|
// |
505 |
|
|
//-------------------------------------- |
506 |
pam-fi |
1.10 |
|
507 |
|
|
//-------------------------------------- |
508 |
|
|
// |
509 |
|
|
// |
510 |
|
|
//-------------------------------------- |
511 |
mocchiut |
1.1 |
TrkSinglet::TrkSinglet(){ |
512 |
pam-fi |
1.21 |
// cout << "TrkSinglet::TrkSinglet() " << GetUniqueID()<<endl; |
513 |
mocchiut |
1.1 |
plane = 0; |
514 |
|
|
coord[0] = 0; |
515 |
|
|
coord[1] = 0; |
516 |
|
|
sgnl = 0; |
517 |
pam-fi |
1.21 |
// cls = 0; |
518 |
mocchiut |
1.1 |
}; |
519 |
|
|
//-------------------------------------- |
520 |
|
|
// |
521 |
|
|
// |
522 |
|
|
//-------------------------------------- |
523 |
|
|
TrkSinglet::TrkSinglet(const TrkSinglet& s){ |
524 |
pam-fi |
1.21 |
// cout << "TrkSinglet::TrkSinglet(const TrkSinglet& s) " << GetUniqueID()<<endl; |
525 |
mocchiut |
1.1 |
plane = s.plane; |
526 |
|
|
coord[0] = s.coord[0]; |
527 |
|
|
coord[1] = s.coord[1]; |
528 |
|
|
sgnl = s.sgnl; |
529 |
pam-fi |
1.9 |
// cls = 0;//<<<<pointer |
530 |
pam-fi |
1.21 |
cls = TRef(s.cls); |
531 |
mocchiut |
1.1 |
}; |
532 |
|
|
//-------------------------------------- |
533 |
|
|
// |
534 |
|
|
// |
535 |
|
|
//-------------------------------------- |
536 |
|
|
void TrkSinglet::Dump(){ |
537 |
|
|
int i=0; |
538 |
|
|
cout << endl << "========== Singlet " ; |
539 |
|
|
cout << endl << "plane : " << plane; |
540 |
|
|
cout << endl << "coord[2] : "; while( i<2 && cout << coord[i] << " ") i++; |
541 |
|
|
cout << endl << "sgnl : " << sgnl; |
542 |
|
|
} |
543 |
|
|
//-------------------------------------- |
544 |
|
|
// |
545 |
|
|
// |
546 |
|
|
//-------------------------------------- |
547 |
pam-fi |
1.21 |
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 |
mocchiut |
1.1 |
TrkLevel2::TrkLevel2(){ |
561 |
mocchiut |
1.24 |
// cout <<"TrkLevel2::TrkLevel2()"<<endl; |
562 |
mocchiut |
1.1 |
for(Int_t i=0; i<12 ; i++){ |
563 |
pam-fi |
1.10 |
good[i] = -1; |
564 |
|
|
}; |
565 |
pam-fi |
1.23 |
// okkio!! memory-leak |
566 |
|
|
// Track = new TClonesArray("TrkTrack"); |
567 |
|
|
// SingletX = new TClonesArray("TrkSinglet"); |
568 |
|
|
// SingletY = new TClonesArray("TrkSinglet"); |
569 |
pam-fi |
1.21 |
Track = 0; |
570 |
|
|
SingletX = 0; |
571 |
|
|
SingletY = 0; |
572 |
pam-fi |
1.6 |
|
573 |
mocchiut |
1.1 |
} |
574 |
|
|
//-------------------------------------- |
575 |
|
|
// |
576 |
|
|
// |
577 |
|
|
//-------------------------------------- |
578 |
pam-fi |
1.23 |
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 |
|
|
// |
585 |
|
|
// |
586 |
|
|
//-------------------------------------- |
587 |
mocchiut |
1.1 |
void TrkLevel2::Dump(){ |
588 |
pam-fi |
1.10 |
|
589 |
|
|
// |
590 |
mocchiut |
1.1 |
cout << endl << endl << "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-"; |
591 |
pam-fi |
1.10 |
cout << endl << "good : "; for(int i=0; i<12; i++) cout << good[i]<<" "; |
592 |
mocchiut |
1.1 |
cout << endl << "ntrk() : " << this->ntrk() ; |
593 |
|
|
cout << endl << "nclsx() : " << this->nclsx(); |
594 |
|
|
cout << endl << "nclsy() : " << this->nclsy(); |
595 |
pam-fi |
1.21 |
// TClonesArray &t = *Track; |
596 |
|
|
// TClonesArray &sx = *SingletX; |
597 |
|
|
// 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 |
mocchiut |
1.1 |
} |
614 |
|
|
//-------------------------------------- |
615 |
|
|
// |
616 |
|
|
// |
617 |
|
|
//-------------------------------------- |
618 |
|
|
/** |
619 |
|
|
* Fills a TrkLevel2 object with values from a struct cTrkLevel2 (to get data from F77 common). |
620 |
|
|
*/ |
621 |
pam-fi |
1.26 |
// void TrkLevel2::SetFromLevel2Struct(cTrkLevel2 *l2){ |
622 |
pam-fi |
1.10 |
|
623 |
pam-fi |
1.26 |
// // temporary objects: |
624 |
|
|
// TrkSinglet* t_singlet = new TrkSinglet(); |
625 |
|
|
// TrkTrack* t_track = new TrkTrack(); |
626 |
|
|
|
627 |
|
|
// // **** general variables **** |
628 |
|
|
// // good2 = l2->good2; |
629 |
|
|
// for(Int_t i=0; i<12 ; i++){ |
630 |
|
|
// // crc[i] = l2->crc[i]; |
631 |
|
|
// good[i] = l2->good[i]; |
632 |
|
|
// }; |
633 |
|
|
// // *** TRACKS *** |
634 |
|
|
// if(!Track) Track = new TClonesArray("TrkTrack"); |
635 |
|
|
// TClonesArray &t = *Track; |
636 |
|
|
// for(int i=0; i<l2->ntrk; i++){ |
637 |
|
|
// t_track->seqno = i;// NBNBNBNB deve sempre essere = i |
638 |
|
|
// t_track->image = l2->image[i]-1; |
639 |
|
|
// // cout << "track "<<i<<t_track->seqno << t_track->image<<endl; |
640 |
|
|
// t_track->chi2 = l2->chi2_nt[i]; |
641 |
|
|
// t_track->nstep = l2->nstep_nt[i]; |
642 |
|
|
// for(int it1=0;it1<5;it1++){ |
643 |
|
|
// t_track->al[it1] = l2->al_nt[i][it1]; |
644 |
|
|
// for(int it2=0;it2<5;it2++) |
645 |
|
|
// t_track->coval[it1][it2] = l2->coval[i][it2][it1]; |
646 |
|
|
// }; |
647 |
|
|
// for(int ip=0;ip<6;ip++){ |
648 |
|
|
// t_track->xgood[ip] = l2->xgood_nt[i][ip]; |
649 |
|
|
// t_track->ygood[ip] = l2->ygood_nt[i][ip]; |
650 |
|
|
// t_track->xm[ip] = l2->xm_nt[i][ip]; |
651 |
|
|
// t_track->ym[ip] = l2->ym_nt[i][ip]; |
652 |
|
|
// t_track->zm[ip] = l2->zm_nt[i][ip]; |
653 |
|
|
// t_track->resx[ip] = l2->resx_nt[i][ip]; |
654 |
|
|
// t_track->resy[ip] = l2->resy_nt[i][ip]; |
655 |
|
|
// t_track->xv[ip] = l2->xv_nt[i][ip]; |
656 |
|
|
// t_track->yv[ip] = l2->yv_nt[i][ip]; |
657 |
|
|
// t_track->zv[ip] = l2->zv_nt[i][ip]; |
658 |
|
|
// t_track->axv[ip] = l2->axv_nt[i][ip]; |
659 |
|
|
// t_track->ayv[ip] = l2->ayv_nt[i][ip]; |
660 |
|
|
// t_track->dedx_x[ip] = l2->dedx_x[i][ip]; |
661 |
|
|
// t_track->dedx_y[ip] = l2->dedx_y[i][ip]; |
662 |
|
|
// // t_track->clx[ip] = 0; |
663 |
|
|
// // t_track->cly[ip] = 0; |
664 |
|
|
// }; |
665 |
|
|
// new(t[i]) TrkTrack(*t_track); |
666 |
|
|
// t_track->Clear(); |
667 |
|
|
// }; |
668 |
|
|
// // *** SINGLETS *** |
669 |
|
|
// if(!SingletX)SingletX = new TClonesArray("TrkSinglet"); |
670 |
|
|
// TClonesArray &sx = *SingletX; |
671 |
|
|
// for(int i=0; i<l2->nclsx; i++){ |
672 |
|
|
// t_singlet->plane = l2->planex[i]; |
673 |
|
|
// t_singlet->coord[0] = l2->xs[i][0]; |
674 |
|
|
// t_singlet->coord[1] = l2->xs[i][1]; |
675 |
|
|
// t_singlet->sgnl = l2->signlxs[i]; |
676 |
|
|
// // t_singlet->cls = 0; |
677 |
|
|
// new(sx[i]) TrkSinglet(*t_singlet); |
678 |
|
|
// t_singlet->Clear(); |
679 |
|
|
// } |
680 |
|
|
// if(!SingletY)SingletY = new TClonesArray("TrkSinglet"); |
681 |
|
|
// TClonesArray &sy = *SingletY; |
682 |
|
|
// for(int i=0; i<l2->nclsy; i++){ |
683 |
|
|
// t_singlet->plane = l2->planey[i]; |
684 |
|
|
// t_singlet->coord[0] = l2->ys[i][0]; |
685 |
|
|
// t_singlet->coord[1] = l2->ys[i][1]; |
686 |
|
|
// t_singlet->sgnl = l2->signlys[i]; |
687 |
|
|
// // t_singlet->cls = 0; |
688 |
|
|
// new(sy[i]) TrkSinglet(*t_singlet); |
689 |
|
|
// t_singlet->Clear(); |
690 |
|
|
// }; |
691 |
pam-fi |
1.9 |
|
692 |
pam-fi |
1.26 |
// delete t_track; |
693 |
|
|
// delete t_singlet; |
694 |
|
|
// } |
695 |
pam-fi |
1.9 |
//-------------------------------------- |
696 |
|
|
// |
697 |
|
|
// |
698 |
|
|
//-------------------------------------- |
699 |
|
|
/** |
700 |
|
|
* Fills a TrkLevel2 object with values from a struct cTrkLevel2 (to get data from F77 common). |
701 |
|
|
* Ref to Level1 data (clusters) is also set. |
702 |
|
|
*/ |
703 |
|
|
void TrkLevel2::SetFromLevel2Struct(cTrkLevel2 *l2, TrkLevel1 *l1){ |
704 |
|
|
|
705 |
|
|
// temporary objects: |
706 |
|
|
TrkSinglet* t_singlet = new TrkSinglet(); |
707 |
|
|
TrkTrack* t_track = new TrkTrack(); |
708 |
|
|
// general variables |
709 |
pam-fi |
1.10 |
// good2 = l2->good2; |
710 |
pam-fi |
1.9 |
for(Int_t i=0; i<12 ; i++){ |
711 |
pam-fi |
1.10 |
// crc[i] = l2->crc[i]; |
712 |
|
|
good[i] = l2->good[i]; |
713 |
pam-fi |
1.9 |
}; |
714 |
|
|
// *** TRACKS *** |
715 |
pam-fi |
1.21 |
if(!Track) Track = new TClonesArray("TrkTrack"); |
716 |
pam-fi |
1.9 |
TClonesArray &t = *Track; |
717 |
pam-fi |
1.26 |
//----------------------------------------------------- |
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 |
pam-fi |
1.9 |
for(int i=0; i<l2->ntrk; i++){ |
722 |
|
|
t_track->seqno = i;// NBNBNBNB deve sempre essere = i |
723 |
|
|
t_track->image = l2->image[i]-1; |
724 |
|
|
// cout << "track "<<i<<t_track->seqno << t_track->image<<endl; |
725 |
|
|
t_track->chi2 = l2->chi2_nt[i]; |
726 |
pam-fi |
1.10 |
t_track->nstep = l2->nstep_nt[i]; |
727 |
pam-fi |
1.9 |
for(int it1=0;it1<5;it1++){ |
728 |
|
|
t_track->al[it1] = l2->al_nt[i][it1]; |
729 |
|
|
for(int it2=0;it2<5;it2++) |
730 |
|
|
t_track->coval[it1][it2] = l2->coval[i][it2][it1]; |
731 |
|
|
}; |
732 |
|
|
for(int ip=0;ip<6;ip++){ |
733 |
|
|
t_track->xgood[ip] = l2->xgood_nt[i][ip]; |
734 |
|
|
t_track->ygood[ip] = l2->ygood_nt[i][ip]; |
735 |
|
|
t_track->xm[ip] = l2->xm_nt[i][ip]; |
736 |
|
|
t_track->ym[ip] = l2->ym_nt[i][ip]; |
737 |
|
|
t_track->zm[ip] = l2->zm_nt[i][ip]; |
738 |
|
|
t_track->resx[ip] = l2->resx_nt[i][ip]; |
739 |
|
|
t_track->resy[ip] = l2->resy_nt[i][ip]; |
740 |
|
|
t_track->xv[ip] = l2->xv_nt[i][ip]; |
741 |
|
|
t_track->yv[ip] = l2->yv_nt[i][ip]; |
742 |
|
|
t_track->zv[ip] = l2->zv_nt[i][ip]; |
743 |
|
|
t_track->axv[ip] = l2->axv_nt[i][ip]; |
744 |
|
|
t_track->ayv[ip] = l2->ayv_nt[i][ip]; |
745 |
|
|
t_track->dedx_x[ip] = l2->dedx_x[i][ip]; |
746 |
|
|
t_track->dedx_y[ip] = l2->dedx_y[i][ip]; |
747 |
|
|
//----------------------------------------------------- |
748 |
pam-fi |
1.21 |
//----------------------------------------------------- |
749 |
pam-fi |
1.26 |
if(l1 && t_track->xgood[ip])t_track->clx->AddAt(l1->GetCluster(l2->cltrx[i][ip]-1),ip); |
750 |
|
|
if(l1 && t_track->ygood[ip])t_track->cly->AddAt(l1->GetCluster(l2->cltry[i][ip]-1),ip); |
751 |
pam-fi |
1.9 |
//----------------------------------------------------- |
752 |
pam-fi |
1.21 |
//----------------------------------------------------- |
753 |
pam-fi |
1.9 |
}; |
754 |
|
|
new(t[i]) TrkTrack(*t_track); |
755 |
|
|
t_track->Clear(); |
756 |
|
|
}; |
757 |
|
|
// *** SINGLETS *** |
758 |
pam-fi |
1.21 |
if(!SingletX)SingletX = new TClonesArray("TrkSinglet"); |
759 |
pam-fi |
1.9 |
TClonesArray &sx = *SingletX; |
760 |
|
|
for(int i=0; i<l2->nclsx; i++){ |
761 |
|
|
t_singlet->plane = l2->planex[i]; |
762 |
|
|
t_singlet->coord[0] = l2->xs[i][0]; |
763 |
|
|
t_singlet->coord[1] = l2->xs[i][1]; |
764 |
|
|
t_singlet->sgnl = l2->signlxs[i]; |
765 |
|
|
//----------------------------------------------------- |
766 |
pam-fi |
1.26 |
if(l1) t_singlet->cls = l1->GetCluster(l2->clsx[i]-1); |
767 |
pam-fi |
1.9 |
//----------------------------------------------------- |
768 |
|
|
new(sx[i]) TrkSinglet(*t_singlet); |
769 |
|
|
t_singlet->Clear(); |
770 |
|
|
} |
771 |
pam-fi |
1.21 |
if(!SingletY)SingletY = new TClonesArray("TrkSinglet"); |
772 |
pam-fi |
1.9 |
TClonesArray &sy = *SingletY; |
773 |
|
|
for(int i=0; i<l2->nclsy; i++){ |
774 |
|
|
t_singlet->plane = l2->planey[i]; |
775 |
|
|
t_singlet->coord[0] = l2->ys[i][0]; |
776 |
|
|
t_singlet->coord[1] = l2->ys[i][1]; |
777 |
|
|
t_singlet->sgnl = l2->signlys[i]; |
778 |
|
|
//----------------------------------------------------- |
779 |
pam-fi |
1.26 |
if(l1) t_singlet->cls = l1->GetCluster(l2->clsy[i]-1); |
780 |
pam-fi |
1.9 |
//----------------------------------------------------- |
781 |
|
|
new(sy[i]) TrkSinglet(*t_singlet); |
782 |
|
|
t_singlet->Clear(); |
783 |
mocchiut |
1.1 |
}; |
784 |
pam-fi |
1.5 |
|
785 |
|
|
delete t_track; |
786 |
|
|
delete t_singlet; |
787 |
mocchiut |
1.1 |
} |
788 |
pam-fi |
1.7 |
/** |
789 |
|
|
* Fills a struct cTrkLevel2 with values from a TrkLevel2 object (to put data into a F77 common). |
790 |
|
|
*/ |
791 |
|
|
|
792 |
|
|
void TrkLevel2::GetLevel2Struct(cTrkLevel2 *l2) const { |
793 |
|
|
|
794 |
|
|
// general variables |
795 |
pam-fi |
1.10 |
// l2->good2 = good2 ; |
796 |
pam-fi |
1.7 |
for(Int_t i=0; i<12 ; i++){ |
797 |
pam-fi |
1.10 |
// l2->crc[i] = crc[i]; |
798 |
|
|
l2->good[i] = good[i]; |
799 |
pam-fi |
1.7 |
}; |
800 |
|
|
// *** TRACKS *** |
801 |
|
|
|
802 |
pam-fi |
1.21 |
if(Track){ |
803 |
|
|
l2->ntrk = Track->GetEntries(); |
804 |
|
|
for(Int_t i=0;i<l2->ntrk;i++){ |
805 |
|
|
l2->image[i] = 1 + ((TrkTrack *)Track->At(i))->image; |
806 |
|
|
l2->chi2_nt[i] = ((TrkTrack *)Track->At(i))->chi2; |
807 |
|
|
l2->nstep_nt[i] = ((TrkTrack *)Track->At(i))->nstep; |
808 |
|
|
for(int it1=0;it1<5;it1++){ |
809 |
|
|
l2->al_nt[i][it1] = ((TrkTrack *)Track->At(i))->al[it1]; |
810 |
|
|
for(int it2=0;it2<5;it2++) |
811 |
|
|
l2->coval[i][it2][it1] = ((TrkTrack *)Track->At(i))->coval[it1][it2]; |
812 |
|
|
}; |
813 |
|
|
for(int ip=0;ip<6;ip++){ |
814 |
|
|
l2->xgood_nt[i][ip] = ((TrkTrack *)Track->At(i))->xgood[ip]; |
815 |
|
|
l2->ygood_nt[i][ip] = ((TrkTrack *)Track->At(i))->ygood[ip]; |
816 |
|
|
l2->xm_nt[i][ip] = ((TrkTrack *)Track->At(i))->xm[ip]; |
817 |
|
|
l2->ym_nt[i][ip] = ((TrkTrack *)Track->At(i))->ym[ip]; |
818 |
|
|
l2->zm_nt[i][ip] = ((TrkTrack *)Track->At(i))->zm[ip]; |
819 |
|
|
l2->resx_nt[i][ip] = ((TrkTrack *)Track->At(i))->resx[ip]; |
820 |
|
|
l2->resy_nt[i][ip] = ((TrkTrack *)Track->At(i))->resy[ip]; |
821 |
|
|
l2->xv_nt[i][ip] = ((TrkTrack *)Track->At(i))->xv[ip]; |
822 |
|
|
l2->yv_nt[i][ip] = ((TrkTrack *)Track->At(i))->yv[ip]; |
823 |
|
|
l2->zv_nt[i][ip] = ((TrkTrack *)Track->At(i))->zv[ip]; |
824 |
|
|
l2->axv_nt[i][ip] = ((TrkTrack *)Track->At(i))->axv[ip]; |
825 |
|
|
l2->ayv_nt[i][ip] = ((TrkTrack *)Track->At(i))->ayv[ip]; |
826 |
|
|
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 *** |
832 |
|
|
if(SingletX){ |
833 |
|
|
l2->nclsx = SingletX->GetEntries(); |
834 |
|
|
for(Int_t i=0;i<l2->nclsx;i++){ |
835 |
|
|
l2->planex[i] = ((TrkSinglet *)SingletX->At(i))->plane; |
836 |
|
|
l2->xs[i][0] = ((TrkSinglet *)SingletX->At(i))->coord[0]; |
837 |
|
|
l2->xs[i][1] = ((TrkSinglet *)SingletX->At(i))->coord[1]; |
838 |
|
|
l2->signlxs[i] = ((TrkSinglet *)SingletX->At(i))->sgnl; |
839 |
|
|
} |
840 |
pam-fi |
1.7 |
} |
841 |
|
|
|
842 |
pam-fi |
1.21 |
if(SingletY){ |
843 |
|
|
l2->nclsy = SingletY->GetEntries(); |
844 |
|
|
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 |
pam-fi |
1.7 |
} |
851 |
|
|
} |
852 |
mocchiut |
1.1 |
//-------------------------------------- |
853 |
|
|
// |
854 |
|
|
// |
855 |
|
|
//-------------------------------------- |
856 |
|
|
void TrkLevel2::Clear(){ |
857 |
|
|
for(Int_t i=0; i<12 ; i++){ |
858 |
pam-fi |
1.21 |
good[i] = -1; |
859 |
|
|
}; |
860 |
|
|
// if(Track)Track->Clear("C"); |
861 |
|
|
// if(SingletX)SingletX->Clear("C"); |
862 |
|
|
// if(SingletY)SingletY->Clear("C"); |
863 |
|
|
if(Track)Track->Delete(); |
864 |
|
|
if(SingletX)SingletX->Delete(); |
865 |
|
|
if(SingletY)SingletY->Delete(); |
866 |
|
|
} |
867 |
|
|
// //-------------------------------------- |
868 |
|
|
// // |
869 |
|
|
// // |
870 |
|
|
// //-------------------------------------- |
871 |
pam-fi |
1.11 |
void TrkLevel2::Delete(){ |
872 |
|
|
|
873 |
pam-fi |
1.21 |
// cout << "void TrkLevel2::Delete()"<<endl; |
874 |
|
|
Clear(); |
875 |
|
|
if(Track)delete Track; |
876 |
|
|
if(SingletX)delete SingletX; |
877 |
|
|
if(SingletY)delete SingletY; |
878 |
|
|
|
879 |
pam-fi |
1.11 |
} |
880 |
|
|
//-------------------------------------- |
881 |
|
|
// |
882 |
|
|
// |
883 |
|
|
//-------------------------------------- |
884 |
mocchiut |
1.1 |
/** |
885 |
|
|
* Sort physical tracks and stores them in a TObjectArray, ordering by increasing chi**2 value (in case of track image, it selects the one with lower chi**2). The total number of physical tracks is given by GetNTracks() and the it-th physical track can be retrieved by means of the method GetTrack(int it). |
886 |
|
|
* This method is overridden by PamLevel2::GetTracks(), where calorimeter and TOF information is used. |
887 |
|
|
*/ |
888 |
pam-fi |
1.8 |
TRefArray *TrkLevel2::GetTracks_NFitSorted(){ |
889 |
pam-fi |
1.3 |
|
890 |
pam-fi |
1.21 |
if(!Track)return 0; |
891 |
|
|
|
892 |
|
|
TRefArray *sorted = new TRefArray(); |
893 |
pam-fi |
1.8 |
|
894 |
pam-fi |
1.21 |
TClonesArray &t = *Track; |
895 |
pam-fi |
1.8 |
// TClonesArray &ts = *PhysicalTrack; |
896 |
pam-fi |
1.21 |
int N = ntrk(); |
897 |
|
|
vector<int> m(N); for(int i=0; i<N; i++)m[i]=1; |
898 |
pam-fi |
1.8 |
// int m[50]; for(int i=0; i<N; i++)m[i]=1; |
899 |
|
|
|
900 |
pam-fi |
1.21 |
int indo=0; |
901 |
|
|
int indi=0; |
902 |
pam-fi |
1.26 |
while(N > 0){ |
903 |
|
|
// while(N != 0){ |
904 |
pam-fi |
1.21 |
int nfit =0; |
905 |
|
|
float chi2ref = numeric_limits<float>::max(); |
906 |
pam-fi |
1.9 |
|
907 |
pam-fi |
1.21 |
// first loop to search maximum num. of fit points |
908 |
|
|
for(int i=0; i < ntrk(); i++){ |
909 |
|
|
if( ((TrkTrack *)t[i])->GetNtot() >= nfit && m[i]==1){ |
910 |
|
|
nfit = ((TrkTrack *)t[i])->GetNtot(); |
911 |
|
|
} |
912 |
|
|
} |
913 |
|
|
//second loop to search minimum chi2 among selected |
914 |
pam-fi |
1.26 |
for(int i=0; i<ntrk(); i++){ |
915 |
pam-fi |
1.21 |
Float_t chi2 = ((TrkTrack *)t[i])->chi2; |
916 |
pam-fi |
1.26 |
if(chi2 < 0) chi2 = -chi2*1000; |
917 |
pam-fi |
1.21 |
if( chi2 < chi2ref |
918 |
|
|
&& ((TrkTrack *)t[i])->GetNtot() == nfit |
919 |
|
|
&& m[i]==1){ |
920 |
|
|
chi2ref = ((TrkTrack *)t[i])->chi2; |
921 |
|
|
indi = i; |
922 |
|
|
}; |
923 |
|
|
}; |
924 |
|
|
if( ((TrkTrack *)t[indi])->HasImage() ){ |
925 |
|
|
m[((TrkTrack *)t[indi])->image] = 0; |
926 |
|
|
N--; |
927 |
pam-fi |
1.8 |
|
928 |
pam-fi |
1.26 |
// cout << "i** "<< ((TrkTrack *)t[indi])->image << " " << nfiti <<" "<<chi2i<<endl; |
929 |
pam-fi |
1.21 |
}; |
930 |
|
|
sorted->Add( (TrkTrack*)t[indi] ); |
931 |
pam-fi |
1.3 |
|
932 |
pam-fi |
1.21 |
m[indi] = 0; |
933 |
pam-fi |
1.26 |
// cout << "SORTED "<< indo << " "<< indi << " "<< N << " "<<((TrkTrack *)t[indi])->image<<" "<<chi2ref<<endl; |
934 |
pam-fi |
1.21 |
N--; |
935 |
|
|
indo++; |
936 |
|
|
} |
937 |
|
|
m.clear(); |
938 |
pam-fi |
1.26 |
// cout << "GetTracks_NFitSorted(it): Done"<< endl; |
939 |
pam-fi |
1.8 |
|
940 |
pam-fi |
1.21 |
return sorted; |
941 |
pam-fi |
1.6 |
// return PhysicalTrack; |
942 |
pam-fi |
1.3 |
} |
943 |
mocchiut |
1.1 |
//-------------------------------------- |
944 |
|
|
// |
945 |
|
|
// |
946 |
|
|
//-------------------------------------- |
947 |
|
|
/** |
948 |
|
|
* Retrieves the is-th stored track. |
949 |
|
|
* @param it Track number, ranging from 0 to ntrk(). |
950 |
|
|
* Fitted tracks ( images included ) are stored in a TObjectArray ( TrkLevel2::Track ) in the same order they are returned by the F77 fitting routine. |
951 |
|
|
*/ |
952 |
|
|
TrkTrack *TrkLevel2::GetStoredTrack(int is){ |
953 |
|
|
|
954 |
|
|
if(is >= this->ntrk()){ |
955 |
|
|
cout << "** TrkLevel2 ** Track "<< is << "doen not exits! " << endl; |
956 |
|
|
cout << " Stored tracks ntrk() = "<< this->ntrk() << endl; |
957 |
|
|
return 0; |
958 |
|
|
} |
959 |
pam-fi |
1.21 |
if(!Track){ |
960 |
|
|
cout << "TrkTrack *TrkLevel2::GetStoredTrack(int is) >> (TClonesArray*) Track ==0 "<<endl; |
961 |
|
|
}; |
962 |
mocchiut |
1.1 |
TClonesArray &t = *(Track); |
963 |
|
|
TrkTrack *track = (TrkTrack*)t[is]; |
964 |
|
|
return track; |
965 |
|
|
} |
966 |
|
|
//-------------------------------------- |
967 |
|
|
// |
968 |
|
|
// |
969 |
|
|
//-------------------------------------- |
970 |
|
|
/** |
971 |
pam-fi |
1.6 |
* Retrieves the is-th stored X singlet. |
972 |
|
|
* @param it Singlet number, ranging from 0 to nclsx(). |
973 |
|
|
*/ |
974 |
|
|
TrkSinglet *TrkLevel2::GetSingletX(int is){ |
975 |
|
|
|
976 |
|
|
if(is >= this->nclsx()){ |
977 |
|
|
cout << "** TrkLevel2 ** Singlet "<< is << "doen not exits! " << endl; |
978 |
|
|
cout << " Stored x-singlets nclsx() = "<< this->nclsx() << endl; |
979 |
|
|
return 0; |
980 |
|
|
} |
981 |
pam-fi |
1.21 |
if(!SingletX)return 0; |
982 |
pam-fi |
1.6 |
TClonesArray &t = *(SingletX); |
983 |
|
|
TrkSinglet *singlet = (TrkSinglet*)t[is]; |
984 |
|
|
return singlet; |
985 |
|
|
} |
986 |
|
|
//-------------------------------------- |
987 |
|
|
// |
988 |
|
|
// |
989 |
|
|
//-------------------------------------- |
990 |
|
|
/** |
991 |
|
|
* Retrieves the is-th stored Y singlet. |
992 |
|
|
* @param it Singlet number, ranging from 0 to nclsx(). |
993 |
|
|
*/ |
994 |
|
|
TrkSinglet *TrkLevel2::GetSingletY(int is){ |
995 |
|
|
|
996 |
|
|
if(is >= this->nclsy()){ |
997 |
|
|
cout << "** TrkLevel2 ** Singlet "<< is << "doen not exits! " << endl; |
998 |
|
|
cout << " Stored y-singlets nclsy() = "<< this->nclsx() << endl; |
999 |
|
|
return 0; |
1000 |
|
|
} |
1001 |
pam-fi |
1.21 |
if(!SingletY)return 0; |
1002 |
pam-fi |
1.6 |
TClonesArray &t = *(SingletY); |
1003 |
|
|
TrkSinglet *singlet = (TrkSinglet*)t[is]; |
1004 |
|
|
return singlet; |
1005 |
|
|
} |
1006 |
|
|
//-------------------------------------- |
1007 |
|
|
// |
1008 |
|
|
// |
1009 |
|
|
//-------------------------------------- |
1010 |
|
|
/** |
1011 |
mocchiut |
1.1 |
* Retrieves the it-th "physical" track, sorted by the method GetNTracks(). |
1012 |
|
|
* @param it Track number, ranging from 0 to GetNTracks(). |
1013 |
|
|
*/ |
1014 |
pam-fi |
1.10 |
|
1015 |
pam-fi |
1.8 |
TrkTrack *TrkLevel2::GetTrack(int it){ |
1016 |
|
|
|
1017 |
|
|
if(it >= this->GetNTracks()){ |
1018 |
|
|
cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl; |
1019 |
|
|
cout << " Physical tracks GetNTracks() = "<< this->ntrk() << endl; |
1020 |
|
|
return 0; |
1021 |
|
|
} |
1022 |
|
|
|
1023 |
|
|
TRefArray *sorted = GetTracks(); //TEMPORANEO |
1024 |
pam-fi |
1.21 |
if(!sorted)return 0; |
1025 |
pam-fi |
1.8 |
TrkTrack *track = (TrkTrack*)sorted->At(it); |
1026 |
pam-fi |
1.21 |
sorted->Clear(); |
1027 |
|
|
delete sorted; |
1028 |
pam-fi |
1.8 |
return track; |
1029 |
mocchiut |
1.1 |
} |
1030 |
pam-fi |
1.6 |
/** |
1031 |
|
|
* Give the number of "physical" tracks, sorted by the method GetTracks(). |
1032 |
|
|
*/ |
1033 |
pam-fi |
1.5 |
Int_t TrkLevel2::GetNTracks(){ |
1034 |
pam-fi |
1.8 |
|
1035 |
|
|
Float_t ntot=0; |
1036 |
pam-fi |
1.21 |
if(!Track)return 0; |
1037 |
pam-fi |
1.8 |
TClonesArray &t = *Track; |
1038 |
mocchiut |
1.12 |
for(int i=0; i<ntrk(); i++) { |
1039 |
pam-fi |
1.8 |
if( ((TrkTrack *)t[i])->GetImageSeqNo() == -1 ) ntot+=1.; |
1040 |
|
|
else ntot+=0.5; |
1041 |
|
|
} |
1042 |
|
|
return (Int_t)ntot; |
1043 |
|
|
|
1044 |
pam-fi |
1.5 |
}; |
1045 |
mocchiut |
1.1 |
//-------------------------------------- |
1046 |
|
|
// |
1047 |
|
|
// |
1048 |
|
|
//-------------------------------------- |
1049 |
|
|
/** |
1050 |
|
|
* Retrieves (if present) the image of the it-th "physical" track, sorted by the method GetNTracks(). |
1051 |
|
|
* @param it Track number, ranging from 0 to GetNTracks(). |
1052 |
|
|
*/ |
1053 |
pam-fi |
1.8 |
TrkTrack *TrkLevel2::GetTrackImage(int it){ |
1054 |
|
|
|
1055 |
pam-fi |
1.21 |
if(it >= this->GetNTracks()){ |
1056 |
|
|
cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl; |
1057 |
|
|
cout << " Physical tracks GetNTracks() = "<< this->ntrk() << endl; |
1058 |
|
|
return 0; |
1059 |
|
|
} |
1060 |
pam-fi |
1.8 |
|
1061 |
pam-fi |
1.21 |
TRefArray* sorted = GetTracks(); //TEMPORANEO |
1062 |
|
|
if(!sorted)return 0; |
1063 |
|
|
TrkTrack *track = (TrkTrack*)sorted->At(it); |
1064 |
pam-fi |
1.8 |
|
1065 |
pam-fi |
1.21 |
if(!track->HasImage()){ |
1066 |
|
|
cout << "** TrkLevel2 ** Track "<< it << "does not have image! " << endl; |
1067 |
|
|
return 0; |
1068 |
|
|
} |
1069 |
|
|
if(!Track)return 0; |
1070 |
|
|
TrkTrack *image = (TrkTrack*)(*Track)[track->image]; |
1071 |
|
|
|
1072 |
|
|
sorted->Delete(); |
1073 |
|
|
delete sorted; |
1074 |
pam-fi |
1.8 |
|
1075 |
pam-fi |
1.21 |
return image; |
1076 |
pam-fi |
1.8 |
|
1077 |
mocchiut |
1.1 |
} |
1078 |
|
|
//-------------------------------------- |
1079 |
|
|
// |
1080 |
|
|
// |
1081 |
|
|
//-------------------------------------- |
1082 |
|
|
/** |
1083 |
|
|
* Loads the magnetic field. |
1084 |
|
|
* @param s Path of the magnetic-field files. |
1085 |
|
|
*/ |
1086 |
pam-fi |
1.16 |
void TrkLevel2::LoadField(TString path){ |
1087 |
|
|
// |
1088 |
pam-fi |
1.26 |
// strcpy(path_.path,path.Data()); |
1089 |
|
|
// path_.pathlen = path.Length(); |
1090 |
|
|
// path_.error = 0; |
1091 |
|
|
// readb_(); |
1092 |
|
|
|
1093 |
|
|
TrkParams::Set(path,1); |
1094 |
|
|
|
1095 |
pam-fi |
1.16 |
// |
1096 |
mocchiut |
1.1 |
}; |
1097 |
pam-fi |
1.25 |
/** |
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 |
mocchiut |
1.1 |
//-------------------------------------- |
1125 |
|
|
// |
1126 |
|
|
// |
1127 |
|
|
//-------------------------------------- |
1128 |
|
|
/** |
1129 |
pam-fi |
1.6 |
* Get tracker-plane (mechanical) z-coordinate |
1130 |
|
|
* @param plane_id plane index (1=TOP,2,3,4,5,6=BOTTOM) |
1131 |
|
|
*/ |
1132 |
|
|
Float_t TrkLevel2::GetZTrk(Int_t plane_id){ |
1133 |
|
|
switch(plane_id){ |
1134 |
|
|
case 1: return ZTRK1; |
1135 |
|
|
case 2: return ZTRK2; |
1136 |
|
|
case 3: return ZTRK3; |
1137 |
|
|
case 4: return ZTRK4; |
1138 |
|
|
case 5: return ZTRK5; |
1139 |
|
|
case 6: return ZTRK6; |
1140 |
|
|
default: return 0.; |
1141 |
|
|
}; |
1142 |
|
|
}; |
1143 |
|
|
//-------------------------------------- |
1144 |
|
|
// |
1145 |
|
|
// |
1146 |
|
|
//-------------------------------------- |
1147 |
|
|
/** |
1148 |
pam-fi |
1.2 |
* Trajectory default constructor. |
1149 |
|
|
* (By default is created with z-coordinates inside the tracking volume) |
1150 |
|
|
*/ |
1151 |
|
|
Trajectory::Trajectory(){ |
1152 |
|
|
npoint = 10; |
1153 |
|
|
x = new float[npoint]; |
1154 |
|
|
y = new float[npoint]; |
1155 |
|
|
z = new float[npoint]; |
1156 |
|
|
thx = new float[npoint]; |
1157 |
|
|
thy = new float[npoint]; |
1158 |
|
|
tl = new float[npoint]; |
1159 |
pam-fi |
1.6 |
float dz = ((ZTRK1)-(ZTRK6))/(npoint-1); |
1160 |
pam-fi |
1.2 |
for(int i=0; i<npoint; i++){ |
1161 |
|
|
x[i] = 0; |
1162 |
|
|
y[i] = 0; |
1163 |
pam-fi |
1.6 |
z[i] = (ZTRK1) - i*dz; |
1164 |
pam-fi |
1.2 |
thx[i] = 0; |
1165 |
|
|
thy[i] = 0; |
1166 |
|
|
tl[i] = 0; |
1167 |
|
|
} |
1168 |
|
|
} |
1169 |
|
|
//-------------------------------------- |
1170 |
|
|
// |
1171 |
|
|
// |
1172 |
|
|
//-------------------------------------- |
1173 |
|
|
/** |
1174 |
mocchiut |
1.1 |
* Trajectory constructor. |
1175 |
pam-fi |
1.2 |
* (By default is created with z-coordinates inside the tracking volume) |
1176 |
mocchiut |
1.1 |
* \param n Number of points |
1177 |
|
|
*/ |
1178 |
|
|
Trajectory::Trajectory(int n){ |
1179 |
pam-fi |
1.2 |
if(n<=0){ |
1180 |
|
|
cout << "NB! Trajectory must have at least 1 point >>> created with 10 points" << endl; |
1181 |
|
|
n=10; |
1182 |
|
|
} |
1183 |
mocchiut |
1.1 |
npoint = n; |
1184 |
|
|
x = new float[npoint]; |
1185 |
|
|
y = new float[npoint]; |
1186 |
|
|
z = new float[npoint]; |
1187 |
pam-fi |
1.2 |
thx = new float[npoint]; |
1188 |
|
|
thy = new float[npoint]; |
1189 |
|
|
tl = new float[npoint]; |
1190 |
pam-fi |
1.6 |
float dz = ((ZTRK1)-(ZTRK6))/(npoint-1); |
1191 |
mocchiut |
1.1 |
for(int i=0; i<npoint; i++){ |
1192 |
pam-fi |
1.2 |
x[i] = 0; |
1193 |
mocchiut |
1.1 |
y[i] = 0; |
1194 |
pam-fi |
1.6 |
z[i] = (ZTRK1) - i*dz; |
1195 |
pam-fi |
1.2 |
thx[i] = 0; |
1196 |
|
|
thy[i] = 0; |
1197 |
|
|
tl[i] = 0; |
1198 |
mocchiut |
1.1 |
} |
1199 |
|
|
} |
1200 |
|
|
//-------------------------------------- |
1201 |
|
|
// |
1202 |
|
|
// |
1203 |
|
|
//-------------------------------------- |
1204 |
|
|
/** |
1205 |
|
|
* Trajectory constructor. |
1206 |
|
|
* \param n Number of points |
1207 |
|
|
* \param pz Pointer to float array, defining z coordinates |
1208 |
|
|
*/ |
1209 |
|
|
Trajectory::Trajectory(int n, float* zin){ |
1210 |
pam-fi |
1.2 |
npoint = 10; |
1211 |
|
|
if(n>0)npoint = n; |
1212 |
mocchiut |
1.1 |
x = new float[npoint]; |
1213 |
|
|
y = new float[npoint]; |
1214 |
|
|
z = new float[npoint]; |
1215 |
pam-fi |
1.2 |
thx = new float[npoint]; |
1216 |
|
|
thy = new float[npoint]; |
1217 |
|
|
tl = new float[npoint]; |
1218 |
|
|
int i=0; |
1219 |
|
|
do{ |
1220 |
pam-fi |
1.21 |
x[i] = 0; |
1221 |
|
|
y[i] = 0; |
1222 |
|
|
z[i] = zin[i]; |
1223 |
|
|
thx[i] = 0; |
1224 |
|
|
thy[i] = 0; |
1225 |
|
|
tl[i] = 0; |
1226 |
|
|
i++; |
1227 |
pam-fi |
1.2 |
}while(zin[i-1] > zin[i] && i < npoint); |
1228 |
|
|
npoint=i; |
1229 |
|
|
if(npoint != n)cout << "NB! Trajectory created with "<<npoint<<" points"<<endl; |
1230 |
mocchiut |
1.1 |
} |
1231 |
pam-fi |
1.21 |
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 |
mocchiut |
1.1 |
//-------------------------------------- |
1242 |
|
|
// |
1243 |
|
|
// |
1244 |
|
|
//-------------------------------------- |
1245 |
|
|
/** |
1246 |
|
|
* Dump the trajectory coordinates. |
1247 |
|
|
*/ |
1248 |
|
|
void Trajectory::Dump(){ |
1249 |
|
|
cout <<endl<< "Trajectory ========== "<<endl; |
1250 |
|
|
for (int i=0; i<npoint; i++){ |
1251 |
pam-fi |
1.2 |
cout << i <<" >> " << x[i] <<" "<< y[i] <<" "<< z[i] ; |
1252 |
|
|
cout <<" -- " << thx[i] <<" "<< thy[i] ; |
1253 |
|
|
cout <<" -- " << tl[i] << endl; |
1254 |
mocchiut |
1.1 |
}; |
1255 |
|
|
} |
1256 |
pam-fi |
1.2 |
//-------------------------------------- |
1257 |
|
|
// |
1258 |
|
|
// |
1259 |
|
|
//-------------------------------------- |
1260 |
|
|
/** |
1261 |
|
|
* Get trajectory length between two points |
1262 |
|
|
* @param ifirst first point (default 0) |
1263 |
|
|
* @param ilast last point (default npoint) |
1264 |
|
|
*/ |
1265 |
|
|
float Trajectory::GetLength(int ifirst, int ilast){ |
1266 |
|
|
if( ifirst<0 ) ifirst = 0; |
1267 |
|
|
if( ilast>=npoint) ilast = npoint-1; |
1268 |
|
|
float l=0; |
1269 |
|
|
for(int i=ifirst;i<=ilast;i++){ |
1270 |
|
|
l=l+tl[i]; |
1271 |
|
|
}; |
1272 |
|
|
if(z[ilast] > ZINI)l=l-tl[ilast]; |
1273 |
|
|
if(z[ifirst] < ZINI) l=l-tl[ifirst]; |
1274 |
|
|
|
1275 |
|
|
return l; |
1276 |
mocchiut |
1.1 |
|
1277 |
pam-fi |
1.2 |
} |
1278 |
pam-fi |
1.6 |
|
1279 |
pam-fi |
1.19 |
/** |
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 |
pam-fi |
1.26 |
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 |
pam-fi |
1.19 |
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 |
pam-fi |
1.10 |
|
1319 |
mocchiut |
1.1 |
ClassImp(TrkLevel2); |
1320 |
|
|
ClassImp(TrkSinglet); |
1321 |
|
|
ClassImp(TrkTrack); |
1322 |
|
|
ClassImp(Trajectory); |