Changeset 14447
- Timestamp:
- 10/02/12 11:44:41 (12 years ago)
- Location:
- trunk/Mars
- Files:
-
- 33 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/manalysis/MEventRateCalc.h
r7804 r14447 45 45 Int_t Process(); 46 46 47 void StreamPrimitive( ostream &out) const;47 void StreamPrimitive(std::ostream &out) const; 48 48 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print); 49 49 -
trunk/Mars/manalysis/MGeomApply.h
r7804 r14447 22 22 Int_t PreProcess(MParList *plist); 23 23 Bool_t ReInit(MParList *pList); 24 void StreamPrimitive( ostream &out) const;24 void StreamPrimitive(std::ostream &out) const; 25 25 26 26 public: -
trunk/Mars/manalysis/MMultiDimDistCalc.h
r7804 r14447 26 26 MDataArray *fData; //! Used to store the MDataChains to get the event values 27 27 28 void StreamPrimitive( ostream &out) const;28 void StreamPrimitive(std::ostream &out) const; 29 29 30 30 Int_t PreProcess(MParList *plist); -
trunk/Mars/mastro/MVector3.h
r8907 r14447 47 47 const char *GetName() const { return fName; } 48 48 49 void WriteBinary( ostream &out) const;50 void ReadBinary( istream &in);49 void WriteBinary(std::ostream &out) const; 50 void ReadBinary(std::istream &in); 51 51 52 52 ClassDef(MVector3, 1) // A specialized TVector3 storing a star-name -
trunk/Mars/mbase/MLut.h
r9490 r14447 48 48 49 49 // MLut I/O 50 Int_t ReadStream( istream &in);51 Int_t WriteStream( ostream &out) const;50 Int_t ReadStream(std::istream &in); 51 Int_t WriteStream(std::ostream &out) const; 52 52 53 53 Int_t ReadFile(const char *fname); -
trunk/Mars/mbase/MReadSocket.h
r7808 r14447 34 34 public: 35 35 MReadSocket(int port=-1, int mtu=1500); 36 MReadSocket(MReadSocket const& log) : std::ios(), std::streambuf(), istream((std::streambuf*)&log)36 MReadSocket(MReadSocket const& log) : std::ios(), std::streambuf(), std::istream((std::streambuf*)&log) 37 37 { 38 38 } -
trunk/Mars/mbase/MTask.h
r9578 r14447 120 120 virtual Int_t CallPostProcess(); 121 121 122 void SavePrimitive( ostream &out, Option_t *o="");123 void SavePrimitive( ofstream &out, Option_t *o="");122 void SavePrimitive(std::ostream &out, Option_t *o=""); 123 void SavePrimitive(std::ofstream &out, Option_t *o=""); 124 124 125 125 // TObject -
trunk/Mars/mbase/MTaskList.h
r8642 r14447 34 34 35 35 void Remove(MTask *task); 36 void StreamPrimitive( ostream &out) const;36 void StreamPrimitive(std::ostream &out) const; 37 37 Bool_t CheckAddToList(MTask *task, /*const char *tType,*/ const MTask *where=NULL) const; 38 38 Int_t ProcessTaskList(); -
trunk/Mars/mcorsika/MCorsikaRunHeader.h
r10060 r14447 126 126 Bool_t ReadEventHeader(Float_t * g); 127 127 Bool_t ReadEvtEnd(MCorsikaFormat * fInFormat, Bool_t runNumberVerify); 128 Bool_t SeekEvtEnd( istream &fin);128 Bool_t SeekEvtEnd(std::istream &fin); 129 129 130 130 // TObject -
trunk/Mars/mfileio/MReadTree.h
r9036 r14447 56 56 57 57 virtual void SetReadyToSave(Bool_t flag=kTRUE); 58 virtual void StreamPrimitive( ostream &out) const;58 virtual void StreamPrimitive(std::ostream &out) const; 59 59 60 60 enum { kIsOwner = BIT(14) }; -
trunk/Mars/mfileio/MWriteAsciiFile.h
r4694 r14447 14 14 { 15 15 private: 16 ofstream *fOut;//! ascii file16 std::ofstream *fOut; //! ascii file 17 17 18 TString fNameFile; // name of the ascii file18 TString fNameFile; // name of the ascii file 19 19 20 TObjArray fList; // list of rules and containers to be written21 TObjArray fAutoDel; //! List of object to be deleted in the destructor20 TObjArray fList; // list of rules and containers to be written 21 TObjArray fAutoDel; //! List of object to be deleted in the destructor 22 22 23 23 virtual Bool_t CheckAndWrite(); -
trunk/Mars/mfileio/MWriteRootFile.h
r9410 r14447 108 108 // MTask 109 109 Bool_t ReInit(MParList *pList); 110 void StreamPrimitive( ostream &out) const;110 void StreamPrimitive(std::ostream &out) const; 111 111 112 112 // Constructor -
trunk/Mars/mfilter/MFParticleId.h
r7804 r14447 30 30 const char *name, const char *title); 31 31 32 void StreamPrimitive( ostream &out) const;32 void StreamPrimitive(std::ostream &out) const; 33 33 34 34 Int_t PreProcess(MParList *pList); -
trunk/Mars/mfilter/MFTriggerLvl1.h
r7804 r14447 30 30 const char *name, const char *title); 31 31 32 void StreamPrimitive( ostream &out) const;32 void StreamPrimitive(std::ostream &out) const; 33 33 34 34 Int_t PreProcess(MParList *pList); -
trunk/Mars/mfilter/MFTriggerLvl2.h
r7804 r14447 36 36 const char *name, const char *title); 37 37 38 void StreamPrimitive( ostream &out) const;38 void StreamPrimitive(std::ostream &out) const; 39 39 40 40 Int_t PreProcess(MParList *pList); -
trunk/Mars/mgui/MHexagon.h
r9385 r14447 72 72 virtual void PaintHexagon(Float_t x, Float_t y, Float_t d, Float_t phi=0); 73 73 virtual void Print(Option_t *Option="") const; // *MENU* 74 virtual void SavePrimitive( ostream &out, Option_t *);75 virtual void SavePrimitive( ofstream &out, Option_t *);74 virtual void SavePrimitive(std::ostream &out, Option_t *); 75 virtual void SavePrimitive(std::ofstream &out, Option_t *); 76 76 77 77 Float_t GetX() const { return fX; } -
trunk/Mars/mhbase/MBinning.h
r8957 r14447 27 27 Byte_t fType; 28 28 29 void StreamPrimitive( ostream &out) const;29 void StreamPrimitive(std::ostream &out) const; 30 30 31 31 enum { -
trunk/Mars/mhbase/MFillH.h
r9520 r14447 46 46 void Init(const char *name, const char *title); 47 47 48 void StreamPrimitive( ostream &out) const;48 void StreamPrimitive(std::ostream &out) const; 49 49 50 50 Bool_t DrawToDisplay(); -
trunk/Mars/mhbase/MH3.h
r10234 r14447 78 78 void HandleLogAxis(TAxis &axe) const; 79 79 80 void StreamPrimitive( ostream &out) const;80 void StreamPrimitive(std::ostream &out) const; 81 81 82 82 -
trunk/Mars/mhbase/MHMatrix.h
r9153 r14447 61 61 void GetRandomArrayI(TArrayI &ind) const; 62 62 63 void StreamPrimitive( ostream &out) const;63 void StreamPrimitive(std::ostream &out) const; 64 64 65 65 public: -
trunk/Mars/mimage/MHillasCalc.h
r7804 r14447 68 68 69 69 // MParContainer 70 void StreamPrimitive( ostream &out) const;70 void StreamPrimitive(std::ostream &out) const; 71 71 72 72 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print); -
trunk/Mars/mimage/MImgCleanStd.h
r9369 r14447 72 72 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print); 73 73 74 void StreamPrimitive( ostream &out) const;74 void StreamPrimitive(std::ostream &out) const; 75 75 76 76 Int_t PreProcess(MParList *pList); -
trunk/Mars/mjobs/MDataSet.h
r9460 r14447 48 48 void ResolveSequences(const TEnv &env, const TString &prefix, const TArrayI &num, TList &list/*, const TString &sequences, const TString &data*/) const; 49 49 Bool_t GetWobbleMode(const TEnv &env, const TString &prefix) const; 50 static void PrintFile( ostream &out, const MSequence &obj);51 void PrintSeq( ostream &out, const MSequence &seq) const;50 static void PrintFile(std::ostream &out, const MSequence &obj); 51 void PrintSeq(std::ostream &out, const MSequence &seq) const; 52 52 53 53 // Directory and file handling … … 182 182 183 183 // TObject 184 void Print( ostream &out, Option_t *o) const;184 void Print(std::ostream &out, Option_t *o) const; 185 185 void Print(Option_t *o) const; 186 186 void Print() const { Print(""); } //*MENU* -
trunk/Mars/mpointing/MSrcPosCam.h
r8912 r14447 38 38 void Print(Option_t *opt=NULL) const; 39 39 40 void StreamPrimitive( ostream &out) const;40 void StreamPrimitive(std::ostream &out) const; 41 41 42 42 //void AsciiRead(ifstream &fin); -
trunk/Mars/mranforest/MRanForest.h
r8644 r14447 125 125 Double_t CalcHadroness(); 126 126 127 Bool_t AsciiWrite( ostream &out) const;127 Bool_t AsciiWrite(std::ostream &out) const; 128 128 129 129 ClassDef(MRanForest, 1) // Storage container for tree structure -
trunk/Mars/mranforest/MRanTree.h
r7804 r14447 112 112 Double_t TreeHad(const TMatrix &m, Int_t ievt); 113 113 114 Bool_t AsciiWrite( ostream &out) const;114 Bool_t AsciiWrite(std::ostream &out) const; 115 115 116 116 ClassDef(MRanTree, 1) // Storage container for tree structure -
trunk/Mars/mraw/MRawCrateData.h
r8944 r14447 18 18 Byte_t fABFlags; // flag describing in which two-slice block the trigger was raised 19 19 20 Bool_t ReadEvtOld( istream& fin, UShort_t ver);20 Bool_t ReadEvtOld(std::istream& fin, UShort_t ver); 21 21 22 22 public: … … 30 30 void Print(Option_t *t=NULL) const; 31 31 32 Bool_t ReadEvt( istream& fin, UShort_t ver, UInt_t size);33 void SkipEvt( istream& fin, UShort_t ver);32 Bool_t ReadEvt(std::istream& fin, UShort_t ver, UInt_t size); 33 void SkipEvt(std::istream& fin, UShort_t ver); 34 34 35 35 ClassDef(MRawCrateData, 2) //Container to store the Raw CRATE DATA -
trunk/Mars/mraw/MRawEvtData.h
r11555 r14447 110 110 Bool_t HasStartCells() const; 111 111 112 void ReadPixel( istream &fin, Int_t npix);112 void ReadPixel(std::istream &fin, Int_t npix); 113 113 void SetABFlag(Int_t npix, Bool_t ab); 114 void SkipEvt( istream &fin);114 void SkipEvt(std::istream &fin); 115 115 116 116 Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const; -
trunk/Mars/mraw/MRawEvtHeader.h
r9574 r14447 74 74 Int_t GetNumBytes() const; 75 75 76 Int_t ReadEvtOld( istream& fin, UShort_t ver);76 Int_t ReadEvtOld(std::istream& fin, UShort_t ver); 77 77 78 78 public: … … 106 106 107 107 // I/O 108 Int_t ReadEvt( istream& fin, UShort_t ver, UInt_t size);109 void SkipEvt( istream& fin, UShort_t ver);108 Int_t ReadEvt(std::istream& fin, UShort_t ver, UInt_t size); 109 void SkipEvt(std::istream& fin, UShort_t ver); 110 110 111 111 ClassDef(MRawEvtHeader, 1) // Parameter Conatiner for raw EVENT HEADER -
trunk/Mars/mraw/MRawRead.h
r11430 r14447 27 27 void CreateFakeTime() const; 28 28 29 virtual Bool_t ReadEvent( istream &fin);30 virtual void SkipEvent( istream &fin);29 virtual Bool_t ReadEvent(std::istream &fin); 30 virtual void SkipEvent(std::istream &fin); 31 31 Int_t PreProcess(MParList *pList); 32 32 -
trunk/Mars/mraw/MRawRunHeader.h
r11869 r14447 80 80 Bool_t IsConsistent() const; 81 81 82 Bool_t ReadEvtOld( istream& fin);82 Bool_t ReadEvtOld(std::istream& fin); 83 83 84 84 // MParContainer … … 187 187 void Print(Option_t *t=NULL) const; 188 188 189 Bool_t ReadEvt( istream& fin);189 Bool_t ReadEvt(std::istream& fin); 190 190 //Bool_t WriteEvt(ostream& fout) const; 191 191 -
trunk/Mars/msignal/MExtractor.h
r11568 r14447 73 73 Bool_t ReInit ( MParList *pList ); 74 74 Int_t Process (); 75 void StreamPrimitive( ostream &out) const;75 void StreamPrimitive(std::ostream &out) const; 76 76 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print); 77 77 -
trunk/Mars/mtools/MChisqEval.h
r8679 r14447 27 27 Double_t fSumW; //! Sum of weights 28 28 29 void StreamPrimitive( ostream &out) const;29 void StreamPrimitive(std::ostream &out) const; 30 30 31 31 enum { kIsOwner = BIT(14) };
Note:
See TracChangeset
for help on using the changeset viewer.