Subversion Repositories f9daq

Rev

Blame | Last modification | View Log | RSS feed


#ifndef _EVD_H_
#define _EVD_H_

#define MAXFED 28

struct FPL_data {
  int pmt,mb[4],wi[4],x0,y0,id[4];
  char sn[2][2][10];
};
typedef struct FPL_data FPL_data;

struct FED_data {
  int pmt,asd,sm,bbr,bbc,x0,y0,fx0,fy0;
  uint32_t id;
};
typedef struct FED_data FED_data;

struct FED_hist {
  uint32_t max,min,ent,evt;
  uint32_t data[MAXFED][64][16];
};
typedef struct FED_hist FED_hist;

#endif /* _EVD_H_ */