CMS 3D CMS Logo

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