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
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
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
DetectorDescription
Parser
src
DDLBox.cc
Go to the documentation of this file.
1
#include "
DetectorDescription/Parser/src/DDLBox.h
"
2
#include "
DetectorDescription/Core/interface/DDName.h
"
3
#include "
DetectorDescription/Core/interface/DDSolid.h
"
4
#include "
DetectorDescription/Core/interface/ClhepEvaluator.h
"
5
#include "
DetectorDescription/Parser/interface/DDLElementRegistry.h
"
6
#include "
DetectorDescription/Parser/src/DDLSolid.h
"
7
8
#include <map>
9
#include <utility>
10
11
class
DDCompactView
;
12
13
DDLBox::DDLBox
(
DDLElementRegistry
* myreg) :
DDLSolid
(myreg) {}
14
15
// Upon ending a Box element, call DDCore giving the box name, and dimensions.
16
void
DDLBox::processElement
(
const
std::string
&
name
,
const
std::string
& nmspace,
DDCompactView
& cpv) {
17
ClhepEvaluator
&
ev
=
myRegistry_
->
evaluator
();
18
DDXMLAttribute
atts =
getAttributeSet
();
19
20
DDName
ddname =
getDDName
(nmspace);
21
DDSolid
ddbox
=
DDSolidFactory::box
(ddname,
22
ev
.eval(nmspace, atts.find(
"dx"
)->second),
23
ev
.eval(nmspace, atts.find(
"dy"
)->second),
24
ev
.eval(nmspace, atts.find(
"dz"
)->second));
25
// Attempt to make sure Solid elements can be in LogicalPart elements.
26
DDLSolid::setReference
(nmspace, cpv);
27
}
DDLSolid::setReference
void setReference(const std::string &nmspace, DDCompactView &cpv)
Definition:
DDLSolid.cc:13
DDName
DDName is used to identify DDD entities uniquely.
Definition:
DDName.h:17
DDLSolid
DDLSolid processes Box elements.
Definition:
DDLSolid.h:30
ClhepEvaluator.h
DDLElementRegistry
The main class for processing parsed elements.
Definition:
DDLElementRegistry.h:23
ClhepEvaluator
Definition:
ClhepEvaluator.h:8
DDLBox::DDLBox
DDLBox(DDLElementRegistry *myreg)
Definition:
DDLBox.cc:13
DDXMLElement::getAttributeSet
virtual const DDXMLAttribute & getAttributeSet(size_t aIndex=0) const
Get a "row" of attributes, i.e. one attribute set.
Definition:
DDXMLElement.cc:54
DDLElementRegistry::evaluator
ClhepEvaluator & evaluator()
Definition:
DDLElementRegistry.h:42
DDCompactView
Compact representation of the geometrical detector hierarchy.
Definition:
DDCompactView.h:81
DDSolid.h
DDXMLAttribute
std::map< std::string, std::string > DDXMLAttribute
Definition:
DDXMLElement.h:45
DDLBox.h
DDLElementRegistry.h
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition:
AlCaHLTBitMon_QueryRunRegistry.py:256
DDLSolid.h
DDXMLElement::getDDName
const virtual DDName getDDName(const std::string &defaultNS, const std::string &attname=std::string("name"), size_t aIndex=0)
Definition:
DDXMLElement.cc:56
DDSolidShape::ddbox
DDName.h
ev
bool ev
Definition:
Hydjet2Hadronizer.cc:97
Skims_PA_cff.name
name
Definition:
Skims_PA_cff.py:17
DDSolid
A DDSolid represents the shape of a part.
Definition:
DDSolid.h:39
DDXMLElement::myRegistry_
DDLElementRegistry * myRegistry_
Definition:
DDXMLElement.h:173
DDSolidFactory::box
static DDSolid box(const DDName &name, double xHalf, double yHalf, double zHalf)
Creates a box with side length 2*xHalf, 2*yHalf, 2*zHalf.
Definition:
DDSolid.cc:547
DDLBox::processElement
void processElement(const std::string &name, const std::string &nmspace, DDCompactView &cpv) override
Processing the element.
Definition:
DDLBox.cc:16
Generated for CMSSW Reference Manual by
1.8.16