Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "TGo4ObjConnectorTimer.h"
00015
00016 #include "TGo4Log.h"
00017 #include "TGo4HistogramServer.h"
00018
00019
00020 TGo4ObjConnectorTimer::TGo4ObjConnectorTimer (TGo4HistogramServer* server, Long_t msperiod)
00021 :TTimer(msperiod,kTRUE), fxServer(server)
00022 {
00023 GO4TRACE((15,"TGo4ObjConnectorTimer::TGo4ObjConnectorTimer(TGo4ServerTask*,Long_t)",__LINE__, __FILE__));
00024 }
00025
00026
00027 TGo4ObjConnectorTimer::~TGo4ObjConnectorTimer()
00028 {
00029 GO4TRACE((15,"TGo4ObjConnectorTimer::~TGo4ObjConnectorTimer()",__LINE__, __FILE__));
00030 }
00031
00032 Bool_t TGo4ObjConnectorTimer::Notify ()
00033 {
00034
00035
00036 fxServer->TimerConnect();
00037 Reset();
00038
00039 return kFALSE;
00040 }