Loading [MathJax]/extensions/tex2jax.js
ROOT
6.14/05
Reference Guide
ROOT Home
Main Page
Tutorials
Functional Parts
+
Namespaces
Namespace List
+
Namespace Members
+
All
<
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
<
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
u
w
x
+
Enumerations
a
e
f
g
m
p
t
v
w
y
+
Enumerator
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
w
+
All Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
w
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
f
+
Related Functions
:
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Files
File List
+
File Members
+
All
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerations
c
e
f
i
l
m
p
r
u
x
+
Enumerator
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
u
v
w
+
Macros
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
tutorials
graphics
manyaxis.C File Reference
Tutorials
»
Graphics tutorials
Detailed Description
Show several
TGaxis
formats.
void
manyaxis()
{
TCanvas
* c1 =
new
TCanvas
(
"c1"
,
"Examples of Gaxis"
,10,10,700,500);
c1->
Range
(-10,-1,10,1);
TGaxis
*axis1 =
new
TGaxis
(-5,-0.2,6,-0.2,-6,8,510,
""
);
axis1->
SetName
(
"axis1"
);
axis1->
Draw
();
TGaxis
*axis2 =
new
TGaxis
(-5,0.2,6,0.2,0.001,10000,510,
"G"
);
axis2->
SetName
(
"axis2"
);
axis2->
Draw
();
TGaxis
*axis3 =
new
TGaxis
(-9,-0.8,-9,0.8,-8,8,50510,
""
);
axis3->
SetName
(
"axis3"
);
axis3->
Draw
();
TGaxis
*axis4 =
new
TGaxis
(-7,-0.8,-7,0.8,1,10000,50510,
"G"
);
axis4->
SetName
(
"axis4"
);
axis4->
Draw
();
TGaxis
*axis5 =
new
TGaxis
(-5,-0.6,6,-0.6,1.2,1.32,80506,
"-+"
);
axis5->
SetName
(
"axis5"
);
axis5->
SetLabelSize
(0.03);
axis5->
SetTextFont
(72);
axis5->
SetLabelOffset
(0.025);
axis5->
Draw
();
TGaxis
*axis6 =
new
TGaxis
(-5,0.6,6,0.6,100,900,50510,
"-"
);
axis6->
SetName
(
"axis6"
);
axis6->
Draw
();
TGaxis
*axis7 =
new
TGaxis
(8,-0.8,8,0.8,0,9000,50510,
"+L"
);
axis7->
SetName
(
"axis7"
);
axis7->
SetLabelOffset
(0.01);
axis7->
Draw
();
}
Author
Olivier Couet
Definition in file
manyaxis.C
.