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
annotation.C File Reference
Tutorials
»
Event display tutorials
Detailed Description
Demonstrates usage of
TGLAnnotation
class.
#include <
TEveManager.h
>
#include <
TGLViewer.h
>
#include <
TGLAnnotation.h
>
#include <
TEveBox.h
>
#include <
TDatime.h
>
#include <
TTimer.h
>
#include <
TDatime.h
>
class
MyTimer :
public
TTimer
{
private
:
TGLAnnotation
* m_label;
public
:
MyTimer(
TGLAnnotation
* x) :
TTimer
(1000), m_label(x)
{
}
virtual
Bool_t
Notify
()
{
// stop timer
TurnOff
();
// so some action here
TDatime
d;
m_label->
SetText
(d.
AsString
());
gEve
->
GetDefaultGLViewer
()->
RequestDraw
();
// start timer
SetTime
(1000);
Reset
();
TurnOn
();
return
true
;
}
};
void
annotation(
Float_t
a=10,
Float_t
d=5,
Float_t
x=0,
Float_t
y=0,
Float_t
z=0)
{
TEveManager::Create
();
// add a box in scene
TEveBox
* b =
new
TEveBox
(
"Box"
,
"Test Title"
);
b->
SetMainColor
(
kCyan
);
b->
SetMainTransparency
(0);
b->
SetVertex
(0, x - a, y - a, z - a);
b->
SetVertex
(1, x - a, y + a, z - a);
b->
SetVertex
(2, x + a, y + a, z - a);
b->
SetVertex
(3, x + a, y - a, z - a);
b->
SetVertex
(4, x - a, y - a, z + a);
b->
SetVertex
(5, x - a, y + a, z + a);
b->
SetVertex
(6, x + a, y + a, z + a);
b->
SetVertex
(7, x + a, y - a, z + a);
gEve
->
AddElement
(b);
gEve
->
Redraw3D
(
kTRUE
);
// add overlay text
TGLViewer
* v =
gEve
->
GetDefaultGLViewer
();
TDatime
time;
TGLAnnotation
* ann =
new
TGLAnnotation
(v, time.
AsString
(), 0.1, 0.9);
ann->
SetTextSize
(0.1);
// % of window diagonal
// set timer to update text every second
MyTimer*
timer
=
new
MyTimer(ann);
timer->SetTime(1000);
timer->Reset();
timer->TurnOn();
}
Author
Alja Mrak-Tadel
Definition in file
annotation.C
.