- Timestamp:
- 10/02/12 11:50:29 (12 years ago)
- Location:
- trunk/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mbase/MEvtLoop.h
r13364 r14449 37 37 Bool_t HasDuplicateNames(TObjArray &arr, const TString txt) const; 38 38 39 void StreamPrimitive( ostream &out) const;39 void StreamPrimitive(std::ostream &out) const; 40 40 41 41 Bool_t ProcessGuiEvents(Int_t num, Int_t rc); … … 77 77 void MakeMacro(const char *filename="evtloop.C"); 78 78 79 void SavePrimitive( ostream &out, Option_t *o="");80 void SavePrimitive( ofstream &out, Option_t *o="");79 void SavePrimitive(std::ostream &out, Option_t *o=""); 80 void SavePrimitive(std::ofstream &out, Option_t *o=""); 81 81 82 82 Int_t Read(const char *name="Evtloop"); -
trunk/Mars/mcalib/MCalibrateData.h
r12790 r14449 90 90 Int_t Process(); 91 91 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print); 92 void StreamPrimitive( ostream &out) const;92 void StreamPrimitive(std::ostream &out) const; 93 93 94 94 public: -
trunk/Mars/mhist/MHCamera.h
r13388 r14449 235 235 void DrawAzimuthProfile() const; 236 236 237 void SavePrimitive( ostream &out, Option_t *);238 void SavePrimitive( ofstream &out, Option_t *);237 void SavePrimitive(std::ostream &out, Option_t *); 238 void SavePrimitive(std::ofstream &out, Option_t *); 239 239 Int_t DistancetoPrimitive(Int_t px, Int_t py); 240 240 char *GetObjectInfo(Int_t px, Int_t py) const; -
trunk/Mars/mjobs/MSequence.h
r12796 r14449 137 137 TString GetNumSequence(Int_t &pos, const TArrayI &n, const TArrayI &f) const; 138 138 139 void PrintRunsClassic( ostream &out, const char *pre, const char *name, const TArrayI &r) const;140 TString PrintRuns( ostream &out, const char *pre, const char *name, const TArrayI &r, const TArrayI &f) const;139 void PrintRunsClassic(std::ostream &out, const char *pre, const char *name, const TArrayI &r) const; 140 TString PrintRuns(std::ostream &out, const char *pre, const char *name, const TArrayI &r, const TArrayI &f) const; 141 141 142 142 // General helper … … 190 190 191 191 // TObject 192 void Print( ostream &out, Option_t *o) const;192 void Print(std::ostream &out, Option_t *o) const; 193 193 void Print(Option_t *o) const; 194 194 void Print() const { Print(""); } //*MENU* -
trunk/Mars/mraw/MRawFileRead.h
r14095 r14449 17 17 UInt_t fNumTotalEvents; //! total number of events in all files 18 18 19 istream *fIn;//! input stream (file to read from)19 std::istream *fIn; //! input stream (file to read from) 20 20 21 21 MParList *fParList; //! tasklist to call ReInit from … … 25 25 Bool_t fForce; 26 26 27 virtual istream *OpenFile(const char *filename);28 virtual Bool_t ReadRunHeader(istream &fin);29 virtual Bool_t InitReadData(istream &fin) { return kTRUE; }27 virtual std::istream *OpenFile(const char *filename); 28 virtual Bool_t ReadRunHeader(std::istream &fin); 29 virtual Bool_t InitReadData(std::istream &fin) { return kTRUE; } 30 30 31 31 Int_t OpenNextFile(Bool_t print=kTRUE); -
trunk/Mars/mraw/MRawFitsRead.h
r14089 r14449 18 18 MRawBoardsFACT *fRawBoards; 19 19 20 Int_t PreProcess(MParList *pList);21 istream *OpenFile(const char *filename);22 Bool_t ReadRunHeader(istream &fin);23 Bool_t InitReadData(istream &fin);24 Bool_t ReadEvent(istream &fin);25 void SkipEvent(istream &fin);20 Int_t PreProcess(MParList *pList); 21 std::istream *OpenFile(const char *filename); 22 Bool_t ReadRunHeader(std::istream &fin); 23 Bool_t InitReadData(std::istream &fin); 24 Bool_t ReadEvent(std::istream &fin); 25 void SkipEvent(std::istream &fin); 26 26 27 27 public:
Note:
See TracChangeset
for help on using the changeset viewer.