Index: unk/Mars/mbase/MZlib.h
===================================================================
--- /trunk/Mars/mbase/MZlib.h	(revision 11548)
+++ 	(revision )
@@ -1,56 +1,0 @@
-#ifndef MARS_MZlib
-#define MARS_MZlib
-
-#ifndef ROOT_TObject
-#include <TObject.h> // Needed for ClassDef
-#endif
-
-#ifdef __CINT__
-typedef void *gzFile;
-#else
-#include <zlib.h>
-#endif
-
-#include <istream>  // base classes for MLog
-
-class MZlib : public std::streambuf, public std::istream
-{
-private:
-    static const int fgBufferSize = 3276804; // maximum size of a fact event + 4
-
-    gzFile fFile;                 // file handle for compressed file
-    char   fBuffer[fgBufferSize]; // data buffer
-
-    int underflow();
-
-public:
-    MZlib() : istream(this), fFile(0)
-    {
-        setg(fBuffer+4, fBuffer+4, fBuffer+4);
-    }
-    MZlib(const char *name) : istream(this), fFile(0)
-    {
-        setg(fBuffer+4, fBuffer+4, fBuffer+4);
-        open(name);
-    }
-    ~MZlib() { MZlib::close(); }
-
-    int is_open() { return fFile!=0; }
-
-    void open(const char* name);
-    void close();
-
-# if (__GNUC__>2)
-    std::streambuf::pos_type seekoff(std::streambuf::off_type, std::ios_base::seekdir,
-                                     std::ios_base::openmode = std::ios_base::in);
-    std::streambuf::pos_type seekpos(std::streambuf::pos_type,
-                                     std::ios_base::openmode = std::ios_base::in);
-# else
-    std::streampos seekoff(std::streamoff, int, int = std::ios::in);
-//    std::streampos seekpos(std::streampos, int = std::ios::in);
-# endif
-
-    ClassDef(MZlib, 0) // A C++ wrapper to istream zlib files
-};
-
-#endif
Index: /trunk/Mars/mbase/izstream.h
===================================================================
--- /trunk/Mars/mbase/izstream.h	(revision 11549)
+++ /trunk/Mars/mbase/izstream.h	(revision 11549)
@@ -0,0 +1,56 @@
+#ifndef MARS_MZlib
+#define MARS_MZlib
+
+#ifndef ROOT_TObject
+#include <TObject.h> // Needed for ClassDef
+#endif
+
+#ifdef __CINT__
+typedef void *gzFile;
+#else
+#include <zlib.h>
+#endif
+
+#include <istream>  // base classes for MLog
+
+class MZlib : public std::streambuf, public std::istream
+{
+private:
+    static const int fgBufferSize = 3276804; // maximum size of a fact event + 4
+
+    gzFile fFile;                 // file handle for compressed file
+    char   fBuffer[fgBufferSize]; // data buffer
+
+    int underflow();
+
+public:
+    MZlib() : istream(this), fFile(0)
+    {
+        setg(fBuffer+4, fBuffer+4, fBuffer+4);
+    }
+    MZlib(const char *name) : istream(this), fFile(0)
+    {
+        setg(fBuffer+4, fBuffer+4, fBuffer+4);
+        open(name);
+    }
+    ~MZlib() { MZlib::close(); }
+
+    int is_open() { return fFile!=0; }
+
+    void open(const char* name);
+    void close();
+
+# if (__GNUC__>2)
+    std::streambuf::pos_type seekoff(std::streambuf::off_type, std::ios_base::seekdir,
+                                     std::ios_base::openmode = std::ios_base::in);
+    std::streambuf::pos_type seekpos(std::streambuf::pos_type,
+                                     std::ios_base::openmode = std::ios_base::in);
+# else
+    std::streampos seekoff(std::streamoff, int, int = std::ios::in);
+//    std::streampos seekpos(std::streampos, int = std::ios::in);
+# endif
+
+    ClassDef(MZlib, 0) // A C++ wrapper to istream zlib files
+};
+
+#endif
