Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 2707)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 2708)
@@ -14,4 +14,11 @@
    * manalysis/MExetractedSignalPix.h:
      - added missing const-qualifier IsLoGainUsed
+
+   * mreport/MReportRun.[h,cc]:
+     - added preliminary version to decode the Start/Stop run tags
+       in the report files.
+
+   * mreport/Makefile, mreport/ReportLinkDef.h:
+     - added MReportRun
 
 
Index: /trunk/MagicSoft/Mars/mreport/MReportRun.cc
===================================================================
--- /trunk/MagicSoft/Mars/mreport/MReportRun.cc	(revision 2707)
+++ /trunk/MagicSoft/Mars/mreport/MReportRun.cc	(revision 2708)
@@ -28,4 +28,6 @@
 //
 // This is the class interpreting and storing the RUN-REPORT information.
+//
+// PRELIMINARY!
 //
 //////////////////////////////////////////////////////////////////////////////
Index: /trunk/MagicSoft/Mars/mreport/MReportRun.h
===================================================================
--- /trunk/MagicSoft/Mars/mreport/MReportRun.h	(revision 2708)
+++ /trunk/MagicSoft/Mars/mreport/MReportRun.h	(revision 2708)
@@ -0,0 +1,27 @@
+#ifndef MARS_MReportRun
+#define MARS_MReportRun
+
+#ifndef MARS_MReport
+#include "MReport.h"
+#endif
+
+class MReportRun : public MReport
+{
+private:
+    Int_t   fRunNumber;
+    TString fSourceName;
+
+    Bool_t InterpreteBody(TString &str);
+
+public:
+    MReportRun();
+
+    const TString &GetSourceName() const { return fSourceName; }
+    TString GetSourceName() { return fSourceName; }
+
+    Int_t GetRunNumber() const { return fRunNumber; }
+
+    ClassDef(MReportRun, 1) // Class for RUN-REPORT information
+};
+
+#endif
