ROOT  6.06/09
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 #ifndef ROOT_TObject
23 #include "TObject.h"
24 #endif
25 
26 class TGraph;
27 class TF1;
28 
29 class TVirtualGraphPainter : public TObject {
30 
31 private:
32  static TVirtualGraphPainter *fgPainter; //Pointer to class painter
33 
34 public:
36  virtual ~TVirtualGraphPainter() { }
37 
38  virtual Int_t DistancetoPrimitiveHelper(TGraph *theGraph, Int_t px, Int_t py) = 0;
39  virtual void DrawPanelHelper(TGraph *theGraph) = 0;
40  virtual void ExecuteEventHelper(TGraph *theGraph, Int_t event, Int_t px, Int_t py) = 0;
41  virtual char *GetObjectInfoHelper(TGraph *theGraph, Int_t px, Int_t py) const = 0;
42  virtual void PaintHelper(TGraph *theGraph, Option_t *option) = 0;
43  virtual void PaintGraph(TGraph *theGraph, Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt) = 0;
44  virtual void PaintGrapHist(TGraph *theGraph, Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt) = 0;
45  virtual void PaintStats(TGraph *theGraph, TF1 *fit) = 0;
46 
48  static void SetPainter(TVirtualGraphPainter *painter);
49 
50  ClassDef(TVirtualGraphPainter,0) //Abstract interface for histogram painters
51 };
52 
53 #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:254
static TVirtualGraphPainter * fgPainter
virtual Int_t DistancetoPrimitiveHelper(TGraph *theGraph, Int_t px, Int_t py)=0
double Double_t
Definition: RtypesCore.h:55
Double_t y[n]
Definition: legend1.C:17
static TVirtualGraphPainter * GetPainter()
Mother of all ROOT objects.
Definition: TObject.h:58
1-Dim function class
Definition: TF1.h:149
A Graph is a graphics object made of two arrays X and Y with npoints each.
Definition: TGraph.h:53
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