/[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.19 by pam-fi, Fri Apr 27 10:39:57 2007 UTC revision 1.25 by pam-fi, Fri Aug 17 14:36:05 2007 UTC
# Line 51  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 Reset(){
55            for(int is=0; is<128; is++){
56                for(int ivk=0; ivk<24; ivk++){
57                    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 ); */  /*     void FillACalibFrom(TFile* , Int_t , Int_t ); */
69  /*     void FillFCalibFrom(TFile* , Int_t , Int_t ); */  /*     void FillFCalibFrom(TFile* , Int_t , Int_t ); */
70  /*     void FillTCalibFrom(TFile* , Int_t , Int_t ); */  /*     void FillTCalibFrom(TFile* , Int_t , Int_t ); */
# Line 294  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 308  struct cMini2track { Line 323  struct cMini2track {
323      int idcand;      int idcand;
324      int trackmode;      int trackmode;
325      int istepmin;      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 386  struct cTrkMask { Line 441  struct cTrkMask {
441    
442  //    void Set(TFile* , Int_t , Int_t );  //    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        void Dump(){
454        }
455    
456  };  };
457    
458  /**  /**
# Line 402  struct cTrkETA { Line 469  struct cTrkETA {
469      float feta3[NANGMAX][NLADDER][NVIEW][NETAVALMAX];      float feta3[NANGMAX][NLADDER][NVIEW][NETAVALMAX];
470      float eta4[NANGMAX][NETAVALMAX];      float eta4[NANGMAX][NETAVALMAX];
471      float feta4[NANGMAX][NLADDER][NVIEW][NETAVALMAX];      float feta4[NANGMAX][NLADDER][NVIEW][NETAVALMAX];
472        float fcorr[NANGMAX][NLADDER][NVIEW];
473    
474  };  };
475    /**
476     * \brief Struct to configure data reduction
477     */
478    struct cTrkSW{
479        int pfaid;
480    };
481    
482  extern "C" {  extern "C" {
483    
# Line 417  extern "C" { Line 491  extern "C" {
491      extern struct cTrkHough   houghevent_;      extern struct cTrkHough   houghevent_;
492      extern struct cMini2track track_;      extern struct cMini2track track_;
493      extern struct cTrkETA     pfa_;      extern struct cTrkETA     pfa_;
494        extern struct cTrkSW      sw_;
495    
496      void fillpedsigfromdefault_();      void fillpedsigfromdefault_();
497      int readmipparam_();      int readmipparam_();
# Line 425  extern "C" { Line 500  extern "C" {
500      int readalignparam_();      int readalignparam_();
501      int readetaparam_();      int readetaparam_();
502      void reductionflight_(int*);      void reductionflight_(int*);
503      int analysisflight_(int*);      int analysisflight_();
504      int  readb_();      int  readb_();
505        void gufld_(float*, float*);
506        void xyzpam_(int*,int*,int*,int*,int*,float*,float*,float*,float*);
507        float riseta_(int*,float*);
508    
509  }  }
510    

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.25

  ViewVC Help
Powered by ViewVC 1.1.23