Last change
on this file since 629 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
|
Rev | Line | |
---|
[165] | 1 | #ifndef PINTUPLE3D_H
|
---|
| 2 | #define PINTUPLE3D_H
|
---|
| 3 |
|
---|
[326] | 4 | #include "ntupintf.h"
|
---|
[165] | 5 | #include "pi3ddrw.h"
|
---|
| 6 |
|
---|
| 7 | class PINTuple3D : public PIDrawer3D {
|
---|
| 8 | public:
|
---|
[326] | 9 | PINTuple3D(NTupleInterface* nt, bool ad=false);
|
---|
[165] | 10 | virtual ~PINTuple3D();
|
---|
| 11 |
|
---|
[205] | 12 | virtual void Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax);
|
---|
[165] | 13 | virtual void UpdateLimits();
|
---|
| 14 |
|
---|
[486] | 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);
|
---|
[165] | 19 |
|
---|
| 20 |
|
---|
| 21 | protected:
|
---|
[326] | 22 | NTupleInterface* mNT;
|
---|
[165] | 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
|
---|
[486] | 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)
|
---|
[165] | 30 |
|
---|
| 31 | };
|
---|
| 32 |
|
---|
| 33 | #endif
|
---|
| 34 |
|
---|
| 35 |
|
---|
| 36 |
|
---|
| 37 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.