00001 #ifndef _DAQ_GMT_H_
00002 #define _DAQ_GMT_H_
00003
00004 #include <DAQ_READER/daq_det.h>
00005
00006
00007 class daq_gmt : public daq_det {
00008 private:
00009 class daq_dta *handle_raw(int rdo) ;
00010
00011 class daq_dta *raw ;
00012
00013 static const char *help_string ;
00014
00015 public:
00016 daq_gmt(daqReader *rts_caller=0) ;
00017 ~daq_gmt() ;
00018
00019 daq_dta *get(const char *bank="*",int c1=-1, int c2=-1, int c3=-1, void *p1=0, void *p2=0) ;
00020
00021 int get_l2(char *buff, int buff_bytes, struct daq_trg_word *trg, int prompt) {
00022 return -1 ;
00023 }
00024
00025 const char *GetCVS() const {
00026 static const char cvs[]="Tag $Name: $Id: built "__DATE__" "__TIME__ ; return cvs;
00027 }
00028
00029 } ;
00030
00031
00032 #endif