ROOT
Version v6.32
master
v6.34
v6.30
v6.28
v6.26
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
Reference Guide
▼
ROOT
ROOT Reference Documentation
Tutorials
▼
Functional Parts
►
Core ROOT classes
►
std Extension classes
►
Parallelized classes
►
The Geometry Package
►
Graphics
►
Event display with ROOT7
►
GUI
►
Web Widgets
►
Web Display
►
Histogram Library
►
Input/Output Library
►
Math
►
N-D parametric functions
►
VecOps
►
Monte Carlo
►
HTTP server
►
PROOF
►
TMVA
►
RooFit
►
Dataframe
►
ROOT7 classes
►
NTuple-related classes
►
Tree Library
►
TreePlayer Library
▼
Tutorials
▼
Histograms tutorials
candledecay.C
candlehisto.C
candleplot.C
candleplotoption.C
candleplotstack.C
candleplotwhiskers.C
candlescaled.C
ContourList.C
cumulative.C
draw2dopt.C
DynamicSlice.C
exec1.C
exec2.C
Fibonacci.C
fillhistosauto2p.C
fillrandom.C
fillrandom.py
FirstContour.C
greyscale.C
h1ReadAndDraw.C
h2_cut.C
h2proj.C
hbars.C
histpalettecolor.C
hksimple.C
hlabels1.C
hlabels2.C
hlHisto1.C
hlHisto2.C
hlHisto3.C
hlHisto4.C
hstack.C
hsum.C
hsumTimer.C
legendautoplaced.C
logscales.C
movepalette.C
multicolor.C
NormalizeHistogram.C
ratioplot1.C
ratioplot1.py
ratioplot2.C
ratioplot2.py
ratioplot3.C
ratioplot3.py
ratioplot4.C
ratioplot4.py
ratioplot5.C
ratioplot5.py
ratioplot6.C
ratioplot6.py
ratioplotOld.C
rebin.C
reverseaxis.C
sparsehist.C
statsEditing.C
testSmooth.C
th2polyBoxes.C
th2polyEurope.C
th2polyHoneycomb.C
th2polyUSA.C
thstack2palettecolor.C
thstackpalettecolor.C
tprofile2polyRealistic.C
tprofile2polyRealisticModuleError.C
transpad.C
twoscales.C
twoscales.py
xyplot.C
ZoomHistogram.C
►
Tree tutorials
►
Dataframe tutorials
►
ROOT 7 tutorials
►
FOAM tutorials
►
Containers tutorials
►
Event display tutorials
►
Event display ROOT7 tutorials
►
Geometry tutorials
►
Fast Fourier Transforms tutorials
►
Fit Tutorials
►
RooFit Tutorials
►
Graphs tutorials
►
Graphics tutorials
►
OpenGL tutorials
►
Tutorials specific to Mac/Cocoa
►
GUI tutorials
►
HistFactory Tutorials
►
HTTP tutorials
►
Image tutorials
►
IO tutorials
►
Math tutorials
►
Matrix tutorials
►
Monte Carlo tutorials
►
Multicore tutorials
►
Net tutorials
►
Physics tutorials
►
PyRoot tutorials
►
Pythia tutorials
►
Quadratic programming package.
►
R tutorials
►
RooStats Tutorials
►
Spectrum tutorials
►
TSPlot tutorials
►
SQL tutorials
►
TMVA tutorials
►
TUnfold tutorials
►
Unuran tutorials
►
VecOps tutorials
►
FITS files interface tutorials
►
XML tutorials
►
Proof tutorials
►
Webgui tutorials
►
Legacy tutorials
demos.C
demoshelp.C
hsimple.C
rootlogoff.C
rootlogon.C
►
R Interface for Statistical Computing
►
Namespaces
►
All Classes
►
Files
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
greyscale.C File Reference
Tutorials
»
Histograms tutorials
Detailed Description
Create grey scale of
200 x 200
boxes.
void
greyscale
()
{
TCanvas
*
c
=
new
TCanvas
(
"grey"
,
"Grey Scale"
, 500, 500);
c
->SetBorderMode(0);
Int_t
n
= 200;
// tunable parameter
Float_t
n1
= 1./
n
;
for
(
int
i = 0; i <
n
; i++) {
for
(
int
j
= 0;
j
<
n
;
j
++) {
TBox
*
b
=
new
TBox
(
n1
*
j
,
n1
*(
n
-1-i),
n1
*(
j
+1),
n1
*(
n
-i));
Float_t
grey
=
Float_t
(i*
n
+
j
)/(
n
*
n
);
b
->SetFillColor(
TColor::GetColor
(
grey
,
grey
,
grey
));
b
->Draw();
}
}
TPad
*
p
=
new
TPad
(
"p"
,
"p"
,0.3, 0.3, 0.7,0.7);
const
char
*
guibackground
=
gEnv
->
GetValue
(
"Gui.BackgroundColor"
,
""
);
p
->SetFillColor(
TColor::GetColor
(
guibackground
));
p
->Draw();
p
->cd();
TText
*t =
new
TText
(0.5, 0.5,
"GUI Background Color"
);
t->
SetTextAlign
(22);
t->
SetTextSize
(.09);
t->
Draw
();
c
->SetEditable(
kFALSE
);
}
b
#define b(i)
Definition
RSha256.hxx:100
c
#define c(i)
Definition
RSha256.hxx:101
Int_t
int Int_t
Definition
RtypesCore.h:45
Float_t
float Float_t
Definition
RtypesCore.h:57
kFALSE
constexpr Bool_t kFALSE
Definition
RtypesCore.h:101
TRangeDynCast
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Definition
TCollection.h:358
gEnv
R__EXTERN TEnv * gEnv
Definition
TEnv.h:170
p
winID h TVirtualViewer3D TVirtualGLPainter p
Definition
TGWin32VirtualGLProxy.cxx:51
ROOT::Detail::TRangeCast
Definition
TCollection.h:311
TAttText::SetTextAlign
virtual void SetTextAlign(Short_t align=11)
Set the text alignment.
Definition
TAttText.h:42
TAttText::SetTextSize
virtual void SetTextSize(Float_t tsize=1)
Set the text size.
Definition
TAttText.h:47
TBox
Create a Box.
Definition
TBox.h:22
TCanvas
The Canvas class.
Definition
TCanvas.h:23
TColor::GetColor
static Int_t GetColor(const char *hexcolor)
Static method returning color number for color specified by hex color string of form: "#rrggbb",...
Definition
TColor.cxx:1839
TEnv::GetValue
virtual Int_t GetValue(const char *name, Int_t dflt) const
Returns the integer value for a resource.
Definition
TEnv.cxx:491
TObject::Draw
virtual void Draw(Option_t *option="")
Default Draw method for all objects.
Definition
TObject.cxx:274
TPad
The most important graphics class in the ROOT system.
Definition
TPad.h:28
TText
Base class for several text objects.
Definition
TText.h:22
n
const Int_t n
Definition
legend1.C:16
Author
Olivier Couet
Definition in file
greyscale.C
.
tutorials
graphics
greyscale.C
ROOT v6-32 - Reference Guide Generated on Wed Apr 2 2025 08:24:55 (GVA Time) using Doxygen 1.10.0