CMS 3D CMS Logo

Classes | Functions
DDString.h File Reference
#include "DetectorDescription/Core/interface/DDBase.h"
#include "DetectorDescription/Core/interface/DDName.h"
#include <string>
#include <iostream>
#include <memory>

Go to the source code of this file.

Classes

class  DDString
 a named constant corresponding to the DDL-XML tag <Constant> and <ConstantsVector> More...
 

Functions

std::ostream & operator<< (std::ostream &o, const DDString &cons)
 output operator for printing ... More...
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  o,
const DDString cons 
)

output operator for printing ...

Definition at line 11 of file DDString.cc.

References DDBase< N, C >::isDefined(), DDBase< N, C >::name(), l1tGTMenu_BTagSeeds_cff::os, and DDString::value().

11  {
12  os << "DDString name=" << cons.name();
13 
14  if (cons.isDefined().second) {
15  os << " val=" << cons.value();
16  } else {
17  os << " constant is not yet defined, only declared.";
18  }
19  return os;
20 }
const N & name() const
Definition: DDBase.h:59
const std::string & value() const
return the first stored value; does not check boundaries!
Definition: DDString.h:28
def_type isDefined() const
Definition: DDBase.h:90