CMS 3D CMS Logo

DDStrVector.cc
Go to the documentation of this file.
2 
3 #include <utility>
4 
6 
8 
10 {
11  prep_ = StoreT::instance().create(name);
12 }
13 
14 DDStrVector::DDStrVector(const DDName & name,std::vector<std::string>* vals)
15 {
16  prep_ = StoreT::instance().create(name,vals);
17 }
18 
19 std::ostream & operator<<(std::ostream & os, const DDStrVector & cons)
20 {
21  os << "DDStrVector 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 << ' ';
27  }
28  os << ')';
29  }
30  else {
31  os << " constant is not yet defined, only declared.";
32  }
33  return os;
34 }
std::ostream & operator<<(std::ostream &os, const DDStrVector &cons)
output operator for printing ...
Definition: DDStrVector.cc:19
Definition: DDBase.h:10
def_type isDefined() const
Definition: DDBase.h:110
DDStrVector()
an uninitialized constant; one can assign an initialized constant to make it valid ...
Definition: DDStrVector.cc:7
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:16
a named constant corresponding to the DDL-XML tag <Constant> and <ConstantsStrVector> ...
Definition: DDStrVector.h:17
size_t size() const
the size of the array of values
Definition: DDStrVector.h:37
static value_type & instance()
const value_type & values() const
the stored values
Definition: DDStrVector.h:40