Index: trunk/MagicSoft/Cosy/base/timer.cc
===================================================================
--- trunk/MagicSoft/Cosy/base/timer.cc	(revision 911)
+++ trunk/MagicSoft/Cosy/base/timer.cc	(revision 912)
@@ -45,5 +45,5 @@
 }
 
-void Timer::SetTimer(struct timeval *tv)
+void Timer::SetTimer(const struct timeval *tv)
 {
     SetTimer(tv->tv_sec, (double)tv->tv_usec/1000000.0);
@@ -75,15 +75,15 @@
 }
 
-double Timer::GetTime()
+double Timer::Now()
 {
     struct timeval tv;
     gettimeofday(&tv, NULL);
 
-    SetTimer(tv.tv_sec, (double)tv.tv_usec/1000000.0);
+    SetTimer(&tv);
 
     return fMs+fSecs;
 }
 
-double Timer::GetMjd()
+double Timer::CalcMjd()
 {
     int status;
Index: trunk/MagicSoft/Cosy/base/timer.h
===================================================================
--- trunk/MagicSoft/Cosy/base/timer.h	(revision 911)
+++ trunk/MagicSoft/Cosy/base/timer.h	(revision 912)
@@ -27,10 +27,10 @@
 
     void SetTimer(int tv_sec, double tv_usec);
-    void SetTimer(struct timeval *tv);
+    void SetTimer(const struct timeval *tv);
 
 
     int GetSecs() { return fSecs; }
-    double GetTime();
-    double GetMjd();
+    double Now();
+    double CalcMjd();
 
     int H() const { return fHor; }
