source: Sophya/trunk/SophyaPI/PIext/pigfd2.h@ 311

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