Loading [MathJax]/extensions/tex2jax.js
ROOT
6.08/07
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
+
Namespaces
Namespace List
+
Namespace Members
+
All
2
3
<
_
a
b
c
d
e
f
g
h
i
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
2
3
a
b
c
d
e
f
g
h
i
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
l
m
n
o
p
q
r
s
u
v
x
+
Enumerations
a
d
e
f
g
h
m
p
t
v
w
y
+
Enumerator
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
u
v
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
k
l
m
n
o
p
r
s
t
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
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
k
l
m
n
o
p
r
s
v
w
x
y
z
+
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
eve
arrow.C File Reference
Tutorials
»
Event display tutorials
Detailed Description
Demonstrates usage of
TEveArrow
class.
TCanvas
*
arrow
(){
TCanvas
*c1 =
new
TCanvas
(
"c1"
);
c1->
Range
(0,0,1,1);
TPaveLabel
*
par
=
new
TPaveLabel
(0.1,0.8,0.9,0.95,
"Examples of various arrow formats"
);
par->
SetFillColor
(42);
par->
Draw
();
TArrow
*ar1 =
new
TArrow
(0.1,0.1,0.1,0.7);
ar1->
Draw
();
TArrow
*ar2 =
new
TArrow
(0.2,0.1,0.2,0.7,0.05,
"|>"
);
ar2->
SetAngle
(40);
ar2->
SetLineWidth
(2);
ar2->
Draw
();
TArrow
*ar3 =
new
TArrow
(0.3,0.1,0.3,0.7,0.05,
"<|>"
);
ar3->
SetAngle
(40);
ar3->
SetLineWidth
(2);
ar3->
Draw
();
TArrow
*ar4 =
new
TArrow
(0.46,0.7,0.82,0.42,0.07,
"|>"
);
ar4->
SetAngle
(60);
ar4->
SetLineWidth
(2);
ar4->
SetFillColor
(2);
ar4->
Draw
();
TArrow
*ar5 =
new
TArrow
(0.4,0.25,0.95,0.25,0.15,
"<|>"
);
ar5->
SetAngle
(60);
ar5->
SetLineWidth
(4);
ar5->
SetLineColor
(4);
ar5->
SetFillStyle
(3008);
ar5->
SetFillColor
(2);
ar5->
Draw
();
return
c1
;
}
Author
Alja Mrak-Tadel
Definition in file
arrow.C
.