Index: trunk/Mars/mastro/MAstroCatalog.cc
===================================================================
--- trunk/Mars/mastro/MAstroCatalog.cc	(revision 11552)
+++ trunk/Mars/mastro/MAstroCatalog.cc	(revision 11553)
@@ -149,5 +149,5 @@
 #include "MLogManip.h"
 
-#include "MZlib.h"      // MZlib <ifstream>
+#include "izstream.h"   // izstream <ifstream>
 
 #include "MTime.h"
@@ -291,5 +291,5 @@
     }
 
-    MZlib fin(catalog);
+    izstream fin(catalog);
     if (!fin)
     {
@@ -379,5 +379,5 @@
     }
 
-    MZlib fin(catalog);
+    izstream fin(catalog);
     if (!fin)
     {
@@ -450,5 +450,5 @@
     }
 
-    MZlib fin(catalog);
+    izstream fin(catalog);
     if (!fin)
     {
@@ -529,5 +529,5 @@
     }
 
-    MZlib fin(catalog);
+    izstream fin(catalog);
     if (!fin)
     {
@@ -640,5 +640,5 @@
     }
 
-    MZlib fin(catalog);
+    izstream fin(catalog);
     if (!fin)
     {
Index: trunk/Mars/mfileio/MReadFiles.cc
===================================================================
--- trunk/Mars/mfileio/MReadFiles.cc	(revision 11552)
+++ trunk/Mars/mfileio/MReadFiles.cc	(revision 11553)
@@ -37,5 +37,5 @@
 #include "MLogManip.h"
 
-#include "MZlib.h"
+#include "izstream.h"
 #include "MDirIter.h"
 
@@ -142,5 +142,5 @@
 
     // open a stream to a zipped or unzipped file
-    fIn = new MZlib(fFileName);
+    fIn = new izstream(fFileName);
     if (!*fIn)
     {
Index: trunk/Mars/mfileio/MReadFiles.h
===================================================================
--- trunk/Mars/mfileio/MReadFiles.h	(revision 11552)
+++ trunk/Mars/mfileio/MReadFiles.h	(revision 11553)
@@ -6,5 +6,5 @@
 #endif
 
-class MZlib;
+class izstream;
 
 class MReadFiles : public MRead
@@ -25,5 +25,5 @@
 
 protected:
-    MZlib    *fIn;         // the inputfile
+    izstream *fIn;         // the inputfile
 
     // MReadFiles
Index: trunk/Mars/mraw/MRawFileRead.cc
===================================================================
--- trunk/Mars/mraw/MRawFileRead.cc	(revision 11552)
+++ trunk/Mars/mraw/MRawFileRead.cc	(revision 11553)
@@ -50,5 +50,5 @@
 #include "MLogManip.h"
 
-#include "MZlib.h"
+#include "izstream.h"
 #include "MTime.h"
 #include "MParList.h"
@@ -127,5 +127,5 @@
 Byte_t MRawFileRead::IsFileValid(const char *name)
 {
-    MZlib fin(name);
+    izstream fin(name);
     if (!fin)
         return 0;
@@ -164,5 +164,5 @@
 istream *MRawFileRead::OpenFile(const char *filename)
 {
-    return new MZlib(filename);
+    return new izstream(filename);
 }
 
