/[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.16 by pam-fi, Fri Feb 16 14:56:01 2007 UTC revision 1.20 by pam-fi, Mon May 14 11:03:04 2007 UTC
# Line 124  struct cTrkLevel1 { Line 124  struct cTrkLevel1 {
124  struct cTrkLevel2 {  struct cTrkLevel2 {
125  //    int good2;  //    int good2;
126  //    int crc[12];  //    int crc[12];
127          int good[12];      int good[12];
128        int vkflag[24][12];
129  //  ----------------------------  //  ----------------------------
130      int nclsx;      int nclsx;
131      int planex[NSINGMAX];      int planex[NSINGMAX];
# Line 145  struct cTrkLevel2 { Line 146  struct cTrkLevel2 {
146      float zm_nt[NTRKMAX][6];      float zm_nt[NTRKMAX][6];
147      float resx_nt[NTRKMAX][6];      float resx_nt[NTRKMAX][6];
148      float resy_nt[NTRKMAX][6];      float resy_nt[NTRKMAX][6];
149        float tailx[NTRKMAX][6];
150        float taily[NTRKMAX][6];
151      float al_nt[NTRKMAX][5];      float al_nt[NTRKMAX][5];
152      float coval[NTRKMAX][5][5];      float coval[NTRKMAX][5][5];
153      float chi2_nt[NTRKMAX];      float chi2_nt[NTRKMAX];
154      int nstep_nt[NTRKMAX];      int nstep_nt[NTRKMAX];
155      int xgood_nt[NTRKMAX][6];      int xgood_nt[NTRKMAX][6];
156      int ygood_nt[NTRKMAX][6];      int ygood_nt[NTRKMAX][6];
157        int ls[NTRKMAX][6];
158        int xbad[NTRKMAX][6];
159        int ybad[NTRKMAX][6];
160      float xv_nt[NTRKMAX][6];      float xv_nt[NTRKMAX][6];
161      float yv_nt[NTRKMAX][6];      float yv_nt[NTRKMAX][6];
162      float zv_nt[NTRKMAX][6];      float zv_nt[NTRKMAX][6];
# Line 162  struct cTrkLevel2 { Line 168  struct cTrkLevel2 {
168      int cltry[NTRKMAX][6];      int cltry[NTRKMAX][6];
169  //      float bdl[NTRKMAX];  //      float bdl[NTRKMAX];
170    
171    void InitcTrkLevel2(){      void InitcTrkLevel2(){
172                
173  //    good2 = 0;  //    good2 = 0;
174      for(Int_t i=0; i<12 ; i++)          for(Int_t i=0; i<12 ; i++){
175  //    crc[i] = 0;                    good[i] = 0;
176          good[i] = 0;              for(Int_t ii=0; ii<24 ; ii++)vkflag[ii][i]=0;
177      //  ----------------------------          }
178      nclsx = 0;          //  ----------------------------
179      nclsy = 0;          nclsx = 0;
180      for(Int_t i=0; i<NSINGMAX ; i++){          nclsy = 0;
181        planex[i]  = 0;          for(Int_t i=0; i<NSINGMAX ; i++){
182        xs[i][0]   = 0;              planex[i]  = 0;
183        xs[i][1]   = 0;              xs[i][0]   = 0;
184        signlxs[i] = 0;              xs[i][1]   = 0;
185        planey[i]  = 0;              signlxs[i] = 0;
186        ys[i][0]   = 0;              planey[i]  = 0;
187        ys[i][1]   = 0;              ys[i][0]   = 0;
188        signlys[i] = 0;              ys[i][1]   = 0;
189      }              signlys[i] = 0;
190      //  ----------------------------          }
191      ntrk =0 ;          //  ----------------------------
192                ntrk =0 ;
193      for(Int_t i=0; i<NTRKMAX ; i++){          
194        image[i]   = 0;          for(Int_t i=0; i<NTRKMAX ; i++){
195        chi2_nt[i] = 0;              image[i]   = 0;
196                chi2_nt[i] = 0;
197  //      bdl[i]     = 0;  //      bdl[i]     = 0;
198                      
199        for(Int_t ii=0; ii<5 ; ii++){              for(Int_t ii=0; ii<5 ; ii++){
200          al_nt[i][ii] = 0;                  al_nt[i][ii] = 0;
201          for(Int_t iii=0; iii<5 ; iii++)                  for(Int_t iii=0; iii<5 ; iii++)
202            coval[i][ii][iii] = 0;                      coval[i][ii][iii] = 0;
203        }              }
204                      
205        for(Int_t ii=0; ii<6 ; ii++){              for(Int_t ii=0; ii<6 ; ii++){
206          xm_nt[i][ii]    = 0;                  xm_nt[i][ii]    = 0;
207          ym_nt[i][ii]    = 0;                  ym_nt[i][ii]    = 0;
208          zm_nt[i][ii]    = 0;                  zm_nt[i][ii]    = 0;
209          resx_nt[i][ii]  = 0;                  resx_nt[i][ii]  = 0;
210          resy_nt[i][ii]  = 0;                  resy_nt[i][ii]  = 0;
211          xgood_nt[i][ii] = 0;                  xgood_nt[i][ii] = 0;
212          ygood_nt[i][ii] = 0;                  ygood_nt[i][ii] = 0;
213          xv_nt[i][ii]    = 0;                  xv_nt[i][ii]    = 0;
214          yv_nt[i][ii]    = 0;                  yv_nt[i][ii]    = 0;
215          zv_nt[i][ii]    = 0;                  zv_nt[i][ii]    = 0;
216          axv_nt[i][ii]   = 0;                  axv_nt[i][ii]   = 0;
217          ayv_nt[i][ii]   = 0;                  ayv_nt[i][ii]   = 0;
218          dedx_x[i][ii]   = 0;                  dedx_x[i][ii]   = 0;
219          dedx_y[i][ii]   = 0;                  dedx_y[i][ii]   = 0;
220        }              }
221            }
222      }      }
223    }      
     
224  };  };
225  // ==================================================================  // ==================================================================
226  /**  /**
# Line 296  struct cMini2track { Line 303  struct cMini2track {
303      double xv[NPLANE],yv[NPLANE],zv[NPLANE];      double xv[NPLANE],yv[NPLANE],zv[NPLANE];
304      double axv[NPLANE],ayv[NPLANE];      double axv[NPLANE],ayv[NPLANE];
305      double cov[5][5];      double cov[5][5];
306        double fact;
307      int nstep;      int nstep;
308      int idcand;      int idcand;
309        int trackmode;
310        int istepmin;
311    
312    /*     cMini2track(){ */
313    /* //  -------------------------- */
314    /* //  fitting routine parameters */
315    /* //  -------------------------- */
316    /*      zini = 23.5; */
317    /*      trackmode = 0; */
318    /*      istepmin = 3; */
319    /* //  -------------------------- */
320    /*      pfixed = 0.; */
321    /*      chi2  = 0; */
322    /*      nstep = 0; */
323    /*      for(int it1=0;it1<5;it1++){ */
324    /*          al[it1] = 0; */
325    /*          for(int it2=0;it2<5;it2++)cov[it1][it2] = 0; */
326    /*      }; */
327    /*      for(int ip=0;ip<6;ip++){ */
328    /*          xgood[ip]  = 0; */
329    /*          ygood[ip]  = 0; */
330    /*          xm[ip]     = 0; */
331    /*          ym[ip]     = 0; */
332    /*          xm_a[ip]     = 0; */
333    /*          ym_a[ip]     = 0; */
334    /*          xm_b[ip]     = 0; */
335    /*          ym_b[ip]     = 0; */
336    /*          zm[ip]     = 0; */
337    /*          resx[ip]   = 0; */
338    /*          resy[ip]   = 0; */
339    /*          xv[ip]     = 0; */
340    /*          yv[ip]     = 0; */
341    /*          zv[ip]     = 0; */
342    /*          axv[ip]    = 0; */
343    /*          ayv[ip]    = 0; */
344    /*          dedxtrk_x[ip] = 0; */
345    /*          dedxtrk_y[ip] = 0; */
346    /*      }; */
347            
348    /*     } */
349    
350    
351  };  };
352  //  //
# Line 395  struct cTrkETA { Line 444  struct cTrkETA {
444      float feta4[NANGMAX][NLADDER][NVIEW][NETAVALMAX];      float feta4[NANGMAX][NLADDER][NVIEW][NETAVALMAX];
445    
446  };  };
447    /**
448     * \brief Struct to configure data reduction
449     */
450    struct cTrkSW{
451        int pfaid;
452    };
453    
454  extern "C" {  extern "C" {
455    
# Line 408  extern "C" { Line 463  extern "C" {
463      extern struct cTrkHough   houghevent_;      extern struct cTrkHough   houghevent_;
464      extern struct cMini2track track_;      extern struct cMini2track track_;
465      extern struct cTrkETA     pfa_;      extern struct cTrkETA     pfa_;
466        extern struct cTrkSW      sw_;
467    
468      void fillpedsigfromdefault_();      void fillpedsigfromdefault_();
469      int readmipparam_();      int readmipparam_();
# Line 416  extern "C" { Line 472  extern "C" {
472      int readalignparam_();      int readalignparam_();
473      int readetaparam_();      int readetaparam_();
474      void reductionflight_(int*);      void reductionflight_(int*);
475      int analysisflight_(int*);      int analysisflight_();
476      int  readb_();      int  readb_();
477        void gufld_(float*, float*);
478        void xyzpam_(int*,int*,int*,int*,int*,float*,float*,float*,float*);
479    
480  }  }
481    

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

  ViewVC Help
Powered by ViewVC 1.1.23