/[PAMELA software]/DarthVader/TrackerLevel2/inc/TrkStruct.h
ViewVC logotype

Diff of /DarthVader/TrackerLevel2/inc/TrkStruct.h

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

revision 1.20 by pam-fi, Mon May 14 11:03:04 2007 UTC revision 1.30 by pam-fi, Tue Jan 15 14:28:45 2008 UTC
# Line 27  Line 27 
27  #define NANGMAX 21  #define NANGMAX 21
28  #define NETAVALMAX 500  #define NETAVALMAX 500
29    
30    #define NTRACKSMAX (NCLOYZ_MAX*NCLOXZ_MAX)
31    
32  #include <CalibTrk1Event.h>  #include <CalibTrk1Event.h>
33  #include <CalibTrk2Event.h>  #include <CalibTrk2Event.h>
# Line 38  using namespace pamela; Line 39  using namespace pamela;
39  #include <TTree.h>  #include <TTree.h>
40    
41    
42    
43  #include <fstream>  #include <fstream>
44  #include <iostream>  #include <iostream>
45  /**  /**
# Line 51  struct cTrkCalib { Line 53  struct cTrkCalib {
53      float sigma_t[128][24][12];      float sigma_t[128][24][12];
54      int bad[128][24][12];      int bad[128][24][12];
55    
56        void Reset(){
57            for(int is=0; is<128; is++){
58                for(int ivk=0; ivk<24; ivk++){
59                    for(int iv=0; iv<12; iv++){
60                        pedestal[is][ivk][iv]=0.;
61                        pedestal_t[is][ivk][iv]=0.;
62                        sigma[is][ivk][iv]=0.;
63                        sigma_t[is][ivk][iv]=0.;
64                        bad[is][ivk][iv]=1;
65                    }
66                }
67            }              
68        }
69    
70  /*     void FillACalibFrom(TFile* , Int_t , Int_t ); */  /*     void FillACalibFrom(TFile* , Int_t , Int_t ); */
71  /*     void FillFCalibFrom(TFile* , Int_t , Int_t ); */  /*     void FillFCalibFrom(TFile* , Int_t , Int_t ); */
72  /*     void FillTCalibFrom(TFile* , Int_t , Int_t ); */  /*     void FillTCalibFrom(TFile* , Int_t , Int_t ); */
# Line 166  struct cTrkLevel2 { Line 182  struct cTrkLevel2 {
182      float dedx_y[NTRKMAX][6];      float dedx_y[NTRKMAX][6];
183      int cltrx[NTRKMAX][6];      int cltrx[NTRKMAX][6];
184      int cltry[NTRKMAX][6];      int cltry[NTRKMAX][6];
185        int   multmaxx[NTRKMAX][6];    
186        int   multmaxy[NTRKMAX][6];    
187        float seedx[NTRKMAX][6];      
188        float seedy[NTRKMAX][6];    
189        float xpu[NTRKMAX][6];      
190        float ypu[NTRKMAX][6];      
191  //      float bdl[NTRKMAX];  //      float bdl[NTRKMAX];
192    
193      void InitcTrkLevel2(){      void InitcTrkLevel2(){
# Line 217  struct cTrkLevel2 { Line 239  struct cTrkLevel2 {
239                  ayv_nt[i][ii]   = 0;                  ayv_nt[i][ii]   = 0;
240                  dedx_x[i][ii]   = 0;                  dedx_x[i][ii]   = 0;
241                  dedx_y[i][ii]   = 0;                  dedx_y[i][ii]   = 0;
242                    multmaxx[i][ii] = 0;
243                    multmaxy[i][ii] = 0;
244                    seedx[i][ii]  = 0;  
245                    seedy[i][ii]  = 0;
246                    xpu[i][ii]    = 0;  
247                    ypu[i][ii]    = 0;  
248              }              }
249          }          }
250      }      }
# Line 294  struct cMini2track { Line 322  struct cMini2track {
322      double xm_a[NPLANE],ym_a[NPLANE];      double xm_a[NPLANE],ym_a[NPLANE];
323      double xm_b[NPLANE],ym_b[NPLANE];      double xm_b[NPLANE],ym_b[NPLANE];
324      double resx[NPLANE],resy[NPLANE];      double resx[NPLANE],resy[NPLANE];
325        double tailx[NPLANE],taily[NPLANE];
326      double xgood[NPLANE],ygood[NPLANE];      double xgood[NPLANE],ygood[NPLANE];
327      double dedxtrk_x[NPLANE];      double dedxtrk_x[NPLANE];
328      double dedxtrk_y[NPLANE];      double dedxtrk_y[NPLANE];
# Line 349  struct cMini2track { Line 378  struct cMini2track {
378    
379    
380  };  };
381    
382    // ==================================================================
383    /**
384     * \brief Struct to pass DELTAB parameters to F77 routines
385     */
386    struct cDeltaB {
387        double delta0;
388        double delta1;
389        double dlt;
390    };
391    
392  //  //
393  /**  /**
394   * \Struct for the hough transform variables   * \Struct for the hough transform variables
# Line 417  struct cTrkHough { Line 457  struct cTrkHough {
457  };  };
458    
459  /**  /**
460     * \Struct for track candidates after hough transform
461     */
462    struct cTrkCandidates {
463        int ntracks;
464        float al[NTRACKSMAX][5];
465        float xm[NTRACKSMAX][NPLANE];
466        float ym[NTRACKSMAX][NPLANE];
467        float zm[NTRACKSMAX][NPLANE];
468        float resx[NTRACKSMAX][NPLANE];
469        float resy[NTRACKSMAX][NPLANE];
470        float xv[NTRACKSMAX][NPLANE];
471        float yv[NTRACKSMAX][NPLANE];
472        float zv[NTRACKSMAX][NPLANE];
473        float axv[NTRACKSMAX][NPLANE];
474        float ayv[NTRACKSMAX][NPLANE];
475        float xgood[NTRACKSMAX][NPLANE];
476        float ygood[NTRACKSMAX][NPLANE];
477        int cp[NTRACKSMAX][NPLANE];
478        int cls[NTRACKSMAX][NPLANE];
479        int sensor[NTRACKSMAX][NPLANE];
480        int ladder[NTRACKSMAX][NPLANE];
481        float bx[NTRACKSMAX][NPLANE];
482        float by[NTRACKSMAX][NPLANE];
483        float chi2[NTRACKSMAX];
484        
485        void Init(){
486            ntracks=0;
487            for(int i=0; i<NTRACKSMAX; i++){
488                for(int ii=0; ii<5; ii++)al[i][ii]=0;
489                chi2[i]=0;
490                for(int ip=0; ip<NPLANE; ip++){
491                    xm[i][ip]=0;
492                    ym[i][ip]=0;
493                    zm[i][ip]=0;
494                    resx[i][ip]=0;
495                    resy[i][ip]=0;
496                    xv[i][ip]=0;
497                    yv[i][ip]=0;
498                    zv[i][ip]=0;
499                    axv[i][ip]=0;
500                    ayv[i][ip]=0;
501                    xgood[i][ip]=0;
502                    ygood[i][ip]=0;
503                    cp[i][ip]=0;
504                    cls[i][ip]=0;
505                    sensor[i][ip]=0;
506                    ladder[i][ip]=0;
507                    bx[i][ip]=0;
508                    by[i][ip]=0;
509                }
510            }
511    
512        };
513    
514    
515    };
516    
517    /**
518   * \brief Struct to pass VA1-mask to F77 routines   * \brief Struct to pass VA1-mask to F77 routines
519   */   */
520  struct cTrkMask {  struct cTrkMask {
# Line 426  struct cTrkMask { Line 524  struct cTrkMask {
524    
525  //    void Set(TFile* , Int_t , Int_t );  //    void Set(TFile* , Int_t , Int_t );
526    
527        void Reset(){
528            for(int ivk=0; ivk<NVK; ivk++){
529                for(int iv=0; iv<NVIEW; iv++){
530    //              mask_vk[ivk][iv]=0;
531                    mask_vk_run[ivk][iv]=0;
532                }
533            }
534        }
535    
536        void Dump(){
537        }
538    
539  };  };
540    
541  /**  /**
# Line 442  struct cTrkETA { Line 552  struct cTrkETA {
552      float feta3[NANGMAX][NLADDER][NVIEW][NETAVALMAX];      float feta3[NANGMAX][NLADDER][NVIEW][NETAVALMAX];
553      float eta4[NANGMAX][NETAVALMAX];      float eta4[NANGMAX][NETAVALMAX];
554      float feta4[NANGMAX][NLADDER][NVIEW][NETAVALMAX];      float feta4[NANGMAX][NLADDER][NVIEW][NETAVALMAX];
555        float fcorr[NANGMAX][NLADDER][NVIEW];
556        float e234ax[6];//F77: e2fax,e2tax,e3fax,e3tax,e4fax,e4tax
557        float e234ay[6];//F77: e2fay,e2tay,e3fay,e3tay,e4fay,e4tay
558    
559  };  };
560  /**  /**
# Line 461  extern "C" { Line 574  extern "C" {
574      extern struct cPath       path_;      extern struct cPath       path_;
575      extern struct cDbg        dbg_;      extern struct cDbg        dbg_;
576      extern struct cTrkHough   houghevent_;      extern struct cTrkHough   houghevent_;
577        extern struct cTrkCandidates trackcandidates_;
578      extern struct cMini2track track_;      extern struct cMini2track track_;
579      extern struct cTrkETA     pfa_;      extern struct cTrkETA     pfa_;
580      extern struct cTrkSW      sw_;      extern struct cTrkSW      sw_;
581        extern struct cDeltaB     deltab_;
582    
583      void fillpedsigfromdefault_();      void fillpedsigfromdefault_();
584      int readmipparam_();      int readmipparam_();
# Line 476  extern "C" { Line 591  extern "C" {
591      int  readb_();      int  readb_();
592      void gufld_(float*, float*);      void gufld_(float*, float*);
593      void xyzpam_(int*,int*,int*,int*,int*,float*,float*,float*,float*);      void xyzpam_(int*,int*,int*,int*,int*,float*,float*,float*,float*);
594        float riseta_(int*,float*);
595        void chisq_(int*, int*);
596    
597  }  }
598    

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.30

  ViewVC Help
Powered by ViewVC 1.1.23