ROOT
Version v6.34
master
v6.32
Reference Guide
►
ROOT
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
palettes.C
Go to the documentation of this file.
1
/// \file
2
/// \ingroup tutorial_graphics
3
/// \notebook
4
/// This macro draws all the high definition palettes available in ROOT.
5
/// It generates a png file for each palette and one pdf file, with a table of
6
/// content, containing all the palettes.
7
///
8
/// In ROOT, [more than 60 high quality palettes are predefined with 255 colors each](https://root.cern/doc/master/classTColor.html#C06).
9
///
10
/// These palettes can be accessed "by name" with `gStyle->SetPalette(num)`. num
11
/// can be taken within the enum given in the previous link. As an example
12
/// `gStyle->SetPalette(kCividis)` will select the following palette.
13
///
14
/// \macro_image
15
/// \macro_code
16
///
17
/// \author Olivier Couet
18
19
TCanvas
*
c
=
nullptr
;
20
21
void
draw_palette
(
int
p
,
TString
n
)
22
{
23
delete
c
;
24
c
=
new
TCanvas
(
"c"
,
"Contours"
,0,0,500,500);
25
TF2
*f2 =
new
TF2
(
"f2"
,
"0.1+(1-(x-2)*(x-2))*(1-(y-2)*(y-2))"
,0.999,3.002,0.999,3.002);
26
f2->
SetContour
(99);
27
gStyle
->
SetPalette
(
p
);
28
f2->
SetLineWidth
(1);
29
f2->
SetLineColor
(
kBlack
);
30
f2->
Draw
(
"surf1z"
);
31
32
// Title
33
TPaveText
*
pt
=
new
TPaveText
(10,11,10,11,
"blNDC"
);
34
pt
->
SetName
(
"title"
);
35
pt
->
Draw
();
36
TString
num =
n
;
37
num.
ReplaceAll
(
" "
,
""
);
38
TLatex
*
l
=
new
TLatex
(-0.8704441,0.9779387,
TString::Format
(
"Palette #%d: %s #scale[0.7]{(#font[82]{k%s})}"
,
p
,
n
.Data(),num.
Data
()));
39
l
->SetTextFont(42);
40
l
->SetTextSize(0.035);
41
l
->
Draw
();
42
c
->Update();
43
c
->Print(
TString::Format
(
"palette_%d.png"
,
p
));
44
45
TString
opt =
TString
(
"Title:"
) +
n
;
46
if
(
p
==
kDeepSea
)
47
c
->Print(
"palettes.pdf("
, opt.
Data
());
48
else
if
(
p
==
kCividis
)
49
c
->Print(
"palettes.pdf)"
, opt.
Data
());
50
else
51
c
->Print(
"palettes.pdf"
, opt.
Data
());
52
}
53
54
void
palettes
()
55
{
56
gROOT
->SetBatch(1);
57
draw_palette
(
kDeepSea
,
"Deap Sea"
);
58
draw_palette
(
kGreyScale
,
"Grey Scale"
);
59
draw_palette
(
kDarkBodyRadiator
,
"Dark Body Radiator"
);
60
draw_palette
(
kBlueYellow
,
"Blue Yellow"
);
61
draw_palette
(
kRainBow
,
"Rain Bow"
);
62
draw_palette
(
kInvertedDarkBodyRadiator
,
"Inverted Dark Body Radiator"
);
63
draw_palette
(
kBird
,
"Bird"
);
64
draw_palette
(
kCubehelix
,
"Cube helix"
);
65
draw_palette
(
kGreenRedViolet
,
"Green Red Violet"
);
66
draw_palette
(
kBlueRedYellow
,
"Blue Red Yellow"
);
67
draw_palette
(
kOcean
,
"Ocean"
);
68
draw_palette
(
kColorPrintableOnGrey
,
"Color Printable On Grey"
);
69
draw_palette
(
kAlpine
,
"Alpine"
);
70
draw_palette
(
kAquamarine
,
"Aquamarine"
);
71
draw_palette
(
kArmy
,
"Army"
);
72
draw_palette
(
kAtlantic
,
"Atlantic"
);
73
draw_palette
(
kAurora
,
"Aurora"
);
74
draw_palette
(
kAvocado
,
"Avocado"
);
75
draw_palette
(
kBeach
,
"Beach"
);
76
draw_palette
(
kBlackBody
,
"Black Body"
);
77
draw_palette
(
kBlueGreenYellow
,
"Blue Green Yellow"
);
78
draw_palette
(
kBrownCyan
,
"Brown Cyan"
);
79
draw_palette
(
kCMYK
,
"CMYK"
);
80
draw_palette
(
kCandy
,
"Candy"
);
81
draw_palette
(
kCherry
,
"Cherry"
);
82
draw_palette
(
kCoffee
,
"Coffee"
);
83
draw_palette
(
kDarkRainBow
,
"Dark Rain Bow"
);
84
draw_palette
(
kDarkTerrain
,
"Dark Terrain"
);
85
draw_palette
(
kFall
,
"Fall"
);
86
draw_palette
(
kFruitPunch
,
"Fruit Punch"
);
87
draw_palette
(
kFuchsia
,
"Fuchsia"
);
88
draw_palette
(
kGreyYellow
,
"Grey Yellow"
);
89
draw_palette
(
kGreenBrownTerrain
,
"Green Brown Terrain"
);
90
draw_palette
(
kGreenPink
,
"Green Pink"
);
91
draw_palette
(
kIsland
,
"Island"
);
92
draw_palette
(
kLake
,
"Lake"
);
93
draw_palette
(
kLightTemperature
,
"Light Temperature"
);
94
draw_palette
(
kLightTerrain
,
"Light Terrain"
);
95
draw_palette
(
kMint
,
"Mint"
);
96
draw_palette
(
kNeon
,
"Neon"
);
97
draw_palette
(
kPastel
,
"Pastel"
);
98
draw_palette
(
kPearl
,
"Pearl"
);
99
draw_palette
(
kPigeon
,
"Pigeon"
);
100
draw_palette
(
kPlum
,
"Plum"
);
101
draw_palette
(
kRedBlue
,
"Red Blue"
);
102
draw_palette
(
kRose
,
"Rose"
);
103
draw_palette
(
kRust
,
"Rust"
);
104
draw_palette
(
kSandyTerrain
,
"Sandy Terrain"
);
105
draw_palette
(
kSienna
,
"Sienna"
);
106
draw_palette
(
kSolar
,
"Solar"
);
107
draw_palette
(
kSouthWest
,
"South West"
);
108
draw_palette
(
kStarryNight
,
"Starry Night"
);
109
draw_palette
(
kSunset
,
"Sunset"
);
110
draw_palette
(
kTemperatureMap
,
"Temperature Map"
);
111
draw_palette
(
kThermometer
,
"Thermometer"
);
112
draw_palette
(
kValentine
,
"Valentine"
);
113
draw_palette
(
kVisibleSpectrum
,
"Visible Spectrum"
);
114
draw_palette
(
kWaterMelon
,
"Water Melon"
);
115
draw_palette
(
kCool
,
"Cool"
);
116
draw_palette
(
kCopper
,
"Copper"
);
117
draw_palette
(
kGistEarth
,
"Gist Earth"
);
118
draw_palette
(
kViridis
,
"Viridis"
);
119
draw_palette
(
kCividis
,
"Cividis"
);
120
}
121
c
#define c(i)
Definition
RSha256.hxx:101
kBlack
@ kBlack
Definition
Rtypes.h:65
TRangeDynCast
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Definition
TCollection.h:358
kFall
@ kFall
Definition
TColor.h:125
kStarryNight
@ kStarryNight
Definition
TColor.h:133
kAtlantic
@ kAtlantic
Definition
TColor.h:121
kIsland
@ kIsland
Definition
TColor.h:127
kBlackBody
@ kBlackBody
Definition
TColor.h:122
kFruitPunch
@ kFruitPunch
Definition
TColor.h:125
kArmy
@ kArmy
Definition
TColor.h:120
kAurora
@ kAurora
Definition
TColor.h:121
kBrownCyan
@ kBrownCyan
Definition
TColor.h:123
kBeach
@ kBeach
Definition
TColor.h:122
kAquamarine
@ kAquamarine
Definition
TColor.h:120
kPastel
@ kPastel
Definition
TColor.h:129
kCubehelix
@ kCubehelix
Definition
TColor.h:118
kAvocado
@ kAvocado
Definition
TColor.h:121
kGreenRedViolet
@ kGreenRedViolet
Definition
TColor.h:118
kAlpine
@ kAlpine
Definition
TColor.h:120
kVisibleSpectrum
@ kVisibleSpectrum
Definition
TColor.h:134
kCMYK
@ kCMYK
Definition
TColor.h:123
kInvertedDarkBodyRadiator
@ kInvertedDarkBodyRadiator
Definition
TColor.h:117
kWaterMelon
@ kWaterMelon
Definition
TColor.h:135
kOcean
@ kOcean
Definition
TColor.h:119
kDarkBodyRadiator
@ kDarkBodyRadiator
Definition
TColor.h:116
kDarkTerrain
@ kDarkTerrain
Definition
TColor.h:125
kLightTemperature
@ kLightTemperature
Definition
TColor.h:128
kRust
@ kRust
Definition
TColor.h:131
kCopper
@ kCopper
Definition
TColor.h:135
kTemperatureMap
@ kTemperatureMap
Definition
TColor.h:133
kSolar
@ kSolar
Definition
TColor.h:132
kRedBlue
@ kRedBlue
Definition
TColor.h:130
kDeepSea
@ kDeepSea
Definition
TColor.h:116
kRainBow
@ kRainBow
Definition
TColor.h:117
kSouthWest
@ kSouthWest
Definition
TColor.h:132
kPlum
@ kPlum
Definition
TColor.h:130
kGreenBrownTerrain
@ kGreenBrownTerrain
Definition
TColor.h:126
kGreyYellow
@ kGreyYellow
Definition
TColor.h:126
kGreyScale
@ kGreyScale
Definition
TColor.h:116
kRose
@ kRose
Definition
TColor.h:131
kSunset
@ kSunset
Definition
TColor.h:133
kCoffee
@ kCoffee
Definition
TColor.h:124
kGreenPink
@ kGreenPink
Definition
TColor.h:127
kColorPrintableOnGrey
@ kColorPrintableOnGrey
Definition
TColor.h:119
kSienna
@ kSienna
Definition
TColor.h:132
kBlueYellow
@ kBlueYellow
Definition
TColor.h:117
kBlueRedYellow
@ kBlueRedYellow
Definition
TColor.h:119
kValentine
@ kValentine
Definition
TColor.h:134
kSandyTerrain
@ kSandyTerrain
Definition
TColor.h:131
kDarkRainBow
@ kDarkRainBow
Definition
TColor.h:124
kViridis
@ kViridis
Definition
TColor.h:136
kCandy
@ kCandy
Definition
TColor.h:123
kCherry
@ kCherry
Definition
TColor.h:124
kNeon
@ kNeon
Definition
TColor.h:129
kBird
@ kBird
Definition
TColor.h:118
kFuchsia
@ kFuchsia
Definition
TColor.h:126
kBlueGreenYellow
@ kBlueGreenYellow
Definition
TColor.h:122
kPearl
@ kPearl
Definition
TColor.h:129
kPigeon
@ kPigeon
Definition
TColor.h:130
kCividis
@ kCividis
Definition
TColor.h:136
kCool
@ kCool
Definition
TColor.h:135
kLake
@ kLake
Definition
TColor.h:127
kMint
@ kMint
Definition
TColor.h:128
kGistEarth
@ kGistEarth
Definition
TColor.h:136
kThermometer
@ kThermometer
Definition
TColor.h:134
kLightTerrain
@ kLightTerrain
Definition
TColor.h:128
p
winID h TVirtualViewer3D TVirtualGLPainter p
Definition
TGWin32VirtualGLProxy.cxx:51
gROOT
#define gROOT
Definition
TROOT.h:406
gStyle
R__EXTERN TStyle * gStyle
Definition
TStyle.h:436
TAttLine::SetLineWidth
virtual void SetLineWidth(Width_t lwidth)
Set the line width.
Definition
TAttLine.h:43
TAttLine::SetLineColor
virtual void SetLineColor(Color_t lcolor)
Set the line color.
Definition
TAttLine.h:40
TCanvas
The Canvas class.
Definition
TCanvas.h:23
TF2
A 2-Dim function with parameters.
Definition
TF2.h:29
TF2::SetContour
virtual void SetContour(Int_t nlevels=20, const Double_t *levels=nullptr)
Set the number and values of contour levels.
Definition
TF2.cxx:892
TF2::Draw
void Draw(Option_t *option="") override
Draw this function with its current attributes.
Definition
TF2.cxx:259
TLatex
To draw Mathematical Formula.
Definition
TLatex.h:18
TObject::Draw
virtual void Draw(Option_t *option="")
Default Draw method for all objects.
Definition
TObject.cxx:280
TPaveText
A Pave (see TPave) with text, lines or/and boxes inside.
Definition
TPaveText.h:21
TPaveText::Draw
void Draw(Option_t *option="") override
Draw this pavetext with its current attributes.
Definition
TPaveText.cxx:242
TPave::SetName
virtual void SetName(const char *name="")
Definition
TPave.h:79
TString
Basic string class.
Definition
TString.h:139
TString::Data
const char * Data() const
Definition
TString.h:376
TString::ReplaceAll
TString & ReplaceAll(const TString &s1, const TString &s2)
Definition
TString.h:704
TString::Format
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
Definition
TString.cxx:2378
TStyle::SetPalette
void SetPalette(Int_t ncolors=kBird, Int_t *colors=nullptr, Float_t alpha=1.)
See TColor::SetPalette.
Definition
TStyle.cxx:1888
pt
TPaveText * pt
Definition
entrylist_figure1.C:7
n
const Int_t n
Definition
legend1.C:16
l
TLine l
Definition
textangle.C:4
tutorials
graphics
palettes.C
ROOT tags/6-34-04 - Reference Guide Generated on Sun Mar 23 2025 14:39:08 (GVA Time) using Doxygen 1.10.0