Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 4897)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 4898)
@@ -34,4 +34,5 @@
 
 
+
  2004/09/09: Thomas Bretz
 
@@ -52,4 +53,16 @@
    * mjobs/Makefile:
      - added path to mhvstime
+
+   * manalysis/MParameters.[h,cc]:
+     - added Print() functions
+
+   * mfileio/MReadReports.[h,cc], mfileio/MReadTree.[h,cc]:
+     - moved setting of StreamId from MReadReports To MReadTree
+
+   * mhbase/MH.cc:
+     - workaround all the this which are reset in TAxis::Set
+  
+   * mfileio/MReadRflFile.[h,cc]:
+     - added missing abstract functions
 
 
Index: /trunk/MagicSoft/Mars/mfileio/MReadRflFile.cc
===================================================================
--- /trunk/MagicSoft/Mars/mfileio/MReadRflFile.cc	(revision 4897)
+++ /trunk/MagicSoft/Mars/mfileio/MReadRflFile.cc	(revision 4898)
@@ -300,9 +300,7 @@
     // open the file which is the first one in the chain
     //
-    const TString name = file->GetName();
-
-    const char *expname = gSystem->ExpandPathName(name);
-    const TString fname(expname);
-    delete [] expname;
+    fFileName = file->GetName();
+    const TString expname = fFileName;
+    gSystem->ExpandPathName(expname);
 
     //
@@ -311,10 +309,10 @@
     //fFileNames->Remove(file);
 
-    *fLog << inf << "Open file: '" << name << "'" << endl;
-
-    fIn = new ifstream(name);
+    *fLog << inf << "Open file: '" << fFileName << "'" << endl;
+
+    fIn = new ifstream(expname);
     if (!*fIn)
     {
-        *fLog << err << "Cannot open file " << name << ": ";
+        *fLog << err << "Cannot open file " << expname << ": ";
         *fLog << strerror(errno) << endl;
         return kFALSE;
@@ -322,5 +320,5 @@
 
     *fLog << inf;
-    fLog->Separator(name);
+    fLog->Separator(fFileName);
 
     fCurrentVersion = ReadVersion();
Index: /trunk/MagicSoft/Mars/mfileio/MReadRflFile.h
===================================================================
--- /trunk/MagicSoft/Mars/mfileio/MReadRflFile.h	(revision 4897)
+++ /trunk/MagicSoft/Mars/mfileio/MReadRflFile.h	(revision 4898)
@@ -27,4 +27,5 @@
     UInt_t fNumFile;
     UInt_t fEntries; // TO BE IMPLEMENTED
+    TString fFileName;
 
     Float_t fCurrentVersion; //! Version of currently open rfl file
@@ -52,4 +53,5 @@
     Bool_t Rewind() { fNumFile=0; return kTRUE; }
     UInt_t GetEntries() { return fEntries; }
+    TString GetFileName() const { return fFileName; }
 
     Bool_t SearchFor(Int_t runno, Int_t eventno);
