/[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.12 by pam-fi, Fri Nov 10 11:38:43 2006 UTC revision 1.23 by pam-fi, Thu May 24 16:45:47 2007 UTC
# Line 7  Line 7 
7  #define trkstruct_h  #define trkstruct_h
8    
9  #define NPLANE 6  #define NPLANE 6
10    #define NVIEW 12
11    #define NVK 24
12    #define NLADDER 3
13    
14  #define NCLMAX_VIEW 200         //max n.clusters per view  #define NCLMAX_VIEW 200         //max n.clusters per view
15  #define NCLSTR 20               //max n.strip per cluster  #define NCLSTR 20               //max n.strip per cluster
# Line 21  Line 24 
24  #define NTRKMAX 10  #define NTRKMAX 10
25  #define NSINGMAX NCLMAX //100  #define NSINGMAX NCLMAX //100
26    
27    #define NANGMAX 21
28    #define NETAVALMAX 500
29    
30    
31  #include <CalibTrk1Event.h>  #include <CalibTrk1Event.h>
32  #include <CalibTrk2Event.h>  #include <CalibTrk2Event.h>
33    using namespace pamela;
34    //#include <TrkCalib.h>
35    
36  #include <TString.h>  #include <TString.h>
37  #include <TFile.h>  #include <TFile.h>
38  #include <TTree.h>  #include <TTree.h>
39    
40    
41  #include <fstream>  #include <fstream>
42  #include <iostream>  #include <iostream>
43  /**  /**
# Line 43  struct cTrkCalib { Line 51  struct cTrkCalib {
51      float sigma_t[128][24][12];      float sigma_t[128][24][12];
52      int bad[128][24][12];      int bad[128][24][12];
53    
54      void FillACalibFrom(TFile* , Int_t , Int_t );      void Reset(){
55      void FillFCalibFrom(TFile* , Int_t , Int_t );          for(int is=0; is<128; is++){
56      void FillTCalibFrom(TFile* , Int_t , Int_t );              for(int ivk=0; ivk<24; ivk++){
57      void FillTCalibFrom(TString);                  for(int iv=0; iv<12; iv++){
58                        pedestal[is][ivk][iv]=0.;
59                        pedestal_t[is][ivk][iv]=0.;
60                        sigma[is][ivk][iv]=0.;
61                        sigma_t[is][ivk][iv]=0.;
62                        bad[is][ivk][iv]=1;
63                    }
64                }
65            }              
66        }
67    
68    /*     void FillACalibFrom(TFile* , Int_t , Int_t ); */
69    /*     void FillFCalibFrom(TFile* , Int_t , Int_t ); */
70    /*     void FillTCalibFrom(TFile* , Int_t , Int_t ); */
71    /*     void FillTCalibFrom(TString); */
72    
73  };  };
74  // ==================================================================  // ==================================================================
# Line 107  struct cTrkLevel1 { Line 129  struct cTrkLevel1 {
129      float cnrmsev[24][12];      float cnrmsev[24][12];
130      int fshower[12];      int fshower[12];
131      int whichtrack[NCLMAX];      int whichtrack[NCLMAX];
132    
133  };  };
134  // ==================================================================  // ==================================================================
135  /**  /**
# Line 115  struct cTrkLevel1 { Line 138  struct cTrkLevel1 {
138  struct cTrkLevel2 {  struct cTrkLevel2 {
139  //    int good2;  //    int good2;
140  //    int crc[12];  //    int crc[12];
141          int good[12];      int good[12];
142        int vkflag[24][12];
143  //  ----------------------------  //  ----------------------------
144      int nclsx;      int nclsx;
145      int planex[NSINGMAX];      int planex[NSINGMAX];
# Line 136  struct cTrkLevel2 { Line 160  struct cTrkLevel2 {
160      float zm_nt[NTRKMAX][6];      float zm_nt[NTRKMAX][6];
161      float resx_nt[NTRKMAX][6];      float resx_nt[NTRKMAX][6];
162      float resy_nt[NTRKMAX][6];      float resy_nt[NTRKMAX][6];
163        float tailx[NTRKMAX][6];
164        float taily[NTRKMAX][6];
165      float al_nt[NTRKMAX][5];      float al_nt[NTRKMAX][5];
166      float coval[NTRKMAX][5][5];      float coval[NTRKMAX][5][5];
167      float chi2_nt[NTRKMAX];      float chi2_nt[NTRKMAX];
168      int nstep_nt[NTRKMAX];      int nstep_nt[NTRKMAX];
169      int xgood_nt[NTRKMAX][6];      int xgood_nt[NTRKMAX][6];
170      int ygood_nt[NTRKMAX][6];      int ygood_nt[NTRKMAX][6];
171        int ls[NTRKMAX][6];
172        int xbad[NTRKMAX][6];
173        int ybad[NTRKMAX][6];
174      float xv_nt[NTRKMAX][6];      float xv_nt[NTRKMAX][6];
175      float yv_nt[NTRKMAX][6];      float yv_nt[NTRKMAX][6];
176      float zv_nt[NTRKMAX][6];      float zv_nt[NTRKMAX][6];
# Line 153  struct cTrkLevel2 { Line 182  struct cTrkLevel2 {
182      int cltry[NTRKMAX][6];      int cltry[NTRKMAX][6];
183  //      float bdl[NTRKMAX];  //      float bdl[NTRKMAX];
184    
185    void InitcTrkLevel2(){      void InitcTrkLevel2(){
186                
187  //    good2 = 0;  //    good2 = 0;
188      for(Int_t i=0; i<12 ; i++)          for(Int_t i=0; i<12 ; i++){
189  //    crc[i] = 0;                    good[i] = 0;
190          good[i] = 0;              for(Int_t ii=0; ii<24 ; ii++)vkflag[ii][i]=0;
191      //  ----------------------------          }
192      nclsx = 0;          //  ----------------------------
193      nclsy = 0;          nclsx = 0;
194      for(Int_t i=0; i<NSINGMAX ; i++){          nclsy = 0;
195        planex[i]  = 0;          for(Int_t i=0; i<NSINGMAX ; i++){
196        xs[i][0]   = 0;              planex[i]  = 0;
197        xs[i][1]   = 0;              xs[i][0]   = 0;
198        signlxs[i] = 0;              xs[i][1]   = 0;
199        planey[i]  = 0;              signlxs[i] = 0;
200        ys[i][0]   = 0;              planey[i]  = 0;
201        ys[i][1]   = 0;              ys[i][0]   = 0;
202        signlys[i] = 0;              ys[i][1]   = 0;
203      }              signlys[i] = 0;
204      //  ----------------------------          }
205      ntrk =0 ;          //  ----------------------------
206                ntrk =0 ;
207      for(Int_t i=0; i<NTRKMAX ; i++){          
208        image[i]   = 0;          for(Int_t i=0; i<NTRKMAX ; i++){
209        chi2_nt[i] = 0;              image[i]   = 0;
210                chi2_nt[i] = 0;
211  //      bdl[i]     = 0;  //      bdl[i]     = 0;
212                      
213        for(Int_t ii=0; ii<5 ; ii++){              for(Int_t ii=0; ii<5 ; ii++){
214          al_nt[i][ii] = 0;                  al_nt[i][ii] = 0;
215          for(Int_t iii=0; iii<5 ; iii++)                  for(Int_t iii=0; iii<5 ; iii++)
216            coval[i][ii][iii] = 0;                      coval[i][ii][iii] = 0;
217        }              }
218                      
219        for(Int_t ii=0; ii<6 ; ii++){              for(Int_t ii=0; ii<6 ; ii++){
220          xm_nt[i][ii]    = 0;                  xm_nt[i][ii]    = 0;
221          ym_nt[i][ii]    = 0;                  ym_nt[i][ii]    = 0;
222          zm_nt[i][ii]    = 0;                  zm_nt[i][ii]    = 0;
223          resx_nt[i][ii]  = 0;                  resx_nt[i][ii]  = 0;
224          resy_nt[i][ii]  = 0;                  resy_nt[i][ii]  = 0;
225          xgood_nt[i][ii] = 0;                  xgood_nt[i][ii] = 0;
226          ygood_nt[i][ii] = 0;                  ygood_nt[i][ii] = 0;
227          xv_nt[i][ii]    = 0;                  xv_nt[i][ii]    = 0;
228          yv_nt[i][ii]    = 0;                  yv_nt[i][ii]    = 0;
229          zv_nt[i][ii]    = 0;                  zv_nt[i][ii]    = 0;
230          axv_nt[i][ii]   = 0;                  axv_nt[i][ii]   = 0;
231          ayv_nt[i][ii]   = 0;                  ayv_nt[i][ii]   = 0;
232          dedx_x[i][ii]   = 0;                  dedx_x[i][ii]   = 0;
233          dedx_y[i][ii]   = 0;                  dedx_y[i][ii]   = 0;
234        }              }
235            }
236      }      }
237    }      
     
238  };  };
239  // ==================================================================  // ==================================================================
240  /**  /**
# Line 278  struct cMini2track { Line 308  struct cMini2track {
308      double xm_a[NPLANE],ym_a[NPLANE];      double xm_a[NPLANE],ym_a[NPLANE];
309      double xm_b[NPLANE],ym_b[NPLANE];      double xm_b[NPLANE],ym_b[NPLANE];
310      double resx[NPLANE],resy[NPLANE];      double resx[NPLANE],resy[NPLANE];
311        double tailx[NPLANE],taily[NPLANE];
312      double xgood[NPLANE],ygood[NPLANE];      double xgood[NPLANE],ygood[NPLANE];
313      double dedxtrk_x[NPLANE];      double dedxtrk_x[NPLANE];
314      double dedxtrk_y[NPLANE];      double dedxtrk_y[NPLANE];
# Line 287  struct cMini2track { Line 318  struct cMini2track {
318      double xv[NPLANE],yv[NPLANE],zv[NPLANE];      double xv[NPLANE],yv[NPLANE],zv[NPLANE];
319      double axv[NPLANE],ayv[NPLANE];      double axv[NPLANE],ayv[NPLANE];
320      double cov[5][5];      double cov[5][5];
321        double fact;
322      int nstep;      int nstep;
323      int idcand;      int idcand;
324        int trackmode;
325        int istepmin;
326    
327    /*     cMini2track(){ */
328    /* //  -------------------------- */
329    /* //  fitting routine parameters */
330    /* //  -------------------------- */
331    /*      zini = 23.5; */
332    /*      trackmode = 0; */
333    /*      istepmin = 3; */
334    /* //  -------------------------- */
335    /*      pfixed = 0.; */
336    /*      chi2  = 0; */
337    /*      nstep = 0; */
338    /*      for(int it1=0;it1<5;it1++){ */
339    /*          al[it1] = 0; */
340    /*          for(int it2=0;it2<5;it2++)cov[it1][it2] = 0; */
341    /*      }; */
342    /*      for(int ip=0;ip<6;ip++){ */
343    /*          xgood[ip]  = 0; */
344    /*          ygood[ip]  = 0; */
345    /*          xm[ip]     = 0; */
346    /*          ym[ip]     = 0; */
347    /*          xm_a[ip]     = 0; */
348    /*          ym_a[ip]     = 0; */
349    /*          xm_b[ip]     = 0; */
350    /*          ym_b[ip]     = 0; */
351    /*          zm[ip]     = 0; */
352    /*          resx[ip]   = 0; */
353    /*          resy[ip]   = 0; */
354    /*          xv[ip]     = 0; */
355    /*          yv[ip]     = 0; */
356    /*          zv[ip]     = 0; */
357    /*          axv[ip]    = 0; */
358    /*          ayv[ip]    = 0; */
359    /*          dedxtrk_x[ip] = 0; */
360    /*          dedxtrk_y[ip] = 0; */
361    /*      }; */
362            
363    /*     } */
364    
365    
366  };  };
367  //  //
368  /**  /**
# Line 357  struct cTrkHough { Line 431  struct cTrkHough {
431        
432  };  };
433    
434    /**
435     * \brief Struct to pass VA1-mask to F77 routines
436     */
437    struct cTrkMask {
438    
439        int mask_vk[NVK][NVIEW];
440        int mask_vk_run[NVK][NVIEW];
441    
442    //    void Set(TFile* , Int_t , Int_t );
443    
444        void Reset(){
445            for(int ivk=0; ivk<NVK; ivk++){
446                for(int iv=0; iv<NVIEW; iv++){
447    //              mask_vk[ivk][iv]=0;
448                    mask_vk_run[ivk][iv]=0;
449                }
450            }
451        }
452    
453    };
454    
455    /**
456     * \brief Struct for pfa parameters
457     */
458    struct cTrkETA {
459    
460        int nangbin;
461        float angL[NANGMAX],angR[NANGMAX];
462        int netaval;
463        float eta2[NANGMAX][NETAVALMAX];
464        float feta2[NANGMAX][NLADDER][NVIEW][NETAVALMAX];
465        float eta3[NANGMAX][NETAVALMAX];
466        float feta3[NANGMAX][NLADDER][NVIEW][NETAVALMAX];
467        float eta4[NANGMAX][NETAVALMAX];
468        float feta4[NANGMAX][NLADDER][NVIEW][NETAVALMAX];
469    
470    };
471    /**
472     * \brief Struct to configure data reduction
473     */
474    struct cTrkSW{
475        int pfaid;
476    };
477    
478  extern "C" {  extern "C" {
479    
480      extern struct cTrkCalib   pedsigbad_;      extern struct cTrkCalib   pedsigbad_;
481        extern struct cTrkMask    mask_;
482      extern struct cTrkLevel0  level0event_;      extern struct cTrkLevel0  level0event_;
483      extern struct cTrkLevel1  level1event_;      extern struct cTrkLevel1  level1event_;
484      extern struct cTrkLevel2  level2event_;      extern struct cTrkLevel2  level2event_;
485      extern struct cPath       path_;      extern struct cPath       path_;
 /*     extern struct cBPath      bpath_; */  
486      extern struct cDbg        dbg_;      extern struct cDbg        dbg_;
487      extern struct cTrkHough   houghevent_;      extern struct cTrkHough   houghevent_;
488      extern struct cMini2track track_;      extern struct cMini2track track_;
489        extern struct cTrkETA     pfa_;
490        extern struct cTrkSW      sw_;
491    
492      void fillpedsigfromdefault_();      void fillpedsigfromdefault_();
493      int readmipparam_();      int readmipparam_();
# Line 378  extern "C" { Line 497  extern "C" {
497      int readetaparam_();      int readetaparam_();
498      void reductionflight_(int*);      void reductionflight_(int*);
499      int analysisflight_();      int analysisflight_();
500  }      int  readb_();
501        void gufld_(float*, float*);
502        void xyzpam_(int*,int*,int*,int*,int*,float*,float*,float*,float*);
503        float riseta_(int*,float*);
504    
505    }
506    
507  #endif  #endif
   

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.23

  ViewVC Help
Powered by ViewVC 1.1.23