MCheckDaqStatus.hh
Go to the documentation of this file.00001 #ifndef _M_CHECKDAQSTATUS_HH_
00002 #define _M_CHECKDAQSTATUS_HH_
00003
00039 #include "QModule.hh"
00040 #include <time.h>
00041
00042 class MCheckDaqStatus : public QModule {
00043
00044 public:
00046 MCheckDaqStatus(QSequence* s);
00047
00049 ~MCheckDaqStatus();
00050
00052 void Init();
00053
00055 QEvent* Do(QEvent* ev);
00056
00058 void Done();
00059 private:
00060
00061 FILE* fOutputFile;
00062 std::string fOutputFile_s;
00063 std::string fDateCmd;
00064 time_t fNow;
00065 int fSeconds;
00066
00067 };
00068
00069 #endif
00070