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
eve
lineset.C File Reference
Tutorials
»
Event display tutorials
Detailed Description
Demonstrates usage of class
TEveStraightLineSet
.
TEveStraightLineSet
*
lineset
(
Int_t
nlines = 40,
Int_t
nmarkers = 4)
{
TEveManager::Create
();
TRandom
r
(0);
Float_t
s = 100;
TEveStraightLineSet
* ls =
new
TEveStraightLineSet
();
for
(
Int_t
i = 0; i<nlines; i++)
{
ls->
AddLine
( r.
Uniform
(-s,s), r.
Uniform
(-s,s), r.
Uniform
(-s,s),
r.
Uniform
(-s,s), r.
Uniform
(-s,s), r.
Uniform
(-s,s));
// add random number of markers
Int_t
nm
=
Int_t
(nmarkers* r.
Rndm
());
for
(
Int_t
m = 0; m <
nm
; m++) {
ls->
AddMarker
(i, r.
Rndm
());
}
}
ls->
SetMarkerSize
(1.5);
ls->
SetMarkerStyle
(4);
gEve
->
AddElement
(ls);
gEve
->
Redraw3D
();
return
ls;
}
TEveStraightLineSet
* lineset_2d(
Int_t
nlines = 40,
Int_t
nmarkers = 4)
{
TEveManager::Create
();
TRandom
r
(0);
Float_t
s = 100;
TEveStraightLineSet
* ls =
new
TEveStraightLineSet
();
for
(
Int_t
i = 0; i<nlines; i++)
{
ls->
AddLine
( r.
Uniform
(-s,s), r.
Uniform
(-s,s), 0,
r.
Uniform
(-s,s), r.
Uniform
(-s,s), 0);
// add random number of markers
Int_t
nm =
Int_t
(nmarkers* r.
Rndm
());
for
(
Int_t
m = 0; m <
nm
; m++) {
ls->
AddMarker
(i, r.
Rndm
());
}
}
ls->
SetMarkerSize
(1.5);
ls->
SetMarkerStyle
(4);
gEve
->
AddElement
(ls);
gEve
->
Redraw3D
();
return
ls;
}
Author
Matevz Tadel
Definition in file
lineset.C
.