/[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.3 by pam-fi, Fri Jul 21 11:03:14 2006 UTC revision 1.17 by pam-fi, Mon Feb 19 16:28:39 2007 UTC
# Line 6  Line 6 
6  #ifndef trkstruct_h  #ifndef trkstruct_h
7  #define trkstruct_h  #define trkstruct_h
8    
9    #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
15    #define NCLSTR 20               //max n.strip per cluster
16    #define NCLMAX (NCLMAX_VIEW*12) //max n.clusters total
17    #define NCLBUFF (NCLMAX*NCLSTR)
18    
19    #define NDBLT_MAX_NT 1000   // 0.2*ndblt_max
20    #define NTRPT_MAX_NT 10000   // 0.2*ntrpt_max
21    #define NCLOYZ_MAX 200
22    #define NCLOXZ_MAX 200    
23    
24  #define NTRKMAX 10  #define NTRKMAX 10
25  #define NSINGMAX 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 29  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 FillACalibFrom(TFile* , Int_t , Int_t ); */
55      void FillFCalibFrom(TFile* , Int_t , Int_t );  /*     void FillFCalibFrom(TFile* , Int_t , Int_t ); */
56      void FillTCalibFrom(TFile* , Int_t , Int_t );  /*     void FillTCalibFrom(TFile* , Int_t , Int_t ); */
57      void FillTCalibFrom(TString);  /*     void FillTCalibFrom(TString); */
58    
59  };  };
60  // ==================================================================  // ==================================================================
# Line 73  struct cTrkLevel0 { Line 95  struct cTrkLevel0 {
95   * \brief Struct to pass tracker LEVEL1 data to F77 routines   * \brief Struct to pass tracker LEVEL1 data to F77 routines
96   */   */
97  struct cTrkLevel1 {  struct cTrkLevel1 {
98      int good1;  //    int good1;
99        int good[12];
100      int nclstr1;      int nclstr1;
101      int view[500];      int view[NCLMAX];
102      int ladder[500];      int ladder[NCLMAX];
103      int maxs[500];      int maxs[NCLMAX];
104      int mult[500];      int mult[NCLMAX];
105      float dedx[500];      float dedx[NCLMAX];
106      int indstart[500];      int indstart[NCLMAX];
107      int indmax[500];      int indmax[NCLMAX];
108      int totCLlength;      int totCLlength;
109      float clsignal[8500];      float clsignal[NCLBUFF];
110      float cnev[24][12];        float clsigma[NCLBUFF];
111        int cladc[NCLBUFF];
112        int clbad[NCLBUFF];
113        float cnev[24][12];
114        int cnnev[24][12];
115        float cnrmsev[24][12];
116        int fshower[12];
117        int whichtrack[NCLMAX];
118    
119  };  };
120  // ==================================================================  // ==================================================================
121  /**  /**
122   * \brief Struct to pass tracker LEVEL2 data to F77 routines   * \brief Struct to pass tracker LEVEL2 data to F77 routines
123   */   */
124  struct cTrkLevel2 {  struct cTrkLevel2 {
125      int good2;  //    int good2;
126      int crc[12];  //    int crc[12];
127            int good[12];
128  //  ----------------------------  //  ----------------------------
129      int nclsx;      int nclsx;
130      int planex[NSINGMAX];      int planex[NSINGMAX];
131      float xs[NSINGMAX][2];      float xs[NSINGMAX][2];
132      float signlxs[NSINGMAX];      float signlxs[NSINGMAX];
133        int clsx[NSINGMAX];
134  //  ----------------------------  //  ----------------------------
135      int nclsy;      int nclsy;
136      int planey[NSINGMAX];      int planey[NSINGMAX];
137      float ys[NSINGMAX][2];      float ys[NSINGMAX][2];
138      float signlys[NSINGMAX];      float signlys[NSINGMAX];
139        int clsy[NSINGMAX];
140  //  ----------------------------  //  ----------------------------
141      int ntrk;      int ntrk;
142      int image[NTRKMAX];      int image[NTRKMAX];
# Line 114  struct cTrkLevel2 { Line 148  struct cTrkLevel2 {
148      float al_nt[NTRKMAX][5];      float al_nt[NTRKMAX][5];
149      float coval[NTRKMAX][5][5];      float coval[NTRKMAX][5][5];
150      float chi2_nt[NTRKMAX];      float chi2_nt[NTRKMAX];
151        int nstep_nt[NTRKMAX];
152      int xgood_nt[NTRKMAX][6];      int xgood_nt[NTRKMAX][6];
153      int ygood_nt[NTRKMAX][6];      int ygood_nt[NTRKMAX][6];
154      float xv_nt[NTRKMAX][6];      float xv_nt[NTRKMAX][6];
# Line 123  struct cTrkLevel2 { Line 158  struct cTrkLevel2 {
158      float ayv_nt[NTRKMAX][6];      float ayv_nt[NTRKMAX][6];
159      float dedx_x[NTRKMAX][6];      float dedx_x[NTRKMAX][6];
160      float dedx_y[NTRKMAX][6];      float dedx_y[NTRKMAX][6];
161      float bdl[NTRKMAX];      int cltrx[NTRKMAX][6];
162        int cltry[NTRKMAX][6];
163    //      float bdl[NTRKMAX];
164    
165    void InitcTrkLevel2(){    void InitcTrkLevel2(){
166            
167      good2 = 0;  //    good2 = 0;
168      for(Int_t i=0; i<12 ; i++)      for(Int_t i=0; i<12 ; i++)
169        crc[i] = 0;  //    crc[i] = 0;      
170            good[i] = 0;
171      //  ----------------------------      //  ----------------------------
172      nclsx = 0;      nclsx = 0;
173      nclsy = 0;      nclsy = 0;
# Line 149  struct cTrkLevel2 { Line 187  struct cTrkLevel2 {
187      for(Int_t i=0; i<NTRKMAX ; i++){      for(Int_t i=0; i<NTRKMAX ; i++){
188        image[i]   = 0;        image[i]   = 0;
189        chi2_nt[i] = 0;        chi2_nt[i] = 0;
190        bdl[i]     = 0;  //      bdl[i]     = 0;
191                
192        for(Int_t ii=0; ii<5 ; ii++){        for(Int_t ii=0; ii<5 ; ii++){
193          al_nt[i][ii] = 0;          al_nt[i][ii] = 0;
# Line 182  struct cTrkLevel2 { Line 220  struct cTrkLevel2 {
220   * \brief Struct to pass calibration/parameter file paths to F77 routines   * \brief Struct to pass calibration/parameter file paths to F77 routines
221   */   */
222  struct cPath {  struct cPath {
223      char path[80];      char path[256];
224      int  pathlen;      int  pathlen;
225      int  error;      int  error;
226  /**  /**
# Line 193  struct cPath { Line 231  struct cPath {
231          const char *pc = s.Data();          const char *pc = s.Data();
232          for(Int_t i=0; i<=pathlen; i++) path[i] = *pc++;          for(Int_t i=0; i<=pathlen; i++) path[i] = *pc++;
233      };      };
234            
   
235  };  };
236    
237  // ==================================================================  // ==================================================================
238  /**  /* /\** */
239   * \brief Struct to pass magnetic-field file paths to F77 routines  /*  * \brief Struct to pass magnetic-field file paths to F77 routines */
240   */  /*  *\/ */
241  struct cBPath {  /* struct cBPath { */
242      char b_path[80];  /*     char b_path[256]; */
243      int  b_pathlen;  /*     int  b_pathlen; */
244      int  b_error;  /*     int  b_error; */
245      int  b_loaded;  /*     int  b_loaded; */
246  /**  /* /\** */
247   * Fill the struct variables from a TString object and set  /*  * Fill the struct variables from a TString object and set  */
248   * the load flag to FALSE.  /*  * the load flag to FALSE. */
249   */  /*  *\/ */
250      void FillWith(TString s){  /*     void FillWith(TString s){ */
251          b_loaded  = 0;  /*      b_loaded  = 0; */
252          b_pathlen = s.Length();  /*      b_pathlen = s.Length(); */
253          const char *pc = s.Data();  /*      const char *pc = s.Data(); */
254          for(Int_t i=0; i<=b_pathlen; i++) b_path[i] = *pc++;  /*      for(Int_t i=0; i<=b_pathlen; i++) b_path[i] = *pc++; */
255      };  /*     }; */
256  /**  /* /\** */
257   * Fill the struct variables from a TString object  /*  * Fill the struct variables from a TString object */
258   */  /*  *\/ */
259      int BIsLoaded(){ return b_loaded; };  /*     int BIsLoaded(){ return b_loaded; }; */
260                    
261  };  /* }; */
262    
263  // ==================================================================  // ==================================================================
264  /**  /**
# Line 239  struct cDbg { Line 276  struct cDbg {
276      void SetDebug()  {debug=1; verbose=1; warning=1;};      void SetDebug()  {debug=1; verbose=1; warning=1;};
277  };  };
278    
279    
280    // ==================================================================
281    /**
282     * \brief Struct to pass mini2 track parameters to F77 routines
283     */
284    struct cMini2track {
285        double al[5];
286        double xm[NPLANE],ym[NPLANE],zm[NPLANE];
287        double xm_a[NPLANE],ym_a[NPLANE];
288        double xm_b[NPLANE],ym_b[NPLANE];
289        double resx[NPLANE],resy[NPLANE];
290        double xgood[NPLANE],ygood[NPLANE];
291        double dedxtrk_x[NPLANE];
292        double dedxtrk_y[NPLANE];
293        double zini;
294        double pfixed;
295        double chi2;
296        double xv[NPLANE],yv[NPLANE],zv[NPLANE];
297        double axv[NPLANE],ayv[NPLANE];
298        double cov[5][5];
299        int nstep;
300        int idcand;
301        int trackmode;
302    
303    };
304    //
305    /**
306     * \Struct for the hough transform variables
307     */
308    
309    struct cTrkHough {
310    
311      int ndblt_nt;
312      float alfayz1_nt[NDBLT_MAX_NT];
313      float alfayz2_nt[NDBLT_MAX_NT];
314      int db_cloud_nt[NDBLT_MAX_NT];
315      int ntrpt_nt;
316      float alfaxz1_nt[NTRPT_MAX_NT];
317      float alfaxz2_nt[NTRPT_MAX_NT];
318      float alfaxz3_nt[NTRPT_MAX_NT];
319      int tr_cloud_nt[NTRPT_MAX_NT];
320      int nclouds_yz_nt;
321      float alfayz1_av_nt[NCLOYZ_MAX];
322      float alfayz2_av_nt[NCLOYZ_MAX];
323      int ptcloud_yz_nt[NCLOYZ_MAX];
324      int nclouds_xz_nt;
325      float alfaxz1_av_nt[NCLOXZ_MAX];
326      float alfaxz2_av_nt[NCLOXZ_MAX];
327      float alfaxz3_av_nt[NCLOXZ_MAX];
328      int ptcloud_xz_nt[NCLOXZ_MAX];
329      int nclstr;
330      float totaltime;
331      float houghtime;
332      float fittime;
333    
334    
335      void InitcTrkHough(){
336    
337        ndblt_nt = 0;
338        ntrpt_nt = 0;
339        nclouds_yz_nt = 0;
340        nclouds_xz_nt = 0;
341        nclstr = 0;
342        totaltime = 0;
343        houghtime = 0;
344        fittime = 0;
345        for(int i=0;i<NDBLT_MAX_NT ;i++){
346          alfayz1_nt[i] = 0;
347          alfayz2_nt[i] = 0;
348          db_cloud_nt[i] = 0;
349        }
350        for(int i=0;i<NTRPT_MAX_NT ;i++){
351          alfaxz1_nt[i] = 0;
352          alfaxz2_nt[i] = 0;
353          alfaxz3_nt[i] = 0;
354          tr_cloud_nt[i] = 0;
355        }
356        for(int i=0;i<NCLOYZ_MAX ;i++){
357          alfayz1_av_nt[i] = 0;
358          alfayz2_av_nt[i] = 0;
359          ptcloud_yz_nt[i] = 0;
360        }
361        for(int i=0;i<NCLOXZ_MAX ;i++){
362          ptcloud_xz_nt[i] = 0;
363          alfaxz1_av_nt[i] = 0;
364          alfaxz2_av_nt[i] = 0;
365          alfaxz3_av_nt[i] = 0;
366        }
367      }
368      
369    };
370    
371    /**
372     * \brief Struct to pass VA1-mask to F77 routines
373     */
374    struct cTrkMask {
375    
376        int mask_vk[NVK][NVIEW];
377        int mask_vk_run[NVK][NVIEW];
378    
379    //    void Set(TFile* , Int_t , Int_t );
380    
381    };
382    
383    /**
384     * \brief Struct for pfa parameters
385     */
386    struct cTrkETA {
387    
388        int nangbin;
389        float angL[NANGMAX],angR[NANGMAX];
390        int netaval;
391        float eta2[NANGMAX][NETAVALMAX];
392        float feta2[NANGMAX][NLADDER][NVIEW][NETAVALMAX];
393        float eta3[NANGMAX][NETAVALMAX];
394        float feta3[NANGMAX][NLADDER][NVIEW][NETAVALMAX];
395        float eta4[NANGMAX][NETAVALMAX];
396        float feta4[NANGMAX][NLADDER][NVIEW][NETAVALMAX];
397    
398    };
399    
400  extern "C" {  extern "C" {
401      extern struct cTrkCalib  pedsigbad_;  
402      extern struct cTrkLevel0 level0event_;      extern struct cTrkCalib   pedsigbad_;
403      extern struct cTrkLevel1 level1event_;      extern struct cTrkMask    mask_;
404      extern struct cTrkLevel2 level2event_;      extern struct cTrkLevel0  level0event_;
405      extern struct cPath      path_;      extern struct cTrkLevel1  level1event_;
406      extern struct cBPath     bpath_;      extern struct cTrkLevel2  level2event_;
407      extern struct cDbg       dbg_;      extern struct cPath       path_;
408        extern struct cDbg        dbg_;
409        extern struct cTrkHough   houghevent_;
410        extern struct cMini2track track_;
411        extern struct cTrkETA     pfa_;
412    
413      void fillpedsigfromdefault_();      void fillpedsigfromdefault_();
414      int readmipparam_();      int readmipparam_();
415      int readchargeparam_();      int readchargeparam_();
# Line 254  extern "C" { Line 417  extern "C" {
417      int readalignparam_();      int readalignparam_();
418      int readetaparam_();      int readetaparam_();
419      void reductionflight_(int*);      void reductionflight_(int*);
420      int analysisflight_();      int analysisflight_(int*);
421  }      int  readb_();
422    
423    }
424    
425  #endif  #endif
   

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

  ViewVC Help
Powered by ViewVC 1.1.23