Changeset 2229 in Sophya for trunk/SophyaPI/PIext/pihisto.h
- Timestamp:
- Oct 24, 2002, 11:17:29 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/pihisto.h
r1971 r2229 14 14 virtual void Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax); 15 15 virtual void UpdateLimits(); 16 inline void SetStats(bool fg=true) { stats = fg; } 17 inline Histo* Histogram() { return(mHisto); } 16 inline void SetStats(bool fg=true) {stats=fg;} 17 // fg=-1 pas de barre d'erreur, 1=barres d'erreurs, 18 // 0=barres d'erreurs automatiques: trace si HProf ou markeur demande 19 inline void SetError(unsigned short fg=0) {error=fg;} 20 inline Histo* Histogram() {return(mHisto);} 18 21 19 22 // Methode de decodage des options 20 23 virtual int DecodeOptionString(vector<string> & opt, bool rmdecopt=true); 24 virtual void GetOptionsHelpInfo(string& info); 21 25 22 26 protected: … … 24 28 Histo* mHisto; 25 29 bool mAdDO; 26 bool stats ; // true -> indication des stats d'histo30 bool stats,error; 27 31 }; 28 32
Note:
See TracChangeset
for help on using the changeset viewer.