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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by pam-fi, Wed Jun 14 10:01:44 2006 UTC revision 1.10 by pam-fi, Thu Sep 28 14:04:39 2006 UTC
# Line 21  TrkTrack::TrkTrack(){ Line 21  TrkTrack::TrkTrack(){
21      seqno = -1;      seqno = -1;
22      image = -1;      image = -1;
23      chi2  = 0;      chi2  = 0;
24      for(int it1=0;it1<5;it1++){          nstep = 0;
25          al[it1] = 0;          for(int it1=0;it1<5;it1++){
26          for(int it2=0;it2<5;it2++)                  al[it1] = 0;
27              coval[it1][it2] = 0;                  for(int it2=0;it2<5;it2++)coval[it1][it2] = 0;
28      };      };
29      for(int ip=0;ip<6;ip++){      for(int ip=0;ip<6;ip++){
30          xgood[ip]  = 0;                  xgood[ip]  = 0;
31          ygood[ip]  = 0;                  ygood[ip]  = 0;
32          xm[ip]     = 0;                  xm[ip]     = 0;
33          ym[ip]     = 0;                  ym[ip]     = 0;
34          zm[ip]     = 0;                  zm[ip]     = 0;
35          resx[ip]   = 0;                  resx[ip]   = 0;
36          resy[ip]   = 0;                  resy[ip]   = 0;
37          xv[ip]     = 0;                  xv[ip]     = 0;
38          yv[ip]     = 0;                  yv[ip]     = 0;
39          zv[ip]     = 0;                  zv[ip]     = 0;
40          axv[ip]    = 0;                  axv[ip]    = 0;
41          ayv[ip]    = 0;                  ayv[ip]    = 0;
42          dedx_x[ip] = 0;                  dedx_x[ip] = 0;
43          dedx_y[ip] = 0;                  dedx_y[ip] = 0;
44      };      //              clx[ip]    = 0;
45    //              cly[ip]    = 0;
46            };
47            clx = new TRefArray(6,0);
48            cly = new TRefArray(6,0);
49  };  };
50  //--------------------------------------  //--------------------------------------
51  //  //
# Line 51  TrkTrack::TrkTrack(const TrkTrack& t){ Line 55  TrkTrack::TrkTrack(const TrkTrack& t){
55      seqno = t.seqno;      seqno = t.seqno;
56      image = t.image;      image = t.image;
57      chi2  = t.chi2;      chi2  = t.chi2;
58      for(int it1=0;it1<5;it1++){          nstep = t.nstep;
59          al[it1] = t.al[it1];          for(int it1=0;it1<5;it1++){
60          for(int it2=0;it2<5;it2++)                  al[it1] = t.al[it1];
61              coval[it1][it2] = t.coval[it1][it2];                  for(int it2=0;it2<5;it2++)coval[it1][it2] = t.coval[it1][it2];
62      };      };
63      for(int ip=0;ip<6;ip++){      for(int ip=0;ip<6;ip++){
64          xgood[ip]  = t.xgood[ip];                  xgood[ip]  = t.xgood[ip];
65          ygood[ip]  = t.ygood[ip];                  ygood[ip]  = t.ygood[ip];
66          xm[ip]     = t.xm[ip];                  xm[ip]     = t.xm[ip];
67          ym[ip]     = t.ym[ip];                  ym[ip]     = t.ym[ip];
68          zm[ip]     = t.zm[ip];                  zm[ip]     = t.zm[ip];
69          resx[ip]   = t.resx[ip];                  resx[ip]   = t.resx[ip];
70          resy[ip]   = t.resy[ip];                  resy[ip]   = t.resy[ip];
71          xv[ip]     = t.xv[ip];                  xv[ip]     = t.xv[ip];
72          yv[ip]     = t.yv[ip];                  yv[ip]     = t.yv[ip];
73          zv[ip]     = t.zv[ip];                  zv[ip]     = t.zv[ip];
74          axv[ip]    = t.axv[ip];                  axv[ip]    = t.axv[ip];
75          ayv[ip]    = t.ayv[ip];                  ayv[ip]    = t.ayv[ip];
76          dedx_x[ip] = t.dedx_x[ip];                  dedx_x[ip] = t.dedx_x[ip];
77          dedx_y[ip] = t.dedx_y[ip];                  dedx_y[ip] = t.dedx_y[ip];
78      };              //      clx[ip]    = 0;//<<<<pointer
79            //      cly[ip]    = 0;//<<<<pointer
80            };
81            clx = new TRefArray(*(t.clx));
82            cly = new TRefArray(*(t.cly));
83            
84  };  };
85  //--------------------------------------  //--------------------------------------
86  //  //
# Line 187  Float_t TrkTrack::GetDEDX(){ Line 196  Float_t TrkTrack::GetDEDX(){
196  //--------------------------------------  //--------------------------------------
197  void TrkTrack::Dump(){  void TrkTrack::Dump(){
198      cout << endl << "========== Track " ;      cout << endl << "========== Track " ;
199      cout << endl << "al       : "; for(int i=0; i<5; i++)cout << al[i] << " ";          cout << endl << "seq.  n. : "<< seqno;
200            cout << endl << "image n. : "<< image;
201            cout << endl << "al       : "; for(int i=0; i<5; i++)cout << al[i] << " ";
202      cout << endl << "chi^2    : "<< chi2;      cout << endl << "chi^2    : "<< chi2;
203      cout << endl << "xgood    : "; for(int i=0; i<6; i++)cout << xgood[i] ;          cout << endl << "n.step   : "<< nstep;
204            cout << endl << "xgood    : "; for(int i=0; i<6; i++)cout << xgood[i] ;
205      cout << endl << "ygood    : "; for(int i=0; i<6; i++)cout << ygood[i] ;      cout << endl << "ygood    : "; for(int i=0; i<6; i++)cout << ygood[i] ;
206      cout << endl << "xm       : "; for(int i=0; i<6; i++)cout << xm[i] << " ";      cout << endl << "xm       : "; for(int i=0; i<6; i++)cout << xm[i] << " ";
207      cout << endl << "ym       : "; for(int i=0; i<6; i++)cout << ym[i] << " ";      cout << endl << "ym       : "; for(int i=0; i<6; i++)cout << ym[i] << " ";
# Line 201  void TrkTrack::Dump(){ Line 213  void TrkTrack::Dump(){
213  //  //
214  //  //
215  //--------------------------------------  //--------------------------------------
216    void TrkTrack::Clear(){
217            seqno = -1;
218            image = -1;
219            chi2  = 0;
220            nstep = 0;
221            for(int it1=0;it1<5;it1++){
222                    al[it1] = 0;
223                    for(int it2=0;it2<5;it2++)coval[it1][it2] = 0;
224            };
225            for(int ip=0;ip<6;ip++){
226                    xgood[ip]  = 0;
227                    ygood[ip]  = 0;
228                    xm[ip]     = 0;
229                    ym[ip]     = 0;
230                    zm[ip]     = 0;
231                    resx[ip]   = 0;
232                    resy[ip]   = 0;
233                    xv[ip]     = 0;
234                    yv[ip]     = 0;
235                    zv[ip]     = 0;
236                    axv[ip]    = 0;
237                    ayv[ip]    = 0;
238                    dedx_x[ip] = 0;
239                    dedx_y[ip] = 0;
240    //              clx[ip]    = 0;
241    //              cly[ip]    = 0;
242            };
243            clx->Clear();
244            cly->Clear();
245    };
246    //--------------------------------------
247    //
248    //
249    //--------------------------------------
250    
251    //--------------------------------------
252    //
253    //
254    //--------------------------------------
255  TrkSinglet::TrkSinglet(){  TrkSinglet::TrkSinglet(){
256      plane    = 0;      plane    = 0;
257      coord[0] = 0;      coord[0] = 0;
258      coord[1] = 0;      coord[1] = 0;
259      sgnl     = 0;      sgnl     = 0;
260            cls      = 0;
261  };  };
262  //--------------------------------------  //--------------------------------------
263  //  //
# Line 216  TrkSinglet::TrkSinglet(const TrkSinglet& Line 268  TrkSinglet::TrkSinglet(const TrkSinglet&
268      coord[0] = s.coord[0];      coord[0] = s.coord[0];
269      coord[1] = s.coord[1];      coord[1] = s.coord[1];
270      sgnl     = s.sgnl;      sgnl     = s.sgnl;
271    //      cls      = 0;//<<<<pointer
272            cls      = TRef(s.cls);
273  };  };
274  //--------------------------------------  //--------------------------------------
275  //  //
# Line 233  void TrkSinglet::Dump(){ Line 287  void TrkSinglet::Dump(){
287  //  //
288  //--------------------------------------  //--------------------------------------
289  TrkLevel2::TrkLevel2(){  TrkLevel2::TrkLevel2(){
290      good2    = -1;  //    good2    = -1;
291      for(Int_t i=0; i<12 ; i++){      for(Int_t i=0; i<12 ; i++){
292          crc[i] = -1;  //      crc[i] = -1;
293      };                  good[i] = -1;
294            };
295      Track    = new TClonesArray("TrkTrack");      Track    = new TClonesArray("TrkTrack");
296      SingletX = new TClonesArray("TrkSinglet");      SingletX = new TClonesArray("TrkSinglet");
297      SingletY = new TClonesArray("TrkSinglet");      SingletY = new TClonesArray("TrkSinglet");
298  //    Track    = 0;  
299  //    Singlet = 0;  //      PhysicalTrack = new TClonesArray("TrkTrack");
300  //    SingletY = 0;          //sostituire con TRefArray... appena ho capito come si usa
301  }  }
302  //--------------------------------------  //--------------------------------------
303  //  //
304  //  //
305  //--------------------------------------  //--------------------------------------
306  void TrkLevel2::Dump(){  void TrkLevel2::Dump(){
307            
308      TClonesArray &t  = *Track;      TClonesArray &t  = *Track;
309      TClonesArray &sx = *SingletX;      TClonesArray &sx = *SingletX;
310      TClonesArray &sy = *SingletY;      TClonesArray &sy = *SingletY;
311            //
312      cout << endl << endl << "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-";      cout << endl << endl << "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-";
313      cout << endl << "good2    : " << good2;      cout << endl << "good     : "; for(int i=0; i<12; i++) cout << good[i]<<" ";
     cout << endl << "crc      : "; for(int i=0; i<12; i++) cout << crc[i];  
314      cout << endl << "ntrk()   : " << this->ntrk() ;      cout << endl << "ntrk()   : " << this->ntrk() ;
315      cout << endl << "nclsx()  : " << this->nclsx();      cout << endl << "nclsx()  : " << this->nclsx();
316      cout << endl << "nclsy()  : " << this->nclsy();      cout << endl << "nclsy()  : " << this->nclsy();
# Line 270  void TrkLevel2::Dump(){ Line 325  void TrkLevel2::Dump(){
325  /**  /**
326   * Fills a TrkLevel2 object with values from a struct cTrkLevel2 (to get data from F77 common).   * Fills a TrkLevel2 object with values from a struct cTrkLevel2 (to get data from F77 common).
327   */   */
328  void TrkLevel2::FillCommonVar(cTrkLevel2 *l2){  void TrkLevel2::SetFromLevel2Struct(cTrkLevel2 *l2){
329      //  
330  //    Track    = new TClonesArray("TrkTrack");          //  temporary objects:
 //    SingletX = new TClonesArray("TrkSinglet");  
 //    SingletY = new TClonesArray("TrkSinglet");  
 //  temporary objects:  
331      TrkSinglet* t_singlet = new TrkSinglet();      TrkSinglet* t_singlet = new TrkSinglet();
332      TrkTrack*   t_track   = new TrkTrack();      TrkTrack*   t_track   = new TrkTrack();
333  //  general variables  
334      good2 = l2->good2;          //  **** general variables ****
335    //    good2 = l2->good2;
336      for(Int_t i=0; i<12 ; i++){      for(Int_t i=0; i<12 ; i++){
337          crc[i] = l2->crc[i];  //              crc[i] = l2->crc[i];
338      };                  good[i] = l2->good[i];
339  //  *** TRACKS ***          };
340            //  *** TRACKS ***
341      TClonesArray &t = *Track;      TClonesArray &t = *Track;
342      for(int i=0; i<l2->ntrk; i++){      for(int i=0; i<l2->ntrk; i++){
343          t_track->seqno = i;                  t_track->seqno = i;// NBNBNBNB deve sempre essere = i
344          t_track->image = l2->image[i]-1;                  t_track->image = l2->image[i]-1;
345  //      cout << "track "<<i<<t_track->seqno << t_track->image<<endl;          //      cout << "track "<<i<<t_track->seqno << t_track->image<<endl;
346          t_track->chi2  = l2->chi2_nt[i];                  t_track->chi2  = l2->chi2_nt[i];
347          for(int it1=0;it1<5;it1++){                  t_track->nstep = l2->nstep_nt[i];
348              t_track->al[it1] = l2->al_nt[i][it1];                  for(int it1=0;it1<5;it1++){
349              for(int it2=0;it2<5;it2++)                          t_track->al[it1] = l2->al_nt[i][it1];
350                  t_track->coval[it1][it2] = l2->coval[i][it2][it1];                          for(int it2=0;it2<5;it2++)
351          };                          t_track->coval[it1][it2] = l2->coval[i][it2][it1];
352          for(int ip=0;ip<6;ip++){                  };
353              t_track->xgood[ip]  = l2->xgood_nt[i][ip];                  for(int ip=0;ip<6;ip++){
354              t_track->ygood[ip]  = l2->ygood_nt[i][ip];                          t_track->xgood[ip]  = l2->xgood_nt[i][ip];
355              t_track->xm[ip]     = l2->xm_nt[i][ip];                          t_track->ygood[ip]  = l2->ygood_nt[i][ip];
356              t_track->ym[ip]     = l2->ym_nt[i][ip];                          t_track->xm[ip]     = l2->xm_nt[i][ip];
357              t_track->zm[ip]     = l2->zm_nt[i][ip];                          t_track->ym[ip]     = l2->ym_nt[i][ip];
358              t_track->resx[ip]   = l2->resx_nt[i][ip];                          t_track->zm[ip]     = l2->zm_nt[i][ip];
359              t_track->resy[ip]   = l2->resy_nt[i][ip];                          t_track->resx[ip]   = l2->resx_nt[i][ip];
360              t_track->xv[ip]     = l2->xv_nt[i][ip];                          t_track->resy[ip]   = l2->resy_nt[i][ip];
361              t_track->yv[ip]     = l2->yv_nt[i][ip];                          t_track->xv[ip]     = l2->xv_nt[i][ip];
362              t_track->zv[ip]     = l2->zv_nt[i][ip];                          t_track->yv[ip]     = l2->yv_nt[i][ip];
363              t_track->axv[ip]    = l2->axv_nt[i][ip];                          t_track->zv[ip]     = l2->zv_nt[i][ip];
364              t_track->ayv[ip]    = l2->ayv_nt[i][ip];                          t_track->axv[ip]    = l2->axv_nt[i][ip];
365              t_track->dedx_x[ip] = l2->dedx_x[i][ip];                          t_track->ayv[ip]    = l2->ayv_nt[i][ip];
366              t_track->dedx_y[ip] = l2->dedx_y[i][ip];                          t_track->dedx_x[ip] = l2->dedx_x[i][ip];
367          };                          t_track->dedx_y[ip] = l2->dedx_y[i][ip];
368          new(t[i]) TrkTrack(*t_track);  //                      t_track->clx[ip] = 0;
369          t_track->Clear();  //                      t_track->cly[ip] = 0;
370                    };
371                    new(t[i]) TrkTrack(*t_track);
372                    t_track->Clear();
373      };      };
374  //  *** SINGLETS ***  //  *** SINGLETS ***
375      TClonesArray &sx = *SingletX;      TClonesArray &sx = *SingletX;
376      for(int i=0; i<l2->nclsx; i++){      for(int i=0; i<l2->nclsx; i++){
377          t_singlet->plane    = l2->planex[i];                  t_singlet->plane    = l2->planex[i];
378          t_singlet->coord[0] = l2->xs[i][0];                  t_singlet->coord[0] = l2->xs[i][0];
379          t_singlet->coord[1] = l2->xs[i][1];                  t_singlet->coord[1] = l2->xs[i][1];
380          t_singlet->sgnl     = l2->signlxs[i];                  t_singlet->sgnl     = l2->signlxs[i];
381          new(sx[i]) TrkSinglet(*t_singlet);  //              t_singlet->cls      = 0;
382          t_singlet->Clear();                  new(sx[i]) TrkSinglet(*t_singlet);
383                    t_singlet->Clear();
384      }      }
385      TClonesArray &sy = *SingletY;      TClonesArray &sy = *SingletY;
386      for(int i=0; i<l2->nclsy; i++){      for(int i=0; i<l2->nclsy; i++){
387          t_singlet->plane    = l2->planey[i];                  t_singlet->plane    = l2->planey[i];
388          t_singlet->coord[0] = l2->ys[i][0];                  t_singlet->coord[0] = l2->ys[i][0];
389          t_singlet->coord[1] = l2->ys[i][1];                  t_singlet->coord[1] = l2->ys[i][1];
390          t_singlet->sgnl     = l2->signlys[i];                  t_singlet->sgnl     = l2->signlys[i];
391          new(sy[i]) TrkSinglet(*t_singlet);  //              t_singlet->cls      = 0;
392          t_singlet->Clear();                  new(sy[i]) TrkSinglet(*t_singlet);
393                    t_singlet->Clear();
394          };          };
395            
396            delete t_track;
397            delete t_singlet;
398  }  }
399  //--------------------------------------  //--------------------------------------
400  //  //
401  //  //
402  //--------------------------------------  //--------------------------------------
403  void TrkLevel2::Clear(){  /**
404      good2    = -1;   * Fills a TrkLevel2 object with values from a struct cTrkLevel2 (to get data from F77 common).
405     * Ref to Level1 data (clusters) is also set.
406     */
407    void TrkLevel2::SetFromLevel2Struct(cTrkLevel2 *l2, TrkLevel1 *l1){
408    
409    //  temporary objects:
410            TrkSinglet* t_singlet = new TrkSinglet();
411            TrkTrack*   t_track   = new TrkTrack();
412    // general variables
413    //      good2 = l2->good2;
414            for(Int_t i=0; i<12 ; i++){
415    //              crc[i] = l2->crc[i];
416                    good[i] = l2->good[i];
417            };
418    // *** TRACKS ***
419            TClonesArray &t = *Track;
420            for(int i=0; i<l2->ntrk; i++){
421                    t_track->seqno = i;// NBNBNBNB deve sempre essere = i
422                    t_track->image = l2->image[i]-1;
423    //              cout << "track "<<i<<t_track->seqno << t_track->image<<endl;
424                    t_track->chi2  = l2->chi2_nt[i];
425                    t_track->nstep = l2->nstep_nt[i];
426                    for(int it1=0;it1<5;it1++){
427                            t_track->al[it1] = l2->al_nt[i][it1];
428                            for(int it2=0;it2<5;it2++)
429                                    t_track->coval[it1][it2] = l2->coval[i][it2][it1];
430                    };
431                    for(int ip=0;ip<6;ip++){
432                            t_track->xgood[ip]  = l2->xgood_nt[i][ip];
433                            t_track->ygood[ip]  = l2->ygood_nt[i][ip];
434                            t_track->xm[ip]     = l2->xm_nt[i][ip];
435                            t_track->ym[ip]     = l2->ym_nt[i][ip];
436                            t_track->zm[ip]     = l2->zm_nt[i][ip];
437                            t_track->resx[ip]   = l2->resx_nt[i][ip];
438                            t_track->resy[ip]   = l2->resy_nt[i][ip];
439                            t_track->xv[ip]     = l2->xv_nt[i][ip];
440                            t_track->yv[ip]     = l2->yv_nt[i][ip];
441                            t_track->zv[ip]     = l2->zv_nt[i][ip];
442                            t_track->axv[ip]    = l2->axv_nt[i][ip];
443                            t_track->ayv[ip]    = l2->ayv_nt[i][ip];
444                            t_track->dedx_x[ip] = l2->dedx_x[i][ip];
445                            t_track->dedx_y[ip] = l2->dedx_y[i][ip];
446    //                      cout << "traccia "<<i<<"  --  "<< ip << " "<< l2->cltrx[i][ip] <<" "<< l2->cltry[i][ip] <<" "<< t_track->xgood[ip] << t_track->ygood[ip]<<endl;
447                            //-----------------------------------------------------
448    //                      t_track->clx[ip] = l1->GetCluster(l2->cltrx[i][ip]-1);
449    //                      t_track->cly[ip] = l1->GetCluster(l2->cltry[i][ip]-1);
450                            if(t_track->xgood[ip])t_track->clx->AddAt(l1->GetCluster(l2->cltrx[i][ip]-1),ip);
451                            if(t_track->ygood[ip])t_track->cly->AddAt(l1->GetCluster(l2->cltry[i][ip]-1),ip);
452    //                      if(t_track->ygood[ip])cout<<" i "<<i<<" ip "<<ip<<" l2->cltry[i][ip] "<<l2->cltry[i][ip]<< " l1->GetCluster(l2->cltry[i][ip]-1) "<<l1->GetCluster(l2->cltry[i][ip]-1)<<endl;
453    //                      if(t_track->xgood[ip])cout<<" i "<<i<<" ip "<<ip<<" l2->cltrx[i][ip] "<<l2->cltrx[i][ip]<< " l1->GetCluster(l2->cltrx[i][ip]-1) "<<l1->GetCluster(l2->cltrx[i][ip]-1)<<endl;
454                            //-----------------------------------------------------
455                    };
456                    new(t[i]) TrkTrack(*t_track);
457                    t_track->Clear();
458            };
459    // *** SINGLETS ***
460            TClonesArray &sx = *SingletX;
461            for(int i=0; i<l2->nclsx; i++){
462                    t_singlet->plane    = l2->planex[i];
463                    t_singlet->coord[0] = l2->xs[i][0];
464                    t_singlet->coord[1] = l2->xs[i][1];
465                    t_singlet->sgnl     = l2->signlxs[i];
466                    //-----------------------------------------------------
467    //              cout << "singolo x "<<i<<"  --  "<<  l2->clsx[i] <<endl;
468                    t_singlet->cls      = l1->GetCluster(l2->clsx[i]-1);
469    //              cout<<" i "<<i<<" l2->clsx[i] "<<l2->clsx[i]<< " l1->GetCluster(l2->clsx[i]-1) "<<l1->GetCluster(l2->clsx[i]-1)<<endl;          
470                    //-----------------------------------------------------
471                    new(sx[i]) TrkSinglet(*t_singlet);
472                    t_singlet->Clear();
473            }
474            TClonesArray &sy = *SingletY;
475            for(int i=0; i<l2->nclsy; i++){
476                    t_singlet->plane    = l2->planey[i];
477                    t_singlet->coord[0] = l2->ys[i][0];
478                    t_singlet->coord[1] = l2->ys[i][1];
479                    t_singlet->sgnl     = l2->signlys[i];
480                    //-----------------------------------------------------
481    //              cout << "singolo y "<<i<<"  --  "<<  l2->clsy[i] <<endl;
482                    t_singlet->cls      = l1->GetCluster(l2->clsy[i]-1);
483    //              cout<<" i "<<i<<" l2->clsy[i] "<<l2->clsy[i]<< " l1->GetCluster(l2->clsy[i]-1) "<<l1->GetCluster(l2->clsy[i]-1)<<endl;          
484                    //-----------------------------------------------------
485                    new(sy[i]) TrkSinglet(*t_singlet);
486                    t_singlet->Clear();
487            };
488            
489            delete t_track;
490            delete t_singlet;
491    }
492    /**
493     * Fills a struct cTrkLevel2 with values from a TrkLevel2 object (to put data into a F77 common).
494     */
495    
496    void TrkLevel2::GetLevel2Struct(cTrkLevel2 *l2) const {
497      
498    //  general variables
499    //    l2->good2 = good2 ;
500      for(Int_t i=0; i<12 ; i++){      for(Int_t i=0; i<12 ; i++){
501          crc[i] = -1;  //      l2->crc[i] = crc[i];
502                    l2->good[i] = good[i];
503      };      };
504      Track->RemoveAll();  //  *** TRACKS ***
505    
506        l2->ntrk              =  Track->GetEntries();    
507        for(Int_t i=0;i<l2->ntrk;i++){
508          l2->image[i] = 1 + ((TrkTrack *)Track->At(i))->image;
509          l2->chi2_nt[i] =  ((TrkTrack *)Track->At(i))->chi2;
510              l2->nstep_nt[i] =  ((TrkTrack *)Track->At(i))->nstep;
511              for(int it1=0;it1<5;it1++){
512            l2->al_nt[i][it1] = ((TrkTrack *)Track->At(i))->al[it1];
513            for(int it2=0;it2<5;it2++)
514              l2->coval[i][it2][it1] = ((TrkTrack *)Track->At(i))->coval[it1][it2];
515          };
516          for(int ip=0;ip<6;ip++){
517            l2->xgood_nt[i][ip] = ((TrkTrack *)Track->At(i))->xgood[ip];
518            l2->ygood_nt[i][ip] = ((TrkTrack *)Track->At(i))->ygood[ip];
519            l2->xm_nt[i][ip]    = ((TrkTrack *)Track->At(i))->xm[ip];
520            l2->ym_nt[i][ip]    = ((TrkTrack *)Track->At(i))->ym[ip];
521            l2->zm_nt[i][ip]    = ((TrkTrack *)Track->At(i))->zm[ip];
522            l2->resx_nt[i][ip]  = ((TrkTrack *)Track->At(i))->resx[ip];
523            l2->resy_nt[i][ip]  = ((TrkTrack *)Track->At(i))->resy[ip];
524            l2->xv_nt[i][ip]    = ((TrkTrack *)Track->At(i))->xv[ip];
525            l2->yv_nt[i][ip]    = ((TrkTrack *)Track->At(i))->yv[ip];
526            l2->zv_nt[i][ip]    = ((TrkTrack *)Track->At(i))->zv[ip];
527            l2->axv_nt[i][ip]   = ((TrkTrack *)Track->At(i))->axv[ip];
528            l2->ayv_nt[i][ip]   = ((TrkTrack *)Track->At(i))->ayv[ip];
529            l2->dedx_x[i][ip]   = ((TrkTrack *)Track->At(i))->dedx_x[ip];
530            l2->dedx_y[i][ip]   = ((TrkTrack *)Track->At(i))->dedx_y[ip];
531          };
532        }
533    
534    //  *** SINGLETS ***    
535        l2->nclsx              = SingletX->GetEntries();
536        for(Int_t i=0;i<l2->nclsx;i++){
537          l2->planex[i]  = ((TrkSinglet *)SingletX->At(i))->plane;
538          l2->xs[i][0]   = ((TrkSinglet *)SingletX->At(i))->coord[0];
539          l2->xs[i][1]   = ((TrkSinglet *)SingletX->At(i))->coord[1];
540          l2->signlxs[i] = ((TrkSinglet *)SingletX->At(i))->sgnl;
541        }
542        l2->nclsy              = SingletY->GetEntries();
543        for(Int_t i=0;i<l2->nclsy;i++){
544          l2->planey[i]  = ((TrkSinglet *)SingletY->At(i))->plane;
545          l2->ys[i][0]   = ((TrkSinglet *)SingletY->At(i))->coord[0];
546          l2->ys[i][1]   = ((TrkSinglet *)SingletY->At(i))->coord[1];
547          l2->signlys[i] = ((TrkSinglet *)SingletY->At(i))->sgnl;
548        }
549    }
550    //--------------------------------------
551    //
552    //
553    //--------------------------------------
554    void TrkLevel2::Clear(){
555    //    good2    = -1;
556        for(Int_t i=0; i<12 ; i++){
557    //      crc[i] = -1;
558                    good[i] = -1;
559            };
560    /*    Track->RemoveAll();
561      SingletX->RemoveAll();      SingletX->RemoveAll();
562      SingletY->RemoveAll();      SingletY->RemoveAll();*/
563            // modify to avoid memory leakage
564            Track->Clear();
565            SingletX->Clear();
566            SingletY->Clear();
567  }  }
568  //--------------------------------------  //--------------------------------------
569  //  //
# Line 355  void TrkLevel2::Clear(){ Line 573  void TrkLevel2::Clear(){
573   * 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).   * 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).
574   * This method is overridden by PamLevel2::GetTracks(), where calorimeter and TOF information is used.   * This method is overridden by PamLevel2::GetTracks(), where calorimeter and TOF information is used.
575   */   */
576  TClonesArray *TrkLevel2::GetTracks(){  TRefArray *TrkLevel2::GetTracks_NFitSorted(){
     TClonesArray *sorted = GetTracks_NFitSorted();  
     return sorted;  
 };  
 TClonesArray *TrkLevel2::GetTracks_Chi2Sorted(){  
   
     TClonesArray *sorted = new TClonesArray("TrkTrack");  
     TClonesArray &t = *Track;  
     TClonesArray &ts = *sorted;  
     int N=this->ntrk();  
     vector<int> m(N); for(int i=0; i<N; i++)m[i]=1;  
   
     int indo=0;  
     int indi=0;  
     while(N != 0){  
         float chi2ref=1000000;  
         for(int i=0; i<this->ntrk(); i++){  
             if(((TrkTrack *)t[i])->chi2 < chi2ref && m[i]==1){  
                 chi2ref = ((TrkTrack *)t[i])->chi2;  
                 indi = i;  
             }  
         }  
         if( ((TrkTrack *)t[indi])->image != -1 ){  
             m[((TrkTrack *)t[indi])->image] = 0;  
             N--;  
         }  
         new(ts[indo]) TrkTrack(*(TrkTrack*)t[indi]);  
         m[indi] = 0;  
         N--;      
         indo++;  
     }  
     return sorted;  
 }  
 TClonesArray *TrkLevel2::GetTracks_NFitSorted(){  
   
     TClonesArray *sorted = new TClonesArray("TrkTrack");  
     TClonesArray &t = *Track;  
     TClonesArray &ts = *sorted;  
     int N=this->ntrk();  
     vector<int> m(N); for(int i=0; i<N; i++)m[i]=1;  
   
     int indo=0;  
     int indi=0;  
     while(N != 0){  
         int nfit =0;  
         float chi2ref=1000000;  
         // first loop to search maximum num. of fit points  
         for(int i=0; i<this->ntrk(); i++){  
             if( ((TrkTrack *)t[i])->GetNtot() >= nfit && m[i]==1){  
                 nfit =    ((TrkTrack *)t[i])->GetNtot();  
 //              cout << "1** "<<i<< " " << nfit<<endl;  
             }  
         }  
         //second loop to search minimum chi2 among selected  
         for(int i=0; i<this->ntrk(); i++){  
             if(    ((TrkTrack *)t[i])->chi2 < chi2ref  
                 && ((TrkTrack *)t[i])->GetNtot()== nfit  
                 && m[i]==1){  
                 chi2ref = ((TrkTrack *)t[i])->chi2;  
                 indi = i;  
 //              cout << "2** "<<i<< " " << nfit <<" "<<chi2ref<<endl;  
             }  
         }  
         if( ((TrkTrack *)t[indi])->HasImage() ){  
             m[((TrkTrack *)t[indi])->image] = 0;  
             N--;  
577    
578  //          Int_t nfiti=((TrkTrack *)t[((TrkTrack *)t[indi])->image  ])->GetNtot();          TRefArray *sorted = new TRefArray();
579  //          Float_t chi2i=((TrkTrack *)t[((TrkTrack *)t[indi])->image  ])->chi2;          
580            TClonesArray &t  = *Track;
581    //    TClonesArray &ts = *PhysicalTrack;
582            int N = ntrk();
583            vector<int> m(N); for(int i=0; i<N; i++)m[i]=1;
584    //      int m[50]; for(int i=0; i<N; i++)m[i]=1;
585            
586            int indo=0;
587            int indi=0;
588            while(N != 0){
589                    int nfit =0;
590                    float chi2ref = numeric_limits<float>::max();
591                    
592                    // first loop to search maximum num. of fit points
593                    for(int i=0; i < ntrk(); i++){
594                            if( ((TrkTrack *)t[i])->GetNtot() >= nfit && m[i]==1){
595                                    nfit =    ((TrkTrack *)t[i])->GetNtot();
596                            }
597                    }
598                    //second loop to search minimum chi2 among selected
599                    for(int i=0; i<this->ntrk(); i++){
600                            Float_t chi2 = ((TrkTrack *)t[i])->chi2;
601                            if(chi2 < 0) chi2 = chi2*1000;
602                            if(    chi2 < chi2ref
603                                    && ((TrkTrack *)t[i])->GetNtot() == nfit
604                                    && m[i]==1){
605                                    chi2ref = ((TrkTrack *)t[i])->chi2;
606                                    indi = i;
607                            };
608                    };
609                    if( ((TrkTrack *)t[indi])->HasImage() ){
610                            m[((TrkTrack *)t[indi])->image] = 0;
611                            N--;
612            
613            //          cout << "i** "<< ((TrkTrack *)t[indi])->image << " " << nfiti <<" "<<chi2i<<endl;
614                    };
615                    sorted->Add( (TrkTrack*)t[indi] );      
616                                    
617  //          cout << "i** "<< ((TrkTrack *)t[indi])->image << " " << nfiti <<" "<<chi2i<<endl;                  m[indi] = 0;
618    //              cout << "SORTED "<< indo << " "<< indi << " "<< N << endl;
619                    N--;    
620                    indo++;
621          }          }
622          new(ts[indo]) TrkTrack(*(TrkTrack*)t[indi]);          m.clear();
623          m[indi] = 0;  //      cout << "GetTracks_NFitSorted(it): Done"<< endl;
624          N--;      
625          indo++;          return sorted;
626      }  //    return PhysicalTrack;
     return sorted;  
627  }  }
628  //--------------------------------------  //--------------------------------------
629  //  //
# Line 459  TrkTrack *TrkLevel2::GetStoredTrack(int Line 650  TrkTrack *TrkLevel2::GetStoredTrack(int
650  //  //
651  //--------------------------------------  //--------------------------------------
652  /**  /**
653     * Retrieves the is-th stored X singlet.
654     * @param it Singlet number, ranging from 0 to nclsx().
655     */
656    TrkSinglet *TrkLevel2::GetSingletX(int is){
657    
658            if(is >= this->nclsx()){
659                    cout << "** TrkLevel2 ** Singlet "<< is << "doen not exits! " << endl;
660                    cout << "                Stored x-singlets nclsx() = "<< this->nclsx() << endl;
661                    return 0;
662            }
663            TClonesArray &t = *(SingletX);
664            TrkSinglet *singlet = (TrkSinglet*)t[is];
665            return singlet;
666    }
667    //--------------------------------------
668    //
669    //
670    //--------------------------------------
671    /**
672     * Retrieves the is-th stored Y singlet.
673     * @param it Singlet number, ranging from 0 to nclsx().
674     */
675    TrkSinglet *TrkLevel2::GetSingletY(int is){
676    
677            if(is >= this->nclsy()){
678                    cout << "** TrkLevel2 ** Singlet "<< is << "doen not exits! " << endl;
679                    cout << "                Stored y-singlets nclsy() = "<< this->nclsx() << endl;
680                    return 0;
681            }
682            TClonesArray &t = *(SingletY);
683            TrkSinglet *singlet = (TrkSinglet*)t[is];
684            return singlet;
685    }
686    //--------------------------------------
687    //
688    //
689    //--------------------------------------
690    /**
691   * Retrieves the it-th "physical" track, sorted by the method GetNTracks().   * Retrieves the it-th "physical" track, sorted by the method GetNTracks().
692   * @param it Track number, ranging from 0 to GetNTracks().   * @param it Track number, ranging from 0 to GetNTracks().
693   */   */
694    
695  TrkTrack *TrkLevel2::GetTrack(int it){  TrkTrack *TrkLevel2::GetTrack(int it){
696            
697      if(it >= this->GetNTracks()){          if(it >= this->GetNTracks()){
698          cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl;                  cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl;
699          cout << "                Physical tracks GetNTracks() = "<< this->ntrk() << endl;                  cout << "                Physical tracks GetNTracks() = "<< this->ntrk() << endl;
700          return 0;                  return 0;
701      }          }
702      TrkTrack *track = (TrkTrack*)(*(this->GetTracks()))[it];          
703      return track;          TRefArray *sorted = GetTracks();  //TEMPORANEO  
704            TrkTrack *track = (TrkTrack*)sorted->At(it);
705            sorted->Delete();
706            return track;
707  }  }
708    /**
709     * Give the number of "physical" tracks, sorted by the method GetTracks().
710     */
711    Int_t TrkLevel2::GetNTracks(){
712                    
713            Float_t ntot=0;
714            TClonesArray &t = *Track;
715            for(int i=0; i<ntrk(); i++) {
716                    if( ((TrkTrack *)t[i])->GetImageSeqNo() == -1 ) ntot+=1.;
717                    else ntot+=0.5;
718            }
719            return (Int_t)ntot;
720    
721    };
722  //--------------------------------------  //--------------------------------------
723  //  //
724  //  //
# Line 482  TrkTrack *TrkLevel2::GetTrack(int it){ Line 729  TrkTrack *TrkLevel2::GetTrack(int it){
729   */   */
730  TrkTrack *TrkLevel2::GetTrackImage(int it){  TrkTrack *TrkLevel2::GetTrackImage(int it){
731    
732      if(it >= this->GetNTracks()){          if(it >= this->GetNTracks()){
733          cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl;                  cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl;
734          cout << "                Physical tracks GetNTracks() = "<< this->ntrk() << endl;                  cout << "                Physical tracks GetNTracks() = "<< this->ntrk() << endl;
735          return 0;                  return 0;
736      }          }
737      TrkTrack *track = (TrkTrack*)(*(this->GetTracks()))[it];          
738      if(!track->HasImage()){          TRefArray* sorted = GetTracks(); //TEMPORANEO
739          cout << "** TrkLevel2 ** Track "<< it << "does not have image! " << endl;          TrkTrack *track = (TrkTrack*)sorted->At(it);
740          return 0;          
741      }          if(!track->HasImage()){
742      TrkTrack *image = (TrkTrack*)(*Track)[track->image];                  cout << "** TrkLevel2 ** Track "<< it << "does not have image! " << endl;
743      return image;                  return 0;
744            }
745            TrkTrack *image = (TrkTrack*)(*Track)[track->image];
746    
747            sorted->Delete();
748            
749            return image;
750            
751  }  }
752  //--------------------------------------  //--------------------------------------
# Line 512  void TrkLevel2::LoadField(TString s){ Line 765  void TrkLevel2::LoadField(TString s){
765  //  //
766  //--------------------------------------  //--------------------------------------
767  /**  /**
768     * Get tracker-plane (mechanical) z-coordinate
769     * @param plane_id plane index (1=TOP,2,3,4,5,6=BOTTOM)
770     */
771    Float_t TrkLevel2::GetZTrk(Int_t plane_id){
772            switch(plane_id){
773                    case 1: return ZTRK1;
774                    case 2: return ZTRK2;
775                    case 3: return ZTRK3;
776                    case 4: return ZTRK4;
777                    case 5: return ZTRK5;
778                    case 6: return ZTRK6;
779                    default: return 0.;
780            };
781    };
782    //--------------------------------------
783    //
784    //
785    //--------------------------------------
786    /**
787   * Trajectory default constructor.   * Trajectory default constructor.
788   * (By default is created with z-coordinates inside the tracking volume)   * (By default is created with z-coordinates inside the tracking volume)
789    */    */
# Line 523  Trajectory::Trajectory(){ Line 795  Trajectory::Trajectory(){
795      thx = new float[npoint];      thx = new float[npoint];
796      thy = new float[npoint];      thy = new float[npoint];
797      tl = new float[npoint];      tl = new float[npoint];
798      float dz = ((ZTRKUP)-(ZTRKDW))/(npoint-1);      float dz = ((ZTRK1)-(ZTRK6))/(npoint-1);
799      for(int i=0; i<npoint; i++){      for(int i=0; i<npoint; i++){
800          x[i] = 0;          x[i] = 0;
801          y[i] = 0;          y[i] = 0;
802          z[i] = (ZTRKUP) - i*dz;          z[i] = (ZTRK1) - i*dz;
803          thx[i] = 0;          thx[i] = 0;
804          thy[i] = 0;          thy[i] = 0;
805          tl[i] = 0;          tl[i] = 0;
# Line 554  Trajectory::Trajectory(int n){ Line 826  Trajectory::Trajectory(int n){
826      thx = new float[npoint];      thx = new float[npoint];
827      thy = new float[npoint];      thy = new float[npoint];
828      tl = new float[npoint];      tl = new float[npoint];
829      float dz = ((ZTRKUP)-(ZTRKDW))/(npoint-1);      float dz = ((ZTRK1)-(ZTRK6))/(npoint-1);
830      for(int i=0; i<npoint; i++){      for(int i=0; i<npoint; i++){
831          x[i] = 0;          x[i] = 0;
832          y[i] = 0;          y[i] = 0;
833          z[i] = (ZTRKUP) - i*dz;          z[i] = (ZTRK1) - i*dz;
834          thx[i] = 0;          thx[i] = 0;
835          thy[i] = 0;          thy[i] = 0;
836          tl[i] = 0;          tl[i] = 0;
# Line 584  Trajectory::Trajectory(int n, float* zin Line 856  Trajectory::Trajectory(int n, float* zin
856      tl = new float[npoint];      tl = new float[npoint];
857      int i=0;      int i=0;
858      do{      do{
859          x[i] = 0;                  x[i] = 0;
860          y[i] = 0;                  y[i] = 0;
861          z[i] = zin[i];                  z[i] = zin[i];
862          thx[i] = 0;                  thx[i] = 0;
863          thy[i] = 0;                  thy[i] = 0;
864          tl[i] = 0;                  tl[i] = 0;
865          i++;                              i++;            
866      }while(zin[i-1] > zin[i] && i < npoint);      }while(zin[i-1] > zin[i] && i < npoint);
867      npoint=i;      npoint=i;
868      if(npoint != n)cout << "NB! Trajectory created with "<<npoint<<" points"<<endl;      if(npoint != n)cout << "NB! Trajectory created with "<<npoint<<" points"<<endl;
# Line 632  float Trajectory::GetLength(int ifirst, Line 904  float Trajectory::GetLength(int ifirst,
904      return l;      return l;
905    
906  }  }
907    
908    
909  ClassImp(TrkLevel2);  ClassImp(TrkLevel2);
910  ClassImp(TrkSinglet);  ClassImp(TrkSinglet);
911  ClassImp(TrkTrack);  ClassImp(TrkTrack);

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.10

  ViewVC Help
Powered by ViewVC 1.1.23