00001 00003 #ifndef ACNETDEVICE_H 00004 #define ACNETDEVICE_H 00005 00006 00007 #include <TObject.h> 00008 00009 struct AcnetDevice : public TObject { 00010 int event, delay; // The TCLK event + delay in msec 00011 int sec, msec; // The DAE timestamp in sec and msec 00012 double timestamp; // The DAE timestamp in sec.msec 00013 char name[8]; // Dev: 7 char, space padded '\0' term (no ":") 00014 int ndata; // Number of data elements 00015 double* data; // [ndata] the data 00016 AcnetDevice(); 00017 AcnetDevice(const char* n); 00018 virtual ~AcnetDevice(); 00019 void clear(); 00020 ClassDef(AcnetDevice,1) 00021 }; 00022 00023 00024 #endif // ACNETDEVICE_H
1.3.9.1