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
g3d
inc
THYPE.h
Go to the documentation of this file.
1
// @(#)root/g3d:$Id$
2
// Author: Rene Brun 08/12/98
3
4
/*************************************************************************
5
* Copyright (C) 1995-2000, 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
// @(#)root/g3d:$Id$
12
// Author: Nenad Buncic 18/09/95
13
14
#ifndef ROOT_THYPE
15
#define ROOT_THYPE
16
17
18
////////////////////////////////////////////////////////////////////////////
19
// //
20
// THYPE //
21
// //
22
// HYPE is a DUMMY Root shape set equal to a TTUBE //
23
// //
24
////////////////////////////////////////////////////////////////////////////
25
26
#include "
TTUBE.h
"
27
28
class
THYPE
:
public
TTUBE
{
29
30
protected
:
31
Float_t
fPhi
;
// stereo angle
32
33
public
:
34
THYPE
();
35
THYPE
(
const
char
*
name
,
const
char
*title,
const
char
*material,
Float_t
rmin,
Float_t
rmax,
Float_t
dz,
36
Float_t
phi);
37
virtual
~THYPE
();
38
39
virtual
Float_t
GetPhi
()
const
{
return
fPhi
;}
40
41
ClassDef
(
THYPE
,1)
//HYPE shape
42
};
43
44
#endif
TTUBE.h
Float_t
float Float_t
Definition:
RtypesCore.h:53
RegressionKeras.name
name
Definition:
RegressionKeras.py:30
THYPE
An hyperboloid (not implemented)
Definition:
THYPE.h:28
ClassDef
#define ClassDef(name, id)
Definition:
Rtypes.h:297
THYPE::GetPhi
virtual Float_t GetPhi() const
Definition:
THYPE.h:39
THYPE::THYPE
THYPE()
HYPE shape default constructor.
Definition:
THYPE.cxx:34
THYPE::fPhi
Float_t fPhi
Definition:
THYPE.h:31
TTUBE
A tube.
Definition:
TTUBE.h:32
THYPE::~THYPE
virtual ~THYPE()
HYPE shape default destructor.
Definition:
THYPE.cxx:52