Index: /trunk/MagicSoft/Cosy/Changelog
===================================================================
--- /trunk/MagicSoft/Cosy/Changelog	(revision 6866)
+++ /trunk/MagicSoft/Cosy/Changelog	(revision 6867)
@@ -1,3 +1,11 @@
                                                                   -*-*- END -*-*-
+
+ 2005/03/21 - Thomas Bretz
+
+   * tcpip/MDriveCom.[h,cc]:
+     - added a missing white space behind the brightness and
+       fixed the wrong units of Zd/Az in the starguider report
+
+
 
  2005/03/17 - Thomas Bretz
Index: /trunk/MagicSoft/Cosy/catalog/StarCatalog.h
===================================================================
--- /trunk/MagicSoft/Cosy/catalog/StarCatalog.h	(revision 6866)
+++ /trunk/MagicSoft/Cosy/catalog/StarCatalog.h	(revision 6867)
@@ -56,7 +56,7 @@
     void PaintImg(unsigned char *buf, int w, int h);
 
-    const AltAz GetAltAz() const { return fAltAz*kRad2Deg; }
-    const ZdAz  GetZdAz() const  { return ZdAz(kPiDiv2-fAltAz.Alt(), fAltAz.Az())*kRad2Deg; }
-    const RaDec GetRaDec() const { return fRaDec*kRad2Deg; }
+    const AltAz GetAltAz() const /*[deg]*/ { return fAltAz*kRad2Deg; }
+    const ZdAz  GetZdAz() const  /*[deg]*/ { return ZdAz(kPiDiv2-fAltAz.Alt(), fAltAz.Az())*kRad2Deg; }
+    const RaDec GetRaDec() const /*[deg]*/ { return fRaDec*kRad2Deg; }
 
     void  SetPixSize(const double pixsize);
Index: /trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
===================================================================
--- /trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc	(revision 6866)
+++ /trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc	(revision 6867)
@@ -223,9 +223,8 @@
 {
     // miss   [deg]
-    // nompos [rad]
+    // nompos [deg]
     const MTime t(-1);
 
-    miss   *= 60;        // [arcmin]
-    nompos *= kRad2Deg;  // [deg]
+    miss *= 60;        // [arcmin]
 
     // Set status flag
@@ -249,6 +248,6 @@
     str += txt.Print("%05.1f ",   center.GetY()); //number
     str += txt.Print("%04d ",   n);               //number
-    str += txt.Print("%03.1f",  bright);
-    str += txt.Print("%12.6f ", t.GetMjd());      // mjd
+    str += txt.Print("%03.1f ",  bright);
+    str += txt.Print("%12.6f", t.GetMjd());      // mjd
     
     return Send("STARG-REPORT", str, kTRUE);
