CMS 3D CMS Logo

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

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

using dd_map_type = ReadMapType< double >
 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

◆ dd_map_type

using dd_map_type = ReadMapType<double>

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

Definition at line 19 of file DDMap.h.

Function Documentation

◆ operator<<()

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

output operator for printing ...

Definition at line 11 of file DDMap.cc.

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

11  {
12  os << "DDMap name=" << cons.name();
13 
14  if (cons.isDefined().second) {
15  os << " size=" << cons.size() << " vals=( ";
16  for (const auto& it : cons.values()) {
17  os << it.first << '=' << it.second << ' ';
18  }
19  os << ')';
20  } else {
21  os << " DDMap is not yet defined, only declared.";
22  }
23  return os;
24 }
const dd_map_type & values() const
the stored values
Definition: DDMap.h:43
const N & name() const
Definition: DDBase.h:59
size_t size() const
the size of the array of values
Definition: DDMap.h:40
def_type isDefined() const
Definition: DDBase.h:90