CMS 3D CMS Logo

DDMap.cc
Go to the documentation of this file.
2 
3 #include <utility>
4 
6  : DDBase< DDName, std::unique_ptr<dd_map_type>>() { }
7 
9  : DDBase< DDName, std::unique_ptr<dd_map_type>>()
10 {
11  create( name );
12 }
13 
14 DDMap::DDMap( const DDName & name, std::unique_ptr<dd_map_type> vals )
15 {
16  create( name, std::move( vals ));
17 }
18 
19 std::ostream & operator<<(std::ostream & os, const DDMap & cons)
20 {
21  os << "DDMap name=" << cons.name();
22 
23  if(cons.isDefined().second) {
24  os << " size=" << cons.size() << " vals=( ";
25  for( const auto& it : cons.values()) {
26  os << it.first << '=' << it.second << ' ';
27  }
28  os << ')';
29  }
30  else {
31  os << " DDMap is not yet defined, only declared.";
32  }
33  return os;
34 }
Definition: DDBase.h:10
def_type isDefined() const
Definition: DDBase.h:107
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:15
a named constant corresponding to the DDL-XML tag <Constant> and <ConstantsVector> ...
Definition: DDMap.h:22
std::ostream & operator<<(std::ostream &os, const DDMap &cons)
output operator for printing ...
Definition: DDMap.cc:19
size_t size() const
the size of the array of values
Definition: DDMap.h:41
const dd_map_type & values() const
the stored values
Definition: DDMap.h:44
DDMap()
an uninitialized constant; one can assign an initialized constant to make it valid ...
Definition: DDMap.cc:5
def move(src, dest)
Definition: eostools.py:511
void create(const DDName &name, std::unique_ptr< dd_map_type > vals)
Definition: DDBase.h:121