CMS 3D CMS Logo

MuonDDDConstants.cc
Go to the documentation of this file.
2 
5 
8 
9 //#define EDM_ML_DEBUG
10 
12 #ifdef EDM_ML_DEBUG
13  edm::LogVerbatim("MuonGeom") << "MuonDDDConstants;:MuonDDDConstants ( const DDCompactView& cpv ) constructor ";
14 #endif
15  std::string attribute = "OnlyForMuonNumbering";
16 
18  DDFilteredView fview(cpv, filter);
19 
20  DDValue val2("level");
21  const DDsvalues_type params(fview.mergedSpecifics());
22 
23  fview.firstChild();
24 
25  const DDsvalues_type mySpecs(fview.mergedSpecifics());
26 #ifdef EDM_ML_DEBUG
27  edm::LogVerbatim("MuonGeom") << "MuonDDDConstants::mySpecs.size() = " << mySpecs.size();
28 #endif
29  if (mySpecs.size() < 25) {
30  edm::LogError("MuonDDDConstants") << " MuonDDDConstants: Missing SpecPars from DetectorDescription.";
32  "MuonDDDConstants does not have the appropriate number of SpecPars associated with the part //MUON.";
33  throw cms::Exception("GeometryBuildFailure", msg);
34  }
35 
36  DDsvalues_type::const_iterator bit = mySpecs.begin();
37  DDsvalues_type::const_iterator eit = mySpecs.end();
38  for (; bit != eit; ++bit) {
39  if (bit->second.isEvaluated()) {
40  this->addValue(bit->second.name(), int(bit->second.doubles()[0]));
41 #ifdef EDM_ML_DEBUG
42  edm::LogVerbatim("MuonGeom") << "MuonDDDConstants::adding DDConstant of " << bit->second.name() << " = "
43  << int(bit->second.doubles()[0]);
44 #endif
45  }
46  }
47 }
48 
50 #ifdef EDM_ML_DEBUG
51  edm::LogVerbatim("MuonGeom") << "about to look for ... " << name << std::endl;
52 #endif
53  if (namesAndValues_.empty()) {
54  edm::LogWarning("MuonGeom") << "MuonDDDConstants::getValue HAS NO VALUES!";
55  throw cms::Exception("GeometryBuildFailure", "MuonDDDConstants does not have requested value for " + name);
56  }
57 
58  std::map<std::string, int>::const_iterator findIt = namesAndValues_.find(name);
59 
60  if (findIt == namesAndValues_.end()) {
61  edm::LogWarning("MuonGeom") << "MuonDDDConstants::getValue was asked for " << name << " and had NO clue!";
62  throw cms::Exception("GeometryBuildFailure", "MuonDDDConstants does not have requested value for " + name);
63  }
64 #ifdef EDM_ML_DEBUG
65  edm::LogVerbatim("MuonGeom") << "MuonDDDConstants::Value for " << name << " is " << findIt->second;
66 #endif
67  return findIt->second;
68 }
69 
Log< level::Info, true > LogVerbatim
MuonDDDConstants()=delete
Log< level::Error, false > LogError
Compact representation of the geometrical detector hierarchy.
Definition: DDCompactView.h:81
std::vector< std::pair< unsigned int, DDValue > > DDsvalues_type
Definition: DDsvalues.h:12
Definition: value.py:1
DDsvalues_type mergedSpecifics() const
std::map< std::string, int > namesAndValues_
void addValue(const std::string &name, const int &value)
tuple msg
Definition: mps_check.py:286
bool firstChild()
set the current node to the first child ...
Log< level::Warning, false > LogWarning
int getValue(const std::string &name) const