Last change
on this file 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
|
Line | |
---|
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 |
|
---|
9 | #include "machdefs.h"
|
---|
10 | #include "pidrawer.h"
|
---|
11 | #include "parradapter.h"
|
---|
12 | #include "histos2.h"
|
---|
13 | #include "hist2err.h"
|
---|
14 |
|
---|
15 | namespace SOPHYA {class GeneralFunction;}
|
---|
16 |
|
---|
17 | class PIGFFDrawer : public PIDrawer {
|
---|
18 | public:
|
---|
19 | PIGFFDrawer(GeneralFunction*);
|
---|
20 | virtual ~PIGFFDrawer();
|
---|
21 |
|
---|
22 | virtual void Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax);
|
---|
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.