Index: trunk/MagicSoft/Cosy/base/timer.cc
===================================================================
--- trunk/MagicSoft/Cosy/base/timer.cc	(revision 925)
+++ trunk/MagicSoft/Cosy/base/timer.cc	(revision 926)
@@ -75,5 +75,5 @@
 }
 
-double Timer::Now()
+double Timer::Now() //[s]
 {
     struct timeval tv;
@@ -97,5 +97,5 @@
 }
 
-Timer::operator double()
+Timer::operator double() //[s]
 {
     return fMs+fSecs;
Index: trunk/MagicSoft/Cosy/base/timer.h
===================================================================
--- trunk/MagicSoft/Cosy/base/timer.h	(revision 925)
+++ trunk/MagicSoft/Cosy/base/timer.h	(revision 926)
@@ -31,5 +31,5 @@
 
     int GetSecs() { return fSecs; }
-    double Now();
+    double Now(); //[s]
     double CalcMjd();
 
@@ -42,5 +42,5 @@
     void Print();
 
-    operator double();
+    operator double(); //[s]
 };
 
