CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DDMap.cc
Go to the documentation of this file.
2 
4 
6 {
7  prep_ = StoreT::instance().create(name);
8 }
9 
11 {
12  prep_ = StoreT::instance().create(name,vals);
13 }
14 
15 std::ostream & operator<<(std::ostream & os, const DDMap & cons)
16 {
17  os << "DDMap name=" << cons.name();
18 
19  if(cons.isDefined().second) {
20  os << " size=" << cons.size() << " vals=( ";
21  for( const auto& it : cons.values()) {
22  os << it.first << '=' << it.second << ' ';
23  }
24  os << ')';
25  }
26  else {
27  os << " DDMap is not yet defined, only declared.";
28  }
29  return os;
30 }
31 
32 
Definition: DDBase.h:10
def_type isDefined() const
Definition: DDBase.h:110
const N & name() const
Definition: DDBase.h:78
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:14
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:188
a named constant corresponding to the DDL-XML tag &lt;Constant&gt; and &lt;ConstantsVector&gt; ...
Definition: DDMap.h:19
static value_type & instance()
size_t size() const
the size of the array of values
Definition: DDMap.h:38
const dd_map_type & values() const
the stored values
Definition: DDMap.h:41
DDMap()
an uninitialized constant; one can assign an initialized constant to make it valid ...
Definition: DDMap.cc:3