CMS 3D CMS Logo

DDMap.cc
Go to the documentation of this file.
2 
3 #include <utility>
4 
6 
8  : DDBase<DDName,dd_map_type*>() { }
9 
12 {
13  prep_ = StoreT::instance().create(name);
14 }
15 
17 {
18  prep_ = StoreT::instance().create(name,vals);
19 }
20 
21 std::ostream & operator<<(std::ostream & os, const DDMap & cons)
22 {
23  os << "DDMap name=" << cons.name();
24 
25  if(cons.isDefined().second) {
26  os << " size=" << cons.size() << " vals=( ";
27  for( const auto& it : cons.values()) {
28  os << it.first << '=' << it.second << ' ';
29  }
30  os << ')';
31  }
32  else {
33  os << " DDMap is not yet defined, only declared.";
34  }
35  return os;
36 }
Definition: DDBase.h:10
def_type isDefined() const
Definition: DDBase.h:110
const DDName & name() const
Definition: DDBase.h:78
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:21
static value_type & instance()
std::ostream & operator<<(std::ostream &os, const DDMap &cons)
output operator for printing ...
Definition: DDMap.cc:21
size_t size() const
the size of the array of values
Definition: DDMap.h:40
const dd_map_type & values() const
the stored values
Definition: DDMap.h:43
DDMap()
an uninitialized constant; one can assign an initialized constant to make it valid ...
Definition: DDMap.cc:7