#ifndef PINTUPLE_H #define PINTUPLE_H #include "ntuple.h" #include "piscdrawwdg.h" class PINTuple : public PIScDrawer { public: PINTuple(NTuple* nt, bool ad); virtual ~PINTuple(); virtual void Draw(PIGraphicUC* g, float xmin, float ymin, float xmax, float ymax); virtual void UpdateSize(); void SelectXY(char* px, char* py); void SelectErrBar(char* erbx=NULL, char* erby=NULL); protected: NTuple* mNT; int xK, yK; // Index du nom de variable en X/Y ds le ntuple int xebK, yebK; // Index du nom de variable en ErrBarX/Y ds le ntuple }; #endif