Diana Software
QGGraph.hh
Go to the documentation of this file.
1 #ifndef _QG_GRAPH_HH_
2 #define _QG_GRAPH_HH_
3 
11 #include "QGPlot.hh"
12 #include "TGraph.h"
13 
14 class QGGraph : public TGraph, public QGPlot {
15 public:
18 
20  QGGraph(const QGGraph&);
21 
23  virtual ~QGGraph();
24 
26  virtual const char *GetName() const;
27 
29  virtual void Reset();
30 
32  virtual void SetPoints(Int_t n, const Double_t *x, const Double_t *y);
33 
34 private:
35 
37 };
38 
39 #endif
Base class for scatter plots and pulses.
Definition: QGGraph.hh:14
virtual void Reset()
Reset the graph to an empty state.
Definition: QGGraph.cc:26
ClassDef(QGGraph, 0)
virtual ~QGGraph()
Destructor.
Definition: QGGraph.cc:17
QGGraph()
Default constructor.
virtual void SetPoints(Int_t n, const Double_t *x, const Double_t *y)
Set the points of the graph.
Definition: QGGraph.cc:31
virtual const char * GetName() const
Get graph name.
Definition: QGGraph.cc:21
Base class for GUI plots including histograms, scatter plots, pulses, and graphical cuts.
Definition: QGPlot.hh:21