Changeset 3053 in Sophya for trunk/SophyaLib/HiStats/histerr.h
- Timestamp:
- Aug 12, 2006, 7:29:29 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/histerr.h
r3049 r3053 78 78 HistoErr& operator = (const HistoErr& h); 79 79 80 // Print 81 virtual void Show(ostream& os) const; 82 inline void Show() const { Show(cout); } 83 80 84 protected: 81 85 void allocate_mNData(int nbin); 86 void CreateOrResize(r_8 xMin, r_8 xMax, int_4 nBin); 82 87 void Delete(void); 83 88 … … 85 90 int_4 mCorrel; //!< Nombre d'appels a ToCorrel(+1) ou FromCorrel(-1) 86 91 }; 92 93 /*! Prints histogram information on stream \b s (h.Show(s)) */ 94 inline ostream& operator << (ostream& s, HistoErr const & h) 95 { h.Show(s); return(s); } 87 96 88 97 /*! \ingroup HiStats \fn operator<<(POuttPersist&,HistoErr)
Note:
See TracChangeset
for help on using the changeset viewer.