Parent Directory
|
Revision Log
Initial revision
| 1 | // |
| 2 | // Written by Emiliano Mocchiutti |
| 3 | // |
| 4 | |
| 5 | struct Tracklev1 { |
| 6 | Bool_t good1; |
| 7 | Int_t nev1; |
| 8 | Int_t pkt_type1; |
| 9 | Int_t pkt_num1; |
| 10 | Int_t obt1; |
| 11 | Int_t which_calib1; |
| 12 | Int_t nclstr1; |
| 13 | Int_t view[500]; |
| 14 | Int_t ladder[500]; |
| 15 | Int_t maxs[500]; |
| 16 | Int_t mult[500]; |
| 17 | Float_t dedx[500]; |
| 18 | Int_t indstart[500]; |
| 19 | Int_t indmax[500]; |
| 20 | Int_t totcllength; |
| 21 | Float_t clsignal[8500]; |
| 22 | Float_t cnev[24][12]; |
| 23 | }; |
| 24 | |
| 25 | struct CTracklev1 { |
| 26 | Bool_t good1; |
| 27 | Int_t nev1; |
| 28 | Int_t pkt_type1; |
| 29 | Int_t pkt_num1; |
| 30 | Int_t obt1; |
| 31 | Int_t which_calib1; |
| 32 | Int_t nclstr1; |
| 33 | Int_t view[500]; |
| 34 | Int_t ladder[500]; |
| 35 | Int_t maxs[500]; |
| 36 | Int_t mult[500]; |
| 37 | Float_t dedx[500]; |
| 38 | Int_t indstart[500]; |
| 39 | Int_t indmax[500]; |
| 40 | Int_t totcllength; |
| 41 | Float_t clsignal[8500]; |
| 42 | Float_t cnev[12][24]; |
| 43 | }; |
| 44 | |
| 45 | struct Tracklev2 { |
| 46 | Bool_t good2; |
| 47 | Int_t nev2; |
| 48 | Int_t pkt_type; |
| 49 | Int_t pkt_num; |
| 50 | Int_t obt; |
| 51 | Int_t which_calib; |
| 52 | Int_t ntrk; |
| 53 | Int_t image[50]; |
| 54 | Float_t xm[50][6]; |
| 55 | Float_t ym[50][6]; |
| 56 | Float_t zm[50][6]; |
| 57 | Float_t resx[50][6]; |
| 58 | Float_t resy[50][6]; |
| 59 | Float_t al[50][5]; |
| 60 | Float_t coval[50][5][5]; |
| 61 | Float_t chi2[50]; |
| 62 | Int_t xgood[50][6]; |
| 63 | Int_t ygood[50][6]; |
| 64 | Float_t xv[50][6]; |
| 65 | Float_t yv[50][6]; |
| 66 | Float_t zv[50][6]; |
| 67 | Float_t axv[50][6]; |
| 68 | Float_t ayv[50][6]; |
| 69 | Float_t dedxp[50][6]; |
| 70 | Int_t nclsx[6]; |
| 71 | Int_t nclsy[6]; |
| 72 | }; |
| 73 | |
| 74 | struct CTracklev2 { |
| 75 | Bool_t good2; |
| 76 | Int_t nev2; |
| 77 | Int_t pkt_type; |
| 78 | Int_t pkt_num; |
| 79 | Int_t obt; |
| 80 | Int_t which_calib; |
| 81 | Int_t ntrk; |
| 82 | Int_t image[50]; |
| 83 | Float_t xm[6][50]; |
| 84 | Float_t ym[6][50]; |
| 85 | Float_t zm[6][50]; |
| 86 | Float_t resx[6][50]; |
| 87 | Float_t resy[6][50]; |
| 88 | Float_t al[5][50]; |
| 89 | Float_t coval[5][5][50]; |
| 90 | Float_t chi2[50]; |
| 91 | Int_t xgood[6][50]; |
| 92 | Int_t ygood[6][50]; |
| 93 | Float_t xv[6][50]; |
| 94 | Float_t yv[6][50]; |
| 95 | Float_t zv[6][50]; |
| 96 | Float_t axv[6][50]; |
| 97 | Float_t ayv[6][50]; |
| 98 | Float_t dedxp[6][50]; |
| 99 | Int_t nclsx[6]; |
| 100 | Int_t nclsy[6]; |
| 101 | }; |
| 102 | |
| 103 |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |