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
Core
src
DDMap.cc
Go to the documentation of this file.
1
#include "
DetectorDescription/Core/interface/DDMap.h
"
2
3
#include <utility>
4
5
DDMap::DDMap
() :
DDBase
<
DDName
,
std
::
unique_ptr
<
dd_map_type
>>() {}
6
7
DDMap::DDMap
(
const
DDName
&
name
) :
DDBase
<
DDName
,
std
::
unique_ptr
<
dd_map_type
>>() {
create
(
name
); }
8
9
DDMap::DDMap
(
const
DDName
&
name
, std::unique_ptr<dd_map_type> vals) {
create
(
name
,
std::move
(vals)); }
10
11
std::ostream&
operator<<
(std::ostream& os,
const
DDMap
& cons) {
12
os <<
"DDMap name="
<< cons.
name
();
13
14
if
(cons.
isDefined
().second) {
15
os <<
" size="
<< cons.
size
() <<
" vals=( "
;
16
for
(
const
auto
& it : cons.
values
()) {
17
os << it.first <<
'='
<< it.second <<
' '
;
18
}
19
os <<
')'
;
20
}
else
{
21
os <<
" DDMap is not yet defined, only declared."
;
22
}
23
return
os;
24
}
DDMap
a named constant corresponding to the DDL-XML tag <Constant> and <ConstantsVector>
Definition:
DDMap.h:22
DDName
DDName is used to identify DDD entities uniquely.
Definition:
DDName.h:15
DDBase::isDefined
def_type isDefined() const
Definition:
DDBase.h:90
operator<<
std::ostream & operator<<(std::ostream &os, const DDMap &cons)
output operator for printing ...
Definition:
DDMap.cc:11
DDBase< DDName, std::unique_ptr< dd_map_type > >::name
const DDName & name() const
Definition:
DDBase.h:59
cms::cuda::device::unique_ptr
std::unique_ptr< T, impl::DeviceDeleter > unique_ptr
Definition:
device_unique_ptr.h:33
DDMap::values
const dd_map_type & values() const
the stored values
Definition:
DDMap.h:43
ReadMapType< double >
eostools.move
def move(src, dest)
Definition:
eostools.py:511
std
Definition:
JetResolutionObject.h:76
DDMap::DDMap
DDMap()
an uninitialized constant; one can assign an initialized constant to make it valid
Definition:
DDMap.cc:5
DDMap.h
DDBase< DDName, std::unique_ptr< dd_map_type > >::create
void create(const DDName &name, std::unique_ptr< dd_map_type > vals)
Definition:
DDBase.h:96
Skims_PA_cff.name
name
Definition:
Skims_PA_cff.py:17
DDBase
Definition:
DDBase.h:10
DDMap::size
size_t size() const
the size of the array of values
Definition:
DDMap.h:40
Generated for CMSSW Reference Manual by
1.8.16