Rev 5 |
    Blame |
    Compare with Previous |
    Last modification |
    View Log
    | RSS feed
  
  
#ifndef _daq_h_
 
#define _daq_h_
 
#include <vector>
 
class VmUsbStack;
 
class daq {
 
public:
 
  VmUsbStack * fStack;
 
        VmUsbStack * fInit;
 
  int fPedestal;
 
  int fThresholdEnable;
 
  std::vector<int> fThreshold;
 
  int fStop;
 
  int fMode;
 
  int clear();
 
  int end();
 
  int event(unsigned int *, int,int*, int );
 
  int init();
 
  int connect();
 
  int disconnect(); 
 
  daq();
 
  ~daq();
 
};
 
 
 
#endif