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

Annotation of /DarthVader/TrackerLevel2/src/TrkLevel2.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.29 - (hide annotations) (download)
Thu Mar 15 12:17:10 2007 UTC (17 years, 8 months ago) by pam-fi
Branch: MAIN
Changes since 1.28: +133 -80 lines
workaround to retrieve clusters + other minor adjustments

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.29 // clx = new TRefArray(6,0); //forse causa memory leak???
55     // cly = new TRefArray(6,0); //forse causa memory leak???
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.28 TrkParams::Load(1);
308 pam-fi 1.16
309 pam-fi 1.13 };
310 pam-fi 1.19
311 pam-fi 1.25
312 pam-fi 1.19 /**
313     * Method to fill minimization-routine common
314     */
315     void TrkTrack::FillMiniStruct(cMini2track& track){
316    
317     for(int i=0; i<6; i++){
318    
319     track.xgood[i]=xgood[i];
320     track.ygood[i]=ygood[i];
321    
322     track.xm[i]=xm[i];
323     track.ym[i]=ym[i];
324     track.zm[i]=zm[i];
325    
326     // --- temporaneo ----------------------------
327     // andrebbe inserita la dimensione del sensore
328     float segment = 100.;
329     track.xm_a[i]=xm[i];
330     track.xm_b[i]=xm[i];
331     track.ym_a[i]=ym[i];
332     track.ym_b[i]=ym[i];
333     if( xgood[i] && !ygood[i] ){
334     track.ym_a[i] = track.ym_a[i]+segment;
335     track.ym_b[i] = track.ym_b[i]-segment;
336     }else if( !xgood[i] && ygood[i]){
337     track.xm_a[i] = track.xm_a[i]+segment;
338     track.xm_b[i] = track.xm_b[i]-segment;
339     }
340     // --- temporaneo ----------------------------
341    
342     track.resx[i]=resx[i];
343     track.resy[i]=resy[i];
344     }
345    
346     for(int i=0; i<5; i++) track.al[i]=al[i];
347     track.zini = 23.5;
348     // ZINI = 23.5 !!! it should be the same parameter in all codes
349    
350     }
351     /**
352     * Method to set values from minimization-routine common
353     */
354     void TrkTrack::SetFromMiniStruct(cMini2track *track){
355    
356     for(int i=0; i<5; i++) {
357     al[i]=track->al[i];
358     for(int j=0; j<5; j++) coval[i][j]=track->cov[i][j];
359     }
360     chi2 = track->chi2;
361     nstep = track->nstep;
362     for(int i=0; i<6; i++){
363     xv[i] = track->xv[i];
364     yv[i] = track->yv[i];
365     zv[i] = track->zv[i];
366     xm[i] = track->xm[i];
367     ym[i] = track->ym[i];
368     zm[i] = track->zm[i];
369     axv[i] = track->axv[i];
370     ayv[i] = track->ayv[i];
371     }
372    
373     }
374 pam-fi 1.13 /**
375     * Tracking method. It calls F77 mini routine.
376     */
377     void TrkTrack::Fit(double pfixed, int& fail, int iprint){
378 pam-fi 1.15
379     float al_ini[] = {0.,0.,0.,0.,0.};
380    
381 pam-fi 1.13 extern cMini2track track_;
382     fail = 0;
383 pam-fi 1.19 FillMiniStruct(track_);
384 pam-fi 1.15
385 pam-fi 1.19 // if fit variables have been reset, evaluate the initial guess
386 pam-fi 1.15 if(al[0]==-9999.&&al[1]==-9999.&&al[2]==-9999.&&al[3]==-9999.&&al[4]==-9999.)guess_();
387    
388 pam-fi 1.16 // --------------------- free momentum
389 pam-fi 1.14 if(pfixed==0.) {
390 pam-fi 1.19 track_.pfixed=0.;
391 pam-fi 1.14 }
392 pam-fi 1.16 // --------------------- fixed momentum
393 pam-fi 1.13 if(pfixed!=0.) {
394 pam-fi 1.19 al[4]=1./pfixed;
395     track_.pfixed=pfixed;
396 pam-fi 1.13 }
397 pam-fi 1.15
398 pam-fi 1.19 // store temporarily the initial guess
399 pam-fi 1.15 for(int i=0; i<5; i++) al_ini[i]=track_.al[i];
400    
401 pam-fi 1.19 // ------------------------------------------
402     // call mini routine
403 pam-fi 1.26 TrkParams::Load(1);
404     if( !TrkParams::IsLoaded(1) ){
405     cout << "void TrkTrack::Fit(double pfixed, int& fail, int iprint) --- ERROR --- m.field not loaded"<<endl;
406     return;
407     }
408 pam-fi 1.13 int istep=0;
409     int ifail=0;
410     mini2_(&istep,&ifail, &iprint);
411     if(ifail!=0) {
412 pam-fi 1.19 if(iprint)cout << "ERROR: ifail= " << ifail << endl;
413 pam-fi 1.13 fail = 1;
414     }
415 pam-fi 1.19 // ------------------------------------------
416 pam-fi 1.15
417 pam-fi 1.19 SetFromMiniStruct(&track_);
418 pam-fi 1.13 // cout << endl << "eta ===> " << track_.al[4] << endl;
419    
420 pam-fi 1.19 // for(int i=0; i<5; i++) al[i]=track_.al[i];
421     // chi2=track_.chi2;
422     // nstep=track_.nstep;
423     // for(int i=0; i<6; i++) xv[i]=track_.xv[i];
424     // for(int i=0; i<6; i++) yv[i]=track_.yv[i];
425     // for(int i=0; i<6; i++) zv[i]=track_.zv[i];
426     // for(int i=0; i<6; i++) axv[i]=track_.axv[i];
427     // for(int i=0; i<6; i++) ayv[i]=track_.ayv[i];
428     // for(int i=0; i<5; i++) {
429     // for(int j=0; j<5; j++) coval[i][j]=track_.cov[i][j];
430     // }
431 pam-fi 1.15
432 pam-fi 1.20 if(fail){
433     if(iprint)cout << " >>>> fit failed >>>> drawing initial par"<<endl;
434     for(int i=0; i<5; i++) al[i]=al_ini[i];
435     }
436 pam-fi 1.15
437 pam-fi 1.13 };
438     /*
439 pam-fi 1.15 * Reset the fit parameters
440 pam-fi 1.13 */
441     void TrkTrack::FitReset(){
442     for(int i=0; i<5; i++) al[i]=-9999.;
443     chi2=0.;
444     nstep=0;
445     for(int i=0; i<6; i++) xv[i]=0.;
446     for(int i=0; i<6; i++) yv[i]=0.;
447     for(int i=0; i<6; i++) zv[i]=0.;
448     for(int i=0; i<6; i++) axv[i]=0.;
449     for(int i=0; i<6; i++) ayv[i]=0.;
450     for(int i=0; i<5; i++) {
451     for(int j=0; j<5; j++) coval[i][j]=0.;
452     }
453     }
454 pam-fi 1.27 void TrkTrack::SetTrackingMode(int trackmode){
455     extern cMini2track track_;
456     track_.trackmode = trackmode;
457     }
458 pam-fi 1.13
459 pam-fi 1.29
460     /*
461     * Method to retrieve the X-view clusters associated to the track.
462     * @param ip Tracker plane (0-5)
463     */
464     TrkCluster *TrkTrack::GetClusterX(int ip){
465     cout << " TrkCluster *TrkTrack::GetClusterX(int ip) -- momentaneamente fuori servizio --"<< endl;
466     if(!clx)return NULL;
467     TrkCluster *pt = (TrkCluster*)(clx->At(ip));
468     return pt;
469     };
470     /*
471     * Method to retrieve the Y-view clusters associated to the track.
472     * @param ip Tracker plane (0-5)
473     */
474     TrkCluster *TrkTrack::GetClusterY(int ip){
475     cout << " TrkCluster *TrkTrack::GetClusterY(int ip) -- momentaneamente fuori servizio --"<< endl;
476     if(!cly)return NULL;
477     TrkCluster *pt = (TrkCluster*)(cly->At(ip));
478     return pt;
479     };
480    
481    
482 mocchiut 1.1 //--------------------------------------
483     //
484     //
485     //--------------------------------------
486 pam-fi 1.10 void TrkTrack::Clear(){
487 pam-fi 1.21 // cout << "TrkTrack::Clear()"<<endl;
488     seqno = -1;
489     image = -1;
490     chi2 = 0;
491     nstep = 0;
492     for(int it1=0;it1<5;it1++){
493     al[it1] = 0;
494     for(int it2=0;it2<5;it2++)coval[it1][it2] = 0;
495     };
496     for(int ip=0;ip<6;ip++){
497     xgood[ip] = 0;
498     ygood[ip] = 0;
499     xm[ip] = 0;
500     ym[ip] = 0;
501     zm[ip] = 0;
502     resx[ip] = 0;
503     resy[ip] = 0;
504     xv[ip] = 0;
505     yv[ip] = 0;
506     zv[ip] = 0;
507     axv[ip] = 0;
508     ayv[ip] = 0;
509     dedx_x[ip] = 0;
510     dedx_y[ip] = 0;
511    
512     };
513     if(clx)clx->Clear();
514     if(cly)cly->Clear();
515 pam-fi 1.10 };
516     //--------------------------------------
517     //
518     //
519     //--------------------------------------
520 pam-fi 1.11 void TrkTrack::Delete(){
521 pam-fi 1.21 // cout << "TrkTrack::Delete()"<<endl;
522     // Clear();
523     if(clx)delete clx;
524     if(cly)delete cly;
525 pam-fi 1.11 };
526 pam-fi 1.21 //--------------------------------------
527 pam-fi 1.11 //
528     //
529     //--------------------------------------
530 pam-fi 1.10
531     //--------------------------------------
532     //
533     //
534     //--------------------------------------
535 mocchiut 1.1 TrkSinglet::TrkSinglet(){
536 pam-fi 1.21 // cout << "TrkSinglet::TrkSinglet() " << GetUniqueID()<<endl;
537 mocchiut 1.1 plane = 0;
538     coord[0] = 0;
539     coord[1] = 0;
540     sgnl = 0;
541 pam-fi 1.21 // cls = 0;
542 mocchiut 1.1 };
543     //--------------------------------------
544     //
545     //
546     //--------------------------------------
547     TrkSinglet::TrkSinglet(const TrkSinglet& s){
548 pam-fi 1.21 // cout << "TrkSinglet::TrkSinglet(const TrkSinglet& s) " << GetUniqueID()<<endl;
549 mocchiut 1.1 plane = s.plane;
550     coord[0] = s.coord[0];
551     coord[1] = s.coord[1];
552     sgnl = s.sgnl;
553 pam-fi 1.9 // cls = 0;//<<<<pointer
554 pam-fi 1.21 cls = TRef(s.cls);
555 mocchiut 1.1 };
556     //--------------------------------------
557     //
558     //
559     //--------------------------------------
560     void TrkSinglet::Dump(){
561     int i=0;
562     cout << endl << "========== Singlet " ;
563     cout << endl << "plane : " << plane;
564     cout << endl << "coord[2] : "; while( i<2 && cout << coord[i] << " ") i++;
565     cout << endl << "sgnl : " << sgnl;
566     }
567     //--------------------------------------
568     //
569     //
570     //--------------------------------------
571 pam-fi 1.21 void TrkSinglet::Clear(){
572     // cout << "TrkSinglet::Clear() " << GetUniqueID()<<endl;
573     // cls=0;
574     plane=-1;
575     coord[0]=-999;
576     coord[1]=-999;
577     sgnl=0;
578    
579     }
580     //--------------------------------------
581     //
582     //
583     //--------------------------------------
584 mocchiut 1.1 TrkLevel2::TrkLevel2(){
585 mocchiut 1.24 // cout <<"TrkLevel2::TrkLevel2()"<<endl;
586 mocchiut 1.1 for(Int_t i=0; i<12 ; i++){
587 pam-fi 1.10 good[i] = -1;
588     };
589 pam-fi 1.23 // okkio!! memory-leak
590     // Track = new TClonesArray("TrkTrack");
591     // SingletX = new TClonesArray("TrkSinglet");
592     // SingletY = new TClonesArray("TrkSinglet");
593 pam-fi 1.21 Track = 0;
594     SingletX = 0;
595     SingletY = 0;
596 pam-fi 1.6
597 mocchiut 1.1 }
598     //--------------------------------------
599     //
600     //
601     //--------------------------------------
602 pam-fi 1.23 void TrkLevel2::Set(){
603     if(!Track)Track = new TClonesArray("TrkTrack");
604     if(!SingletX)SingletX = new TClonesArray("TrkSinglet");
605     if(!SingletY)SingletY = new TClonesArray("TrkSinglet");
606     }
607     //--------------------------------------
608     //
609     //
610     //--------------------------------------
611 mocchiut 1.1 void TrkLevel2::Dump(){
612 pam-fi 1.10
613     //
614 mocchiut 1.1 cout << endl << endl << "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-";
615 pam-fi 1.10 cout << endl << "good : "; for(int i=0; i<12; i++) cout << good[i]<<" ";
616 mocchiut 1.1 cout << endl << "ntrk() : " << this->ntrk() ;
617     cout << endl << "nclsx() : " << this->nclsx();
618     cout << endl << "nclsy() : " << this->nclsy();
619 pam-fi 1.21 // TClonesArray &t = *Track;
620     // TClonesArray &sx = *SingletX;
621     // TClonesArray &sy = *SingletY;
622     // for(int i=0; i<ntrk(); i++) ((TrkTrack *)t[i])->Dump();
623     // for(int i=0; i<nclsx(); i++) ((TrkSinglet *)sx[i])->Dump();
624     // for(int i=0; i<nclsy(); i++) ((TrkSinglet *)sy[i])->Dump();
625     if(Track){
626     TClonesArray &t = *Track;
627     for(int i=0; i<ntrk(); i++) ((TrkTrack *)t[i])->Dump();
628     }
629     if(SingletX){
630     TClonesArray &sx = *SingletX;
631     for(int i=0; i<nclsx(); i++) ((TrkSinglet *)sx[i])->Dump();
632     }
633     if(SingletY){
634     TClonesArray &sy = *SingletY;
635     for(int i=0; i<nclsy(); i++) ((TrkSinglet *)sy[i])->Dump();
636     }
637 mocchiut 1.1 }
638     //--------------------------------------
639     //
640     //
641     //--------------------------------------
642     /**
643     * Fills a TrkLevel2 object with values from a struct cTrkLevel2 (to get data from F77 common).
644     */
645 pam-fi 1.26 // void TrkLevel2::SetFromLevel2Struct(cTrkLevel2 *l2){
646 pam-fi 1.10
647 pam-fi 1.26 // // temporary objects:
648     // TrkSinglet* t_singlet = new TrkSinglet();
649     // TrkTrack* t_track = new TrkTrack();
650    
651     // // **** general variables ****
652     // // good2 = l2->good2;
653     // for(Int_t i=0; i<12 ; i++){
654     // // crc[i] = l2->crc[i];
655     // good[i] = l2->good[i];
656     // };
657     // // *** TRACKS ***
658     // if(!Track) Track = new TClonesArray("TrkTrack");
659     // TClonesArray &t = *Track;
660     // for(int i=0; i<l2->ntrk; i++){
661     // t_track->seqno = i;// NBNBNBNB deve sempre essere = i
662     // t_track->image = l2->image[i]-1;
663     // // cout << "track "<<i<<t_track->seqno << t_track->image<<endl;
664     // t_track->chi2 = l2->chi2_nt[i];
665     // t_track->nstep = l2->nstep_nt[i];
666     // for(int it1=0;it1<5;it1++){
667     // t_track->al[it1] = l2->al_nt[i][it1];
668     // for(int it2=0;it2<5;it2++)
669     // t_track->coval[it1][it2] = l2->coval[i][it2][it1];
670     // };
671     // for(int ip=0;ip<6;ip++){
672     // t_track->xgood[ip] = l2->xgood_nt[i][ip];
673     // t_track->ygood[ip] = l2->ygood_nt[i][ip];
674     // t_track->xm[ip] = l2->xm_nt[i][ip];
675     // t_track->ym[ip] = l2->ym_nt[i][ip];
676     // t_track->zm[ip] = l2->zm_nt[i][ip];
677     // t_track->resx[ip] = l2->resx_nt[i][ip];
678     // t_track->resy[ip] = l2->resy_nt[i][ip];
679     // t_track->xv[ip] = l2->xv_nt[i][ip];
680     // t_track->yv[ip] = l2->yv_nt[i][ip];
681     // t_track->zv[ip] = l2->zv_nt[i][ip];
682     // t_track->axv[ip] = l2->axv_nt[i][ip];
683     // t_track->ayv[ip] = l2->ayv_nt[i][ip];
684     // t_track->dedx_x[ip] = l2->dedx_x[i][ip];
685     // t_track->dedx_y[ip] = l2->dedx_y[i][ip];
686     // // t_track->clx[ip] = 0;
687     // // t_track->cly[ip] = 0;
688     // };
689     // new(t[i]) TrkTrack(*t_track);
690     // t_track->Clear();
691     // };
692     // // *** SINGLETS ***
693     // if(!SingletX)SingletX = new TClonesArray("TrkSinglet");
694     // TClonesArray &sx = *SingletX;
695     // for(int i=0; i<l2->nclsx; i++){
696     // t_singlet->plane = l2->planex[i];
697     // t_singlet->coord[0] = l2->xs[i][0];
698     // t_singlet->coord[1] = l2->xs[i][1];
699     // t_singlet->sgnl = l2->signlxs[i];
700     // // t_singlet->cls = 0;
701     // new(sx[i]) TrkSinglet(*t_singlet);
702     // t_singlet->Clear();
703     // }
704     // if(!SingletY)SingletY = new TClonesArray("TrkSinglet");
705     // TClonesArray &sy = *SingletY;
706     // for(int i=0; i<l2->nclsy; i++){
707     // t_singlet->plane = l2->planey[i];
708     // t_singlet->coord[0] = l2->ys[i][0];
709     // t_singlet->coord[1] = l2->ys[i][1];
710     // t_singlet->sgnl = l2->signlys[i];
711     // // t_singlet->cls = 0;
712     // new(sy[i]) TrkSinglet(*t_singlet);
713     // t_singlet->Clear();
714     // };
715 pam-fi 1.9
716 pam-fi 1.26 // delete t_track;
717     // delete t_singlet;
718     // }
719 pam-fi 1.9 //--------------------------------------
720     //
721     //
722     //--------------------------------------
723     /**
724     * Fills a TrkLevel2 object with values from a struct cTrkLevel2 (to get data from F77 common).
725 pam-fi 1.29 * Ref to Level1 data (clusters) is also set. If l1==NULL no references are set.
726     * (NB It make sense to set references only if events are stored in a tree that contains also the Level1 branch)
727 pam-fi 1.9 */
728     void TrkLevel2::SetFromLevel2Struct(cTrkLevel2 *l2, TrkLevel1 *l1){
729    
730 pam-fi 1.29 // cout << "void TrkLevel2::SetFromLevel2Struct(cTrkLevel2 *l2, TrkLevel1 *l1)"<<endl;
731     Clear();
732 pam-fi 1.9 // temporary objects:
733 pam-fi 1.29 TrkSinglet* t_singlet = new TrkSinglet();
734     TrkTrack* t_track = new TrkTrack();
735    
736     // -----------------
737     // general variables
738     // -----------------
739     for(Int_t i=0; i<12 ; i++){
740     good[i] = l2->good[i];
741     };
742     // --------------
743     // *** TRACKS ***
744     // --------------
745     if(!Track) Track = new TClonesArray("TrkTrack");
746     TClonesArray &t = *Track;
747     //-----------------------------------------------------
748     if( l1 && !t_track->clx )t_track->clx = new TRefArray(6,0);
749     if( l1 && !t_track->cly )t_track->cly = new TRefArray(6,0);
750     //-----------------------------------------------------
751     for(int i=0; i<l2->ntrk; i++){
752     // cout <<" TRACK "<<i<<" ------------------ "<<endl;
753     t_track->seqno = i;// NBNBNBNB deve sempre essere = i
754     t_track->image = l2->image[i]-1;
755     t_track->chi2 = l2->chi2_nt[i];
756     t_track->nstep = l2->nstep_nt[i];
757     for(int it1=0;it1<5;it1++){
758     t_track->al[it1] = l2->al_nt[i][it1];
759     for(int it2=0;it2<5;it2++)
760     t_track->coval[it1][it2] = l2->coval[i][it2][it1];
761 pam-fi 1.9 };
762 pam-fi 1.29 for(int ip=0;ip<6;ip++){
763     t_track->xgood[ip] = l2->cltrx[i][ip];//l2->xgood_nt[i][ip];
764     t_track->ygood[ip] = l2->cltry[i][ip];//l2->ygood_nt[i][ip];
765     t_track->xm[ip] = l2->xm_nt[i][ip];
766     t_track->ym[ip] = l2->ym_nt[i][ip];
767     t_track->zm[ip] = l2->zm_nt[i][ip];
768     t_track->resx[ip] = l2->resx_nt[i][ip];
769     t_track->resy[ip] = l2->resy_nt[i][ip];
770     t_track->xv[ip] = l2->xv_nt[i][ip];
771     t_track->yv[ip] = l2->yv_nt[i][ip];
772     t_track->zv[ip] = l2->zv_nt[i][ip];
773     t_track->axv[ip] = l2->axv_nt[i][ip];
774     t_track->ayv[ip] = l2->ayv_nt[i][ip];
775     t_track->dedx_x[ip] = l2->dedx_x[i][ip];
776     t_track->dedx_y[ip] = l2->dedx_y[i][ip];
777     // cout << " ip "<<ip<<" l2->cltrx[i][ip] "<< l2->cltrx[i][ip]<<endl;
778     // cout << " ip "<<ip<<" l2->cltry[i][ip] "<< l2->cltry[i][ip]<<endl;
779     //-----------------------------------------------------
780     //-----------------------------------------------------
781     // if(l1 && t_track->xgood[ip])t_track->clx->AddAt(l1->GetCluster(l2->cltrx[i][ip]-1),ip);
782     // if(l1 && t_track->ygood[ip])t_track->cly->AddAt(l1->GetCluster(l2->cltry[i][ip]-1),ip);
783     if(l2->xgood_nt[i][ip]){
784     // cout << " ip "<<ip<<" l2->cltrx[i][ip] "<< l2->cltrx[i][ip]<<endl;
785     // cout << " ip "<<ip<<" l2->cltrx[i][ip] "<< l2->cltrx[i][ip]<<" ";
786     // if( l1->GetCluster(l2->cltrx[i][ip]-1)->TestBit(l1->GetCluster(l2->cltrx[i][ip]-1)->kIsReferenced) )cout << ">> is referenced ";
787     if(l1)t_track->clx->AddAt(l1->GetCluster(l2->cltrx[i][ip]-1),ip);
788     // cout << " --- "<<l1->GetCluster(l2->cltrx[i][ip]-1)->GetUniqueID()<<endl;
789     // t_track->xgood[ip] = l2->cltrx[i][ip]; // WORK-AROUND *****
790     }else{
791     if(l1)t_track->clx->RemoveAt(ip);
792     }
793     if(l2->ygood_nt[i][ip]){
794     // cout << " ip "<<ip<<" l2->cltry[i][ip] "<< l2->cltry[i][ip]<<endl;
795     // cout << " ip "<<ip<<" l2->cltry[i][ip] "<< l2->cltry[i][ip]<<" ";
796     // if( l1->GetCluster(l2->cltry[i][ip]-1)->TestBit(l1->GetCluster(l2->cltry[i][ip]-1)->kIsReferenced) )cout << ">> is referenced ";
797     if(l1)t_track->cly->AddAt(l1->GetCluster(l2->cltry[i][ip]-1),ip);
798     // cout << " --- "<<l1->GetCluster(l2->cltry[i][ip]-1)->GetUniqueID()<<endl;
799     // t_track->ygood[ip] = l2->cltry[i][ip]; // WORK-AROUND *****
800     }else{
801     if(l1)t_track->cly->RemoveAt(ip);
802     }
803     //-----------------------------------------------------
804     //-----------------------------------------------------
805     };
806     new(t[i]) TrkTrack(*t_track);
807     t_track->Clear();
808     };
809     // ----------------
810     // *** SINGLETS ***
811     // ----------------
812     if(!SingletX)SingletX = new TClonesArray("TrkSinglet");
813     TClonesArray &sx = *SingletX;
814     for(int i=0; i<l2->nclsx; i++){
815     t_singlet->plane = l2->planex[i];
816     t_singlet->coord[0] = l2->xs[i][0];
817     t_singlet->coord[1] = l2->xs[i][1];
818     t_singlet->sgnl = l2->signlxs[i];
819     //-----------------------------------------------------
820     if(l1) t_singlet->cls = l1->GetCluster(l2->clsx[i]-1);
821     //-----------------------------------------------------
822     new(sx[i]) TrkSinglet(*t_singlet);
823     t_singlet->Clear();
824     }
825     if(!SingletY)SingletY = new TClonesArray("TrkSinglet");
826     TClonesArray &sy = *SingletY;
827     for(int i=0; i<l2->nclsy; i++){
828     t_singlet->plane = l2->planey[i];
829     t_singlet->coord[0] = l2->ys[i][0];
830     t_singlet->coord[1] = l2->ys[i][1];
831     t_singlet->sgnl = l2->signlys[i];
832 pam-fi 1.26 //-----------------------------------------------------
833 pam-fi 1.29 if(l1) t_singlet->cls = l1->GetCluster(l2->clsy[i]-1);
834 pam-fi 1.26 //-----------------------------------------------------
835 pam-fi 1.29 new(sy[i]) TrkSinglet(*t_singlet);
836     t_singlet->Clear();
837     };
838 pam-fi 1.5
839 pam-fi 1.29 delete t_track;
840     delete t_singlet;
841 mocchiut 1.1 }
842 pam-fi 1.7 /**
843     * Fills a struct cTrkLevel2 with values from a TrkLevel2 object (to put data into a F77 common).
844     */
845    
846     void TrkLevel2::GetLevel2Struct(cTrkLevel2 *l2) const {
847    
848     // general variables
849 pam-fi 1.10 // l2->good2 = good2 ;
850 pam-fi 1.7 for(Int_t i=0; i<12 ; i++){
851 pam-fi 1.10 // l2->crc[i] = crc[i];
852     l2->good[i] = good[i];
853 pam-fi 1.7 };
854     // *** TRACKS ***
855    
856 pam-fi 1.21 if(Track){
857     l2->ntrk = Track->GetEntries();
858     for(Int_t i=0;i<l2->ntrk;i++){
859     l2->image[i] = 1 + ((TrkTrack *)Track->At(i))->image;
860     l2->chi2_nt[i] = ((TrkTrack *)Track->At(i))->chi2;
861     l2->nstep_nt[i] = ((TrkTrack *)Track->At(i))->nstep;
862     for(int it1=0;it1<5;it1++){
863     l2->al_nt[i][it1] = ((TrkTrack *)Track->At(i))->al[it1];
864     for(int it2=0;it2<5;it2++)
865     l2->coval[i][it2][it1] = ((TrkTrack *)Track->At(i))->coval[it1][it2];
866     };
867     for(int ip=0;ip<6;ip++){
868     l2->xgood_nt[i][ip] = ((TrkTrack *)Track->At(i))->xgood[ip];
869     l2->ygood_nt[i][ip] = ((TrkTrack *)Track->At(i))->ygood[ip];
870     l2->xm_nt[i][ip] = ((TrkTrack *)Track->At(i))->xm[ip];
871     l2->ym_nt[i][ip] = ((TrkTrack *)Track->At(i))->ym[ip];
872     l2->zm_nt[i][ip] = ((TrkTrack *)Track->At(i))->zm[ip];
873     l2->resx_nt[i][ip] = ((TrkTrack *)Track->At(i))->resx[ip];
874     l2->resy_nt[i][ip] = ((TrkTrack *)Track->At(i))->resy[ip];
875     l2->xv_nt[i][ip] = ((TrkTrack *)Track->At(i))->xv[ip];
876     l2->yv_nt[i][ip] = ((TrkTrack *)Track->At(i))->yv[ip];
877     l2->zv_nt[i][ip] = ((TrkTrack *)Track->At(i))->zv[ip];
878     l2->axv_nt[i][ip] = ((TrkTrack *)Track->At(i))->axv[ip];
879     l2->ayv_nt[i][ip] = ((TrkTrack *)Track->At(i))->ayv[ip];
880     l2->dedx_x[i][ip] = ((TrkTrack *)Track->At(i))->dedx_x[ip];
881     l2->dedx_y[i][ip] = ((TrkTrack *)Track->At(i))->dedx_y[ip];
882     };
883     }
884     }
885     // *** SINGLETS ***
886     if(SingletX){
887     l2->nclsx = SingletX->GetEntries();
888     for(Int_t i=0;i<l2->nclsx;i++){
889     l2->planex[i] = ((TrkSinglet *)SingletX->At(i))->plane;
890     l2->xs[i][0] = ((TrkSinglet *)SingletX->At(i))->coord[0];
891     l2->xs[i][1] = ((TrkSinglet *)SingletX->At(i))->coord[1];
892     l2->signlxs[i] = ((TrkSinglet *)SingletX->At(i))->sgnl;
893     }
894 pam-fi 1.7 }
895    
896 pam-fi 1.21 if(SingletY){
897     l2->nclsy = SingletY->GetEntries();
898     for(Int_t i=0;i<l2->nclsy;i++){
899     l2->planey[i] = ((TrkSinglet *)SingletY->At(i))->plane;
900     l2->ys[i][0] = ((TrkSinglet *)SingletY->At(i))->coord[0];
901     l2->ys[i][1] = ((TrkSinglet *)SingletY->At(i))->coord[1];
902     l2->signlys[i] = ((TrkSinglet *)SingletY->At(i))->sgnl;
903     }
904 pam-fi 1.7 }
905     }
906 mocchiut 1.1 //--------------------------------------
907     //
908     //
909     //--------------------------------------
910     void TrkLevel2::Clear(){
911     for(Int_t i=0; i<12 ; i++){
912 pam-fi 1.21 good[i] = -1;
913     };
914     // if(Track)Track->Clear("C");
915     // if(SingletX)SingletX->Clear("C");
916     // if(SingletY)SingletY->Clear("C");
917     if(Track)Track->Delete();
918     if(SingletX)SingletX->Delete();
919     if(SingletY)SingletY->Delete();
920     }
921     // //--------------------------------------
922     // //
923     // //
924     // //--------------------------------------
925 pam-fi 1.11 void TrkLevel2::Delete(){
926    
927 pam-fi 1.21 // cout << "void TrkLevel2::Delete()"<<endl;
928     Clear();
929     if(Track)delete Track;
930     if(SingletX)delete SingletX;
931     if(SingletY)delete SingletY;
932    
933 pam-fi 1.11 }
934     //--------------------------------------
935     //
936     //
937     //--------------------------------------
938 mocchiut 1.1 /**
939     * 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).
940     * This method is overridden by PamLevel2::GetTracks(), where calorimeter and TOF information is used.
941     */
942 pam-fi 1.8 TRefArray *TrkLevel2::GetTracks_NFitSorted(){
943 pam-fi 1.3
944 pam-fi 1.21 if(!Track)return 0;
945    
946     TRefArray *sorted = new TRefArray();
947 pam-fi 1.8
948 pam-fi 1.21 TClonesArray &t = *Track;
949 pam-fi 1.8 // TClonesArray &ts = *PhysicalTrack;
950 pam-fi 1.21 int N = ntrk();
951     vector<int> m(N); for(int i=0; i<N; i++)m[i]=1;
952 pam-fi 1.8 // int m[50]; for(int i=0; i<N; i++)m[i]=1;
953    
954 pam-fi 1.21 int indo=0;
955     int indi=0;
956 pam-fi 1.26 while(N > 0){
957     // while(N != 0){
958 pam-fi 1.21 int nfit =0;
959     float chi2ref = numeric_limits<float>::max();
960 pam-fi 1.9
961 pam-fi 1.21 // first loop to search maximum num. of fit points
962     for(int i=0; i < ntrk(); i++){
963     if( ((TrkTrack *)t[i])->GetNtot() >= nfit && m[i]==1){
964     nfit = ((TrkTrack *)t[i])->GetNtot();
965     }
966     }
967     //second loop to search minimum chi2 among selected
968 pam-fi 1.26 for(int i=0; i<ntrk(); i++){
969 pam-fi 1.21 Float_t chi2 = ((TrkTrack *)t[i])->chi2;
970 pam-fi 1.26 if(chi2 < 0) chi2 = -chi2*1000;
971 pam-fi 1.21 if( chi2 < chi2ref
972     && ((TrkTrack *)t[i])->GetNtot() == nfit
973     && m[i]==1){
974     chi2ref = ((TrkTrack *)t[i])->chi2;
975     indi = i;
976     };
977     };
978     if( ((TrkTrack *)t[indi])->HasImage() ){
979     m[((TrkTrack *)t[indi])->image] = 0;
980     N--;
981 pam-fi 1.8
982 pam-fi 1.26 // cout << "i** "<< ((TrkTrack *)t[indi])->image << " " << nfiti <<" "<<chi2i<<endl;
983 pam-fi 1.21 };
984     sorted->Add( (TrkTrack*)t[indi] );
985 pam-fi 1.3
986 pam-fi 1.21 m[indi] = 0;
987 pam-fi 1.26 // cout << "SORTED "<< indo << " "<< indi << " "<< N << " "<<((TrkTrack *)t[indi])->image<<" "<<chi2ref<<endl;
988 pam-fi 1.21 N--;
989     indo++;
990     }
991     m.clear();
992 pam-fi 1.26 // cout << "GetTracks_NFitSorted(it): Done"<< endl;
993 pam-fi 1.8
994 pam-fi 1.21 return sorted;
995 pam-fi 1.6 // return PhysicalTrack;
996 pam-fi 1.3 }
997 mocchiut 1.1 //--------------------------------------
998     //
999     //
1000     //--------------------------------------
1001     /**
1002     * Retrieves the is-th stored track.
1003     * @param it Track number, ranging from 0 to ntrk().
1004     * Fitted tracks ( images included ) are stored in a TObjectArray ( TrkLevel2::Track ) in the same order they are returned by the F77 fitting routine.
1005     */
1006     TrkTrack *TrkLevel2::GetStoredTrack(int is){
1007    
1008     if(is >= this->ntrk()){
1009     cout << "** TrkLevel2 ** Track "<< is << "doen not exits! " << endl;
1010     cout << " Stored tracks ntrk() = "<< this->ntrk() << endl;
1011     return 0;
1012     }
1013 pam-fi 1.21 if(!Track){
1014     cout << "TrkTrack *TrkLevel2::GetStoredTrack(int is) >> (TClonesArray*) Track ==0 "<<endl;
1015     };
1016 mocchiut 1.1 TClonesArray &t = *(Track);
1017     TrkTrack *track = (TrkTrack*)t[is];
1018     return track;
1019     }
1020     //--------------------------------------
1021     //
1022     //
1023     //--------------------------------------
1024     /**
1025 pam-fi 1.6 * Retrieves the is-th stored X singlet.
1026     * @param it Singlet number, ranging from 0 to nclsx().
1027     */
1028     TrkSinglet *TrkLevel2::GetSingletX(int is){
1029    
1030     if(is >= this->nclsx()){
1031     cout << "** TrkLevel2 ** Singlet "<< is << "doen not exits! " << endl;
1032     cout << " Stored x-singlets nclsx() = "<< this->nclsx() << endl;
1033     return 0;
1034     }
1035 pam-fi 1.21 if(!SingletX)return 0;
1036 pam-fi 1.6 TClonesArray &t = *(SingletX);
1037     TrkSinglet *singlet = (TrkSinglet*)t[is];
1038     return singlet;
1039     }
1040     //--------------------------------------
1041     //
1042     //
1043     //--------------------------------------
1044     /**
1045     * Retrieves the is-th stored Y singlet.
1046     * @param it Singlet number, ranging from 0 to nclsx().
1047     */
1048     TrkSinglet *TrkLevel2::GetSingletY(int is){
1049    
1050     if(is >= this->nclsy()){
1051     cout << "** TrkLevel2 ** Singlet "<< is << "doen not exits! " << endl;
1052     cout << " Stored y-singlets nclsy() = "<< this->nclsx() << endl;
1053     return 0;
1054     }
1055 pam-fi 1.21 if(!SingletY)return 0;
1056 pam-fi 1.6 TClonesArray &t = *(SingletY);
1057     TrkSinglet *singlet = (TrkSinglet*)t[is];
1058     return singlet;
1059     }
1060     //--------------------------------------
1061     //
1062     //
1063     //--------------------------------------
1064     /**
1065 mocchiut 1.1 * Retrieves the it-th "physical" track, sorted by the method GetNTracks().
1066     * @param it Track number, ranging from 0 to GetNTracks().
1067     */
1068 pam-fi 1.10
1069 pam-fi 1.8 TrkTrack *TrkLevel2::GetTrack(int it){
1070    
1071     if(it >= this->GetNTracks()){
1072     cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl;
1073     cout << " Physical tracks GetNTracks() = "<< this->ntrk() << endl;
1074     return 0;
1075     }
1076    
1077     TRefArray *sorted = GetTracks(); //TEMPORANEO
1078 pam-fi 1.21 if(!sorted)return 0;
1079 pam-fi 1.8 TrkTrack *track = (TrkTrack*)sorted->At(it);
1080 pam-fi 1.21 sorted->Clear();
1081     delete sorted;
1082 pam-fi 1.8 return track;
1083 mocchiut 1.1 }
1084 pam-fi 1.6 /**
1085     * Give the number of "physical" tracks, sorted by the method GetTracks().
1086     */
1087 pam-fi 1.5 Int_t TrkLevel2::GetNTracks(){
1088 pam-fi 1.8
1089     Float_t ntot=0;
1090 pam-fi 1.21 if(!Track)return 0;
1091 pam-fi 1.8 TClonesArray &t = *Track;
1092 mocchiut 1.12 for(int i=0; i<ntrk(); i++) {
1093 pam-fi 1.8 if( ((TrkTrack *)t[i])->GetImageSeqNo() == -1 ) ntot+=1.;
1094     else ntot+=0.5;
1095     }
1096     return (Int_t)ntot;
1097    
1098 pam-fi 1.5 };
1099 mocchiut 1.1 //--------------------------------------
1100     //
1101     //
1102     //--------------------------------------
1103     /**
1104     * Retrieves (if present) the image of the it-th "physical" track, sorted by the method GetNTracks().
1105     * @param it Track number, ranging from 0 to GetNTracks().
1106     */
1107 pam-fi 1.8 TrkTrack *TrkLevel2::GetTrackImage(int it){
1108    
1109 pam-fi 1.21 if(it >= this->GetNTracks()){
1110     cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl;
1111     cout << " Physical tracks GetNTracks() = "<< this->ntrk() << endl;
1112     return 0;
1113     }
1114 pam-fi 1.8
1115 pam-fi 1.21 TRefArray* sorted = GetTracks(); //TEMPORANEO
1116     if(!sorted)return 0;
1117     TrkTrack *track = (TrkTrack*)sorted->At(it);
1118 pam-fi 1.8
1119 pam-fi 1.21 if(!track->HasImage()){
1120     cout << "** TrkLevel2 ** Track "<< it << "does not have image! " << endl;
1121     return 0;
1122     }
1123     if(!Track)return 0;
1124     TrkTrack *image = (TrkTrack*)(*Track)[track->image];
1125    
1126     sorted->Delete();
1127     delete sorted;
1128 pam-fi 1.8
1129 pam-fi 1.21 return image;
1130 pam-fi 1.8
1131 mocchiut 1.1 }
1132     //--------------------------------------
1133     //
1134     //
1135     //--------------------------------------
1136     /**
1137     * Loads the magnetic field.
1138     * @param s Path of the magnetic-field files.
1139     */
1140 pam-fi 1.16 void TrkLevel2::LoadField(TString path){
1141     //
1142 pam-fi 1.26 // strcpy(path_.path,path.Data());
1143     // path_.pathlen = path.Length();
1144     // path_.error = 0;
1145     // readb_();
1146    
1147     TrkParams::Set(path,1);
1148 pam-fi 1.28 TrkParams::Load(1);
1149 pam-fi 1.26
1150 pam-fi 1.16 //
1151 mocchiut 1.1 };
1152 pam-fi 1.25 /**
1153     * Get BY (kGauss)
1154     * @param v (x,y,z) coordinates in cm
1155     */
1156     float TrkLevel2::GetBX(float* v){
1157     float b[3];
1158     gufld_(v,b);
1159     return b[0]/10.;
1160     }
1161     /**
1162     * Get BY (kGauss)
1163     * @param v (x,y,z) coordinates in cm
1164     */
1165     float TrkLevel2::GetBY(float* v){
1166     float b[3];
1167     gufld_(v,b);
1168     return b[1]/10.;
1169     }
1170     /**
1171     * Get BY (kGauss)
1172     * @param v (x,y,z) coordinates in cm
1173     */
1174     float TrkLevel2::GetBZ(float* v){
1175     float b[3];
1176     gufld_(v,b);
1177     return b[2]/10.;
1178     }
1179 mocchiut 1.1 //--------------------------------------
1180     //
1181     //
1182     //--------------------------------------
1183     /**
1184 pam-fi 1.6 * Get tracker-plane (mechanical) z-coordinate
1185     * @param plane_id plane index (1=TOP,2,3,4,5,6=BOTTOM)
1186     */
1187     Float_t TrkLevel2::GetZTrk(Int_t plane_id){
1188     switch(plane_id){
1189     case 1: return ZTRK1;
1190     case 2: return ZTRK2;
1191     case 3: return ZTRK3;
1192     case 4: return ZTRK4;
1193     case 5: return ZTRK5;
1194     case 6: return ZTRK6;
1195     default: return 0.;
1196     };
1197     };
1198     //--------------------------------------
1199     //
1200     //
1201     //--------------------------------------
1202     /**
1203 pam-fi 1.2 * Trajectory default constructor.
1204     * (By default is created with z-coordinates inside the tracking volume)
1205     */
1206     Trajectory::Trajectory(){
1207     npoint = 10;
1208     x = new float[npoint];
1209     y = new float[npoint];
1210     z = new float[npoint];
1211     thx = new float[npoint];
1212     thy = new float[npoint];
1213     tl = new float[npoint];
1214 pam-fi 1.6 float dz = ((ZTRK1)-(ZTRK6))/(npoint-1);
1215 pam-fi 1.2 for(int i=0; i<npoint; i++){
1216     x[i] = 0;
1217     y[i] = 0;
1218 pam-fi 1.6 z[i] = (ZTRK1) - i*dz;
1219 pam-fi 1.2 thx[i] = 0;
1220     thy[i] = 0;
1221     tl[i] = 0;
1222     }
1223     }
1224     //--------------------------------------
1225     //
1226     //
1227     //--------------------------------------
1228     /**
1229 mocchiut 1.1 * Trajectory constructor.
1230 pam-fi 1.2 * (By default is created with z-coordinates inside the tracking volume)
1231 mocchiut 1.1 * \param n Number of points
1232     */
1233     Trajectory::Trajectory(int n){
1234 pam-fi 1.2 if(n<=0){
1235     cout << "NB! Trajectory must have at least 1 point >>> created with 10 points" << endl;
1236     n=10;
1237     }
1238 mocchiut 1.1 npoint = n;
1239     x = new float[npoint];
1240     y = new float[npoint];
1241     z = new float[npoint];
1242 pam-fi 1.2 thx = new float[npoint];
1243     thy = new float[npoint];
1244     tl = new float[npoint];
1245 pam-fi 1.6 float dz = ((ZTRK1)-(ZTRK6))/(npoint-1);
1246 mocchiut 1.1 for(int i=0; i<npoint; i++){
1247 pam-fi 1.2 x[i] = 0;
1248 mocchiut 1.1 y[i] = 0;
1249 pam-fi 1.6 z[i] = (ZTRK1) - i*dz;
1250 pam-fi 1.2 thx[i] = 0;
1251     thy[i] = 0;
1252     tl[i] = 0;
1253 mocchiut 1.1 }
1254     }
1255     //--------------------------------------
1256     //
1257     //
1258     //--------------------------------------
1259     /**
1260     * Trajectory constructor.
1261     * \param n Number of points
1262     * \param pz Pointer to float array, defining z coordinates
1263     */
1264     Trajectory::Trajectory(int n, float* zin){
1265 pam-fi 1.2 npoint = 10;
1266     if(n>0)npoint = n;
1267 mocchiut 1.1 x = new float[npoint];
1268     y = new float[npoint];
1269     z = new float[npoint];
1270 pam-fi 1.2 thx = new float[npoint];
1271     thy = new float[npoint];
1272     tl = new float[npoint];
1273     int i=0;
1274     do{
1275 pam-fi 1.21 x[i] = 0;
1276     y[i] = 0;
1277     z[i] = zin[i];
1278     thx[i] = 0;
1279     thy[i] = 0;
1280     tl[i] = 0;
1281     i++;
1282 pam-fi 1.2 }while(zin[i-1] > zin[i] && i < npoint);
1283     npoint=i;
1284     if(npoint != n)cout << "NB! Trajectory created with "<<npoint<<" points"<<endl;
1285 mocchiut 1.1 }
1286 pam-fi 1.21 void Trajectory::Delete(){
1287    
1288     if(x) delete [] x;
1289     if(y) delete [] y;
1290     if(z) delete [] z;
1291     if(thx) delete [] thx;
1292     if(thy) delete [] thy;
1293     if(tl) delete [] tl;
1294    
1295     }
1296 mocchiut 1.1 //--------------------------------------
1297     //
1298     //
1299     //--------------------------------------
1300     /**
1301     * Dump the trajectory coordinates.
1302     */
1303     void Trajectory::Dump(){
1304     cout <<endl<< "Trajectory ========== "<<endl;
1305     for (int i=0; i<npoint; i++){
1306 pam-fi 1.2 cout << i <<" >> " << x[i] <<" "<< y[i] <<" "<< z[i] ;
1307     cout <<" -- " << thx[i] <<" "<< thy[i] ;
1308     cout <<" -- " << tl[i] << endl;
1309 mocchiut 1.1 };
1310     }
1311 pam-fi 1.2 //--------------------------------------
1312     //
1313     //
1314     //--------------------------------------
1315     /**
1316     * Get trajectory length between two points
1317     * @param ifirst first point (default 0)
1318     * @param ilast last point (default npoint)
1319     */
1320     float Trajectory::GetLength(int ifirst, int ilast){
1321     if( ifirst<0 ) ifirst = 0;
1322     if( ilast>=npoint) ilast = npoint-1;
1323     float l=0;
1324     for(int i=ifirst;i<=ilast;i++){
1325     l=l+tl[i];
1326     };
1327     if(z[ilast] > ZINI)l=l-tl[ilast];
1328     if(z[ifirst] < ZINI) l=l-tl[ifirst];
1329    
1330     return l;
1331 mocchiut 1.1
1332 pam-fi 1.2 }
1333 pam-fi 1.6
1334 pam-fi 1.19 /**
1335     * Evaluates the trajectory in the apparatus associated to the track.
1336     * 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.
1337     * @param t pointer to an object of the class Trajectory,
1338     * which z coordinates should be previously initialized by calling the proper constructor ( Trajectory::Trajectory(int n, float* zin) ).
1339     * @return error flag.
1340     */
1341     int Trajectory::DoTrack2(float* al){
1342    
1343     double *dxout = new double[npoint];
1344     double *dyout = new double[npoint];
1345     double *dthxout = new double[npoint];
1346     double *dthyout = new double[npoint];
1347     double *dtlout = new double[npoint];
1348     double *dzin = new double[npoint];
1349     double dal[5];
1350    
1351     int ifail = 0;
1352    
1353     for (int i=0; i<5; i++) dal[i] = (double)al[i];
1354     for (int i=0; i<npoint; i++) dzin[i] = (double)z[i];
1355    
1356 pam-fi 1.26 TrkParams::Load(1);
1357     if( !TrkParams::IsLoaded(1) ){
1358     cout << "int Trajectory::DoTrack2(float* al) --- ERROR --- m.field not loaded"<<endl;
1359     return 0;
1360     }
1361 pam-fi 1.19 dotrack2_(&(npoint),dzin,dxout,dyout,dthxout,dthyout,dtlout,dal,&ifail);
1362    
1363     for (int i=0; i<npoint; i++){
1364     x[i] = (float)*dxout++;
1365     y[i] = (float)*dyout++;
1366     thx[i] = (float)*dthxout++;
1367     thy[i] = (float)*dthyout++;
1368     tl[i] = (float)*dtlout++;
1369     }
1370    
1371     return ifail;
1372     };
1373 pam-fi 1.10
1374 mocchiut 1.1 ClassImp(TrkLevel2);
1375     ClassImp(TrkSinglet);
1376     ClassImp(TrkTrack);
1377     ClassImp(Trajectory);

  ViewVC Help
Powered by ViewVC 1.1.23