Rev 5 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 5 | f9daq | 1 | #ifndef _daq_h_ |
| 2 | #define _daq_h_ |
||
| 3 | #include <vector> |
||
| 4 | class VmUsbStack; |
||
| 5 | class daq { |
||
| 6 | public: |
||
| 7 | VmUsbStack * fStack; |
||
| 8 | VmUsbStack * fInit; |
||
| 9 | int fPedestal; |
||
| 10 | int fThresholdEnable; |
||
| 11 | std::vector<int> fThreshold; |
||
| 12 | int fStop; |
||
| 13 | int fMode; |
||
| 14 | int clear(); |
||
| 15 | int end(); |
||
| 16 | int event(unsigned int *, int,int*, int ); |
||
| 17 | int init(); |
||
| 18 | int connect(); |
||
| 19 | int disconnect(); |
||
| 20 | daq(); |
||
| 21 | ~daq(); |
||
| 22 | }; |
||
| 23 | |||
| 24 | #endif |