| 1 |
mocchiut |
1.1 |
typedef struct Chmerge { |
| 2 |
|
|
Int_t fromflag; |
| 3 |
|
|
Int_t scanflag; |
| 4 |
|
|
Int_t pscuOBT; |
| 5 |
|
|
Int_t pscucount; |
| 6 |
|
|
Int_t lastOBT[1000]; |
| 7 |
|
|
Int_t lastcount[1000]; |
| 8 |
|
|
} chmerge; |
| 9 |
|
|
|
| 10 |
|
|
typedef struct Evento { |
| 11 |
|
|
Int_t iev; |
| 12 |
|
|
Int_t stwerr[4]; |
| 13 |
|
|
Float_t emin; |
| 14 |
|
|
Float_t perror[4]; |
| 15 |
|
|
Float_t dexy[2][22][96]; |
| 16 |
|
|
Float_t dexyc[2][22][96]; |
| 17 |
|
|
Double_t base[2][22][6]; |
| 18 |
|
|
Float_t calselftrig[4][7]; |
| 19 |
|
|
Float_t calIItrig[4]; |
| 20 |
|
|
Float_t calstriphit[4]; |
| 21 |
|
|
Float_t calDSPtaberr[4]; |
| 22 |
|
|
Float_t calevnum[4]; |
| 23 |
|
|
Float_t shift; |
| 24 |
|
|
} evento; |
| 25 |
|
|
|
| 26 |
|
|
typedef struct Calib { |
| 27 |
|
|
TString tablename; |
| 28 |
|
|
TString basepath; |
| 29 |
|
|
TString yodalev; |
| 30 |
|
|
char *db; |
| 31 |
|
|
Int_t DW; |
| 32 |
|
|
Int_t mysql; |
| 33 |
|
|
Int_t obtjump; |
| 34 |
|
|
Int_t time[4][51]; |
| 35 |
|
|
Int_t ttime[4][51]; |
| 36 |
|
|
Int_t fcode[4][51]; |
| 37 |
|
|
Int_t iev; |
| 38 |
|
|
Int_t cstwerr[4]; |
| 39 |
|
|
Float_t ispaw; |
| 40 |
|
|
Float_t cperror[4]; |
| 41 |
|
|
Float_t mip[2][22][96]; |
| 42 |
|
|
Float_t calped[2][22][96]; |
| 43 |
|
|
Float_t calgood[2][22][96]; |
| 44 |
|
|
Float_t calthr[2][22][6]; |
| 45 |
|
|
Float_t calrms[2][22][96]; |
| 46 |
|
|
Float_t calbase[2][22][6]; |
| 47 |
|
|
Float_t calvar[2][22][6]; |
| 48 |
|
|
Float_t calpuls[2][22][96]; |
| 49 |
|
|
Double_t sbase[2][22][6]; |
| 50 |
|
|
Double_t al_p[5][2]; |
| 51 |
|
|
Int_t trkchi2; |
| 52 |
|
|
Bool_t good2; |
| 53 |
|
|
} calib; |
| 54 |
|
|
|