Rev | Line | |
---|
[339] | 1 | // Cette classe est maintenant obsolete: generaldata <==> ntuple pour le dessin
|
---|
| 2 |
|
---|
[165] | 3 | #ifndef PIGFD2_H
|
---|
| 4 | #define PIGFD2_H
|
---|
| 5 |
|
---|
| 6 | #include "generaldata.h"
|
---|
| 7 | #include "pi3ddrw.h"
|
---|
| 8 |
|
---|
| 9 | class PIGenFitDat3D : public PIDrawer3D {
|
---|
| 10 | public:
|
---|
| 11 | PIGenFitDat3D(GeneralFitData* gfd, bool ad);
|
---|
| 12 | virtual ~PIGenFitDat3D();
|
---|
| 13 |
|
---|
[205] | 14 | virtual void Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax);
|
---|
[165] | 15 | virtual void UpdateLimits();
|
---|
| 16 |
|
---|
| 17 | void SelectXY(int varx,int vary);
|
---|
| 18 | void SelectErrBar(bool erbx,bool erby,bool erbz);
|
---|
| 19 |
|
---|
| 20 | protected:
|
---|
| 21 | GeneralFitData* mGFD;
|
---|
| 22 | bool mAdDO;
|
---|
| 23 | int VarX,VarY; // numero de variable X,Y ds le GeneralFitData
|
---|
| 24 | bool ErrX,ErrY,ErrZ; // Erreur en X,Y et Z?
|
---|
| 25 | };
|
---|
| 26 |
|
---|
| 27 | #endif
|
---|
[339] | 28 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.