#include <string>
#include <vector>
#include <map>
#include "DetectorDescription/Core/interface/DDReadMapType.h"
#include <iosfwd>
Go to the source code of this file.
corresponds to a collection of named std::maps of strings to double */
in XML: a set of <Map name="n"> val:1, val_2:2 </Map>
Definition at line 24 of file DDTypes.h.
corresponds to a collection of named doubles
in XML: a set of <Numeric name="n" value="1">
Definition at line 12 of file DDTypes.h.
corresponds to a collection of named strings
in XML: a set of <String name="n" value="val">
Definition at line 16 of file DDTypes.h.
corresponds to a collection of named std::vectors of doubles */
in XML: a set of <Vector name="n"> 1,2,3,4 </Vector>
Definition at line 20 of file DDTypes.h.
std::string formatAsDegrees |
( |
double |
radianVal | ) |
|
std::string formatAsDegreesInInteger |
( |
double |
radianVal | ) |
|
Definition at line 13 of file DDTypes.cc.
Referenced by operator<<().
15 DDNumericArguments::const_iterator it(t.begin()), ed(t.end());
16 for(; it != ed; ++it) {
17 os << it->first <<
'=' << it->second << std::endl;
Definition at line 45 of file DDTypes.cc.
References operator<<(), and protons_cff::t.
47 DDMapArguments::const_iterator it(t.begin()), ed(t.end());
48 for(; it != ed; ++it) {
49 os << it->first <<
": ";
50 std::map<std::string,double>::const_iterator mit(it->second.begin()), med(it->second.end());
51 for(;mit!=med;++mit) {
52 os << mit->first <<
'=' << mit->second <<
' ';
Definition at line 31 of file DDTypes.cc.
33 DDVectorArguments::const_iterator it(t.begin()), ed(t.end());
34 for(; it != ed; ++it) {
35 os << it->first <<
": ";
36 std::vector<double>::const_iterator vit(it->second.begin()), ved(it->second.end());
37 for(;vit!=ved;++vit) {