CMS 3D CMS Logo

DTGeometryBuilderFromDD4hep.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Geometry/DTGeometryBuilder
4 // Class: DTGeometryBuilderFromDD4hep
5 //
14 //
15 // Original Author: Ianna Osborne
16 // Created: Wed, 16 Jan 2019 10:19:37 GMT
17 // Modified by Sergio Lo Meo (sergio.lo.meo@cern.ch) Mon, 31 August 2020
18 //
19 //
39 #include "DD4hep/Detector.h"
41 
42 #include <memory>
43 #include <string>
44 #include <string_view>
45 
46 using namespace edm;
47 using namespace std;
48 
51  const MuonGeometryConstants& num) const {
52  edm::LogVerbatim("DTGeometryBuilder") << "(0) DTGeometryBuilder - DD4hep ";
53 
54  bool doChamber = fview.firstChild();
55 
56  while (doChamber) {
57  DTChamber* chamber = buildChamber(fview, num);
58 
59  bool doSL = fview.nextSibling();
60  while (doSL) {
61  DTSuperLayer* sl = buildSuperLayer(fview, chamber, num);
62 
63  fview.down();
64  bool doLayers = fview.sibling();
65  while (doLayers) {
66  DTLayer* l = buildLayer(fview, sl, num);
67  geom.add(l);
68 
69  doLayers = fview.sibling();
70  }
71 
72  geom.add(sl);
73  doSL = fview.nextSibling();
74  }
75  geom.add(chamber);
76 
77  fview.parent();
78  doChamber = fview.firstChild();
79  }
80 }
81 
83  Bounds* bounds) const {
84  const Double_t* tr = fview.trans();
85  const Double_t* rot = fview.rot();
86 
87  return RCPPlane(
88  new Plane(Surface::PositionType(tr[0] / dd4hep::cm, tr[1] / dd4hep::cm, tr[2] / dd4hep::cm),
89  Surface::RotationType(rot[0], rot[3], rot[6], rot[1], rot[4], rot[7], rot[2], rot[5], rot[8]),
90  bounds));
91 }
92 
94  const MuonGeometryConstants& muonConstants) const {
95  MuonGeometryNumbering mdddnum(muonConstants);
96  DTNumberingScheme dtnum(muonConstants);
97  int rawid = dtnum.baseNumberToUnitNumber(mdddnum.geoHistoryToBaseNumber(fview.history()));
98 
99  DTChamberId detId(rawid);
100  auto const& par = fview.parameters();
101 
102  RCPPlane surf(
103  plane(fview, new RectangularPlaneBounds(par[0] / dd4hep::cm, par[1] / dd4hep::cm, par[2] / dd4hep::cm)));
104 
105  edm::LogVerbatim("DTGeometryBuilder") << "(1) detId: " << rawid << " par[0]: " << par[0] / dd4hep::cm
106  << " par[1]: " << par[1] / dd4hep::cm << " par[2]: " << par[2] / dd4hep::cm;
107 
108  DTChamber* chamber = new DTChamber(detId, surf);
109 
110  return chamber;
111 }
112 
115  const MuonGeometryConstants& muonConstants) const {
116  MuonGeometryNumbering mdddnum(muonConstants);
117  DTNumberingScheme dtnum(muonConstants);
118  int rawid = dtnum.baseNumberToUnitNumber(mdddnum.geoHistoryToBaseNumber(fview.history()));
119 
120  DTSuperLayerId slId(rawid);
121 
122  auto const& par = fview.parameters();
123 
124  RCPPlane surf(
125  plane(fview, new RectangularPlaneBounds(par[0] / dd4hep::cm, par[1] / dd4hep::cm, par[2] / dd4hep::cm)));
126 
127  edm::LogVerbatim("DTGeometryBuilder") << "(2) detId: " << rawid << " par[0]: " << par[0] / dd4hep::cm
128  << " par[1]: " << par[1] / dd4hep::cm << " par[2]: " << par[2] / dd4hep::cm;
129 
130  DTSuperLayer* slayer = new DTSuperLayer(slId, surf, chamber);
131 
132  chamber->add(slayer);
133 
134  return slayer;
135 }
136 
138  DTSuperLayer* sl,
139  const MuonGeometryConstants& muonConstants) const {
140  MuonGeometryNumbering mdddnum(muonConstants);
141  DTNumberingScheme dtnum(muonConstants);
142  int rawid = dtnum.baseNumberToUnitNumber(mdddnum.geoHistoryToBaseNumber(fview.history()));
143 
144  DTLayerId layId(rawid);
145 
146  auto const& par = fview.parameters();
147 
148  RCPPlane surf(
149  plane(fview, new RectangularPlaneBounds(par[0] / dd4hep::cm, par[1] / dd4hep::cm, par[2] / dd4hep::cm)));
150 
151  edm::LogVerbatim("DTGeometryBuilder") << "(3) detId: " << rawid << " par[0]: " << par[0] / dd4hep::cm
152  << " par[1]: " << par[1] / dd4hep::cm << " par[2]: " << par[2] / dd4hep::cm;
153 
154  fview.down();
155  bool doWire = fview.sibling();
156  int firstWire = fview.volume()->GetNumber();
157  auto const& wpar = fview.parameters();
158  float wireLength = wpar[1] / dd4hep::cm;
159 
160  edm::LogVerbatim("DTGeometryBuilder") << "(4) detId: " << rawid << " wpar[1]: " << wpar[1] / dd4hep::cm
161  << " firstWire: " << firstWire;
162 
163  int WCounter = 0;
164  while (doWire) {
165  doWire = fview.checkChild();
166  WCounter++;
167  }
168  fview.up();
169 
170  DTTopology topology(firstWire, WCounter, wireLength);
171 
172  DTLayerType layerType;
173 
174  DTLayer* layer = new DTLayer(layId, surf, topology, layerType, sl);
175 
176  sl->add(layer);
177  return layer;
178 }
179 
181  const cms::DDDetector* det,
182  const MuonGeometryConstants& num,
183  const dd4hep::SpecParRefs& refs) {
184  cms::Volume top = det->worldVolume();
185  cms::DDFilteredView fview(det, top);
186  fview.mergedSpecifics(refs);
187  buildGeometry(fview, geom, num);
188 }
Log< level::Info, true > LogVerbatim
void up()
set current node to the parent node in the filtered tree
void mergedSpecifics(DDSpecParRefs const &)
User specific data.
const Double_t * rot() const
The absolute rotation of the current node.
void buildGeometry(cms::DDFilteredView &, DTGeometry &, const MuonGeometryConstants &) const
void add(DTLayer *l)
Add layer to the SL which owns it.
Definition: DTSuperLayer.cc:47
bool sibling()
set the current node to the next sub sibling
DTChamber * buildChamber(cms::DDFilteredView &, const MuonGeometryConstants &) const
Definition: Plane.h:16
void down()
set current node to the child node in the filtered tree
const Double_t * trans() const
The absolute translation of the current node.
int baseNumberToUnitNumber(const MuonBaseNumber &num) const override
bool nextSibling()
set the current node to the next sibling
DTLayer * buildLayer(cms::DDFilteredView &, DTSuperLayer *, const MuonGeometryConstants &) const
const ExpandedNodes & history()
The numbering history of the current node.
DTSuperLayer * buildSuperLayer(cms::DDFilteredView &, DTChamber *, const MuonGeometryConstants &) const
bool parent()
set the current node to the parent node ...
bool firstChild()
set the current node to the first child
dd4hep::Volume Volume
dd4hep::Volume worldVolume() const
Handle to the world volume containing everything.
Definition: DDDetector.cc:67
HLT enums.
const PlacedVolume volume() const
The physical volume of the current node.
void build(DTGeometry &, const cms::DDDetector *, const MuonGeometryConstants &, const dd4hep::SpecParRefs &)
Definition: Bounds.h:18
bool checkChild()
count the number of children matching selection
const std::vector< double > parameters() const
extract shape parameters
MuonBaseNumber geoHistoryToBaseNumber(const DDGeoHistory &history) const
RCPPlane plane(const cms::DDFilteredView &, Bounds *bounds) const