Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 7226)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 7227)
@@ -20,4 +20,12 @@
 
                                                  -*-*- END OF LINE -*-*-
+
+ 2005/07/28 Thomas Bretz
+
+   * mastro/MAstro.cc:
+     - fixed a bug in Deg2Hms reported by Abelardo. It gave wrong
+       results by 1./2pi
+
+
 
  2005/07/27 Markus Meyer, Thomas Bretz
Index: /trunk/MagicSoft/Mars/NEWS
===================================================================
--- /trunk/MagicSoft/Mars/NEWS	(revision 7226)
+++ /trunk/MagicSoft/Mars/NEWS	(revision 7227)
@@ -24,4 +24,7 @@
    - general: Runs cannot be added to a sequence twice anymore. Also
      Sequences cannot be added twice anymore to a dataset.
+
+   - general: fixed a bug in MAstro::Deg2Hms reported by Abelardo. 
+              It gave wrong results by 1./2pi
 
    - showplot: got a new option to start a root interpreter, too
Index: /trunk/MagicSoft/Mars/mastro/MAstro.cc
===================================================================
--- /trunk/MagicSoft/Mars/mastro/MAstro.cc	(revision 7226)
+++ /trunk/MagicSoft/Mars/mastro/MAstro.cc	(revision 7227)
@@ -134,5 +134,5 @@
 void MAstro::Deg2Hms(Double_t d, Char_t &sgn, UShort_t &deg, UShort_t &min, UShort_t &sec)
 {
-    Rad2Hms(d/360, sgn, deg, min, sec);
+    Day2Hms(d/360, sgn, deg, min, sec);
 }
 
