Changeset 11553 for trunk/Mars
- Timestamp:
- 07/24/11 11:01:36 (13 years ago)
- Location:
- trunk/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mastro/MAstroCatalog.cc
r11428 r11553 149 149 #include "MLogManip.h" 150 150 151 #include " MZlib.h" // MZlib<ifstream>151 #include "izstream.h" // izstream <ifstream> 152 152 153 153 #include "MTime.h" … … 291 291 } 292 292 293 MZlibfin(catalog);293 izstream fin(catalog); 294 294 if (!fin) 295 295 { … … 379 379 } 380 380 381 MZlibfin(catalog);381 izstream fin(catalog); 382 382 if (!fin) 383 383 { … … 450 450 } 451 451 452 MZlibfin(catalog);452 izstream fin(catalog); 453 453 if (!fin) 454 454 { … … 529 529 } 530 530 531 MZlibfin(catalog);531 izstream fin(catalog); 532 532 if (!fin) 533 533 { … … 640 640 } 641 641 642 MZlibfin(catalog);642 izstream fin(catalog); 643 643 if (!fin) 644 644 { -
trunk/Mars/mfileio/MReadFiles.cc
r9041 r11553 37 37 #include "MLogManip.h" 38 38 39 #include " MZlib.h"39 #include "izstream.h" 40 40 #include "MDirIter.h" 41 41 … … 142 142 143 143 // open a stream to a zipped or unzipped file 144 fIn = new MZlib(fFileName);144 fIn = new izstream(fFileName); 145 145 if (!*fIn) 146 146 { -
trunk/Mars/mfileio/MReadFiles.h
r9032 r11553 6 6 #endif 7 7 8 class MZlib;8 class izstream; 9 9 10 10 class MReadFiles : public MRead … … 25 25 26 26 protected: 27 MZlib*fIn; // the inputfile27 izstream *fIn; // the inputfile 28 28 29 29 // MReadFiles -
trunk/Mars/mraw/MRawFileRead.cc
r11447 r11553 50 50 #include "MLogManip.h" 51 51 52 #include " MZlib.h"52 #include "izstream.h" 53 53 #include "MTime.h" 54 54 #include "MParList.h" … … 127 127 Byte_t MRawFileRead::IsFileValid(const char *name) 128 128 { 129 MZlibfin(name);129 izstream fin(name); 130 130 if (!fin) 131 131 return 0; … … 164 164 istream *MRawFileRead::OpenFile(const char *filename) 165 165 { 166 return new MZlib(filename);166 return new izstream(filename); 167 167 } 168 168
Note:
See TracChangeset
for help on using the changeset viewer.