source: Sophya/trunk/SophyaPI/PIext/pintup3d.h@ 776

Last change on this file since 776 was 486, checked in by ercodmgr, 26 years ago

Adapatation a NTupleInterface::GetCelltoString() et ajout trace Label ds PINTuple/3D et Wt ds PINtuple3D - Reza 21/10/99

File size: 1.2 KB
Line 
1#ifndef PINTUPLE3D_H
2#define PINTUPLE3D_H
3
4#include "ntupintf.h"
5#include "pi3ddrw.h"
6
7class PINTuple3D : public PIDrawer3D {
8public:
9 PINTuple3D(NTupleInterface* nt, bool ad=false);
10 virtual ~PINTuple3D();
11
12 virtual void Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax);
13 virtual void UpdateLimits();
14
15 virtual void SelectXYZ(const char* px, const char* py, const char* pz);
16 virtual void SelectWt(const char* pw=NULL, int nbins=10);
17 virtual void SelectErrBar(const char* erbx=NULL, const char* erby=NULL, const char* erbz=NULL);
18 virtual void SelectLabel(const char* plabel);
19
20
21protected:
22 NTupleInterface* mNT;
23 bool mAdDO;
24 int xK, yK, zK; // Index du nom de variable en X/Y/Z ds le ntuple
25 int xebK, yebK, zebK; // Index du nom de variable en ErrBarX/Y/Z ds le ntuple
26 int wK; // Index du nom de variable poids
27 int lK; // Index du nom de variable label (affiche en texte)
28 double wMin, wMax; // Valeurs de poids min/max
29 int nWbins; // Nombre de bins pour le poids (Wt)
30
31};
32
33#endif
34
35
36
37
Note: See TracBrowser for help on using the repository browser.