Subversion Repositories f9daq

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
56 f9daq 1
 
2
#ifndef _EVD_H_
3
#define _EVD_H_
4
 
5
#define MAXFED 28
6
 
7
struct FPL_data {
8
  int pmt,mb[4],wi[4],x0,y0,id[4];
9
  char sn[2][2][10];
10
};
11
typedef struct FPL_data FPL_data;
12
 
13
struct FED_data {
14
  int pmt,asd,sm,bbr,bbc,x0,y0,fx0,fy0;
15
  uint32_t id;
16
};
17
typedef struct FED_data FED_data;
18
 
19
struct FED_hist {
20
  uint32_t max,min,ent,evt;
21
  uint32_t data[MAXFED][64][16];
22
};
23
typedef struct FED_hist FED_hist;
24
 
25
#endif /* _EVD_H_ */
26