Index: trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc	(revision 7338)
+++ trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc	(revision 7707)
@@ -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, Double_t x, Double_t y)
+bool MDriveCom::SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t num, Int_t n, Double_t bright, Double_t mjd, Double_t x, Double_t y)
 {
     // miss   [deg]
@@ -247,16 +247,11 @@
     str += txt.Print("%05.1f ",   center.GetX()); //number
     str += txt.Print("%05.1f ",   center.GetY()); //number
-    str += txt.Print("%04d ",   n);               //number
+    str += txt.Print("%04d ",   n);               //number of correleated stars
     str += txt.Print("%03.1f ",  bright);
     str += txt.Print("%12.6f ", t.GetMjd());      // mjd
     str += txt.Print("%.1f ", x);
     str += txt.Print("%.1f ", y);
+    str += txt.Print("%04d ", num);               //number of detected stars
 
     return Send("STARG-REPORT", str, kTRUE);
-
-}
-
-
-
-
-
+}
Index: trunk/MagicSoft/Cosy/tcpip/MDriveCom.h
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MDriveCom.h	(revision 7338)
+++ trunk/MagicSoft/Cosy/tcpip/MDriveCom.h	(revision 7707)
@@ -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, Double_t x, Double_t y);
+    bool SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t num, Int_t n, Double_t bright, Double_t mjd, Double_t x, Double_t y);
     bool SendStatus(const char *stat);
 };
