Blame |
    Last modification |
    View Log
    | RSS feed
  
  
#ifndef _daq_h_
 
#define _daq_h_
 
 
 
#define BUFF_L 2048
 
class daq {
 
public:
 
 unsigned long stackwrite[BUFF_L],stackdata[10000],stackdump[27000];
 
int debug;
 
int fStop;
 
int event(unsigned int *, int);
 
int init();
 
int connect();
 
int disconnect(); 
 
daq();
 
~daq();
 
};
 
 
 
#endif