Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 8876)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 8877)
@@ -18,4 +18,17 @@
 
                                                  -*-*- END OF LINE -*-*-
+
+ 2008/02/24 Thomas Bretz
+
+   * mbase/MLog.h:
+     - added a getter for the OutputLevel (for debugging)
+
+   * mpointing/MPointing.h:
+     - added a memberfunction to calculate the Abs-value
+
+   * mpointing/PointingLinkDef.h:
+     - added RaDec
+
+
 
  2008/02/21 Daniela Dorner
Index: /trunk/MagicSoft/Mars/mbase/MLog.h
===================================================================
--- /trunk/MagicSoft/Mars/mbase/MLog.h	(revision 8876)
+++ /trunk/MagicSoft/Mars/mbase/MLog.h	(revision 8877)
@@ -1,4 +1,4 @@
 /* ======================================================================== *\
-!  $Name: not supported by cvs2svn $:$Id: MLog.h,v 1.37 2007-02-13 11:06:53 tbretz Exp $
+!  $Name: not supported by cvs2svn $:$Id: MLog.h,v 1.38 2008-02-24 11:37:48 tbretz Exp $
 \* ======================================================================== */
 #ifndef MARS_MLog
@@ -143,4 +143,5 @@
     int  GetDebugLevel() const          { return fDebugLevel;  }
     void SetOutputLevel(int i)          { fOutputLevel =  i;   }
+    int  GetOutputLevel() const         { return fOutputLevel; }
     void SetOutputDevice(int i)         { fDevice      =  i;   }
     void EnableOutputDevice(Flags_t f)  { fDevice     |=  f;   }
Index: /trunk/MagicSoft/Mars/mpointing/MPointing.h
===================================================================
--- /trunk/MagicSoft/Mars/mpointing/MPointing.h	(revision 8876)
+++ /trunk/MagicSoft/Mars/mpointing/MPointing.h	(revision 8877)
@@ -92,4 +92,5 @@
     double Ratio() const { return fX/fY; }
     void Round()         { fX=(int)(floor(fX+.5)); fY=(int)(floor(fY+.5)); }
+    void Abs()           { fX=fabs(fX); fY=fabs(fY); }
 
     ClassDef(ZdAz, 0)
Index: /trunk/MagicSoft/Mars/mpointing/PointingLinkDef.h
===================================================================
--- /trunk/MagicSoft/Mars/mpointing/PointingLinkDef.h	(revision 8876)
+++ /trunk/MagicSoft/Mars/mpointing/PointingLinkDef.h	(revision 8877)
@@ -25,4 +25,5 @@
 #pragma link C++ class AltAz+;
 #pragma link C++ class ZdAz+;
+#pragma link C++ class RaDec+;
 
 #endif
