Last change
on this file since 4051 was 3572, checked in by cmv, 17 years ago |
char* -> const char* pour regler les problemes de deprecated string const... + comparaison unsigned signed + suppression EVOL_PLANCK rz+cmv 07/02/2009
|
File size:
816 bytes
|
Rev | Line | |
---|
[165] | 1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
| 2 | // Adaptateurs et Drawers divers pour Outils PEIDA++
|
---|
| 3 | // R. Ansari 06-08/98
|
---|
| 4 | // LAL (Orsay) / IN2P3-CNRS DAPNIA/SPP (Saclay) / CEA
|
---|
| 5 |
|
---|
| 6 | #ifndef PIPODRW_H_SEEN
|
---|
| 7 | #define PIPODRW_H_SEEN
|
---|
| 8 |
|
---|
[495] | 9 | #include "machdefs.h"
|
---|
[165] | 10 | #include "pidrawer.h"
|
---|
| 11 | #include "parradapter.h"
|
---|
| 12 | #include "histos2.h"
|
---|
[3139] | 13 | #include "hist2err.h"
|
---|
[165] | 14 |
|
---|
[551] | 15 | namespace SOPHYA {class GeneralFunction;}
|
---|
[165] | 16 |
|
---|
| 17 | class PIGFFDrawer : public PIDrawer {
|
---|
| 18 | public:
|
---|
| 19 | PIGFFDrawer(GeneralFunction*);
|
---|
| 20 | virtual ~PIGFFDrawer();
|
---|
| 21 |
|
---|
[205] | 22 | virtual void Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax);
|
---|
[165] | 23 | virtual void SetParms(double const*);
|
---|
| 24 | protected:
|
---|
| 25 | GeneralFunction* mFunc;
|
---|
| 26 | int mNParms;
|
---|
| 27 | double* mParms;
|
---|
| 28 | };
|
---|
| 29 |
|
---|
| 30 |
|
---|
| 31 |
|
---|
| 32 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.