Index: trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc	(revision 6867)
+++ trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc	(revision 7338)
@@ -220,5 +220,5 @@
 }
 
-bool MDriveCom::SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t n, Double_t bright, Double_t mjd)
+bool MDriveCom::SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t n, Double_t bright, Double_t mjd, Double_t x, Double_t y)
 {
     // miss   [deg]
@@ -249,6 +249,8 @@
     str += txt.Print("%04d ",   n);               //number
     str += txt.Print("%03.1f ",  bright);
-    str += txt.Print("%12.6f", t.GetMjd());      // mjd
-    
+    str += txt.Print("%12.6f ", t.GetMjd());      // mjd
+    str += txt.Print("%.1f ", x);
+    str += txt.Print("%.1f ", y);
+
     return Send("STARG-REPORT", str, kTRUE);
 
Index: trunk/MagicSoft/Cosy/tcpip/MDriveCom.h
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MDriveCom.h	(revision 6867)
+++ trunk/MagicSoft/Cosy/tcpip/MDriveCom.h	(revision 7338)
@@ -41,5 +41,5 @@
 
     bool SendReport(UInt_t stat, RaDec rd, ZdAz so, ZdAz is, ZdAz er);
-    bool SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t n, Double_t bright, Double_t mjd);
+    bool SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t n, Double_t bright, Double_t mjd, Double_t x, Double_t y);
     bool SendStatus(const char *stat);
 };
