CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions | Variables
DDValue.cc File Reference
#include "DetectorDescription/Core/interface/DDValue.h"
#include <cassert>
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/Utilities/interface/Exception.h"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &o, const DDValue &v)
 
std::ostream & operator<< (std::ostream &o, const DDValuePair &v)
 

Variables

static std::atomic< unsigned int > lastIndex {0}
 

Function Documentation

std::ostream& operator<< ( std::ostream &  o,
const DDValue v 
)

Definition at line 151 of file DDValue.cc.

References i, DDValue::isEvaluated(), DDValue::name(), connectstrParser::o, alignCSCRings::s, DDValue::size(), and DDValue::strings().

152 {
153  o << v.name() << " = ";
154  unsigned int i = 0;
155  if( v.isEvaluated())
156  {
157  for(; i < v.size(); ++i )
158  {
159  o << '(' << v[i].first << ',' << v[i].second << ") ";
160  }
161  }
162  else
163  {
164  const std::vector<std::string> & s = v.strings();
165  for(; i < v.size(); ++i )
166  {
167  o << s[i] << ' ';
168  }
169  }
170  return o;
171 }
const std::string & name(void) const
the name of the DDValue
Definition: DDValue.h:54
int i
Definition: DBlmapReader.cc:9
bool isEvaluated(void) const
true, if values are numerical evaluated; else false.
Definition: DDValue.cc:201
const std::vector< std::string > & strings() const
a reference to the std::string-valued values stored in the given instance of DDValue ...
Definition: DDValue.h:61
unsigned int size() const
the size of the stored value-pairs (std::string,double)
Definition: DDValue.h:68
std::ostream& operator<< ( std::ostream &  o,
const DDValuePair v 
)

Definition at line 174 of file DDValue.cc.

175 {
176  return o << v.second;
177 }

Variable Documentation

std::atomic<unsigned int> lastIndex {0}
static

Definition at line 8 of file DDValue.cc.

Referenced by DDValue::DDValue(), and DDValue::init().