Main Page
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Enumerator
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
+
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
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerator
_
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
+
Properties
_
a
c
d
e
f
l
m
o
p
s
t
u
v
+
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
Package Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
DetectorDescription
Core
interface
Box.h
Go to the documentation of this file.
1
#ifndef DDI_Box_h
2
#define DDI_Box_h
3
4
#include <iosfwd>
5
#include <vector>
6
7
#include "
DetectorDescription/Core/interface/DDSolidShapes.h
"
8
#include "
Solid.h
"
9
10
namespace
DDI
{
11
12
class
Box
:
public
Solid
{
13
public
:
14
Box
(
double
xHalf,
double
yHalf,
double
zHalf) :
Solid
(
DDSolidShape
::
ddbox
) {
15
p_
.emplace_back(xHalf);
16
p_
.emplace_back(yHalf);
17
p_
.emplace_back(zHalf);
18
}
19
~Box
()
override
{}
20
21
double
volume
()
const override
{
return
8. *
p_
[0] *
p_
[1] *
p_
[2]; }
22
void
stream
(std::ostream& os)
const override
;
23
};
24
25
}
// namespace DDI
26
#endif // DDI_Box_h
DDI::Box::Box
Box(double xHalf, double yHalf, double zHalf)
Definition:
Box.h:14
DDI::Box::stream
void stream(std::ostream &os) const override
Definition:
Box.cc:8
DDSolidShapes.h
Solid.h
DDI::Box::~Box
~Box() override
Definition:
Box.h:19
DDI::Box::volume
double volume() const override
Definition:
Box.h:21
DDSolidShape::ddbox
DDI
Definition:
Assembly.h:7
DDSolidShape
DDSolidShape
Definition:
DDSolidShapes.h:6
DDI::Solid
Definition:
Solid.h:10
DDI::Solid::p_
std::vector< double > p_
Definition:
Solid.h:30
DDI::Box
Definition:
Box.h:12
Generated for CMSSW Reference Manual by
1.8.14