CMS 3D CMS Logo

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