CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
DD4hep_MuonNumbering.cc
Go to the documentation of this file.
4 
5 using namespace cms;
6 using namespace edm;
7 
10 
11  int levelPart = get("level");
12  int superPart = get("super");
13  int basePart = get("base");
14  int startCopyNo = get("xml_starts_with_copyno");
15 
16  // some consistency checks
17  if (basePart != 1) {
18  edm::LogError("Geometry") << "MuonNumbering finds unusual base constant:" << basePart;
19  }
20  if (superPart < 100) {
21  edm::LogError("Geometry") << "MuonNumbering finds unusual super constant:" << superPart;
22  }
23  if (levelPart < 10 * superPart) {
24  edm::LogError("Geometry") << "MuonNumbering finds unusual level constant:" << levelPart;
25  }
26  if ((startCopyNo != 0) && (startCopyNo != 1)) {
27  edm::LogError("Geometry") << "MuonNumbering finds unusual start value for copy numbers:" << startCopyNo;
28  }
29  int ctr(0);
30  for (auto const& it : nodes.tags) {
31  int tag = it / levelPart;
32  if (tag > 0) {
33  int offset = nodes.offsets[ctr];
34  int copyno = nodes.copyNos[ctr] + offset % superPart;
35  int super = offset / superPart;
36  num.addBase(tag, super, copyno - startCopyNo);
37  }
38  ++ctr;
39  }
40  return num;
41 }
42 
43 const int MuonNumbering::get(const char* key) const {
44  int result(0);
45  auto const& it = values_.find(key);
46  if (it != end(values_))
47  result = it->second;
48  return result;
49 }
50 
51 void MuonNumbering::put(std::string_view str, int num) { values_.emplace(str, num); }
52 
54 
void addBase(const int level, const int super, const int base)
Log< level::Error, false > LogError
tuple result
Definition: mps_fire.py:311
std::vector< int > copyNos
Definition: ExpandedNodes.h:29
std::vector< double > offsets
Definition: ExpandedNodes.h:28
tuple key
prepare the HTCondor submission files and eventually submit them
const MuonBaseNumber geoHistoryToBaseNumber(const cms::ExpandedNodes &) const
#define TYPELOOKUP_DATA_REG(_dataclass_)
Definition: typelookup.h:102
const int get(const char *) const
string end
Definition: dataset.py:937
std::vector< double > tags
Definition: ExpandedNodes.h:27
#define str(s)
void put(std::string_view, int)