Index: trunk/MagicSoft/Mars/mreport/MReportStarguider.cc
===================================================================
--- trunk/MagicSoft/Mars/mreport/MReportStarguider.cc	(revision 7209)
+++ trunk/MagicSoft/Mars/mreport/MReportStarguider.cc	(revision 7364)
@@ -129,5 +129,21 @@
     str = str.Strip(TString::kBoth);
 
+    if (ver >= 200508290)
+    {
+        // For the momment this are only placeholders....
+        Float_t dx, dy;
+        n=sscanf(str.Data(), "%f %f %n", &dx, &dy, &len);
+        if (n!=2)
+        {
+            *fLog << warn << "WARNING - Not enough arguments." << endl;
+            return kCONTINUE;
+        }
+
+        str.Remove(0, len);
+        str = str.Strip(TString::kBoth);
+    }
+
     return str.IsNull() ? kTRUE : kCONTINUE;
+
 }
 
