ROOT  6.06/09
Reference Guide
TDiamond.h
Go to the documentation of this file.
1 // @(#)root/graf:$Id$
2 // Author: Rene Brun 22/06/96
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 
12 #ifndef ROOT_TDiamond
13 #define ROOT_TDiamond
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TDiamond //
19 // //
20 // Diamond class. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 #ifndef ROOT_TPaveText
25 #include "TPaveText.h"
26 #endif
27 #ifndef ROOT_TAttLine
28 #include "TAttLine.h"
29 #endif
30 #ifndef ROOT_TAttFill
31 #include "TAttFill.h"
32 #endif
33 
34 
35 class TDiamond : public TPaveText {
36 
37 public:
38  TDiamond();
40  TDiamond(const TDiamond &diamond);
41  virtual ~TDiamond();
42  virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
43  virtual void Draw(Option_t *option="");
44  virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
45  virtual void Paint(Option_t *option="");
46  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
47 
48  ClassDef(TDiamond,1) //Diamond class
49 };
50 
51 #endif
52 
virtual void Draw(Option_t *option="")
Draw this diamond with its current attributes.
Definition: TDiamond.cxx:94
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Execute action corresponding to one event.
Definition: TDiamond.cxx:110
ClassDef(TAttBBox2D, 0)
const char Option_t
Definition: RtypesCore.h:62
virtual ~TDiamond()
Diamond destructor.
Definition: TDiamond.cxx:62
int Int_t
Definition: RtypesCore.h:41
static const double x2[5]
virtual void Paint(Option_t *option="")
Paint this diamond with its current attributes.
Definition: TDiamond.cxx:381
char * out
Definition: TBase64.cxx:29
Draw a Diamond.
Definition: TDiamond.h:35
static const double x1[5]
A Pave (see TPave) with text, lines or/and boxes inside.
Definition: TPaveText.h:35
double Double_t
Definition: RtypesCore.h:55
virtual Int_t DistancetoPrimitive(Int_t px, Int_t py)
Compute distance from point px,py to a diamond.
Definition: TDiamond.cxx:86
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Definition: TDiamond.cxx:440