Subversion Repositories f9daq

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
109 f9daq 1
#ifndef _daq_h_
2
#define _daq_h_
3
 
4
#define BUFF_L 2048
5
class daq {
6
public:
7
 unsigned long stackwrite[BUFF_L],stackdata[10000],stackdump[27000];
8
int debug;
9
int fStop;
10
int event(unsigned int *, int);
11
int init();
12
int connect();
13
int disconnect();
14
daq();
15
~daq();
16
};
17
 
18
#endif