Loading [MathJax]/extensions/tex2jax.js
ROOT
6.10/09
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
+
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
k
l
m
n
o
p
q
r
s
t
u
v
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
u
w
x
+
Enumerations
a
e
f
g
m
p
t
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
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
graf3d
eve
src
TEvePad.cxx
Go to the documentation of this file.
1
// @(#)root/eve:$Id$
2
// Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3
4
/*************************************************************************
5
* Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. *
6
* All rights reserved. *
7
* *
8
* For the licensing terms see $ROOTSYS/LICENSE. *
9
* For the list of contributors see $ROOTSYS/README/CREDITS. *
10
*************************************************************************/
11
12
#include "
TEvePad.h
"
13
#include "
THashList.h
"
14
15
/** \class TEvePad
16
\ingroup TEve
17
This was intended as a TPad wrapper to allow smart updates of
18
groups of pads. Uses THashList instead of TList for faster removal
19
of objects from the pad.
20
*/
21
22
ClassImp
(
TEvePad
)
23
24
////////////////////////////////////////////////////////////////////////////////
25
/// Default constructor.
26
27
TEvePad
::
TEvePad
()
28
{
29
fPrimitives =
new
THashList
;
30
}
31
32
////////////////////////////////////////////////////////////////////////////////
33
/// Constructor.
34
35
TEvePad::TEvePad
(
const
char
*
name
,
const
char
*title,
Double_t
xlow,
36
Double_t
ylow,
Double_t
xup,
Double_t
yup,
37
Color_t
color,
Short_t
bordersize,
Short_t
bordermode)
38
:
TPad
(name,title,xlow,ylow,xup,yup,color,bordersize,bordermode)
39
{
40
delete
fPrimitives
;
41
fPrimitives
=
new
THashList
;
42
}
TPad::fPrimitives
TList * fPrimitives
->List of primitives (subpads)
Definition:
TPad.h:106
RegressionKeras.name
name
Definition:
RegressionKeras.py:30
THashList.h
TEvePad::TEvePad
TEvePad()
Default constructor.
Definition:
TEvePad.cxx:27
THashList
THashList implements a hybrid collection class consisting of a hash table and a list to store TObject...
Definition:
THashList.h:34
Color_t
short Color_t
Definition:
RtypesCore.h:79
TPad
The most important graphics class in the ROOT system.
Definition:
TPad.h:29
TEvePad.h
Short_t
short Short_t
Definition:
RtypesCore.h:35
ClassImp
#define ClassImp(name)
Definition:
Rtypes.h:336
Double_t
double Double_t
Definition:
RtypesCore.h:55
TEvePad
This was intended as a TPad wrapper to allow smart updates of groups of pads.
Definition:
TEvePad.h:17