source: Sophya/trunk/SophyaPI/PIext/pintuple.h@ 179

Last change on this file since 179 was 165, checked in by ercodmgr, 27 years ago

Creation du module PIext en regroupant des fichiers de Drawer/Wdg pour
Objets ds PEIDA/Outils++, Images++, ... et des classes de ProgPI,
lie a piapp (PIStdImgApp, NamedObjMgr, ...) Reza 18/12/98

File size: 701 bytes
Line 
1#ifndef PINTUPLE_H
2#define PINTUPLE_H
3
4#include "ntuple.h"
5#include "pidrawer.h"
6
7class PINTuple : public PIDrawer {
8public:
9 PINTuple(NTuple* nt, bool ad);
10 virtual ~PINTuple();
11
12 virtual void Draw(PIGraphicUC* g, float xmin, float ymin, float xmax, float ymax);
13 virtual void UpdateLimits();
14
15 void SelectXY(const char* px, const char* py);
16 void SelectErrBar(const char* erbx=NULL, const char* erby=NULL);
17
18
19protected:
20 NTuple* mNT;
21 bool mAdDO;
22 int xK, yK; // Index du nom de variable en X/Y ds le ntuple
23 int xebK, yebK; // Index du nom de variable en ErrBarX/Y ds le ntuple
24
25};
26
27#endif
28
29
30
31
Note: See TracBrowser for help on using the repository browser.