Changeset 4889 for trunk/MagicSoft/Mars/mbadpixels
- Timestamp:
- 09/08/04 18:49:00 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mbadpixels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc
r4793 r4889 33 33 #include "MBadPixelsCam.h" 34 34 35 #include < fstream>35 #include <iostream> 36 36 37 37 #include <TClonesArray.h> … … 530 530 // 1235: 17 193 292 293 531 531 // 532 void MBadPixelsCam::AsciiRead(i fstream &fin, UInt_t run=0)532 void MBadPixelsCam::AsciiRead(istream &fin, UInt_t run=0) 533 533 { 534 534 Int_t len; -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.h
r4679 r4889 44 44 Short_t GetNumMaxCluster(const MGeomCam &geom, Int_t aidx=-1) { return GetNumMaxCluster(MBadPixelsPix::kUnsuitableRun, geom, aidx); } 45 45 46 void AsciiRead(i fstream &fin, UInt_t run);47 void AsciiRead(i fstream &fin) { AsciiRead(fin, 0); }46 void AsciiRead(istream &fin, UInt_t run); 47 void AsciiRead(istream &fin) { AsciiRead(fin, 0); } 48 48 Bool_t AsciiWrite(ostream &out, UInt_t run) const; 49 49 Bool_t AsciiWrite(ostream &out) const { return AsciiWrite(out, 0); }
Note:
See TracChangeset
for help on using the changeset viewer.