Logo ROOT   6.14/05
Reference Guide
TVirtualGraphPainter.h
Go to the documentation of this file.
1 // @(#)root/hist:$Id$
2 // Author: Olivier Couet 20/05/08
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 #ifndef ROOT_TVirtualGraphPainter
12 #define ROOT_TVirtualGraphPainter
13 
14 //////////////////////////////////////////////////////////////////////////
15 // //
16 // TVirtualGraphPainter //
17 // //
18 // Abstract base class for Graph painters //
19 // //
20 //////////////////////////////////////////////////////////////////////////
21 
22 #include "TObject.h"
23 
24 class TGraph;
25 class TF1;
26 
27 class TVirtualGraphPainter : public TObject {
28 
29 private:
30  static TVirtualGraphPainter *fgPainter; //Pointer to class painter
31 
32 public:
34  virtual ~TVirtualGraphPainter() { }
35 
36  virtual Int_t DistancetoPrimitiveHelper(TGraph *theGraph, Int_t px, Int_t py) = 0;
37  virtual void DrawPanelHelper(TGraph *theGraph) = 0;
38  virtual void ExecuteEventHelper(TGraph *theGraph, Int_t event, Int_t px, Int_t py) = 0;
39  virtual char *GetObjectInfoHelper(TGraph *theGraph, Int_t px, Int_t py) const = 0;
40  virtual void PaintHelper(TGraph *theGraph, Option_t *option) = 0;
41  virtual void PaintGraph(TGraph *theGraph, Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt) = 0;
42  virtual void PaintGrapHist(TGraph *theGraph, Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt) = 0;
43  virtual void PaintStats(TGraph *theGraph, TF1 *fit) = 0;
44 
46  static void SetPainter(TVirtualGraphPainter *painter);
47 
48  ClassDef(TVirtualGraphPainter,0) //Abstract interface for histogram painters
49 };
50 
51 #endif
virtual void PaintHelper(TGraph *theGraph, Option_t *option)=0
Abstract interface to a histogram painter.
virtual void DrawPanelHelper(TGraph *theGraph)=0
const char Option_t
Definition: RtypesCore.h:62
int Int_t
Definition: RtypesCore.h:41
virtual char * GetObjectInfoHelper(TGraph *theGraph, Int_t px, Int_t py) const =0
static void SetPainter(TVirtualGraphPainter *painter)
Static function to set an alternative histogram painter.
Double_t x[n]
Definition: legend1.C:17
#define ClassDef(name, id)
Definition: Rtypes.h:320
static TVirtualGraphPainter * fgPainter
virtual Int_t DistancetoPrimitiveHelper(TGraph *theGraph, Int_t px, Int_t py)=0
static TVirtualGraphPainter * GetPainter()
Static function returning a pointer to the current graph painter.
double Double_t
Definition: RtypesCore.h:55
Double_t y[n]
Definition: legend1.C:17
Mother of all ROOT objects.
Definition: TObject.h:37
1-Dim function class
Definition: TF1.h:211
A Graph is a graphics object made of two arrays X and Y with npoints each.
Definition: TGraph.h:41
virtual void ExecuteEventHelper(TGraph *theGraph, Int_t event, Int_t px, Int_t py)=0
virtual void PaintStats(TGraph *theGraph, TF1 *fit)=0
virtual void PaintGrapHist(TGraph *theGraph, Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt)=0
virtual void PaintGraph(TGraph *theGraph, Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt)=0