Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 8884)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 8885)
@@ -18,4 +18,11 @@
 
                                                  -*-*- END OF LINE -*-*-
+
+ 2008/04/08 Thomas Bretz
+
+   * mreport/MReportDrive.cc:
+     - implemented changes of Version 20080220
+
+
 
  2008/03/18 Thomas Bretz
Index: /trunk/MagicSoft/Mars/NEWS
===================================================================
--- /trunk/MagicSoft/Mars/NEWS	(revision 8884)
+++ /trunk/MagicSoft/Mars/NEWS	(revision 8885)
@@ -33,4 +33,8 @@
 
    * added code to process the sum-trigger flag
+
+ ;merpp
+
+   * Implemented cc file version 2008-20-02/0
 
  ;callisto
Index: /trunk/MagicSoft/Mars/mreport/MReportDrive.cc
===================================================================
--- /trunk/MagicSoft/Mars/mreport/MReportDrive.cc	(revision 8884)
+++ /trunk/MagicSoft/Mars/mreport/MReportDrive.cc	(revision 8885)
@@ -119,6 +119,19 @@
 
     str.Remove(0, len);
+    str = str.Strip(TString::kBoth);
 
-    str = str.Strip(TString::kBoth);
+    if (ver>=200802200)
+    {
+        Int_t dummy; // Cosy armed or not
+        n=sscanf(str.Data(), "%d %n", &dummy, &len);
+        if (n!=1)
+        {
+            *fLog << warn << "WARNING - Not enough arguments." << endl;
+            return kCONTINUE;
+        }
+
+        str.Remove(0, len);
+        str = str.Strip(TString::kBoth);
+    }
 
     return str.IsNull() ? kTRUE : kCONTINUE;
