CMS 3D CMS Logo

DDString.cc
Go to the documentation of this file.
2 
3 #include <utility>
4 
5 DDString::DDString() : DDBase< DDName, std::unique_ptr<std::string>>() { }
6 
8  : DDBase< DDName, std::unique_ptr<std::string> >()
9 {
10  create( name );
11 }
12 
13 DDString::DDString( const DDName & name, std::unique_ptr<std::string> vals )
14 {
15  create( name, std::move( vals ));
16 }
17 
18 std::ostream & operator<<( std::ostream & os, const DDString & cons )
19 {
20  os << "DDString name=" << cons.name();
21 
22  if( cons.isDefined().second ) {
23  os << " val=" << cons.value();
24  }
25  else {
26  os << " constant is not yet defined, only declared.";
27  }
28  return os;
29 }
Definition: DDBase.h:10
def_type isDefined() const
Definition: DDBase.h:107
const std::string & value() const
return the first stored value; does not check boundaries!
Definition: DDString.h:30
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: DDString.h:17
DDString()
an uninitialized constant; one can assign an initialized constant to make it valid ...
Definition: DDString.cc:5
std::ostream & operator<<(std::ostream &os, const DDString &cons)
output operator for printing ...
Definition: DDString.cc:18
def move(src, dest)
Definition: eostools.py:511
void create(const DDName &name, std::unique_ptr< std::string > vals)
Definition: DDBase.h:121