Index: trunk/MagicSoft/Cosy/Changelog
===================================================================
--- trunk/MagicSoft/Cosy/Changelog	(revision 7337)
+++ trunk/MagicSoft/Cosy/Changelog	(revision 7338)
@@ -1,3 +1,9 @@
                                                                   -*-*- END -*-*-
+ 2005/08/29 - Daniela Dorner
+
+   * main/MStarguider.cc, tcpip/MDriveCom.[h,cc]:
+     - added to variables to the Starguider report
+
+
 
  2005/08/22 - Thomas Bretz
Index: trunk/MagicSoft/Cosy/main/MStarguider.cc
===================================================================
--- trunk/MagicSoft/Cosy/main/MStarguider.cc	(revision 7337)
+++ trunk/MagicSoft/Cosy/main/MStarguider.cc	(revision 7338)
@@ -1637,5 +1637,5 @@
             if (fCosy) {
                 MDriveCom &com = *fCosy->GetDriveCom();
-                com.SendStargReport(fStatus, fD, fSao->GetZdAz(), sgcenter, spots.GetEntries(), bright, time.GetMjd());    // Report
+                com.SendStargReport(fStatus, fD, fSao->GetZdAz(), sgcenter, spots.GetEntries(), bright, time.GetMjd(), 0, 0);    // Report
             }
 
Index: trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc	(revision 7337)
+++ 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 7337)
+++ 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);
 };
