StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
daq_pxl.h
1 #ifndef _DAQ_PXL_H_
2 #define _DAQ_PXL_H_
3 
4 
5 #include <DAQ_READER/daq_det.h>
6 
7 
8 class daq_pxl : public daq_det {
9 private:
10  class daq_dta *handle_raw(int sec, int rdo) ;
11 
12  class daq_dta *raw ; // "raw"
13 
14  static const char *help_string ;
15 
16 protected:
17 
18 
19 public:
20  daq_pxl(daqReader *rts_caller=0) ;
21  ~daq_pxl() ;
22 
23 
24  daq_dta *get(const char *bank="*",int c1=-1, int c2=-1, int c3=-1, void *p1=0, void *p2=0) ;
25 
26  int get_l2(char *buff, int buff_bytes, struct daq_trg_word *trg, int prompt) ;
27 
28  const char *GetCVS() const { // Offline
29  static const char cvs[]="Tag $Name: $Id: built " __DATE__ " " __TIME__ ; return cvs;
30  }
31 
32 
33 } ;
34 
35 
36 #endif // _DAQ_PXL_H_
Definition: daq_pxl.h:8