CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Typedefs | Functions
DDMap.h File Reference
#include "DetectorDescription/Core/interface/DDBase.h"
#include "DetectorDescription/Core/interface/DDName.h"
#include "DetectorDescription/Base/interface/DDReadMapType.h"
#include <string>
#include <iostream>

Go to the source code of this file.

Classes

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

Typedefs

typedef ReadMapType< double > dd_map_type
 simply a std::map<std::string,double> supporting an addional operator[] const More...
 

Functions

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

Typedef Documentation

typedef ReadMapType<double> dd_map_type

simply a std::map<std::string,double> supporting an addional operator[] const

Definition at line 16 of file DDMap.h.

Function Documentation

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

output operator for printing ...

Definition at line 23 of file DDMap.cc.

References DDBase< N, C >::isDefined(), DDBase< N, C >::name(), DDMap::size(), and DDMap::values().

24 {
25  os << "DDMap name=" << cons.name();
26 
27  if(cons.isDefined().second) {
28  os << " size=" << cons.size() << " vals=( ";
29  DDMap::value_type::const_iterator it(cons.values().begin()), ed(cons.values().end());
30  for(; it != ed; ++it) {
31  os << it->first << '=' << it->second << ' ';
32  }
33  os << ')';
34  }
35  else {
36  os << " DDMap is not yet defined, only declared.";
37  }
38  return os;
39 }
def_type isDefined() const
Definition: DDBase.h:121
const N & name() const
Definition: DDBase.h:88
size_t size() const
the size of the array of values
Definition: DDMap.h:38
const dd_map_type & values() const
the stored values
Definition: DDMap.h:41