source: Sophya/trunk/SophyaPI/PIext/pihisto.h@ 411

Last change on this file since 411 was 205, checked in by ercodmgr, 27 years ago

1/ Adaptation pour passage en double de trace en coordonnees graphiques
User (UC) (float -> double)
2/ Adaptation pour passage en double pour les ArrayAdapter

Reza 1/03/99

File size: 500 bytes
Line 
1#ifndef PIHISTO_H
2#define PIHISTO_H
3
4#include "histos.h"
5#include "pidrawer.h"
6
7class PIHisto : public PIDrawer {
8public:
9 PIHisto(Histo* histo, bool ad=false);
10 virtual ~PIHisto();
11 virtual void Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax);
12 virtual void UpdateLimits();
13 virtual void DrawStats(PIGraphicUC* g);
14 inline Histo* Histogram() { return(mHisto); }
15
16protected:
17 Histo* mHisto;
18 bool mAdDO;
19};
20
21#endif
Note: See TracBrowser for help on using the repository browser.