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

Last change on this file since 440 was 344, checked in by ercodmgr, 26 years ago

1/ Extension de fonctionalites de gestion de repertoires (Lock, ...)
2/ Plus de NTupIntf_Adapter quand les objets heritent de NTupleInterface
3/ Support pour affichage info texte, ds PINtuple et PIStarList

File size: 1.2 KB
RevLine 
[344]1// This may look like C code, but it is really -*- C++ -*-
2// Module PI : Peida Interactive PINTuple et PINTupleWdg
3// Traceur d objet de type NTupleInterface
4
[165]5#ifndef PINTUPLE_H
6#define PINTUPLE_H
7
[326]8#include "ntupintf.h"
[165]9#include "pidrawer.h"
10
11class PINTuple : public PIDrawer {
12public:
[326]13 PINTuple(NTupleInterface* nt, bool ad);
[165]14 virtual ~PINTuple();
15
[205]16 virtual void Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax);
[165]17 virtual void UpdateLimits();
18
[344]19 virtual void SelectXY(const char* px, const char* py);
20 virtual void SelectWt(const char* pw=NULL, int nbins=10);
21 virtual void SelectErrBar(const char* erbx=NULL, const char* erby=NULL);
[165]22
[344]23 virtual void AppendTextInfo(string& info, double xmin, double ymin, double xmax, double ymax);
[165]24
25protected:
[326]26 NTupleInterface* mNT;
[165]27 bool mAdDO;
28 int xK, yK; // Index du nom de variable en X/Y ds le ntuple
29 int xebK, yebK; // Index du nom de variable en ErrBarX/Y ds le ntuple
[333]30 int wK; // Index du nom de variable poids
31 double wMin, wMax; // Valeurs de poids min/max
32 int nWbins; // Nombre de bins pour le poids (Wt)
[165]33
34};
35
36#endif
37
38
39
40
Note: See TracBrowser for help on using the repository browser.