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

Last change on this file since 341 was 333, checked in by ercodmgr, 26 years ago

Trace de NTuple en 2D avec Marker de taille proportionnelle a Weight
Introduction des repertoires dans la gestion d'objets NameObjMgr
Reorganisation NamedObjMgr et Services2NObjMgr, ajout de commandes , ...
Reza 12/7/99

File size: 969 bytes
RevLine 
[165]1#ifndef PINTUPLE_H
2#define PINTUPLE_H
3
[326]4#include "ntupintf.h"
[165]5#include "pidrawer.h"
6
7class PINTuple : public PIDrawer {
8public:
[326]9 PINTuple(NTupleInterface* nt, bool ad);
[165]10 virtual ~PINTuple();
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(const char* px, const char* py);
[333]16 void SelectWt(const char* pw=NULL, int nbins=10);
[165]17 void SelectErrBar(const char* erbx=NULL, const char* erby=NULL);
18
19
20protected:
[326]21 NTupleInterface* mNT;
[165]22 bool mAdDO;
23 int xK, yK; // Index du nom de variable en X/Y ds le ntuple
24 int xebK, yebK; // Index du nom de variable en ErrBarX/Y ds le ntuple
[333]25 int wK; // Index du nom de variable poids
26 double wMin, wMax; // Valeurs de poids min/max
27 int nWbins; // Nombre de bins pour le poids (Wt)
[165]28
29};
30
31#endif
32
33
34
35
Note: See TracBrowser for help on using the repository browser.