Index: trunk/MagicSoft/Mars/mbase/MTime.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MTime.cc	(revision 3967)
+++ trunk/MagicSoft/Mars/mbase/MTime.cc	(revision 3968)
@@ -194,5 +194,5 @@
     const UInt_t   ns   = (UInt_t)fmod(frac*1e6, 1000000);
 
-    Set(mjd, (ULong_t)TMath::Floor(frac), ns);
+    SetMjd(mjd, (ULong_t)TMath::Floor(frac), ns);
 }
 
@@ -203,4 +203,5 @@
 Bool_t MTime::Set(UShort_t y, Byte_t m, Byte_t d, Byte_t h, Byte_t min, Byte_t s, UShort_t ms, UInt_t ns)
 {
+    cout << "SET" << endl;
     if (h>23 || min>59 || s>59 || ms>999 || ns>999999)
         return kFALSE;
@@ -212,5 +213,5 @@
     const ULong_t tm = ((((h*60+min)*60)+s)*1000)+ms;
 
-    return Set(mjd, tm, ns);
+    return SetMjd(mjd, tm, ns);
 }
 
@@ -225,5 +226,5 @@
     const UInt_t ms  = tv.tv_usec%1000;
 
-    Set(mjd, tm, ms*1000);
+    SetMjd(mjd, tm, ms*1000);
 }
 
