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 
5 
7 {
8  prep_ = StoreT::instance().create(name);
9 }
10 
12 {
13  prep_ = StoreT::instance().create(name,vals);
14 }
15 
16 
17 std::ostream & operator<<(std::ostream & os, const DDMap & cons)
18 {
19  os << "DDMap name=" << cons.name();
20 
21  if(cons.isDefined().second) {
22  os << " size=" << cons.size() << " vals=( ";
23  DDMap::value_type::const_iterator it(cons.values().begin()), ed(cons.values().end());
24  for(; it != ed; ++it) {
25  os << it->first << '=' << it->second << ' ';
26  }
27  os << ')';
28  }
29  else {
30  os << " DDMap is not yet defined, only declared.";
31  }
32  return os;
33 }
34 
35 
Definition: DDBase.h:14
def_type isDefined() const
Definition: DDBase.h:115
const N & name() const
Definition: DDBase.h:82
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:18
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:187
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