Changeset 3053 in Sophya for trunk/SophyaLib/HiStats/histerr.h


Ignore:
Timestamp:
Aug 12, 2006, 7:29:29 PM (19 years ago)
Author:
cmv
Message:

correction bug + addaptation pour ecriture fits cmv 12/8/2006

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/HiStats/histerr.h

    r3049 r3053  
    7878  HistoErr& operator = (const HistoErr& h);
    7979
     80  // Print
     81  virtual void Show(ostream& os) const;
     82  inline  void Show() const { Show(cout); }
     83
    8084protected:
    8185  void allocate_mNData(int nbin);
     86  void CreateOrResize(r_8 xMin, r_8 xMax, int_4 nBin);
    8287  void Delete(void);
    8388
     
    8590  int_4 mCorrel;  //!< Nombre d'appels a ToCorrel(+1) ou FromCorrel(-1)
    8691};
     92
     93/*! Prints histogram information on stream \b s (h.Show(s)) */
     94inline ostream& operator << (ostream& s, HistoErr const & h)
     95  {  h.Show(s);  return(s);  }
    8796
    8897/*! \ingroup HiStats \fn operator<<(POuttPersist&,HistoErr)
Note: See TracChangeset for help on using the changeset viewer.