Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TGraphPolargram.h
Go to the documentation of this file.
1// @(#)root/graf:$Id$
2// Author: Sebastian Boser, 02/02/06
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_TGraphPolargram
13#define ROOT_TGraphPolargram
14
15#include "TAttText.h"
16#include "TAttLine.h"
17#include "TNamed.h"
18
19
20class TGraphPolargram: public TNamed, public TAttText, public TAttLine {
21
22private:
26
27 Color_t fPolarLabelColor; ///< Set color of the angular labels
28 Color_t fRadialLabelColor; ///< Set color of the radial labels
29
30 Double_t fAxisAngle; ///< Set angle of the radial axis
31 Double_t fPolarOffset; ///< Offset for Polar labels
32 Double_t fPolarTextSize; ///< Set Polar text size
33 Double_t fRadialOffset; ///< Offset for radial labels
35 Double_t fRwrmin; ///< Minimal radial value (real world)
36 Double_t fRwrmax; ///< Maximal radial value (real world)
37 Double_t fRwtmin; ///< Minimal angular value (real world)
38 Double_t fRwtmax; ///< Minimal angular value (real world)
39 Double_t fTickpolarSize; ///< Set size of Tickmarks
40
41 Font_t fPolarLabelFont; ///< Set font of angular labels
42 Font_t fRadialLabelFont; ///< Set font of radial labels
43
44 Int_t fCutRadial; ///< if fCutRadial = 0, circles are cut by radial axis
45 ///< if fCutRadial = 1, circles are not cut
46 Int_t fNdivRad; ///< Number of radial divisions
47 Int_t fNdivPol; ///< Number of polar divisions
48
49 TString* fPolarLabels; ///<! [fNdivPol] Specified polar labels
50
51 void Paint(Option_t* options="");
52 void PaintRadialDivisions(Bool_t drawaxis);
53 void PaintPolarDivisions(Bool_t noLabels);
54 void ReduceFraction(Int_t Num, Int_t Denom, Int_t &rnum, Int_t &rden);
55 void Init();
58
59public:
60 // TGraphPolarGram status bits
61 enum { kLabelOrtho = BIT(14)
62 };
63
64 TGraphPolargram(const char* name, Double_t rmin, Double_t rmax,
65 Double_t tmin, Double_t tmax);
66 TGraphPolargram(const char* name="");
67 virtual ~TGraphPolargram();
68
71
77 Double_t GetRMin() { return fRwrmin;};
78 Double_t GetRMax() { return fRwrmax;};
80 Double_t GetTMin() { return fRwtmin;};
81 Double_t GetTMax() { return fRwtmax;};
82
85
89
90 Bool_t IsDegree() {return fDegree;};
91 Bool_t IsRadian() {return fRadian;};
92 Bool_t IsGrad() {return fGrad;};
93
94 void ChangeRangePolar(Double_t tmin, Double_t tmax);
95 void Draw(Option_t* options="");
96 void ExecuteEvent(Int_t event, Int_t px, Int_t py);
98 Double_t phimin, Double_t phimax, Double_t theta);
99 void SetAxisAngle(Double_t angle = 0); //*MENU*
100 void SetNdivPolar(Int_t Ndiv = 508); //*MENU*
101 void SetNdivRadial(Int_t Ndiv = 508); //*MENU*
102 void SetPolarLabel(Int_t div, const TString & label);
103 void SetPolarLabelSize(Double_t angularsize = 0.04); //*MENU*
104 void SetPolarLabelColor(Color_t tcolorangular = 1); //*MENU*
105 void SetPolarLabelFont(Font_t tfontangular = 62); //*MENU*
106 void SetPolarOffset(Double_t PolarOffset=0.04); //*MENU*
107 void SetRadialOffset(Double_t RadialOffset=0.025); //*MENU*
108 void SetRadialLabelSize (Double_t radialsize = 0.035); //*MENU*
109 void SetRadialLabelColor(Color_t tcolorradial = 1); //*MENU*
110 void SetRadialLabelFont(Font_t tfontradial = 62); //*MENU*
111 void SetRangePolar(Double_t tmin, Double_t tmax); //*MENU*
112 void SetRangeRadial(Double_t rmin, Double_t rmax); //*MENU*
113 void SetTickpolarSize(Double_t tickpolarsize = 0.02); //*MENU*
114 void SetToDegree(); //*MENU*
115 void SetToGrad(); //*MENU*
116 void SetToRadian(); //*MENU*
117 void SetTwoPi();
118
119 ClassDef(TGraphPolargram,1); // Polar axis
120};
121
122#endif
ROOT::R::TRInterface & r
Definition Object.C:4
int Int_t
Definition RtypesCore.h:45
short Font_t
Definition RtypesCore.h:79
double Double_t
Definition RtypesCore.h:59
short Color_t
Definition RtypesCore.h:83
const char Option_t
Definition RtypesCore.h:66
#define ClassDef(name, id)
Definition Rtypes.h:325
#define BIT(n)
Definition Rtypes.h:85
char name[80]
Definition TGX11.cxx:110
Line Attributes class.
Definition TAttLine.h:18
Text Attributes class.
Definition TAttText.h:18
To draw polar axis.
Double_t fRwrmin
Minimal radial value (real world)
void ReduceFraction(Int_t Num, Int_t Denom, Int_t &rnum, Int_t &rden)
Reduce fractions.
Double_t GetPolarLabelSize()
Color_t fRadialLabelColor
Set color of the radial labels.
void SetPolarLabelColor(Color_t tcolorangular=1)
Set Polar labels color.
void PaintPolarDivisions(Bool_t noLabels)
Draw Polar divisions.
void SetRangePolar(Double_t tmin, Double_t tmax)
Allows to change range Polar.
Double_t fPolarTextSize
Set Polar text size.
Double_t fRwtmin
Minimal angular value (real world)
Double_t GetRadialOffset()
void Init()
Initialize some of the fields of TGraphPolargram.
Double_t fRadialTextSize
Double_t GetTickpolarSize()
void SetPolarOffset(Double_t PolarOffset=0.04)
Set the labels offset.
void SetTwoPi()
Set range from 0 to 2*pi.
Double_t FindTextAngle(Double_t theta)
Determine the orientation of the polar labels according to their angle.
void SetRadialLabelColor(Color_t tcolorradial=1)
Set radial labels color.
void PaintCircle(Double_t x, Double_t y, Double_t r, Double_t phimin, Double_t phimax, Double_t theta)
This is simplified from TEllipse::PaintEllipse.
virtual ~TGraphPolargram()
TGraphPolargram destructor.
void SetRangeRadial(Double_t rmin, Double_t rmax)
Set the radial range.
void SetTickpolarSize(Double_t tickpolarsize=0.02)
Set polar ticks size.
void SetAxisAngle(Double_t angle=0)
Set axis angle.
void SetToDegree()
The Polar circle is labelled using degree.
void SetNdivPolar(Int_t Ndiv=508)
Set the number of Polar divisions: enter a number ij with 0<i<99 and 0<j<99.
Int_t fNdivRad
Number of radial divisions.
Font_t GetPolarLabelFont()
void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Indicate that there is something to click here.
Double_t fTickpolarSize
Set size of Tickmarks.
void SetRadialLabelSize(Double_t radialsize=0.035)
Set radial labels size.
void Paint(Option_t *options="")
Paint TGraphPolargram.
Font_t fPolarLabelFont
Set font of angular labels.
TString * fPolarLabels
! [fNdivPol] Specified polar labels
void PaintRadialDivisions(Bool_t drawaxis)
Paint radial divisions.
void SetToGrad()
The Polar circle is labelled using gradian.
Double_t GetAngle()
void ChangeRangePolar(Double_t tmin, Double_t tmax)
Set the Polar range.
void SetPolarLabelSize(Double_t angularsize=0.04)
Set angular labels size.
void SetRadialLabelFont(Font_t tfontradial=62)
Set radial label font.
Double_t fAxisAngle
Set angle of the radial axis.
void SetToRadian()
The Polar circle is labelled using radian.
Double_t fRwtmax
Minimal angular value (real world)
Double_t fRwrmax
Maximal radial value (real world)
void SetPolarLabel(Int_t div, const TString &label)
Set some specified polar labels, used in the case of a spider plot.
Font_t fRadialLabelFont
Set font of radial labels.
Int_t fNdivPol
Number of polar divisions.
Double_t GetPolarOffset()
Font_t GetRadialLabelFont()
Int_t fCutRadial
if fCutRadial = 0, circles are cut by radial axis if fCutRadial = 1, circles are not cut
Color_t fPolarLabelColor
Set color of the angular labels.
Double_t fPolarOffset
Offset for Polar labels.
Int_t DistancetoPrimitive(Int_t px, Int_t py)
Everything within the circle belongs to the TGraphPolargram.
void SetPolarLabelFont(Font_t tfontangular=62)
void SetRadialOffset(Double_t RadialOffset=0.025)
Set the labels offset.
Color_t GetRadialColorLabel()
Int_t FindAlign(Double_t angle)
Find the alignement rule to apply for TText::SetTextAlign(Short_t).
void SetNdivRadial(Int_t Ndiv=508)
Set the number of radial divisions: enter a number ij with 0<i<99 and 0<j<99.
Double_t GetRadialLabelSize()
Color_t GetPolarColorLabel()
Double_t fRadialOffset
Offset for radial labels.
The TNamed class is the base class for all named ROOT classes.
Definition TNamed.h:29
Basic string class.
Definition TString.h:136
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
th1 Draw()