Changeset 544 in Sophya for trunk/SophyaPI/PIext/pihisto.h
- Timestamp:
- Nov 3, 1999, 7:18:23 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/pihisto.h
r205 r544 1 // This may look like C code, but it is really -*- C++ -*- 2 // Classe traceur d histogramme 96-99 3 // CEA-DAPNIA LAL-IN2P3/CNRS 1 4 #ifndef PIHISTO_H 2 5 #define PIHISTO_H … … 11 14 virtual void Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax); 12 15 virtual void UpdateLimits(); 13 virtual void DrawStats(PIGraphicUC* g);16 inline void SetStats(bool fg=true) { stats = true; } 14 17 inline Histo* Histogram() { return(mHisto); } 15 18 16 19 protected: 20 virtual void DrawStats(PIGraphicUC* g); 17 21 Histo* mHisto; 18 22 bool mAdDO; 23 bool stats; // true -> indication des stats d'histo 19 24 }; 20 25
Note:
See TracChangeset
for help on using the changeset viewer.