#include "TMidasOnline.h"
#include <TTimer.h>
#include <stdio.h>
Go to the source code of this file.
Classes | |
class | TPeriodicClass |
Functions | |
double | GetTimeSec () |
double GetTimeSec | ( | ) |
Definition at line 54 of file analyzer.cxx.
Referenced by MyPeriodic::MyPeriodic(), TPeriodicClass::Notify(), MyPeriodic::Notify(), and TPeriodicClass::TPeriodicClass().
00055 { 00056 struct timeval tv; 00057 gettimeofday(&tv,NULL); 00058 return tv.tv_sec + 0.000001*tv.tv_usec; 00059 }