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

Last change on this file since 2373 was 2373, checked in by ansari, 22 years ago

Ajout possibilite de trace de marker suivant table de couleur/poids ds PINTuple/PINTuple3D - Reza 25/04/03

File size: 2.3 KB
Line 
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
5#ifndef PINTUPLE_H
6#define PINTUPLE_H
7
8#include "ntupintf.h"
9#include "pidrawer.h"
10
11class PINTuple : public PIDrawer {
12public:
13 PINTuple(NTupleInterface* nt, bool ad);
14 virtual ~PINTuple();
15
16
17 virtual void Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax);
18 virtual void UpdateLimits();
19
20 virtual void SelectXY(const char* px, const char* py);
21 virtual void SelectWt(const char* pw=NULL);
22 virtual void SelectErrBar(const char* erbx=NULL, const char* erby=NULL);
23 virtual void SelectLabel(const char* plabel=NULL);
24
25 inline void ConnectPoints(bool fg=false) { connectPts = fg; }
26
27 // Gestion de la representation de poids
28 inline void UseSizeScale(bool fg=true, int nbins=5)
29 { mrkSzScale = fg; if (nbins>0) nWbins = nbins; }
30 inline void UseColorScale(bool fg=true) { colorScale = fg; }
31
32 inline bool GetSizeScale(int& nbins)
33 { nbins = nWbins; return mrkSzScale; }
34 inline bool GetColScale() { return colorScale; }
35
36 inline void SetStats(bool fg=true) { stats = fg; }
37
38 virtual void AppendTextInfo(string& info, double xmin, double ymin, double xmax, double ymax);
39
40// Methode de decodage des options
41 virtual int DecodeOptionString(vector<string> & opt, bool rmdecopt=true);
42// Texte d'aide des options disponibles
43 virtual void GetOptionsHelpInfo(string& info);
44
45protected:
46 NTupleInterface* mNT;
47 bool mAdDO;
48 int xK, yK; // Index du nom de variable en X/Y ds le ntuple
49 int xebK, yebK; // Index du nom de variable en ErrBarX/Y ds le ntuple
50 int wK; // Index du nom de variable poids
51 int lK; // Index du nom de variable label (affiche en texte)
52 double wMin, wMax; // Valeurs de poids min/max
53 bool mrkSzScale; // true -> Taille de markers variable suivant poids
54 int nWbins; // Nombre de bins taille de marker variable
55 bool colorScale; // true -> Couleur de marker variable suivant poids
56 bool stats; // true -> indication du nb de points
57 bool connectPts; // true -> les points sont relies par une ligne
58};
59
60#endif
61
62
63
64
Note: See TracBrowser for help on using the repository browser.