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 //
40 #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  bool doChamber = fview.firstChild();
53 
54  while (doChamber) {
55  DTChamber* chamber = buildChamber(fview, num);
56 
57  bool doSL = fview.nextSibling();
58  while (doSL) {
59  DTSuperLayer* sl = buildSuperLayer(fview, chamber, num);
60 
61  fview.down();
62  bool doLayers = fview.sibling();
63  while (doLayers) {
64  DTLayer* l = buildLayer(fview, sl, num);
65  geom.add(l);
66 
67  doLayers = fview.sibling();
68  }
69 
70  geom.add(sl);
71  doSL = fview.nextSibling();
72  }
73  geom.add(chamber);
74 
75  fview.parent();
76  doChamber = fview.firstChild();
77  }
78 }
79 
81  Bounds* bounds) const {
82  const Double_t* tr = fview.trans();
83  const Double_t* rot = fview.rot();
84 
85  return RCPPlane(
86  new Plane(Surface::PositionType(tr[0], tr[1], tr[2]),
87  Surface::RotationType(rot[0], rot[3], rot[6], rot[1], rot[4], rot[7], rot[2], rot[5], rot[8]),
88  bounds));
89 }
90 
92  const MuonGeometryConstants& muonConstants) const {
93  MuonGeometryNumbering mdddnum(muonConstants);
94  DTNumberingScheme dtnum(muonConstants);
95  int rawid = dtnum.baseNumberToUnitNumber(mdddnum.geoHistoryToBaseNumber(fview.history()));
96 
97  DTChamberId detId(rawid);
98  auto const& par = fview.parameters();
99 
100  RCPPlane surf(plane(fview, new RectangularPlaneBounds(par[0], par[1], par[2])));
101 
102  DTChamber* chamber = new DTChamber(detId, surf);
103 
104  return chamber;
105 }
106 
109  const MuonGeometryConstants& muonConstants) const {
110  MuonGeometryNumbering mdddnum(muonConstants);
111  DTNumberingScheme dtnum(muonConstants);
112  int rawid = dtnum.baseNumberToUnitNumber(mdddnum.geoHistoryToBaseNumber(fview.history()));
113 
114  DTSuperLayerId slId(rawid);
115 
116  auto const& par = fview.parameters();
117 
118  RCPPlane surf(plane(fview, new RectangularPlaneBounds(par[0], par[1], par[2])));
119 
120  DTSuperLayer* slayer = new DTSuperLayer(slId, surf, chamber);
121 
122  chamber->add(slayer);
123 
124  return slayer;
125 }
126 
128  DTSuperLayer* sl,
129  const MuonGeometryConstants& muonConstants) const {
130  MuonGeometryNumbering mdddnum(muonConstants);
131  DTNumberingScheme dtnum(muonConstants);
132  int rawid = dtnum.baseNumberToUnitNumber(mdddnum.geoHistoryToBaseNumber(fview.history()));
133 
134  DTLayerId layId(rawid);
135 
136  auto const& par = fview.parameters();
137 
138  RCPPlane surf(plane(fview, new RectangularPlaneBounds(par[0], par[1], par[2])));
139 
140  fview.down();
141  bool doWire = fview.sibling();
142  int firstWire = fview.volume()->GetNumber();
143  auto const& wpar = fview.parameters();
144  float wireLength = wpar[1];
145 
146  int WCounter = 0;
147  while (doWire) {
148  doWire = fview.checkChild();
149  WCounter++;
150  }
151  fview.up();
152 
153  DTTopology topology(firstWire, WCounter, wireLength);
154 
155  DTLayerType layerType;
156 
157  DTLayer* layer = new DTLayer(layId, surf, topology, layerType, sl);
158 
159  sl->add(layer);
160  return layer;
161 }
162 
164  const cms::DDDetector* det,
165  const MuonGeometryConstants& num,
166  const dd4hep::SpecParRefs& refs) {
167  cms::Volume top = det->worldVolume();
168  cms::DDFilteredView fview(det, top);
169  fview.mergedSpecifics(refs);
170  buildGeometry(fview, geom, num);
171 }
AlignmentErrorsExtended.h
cms::DDFilteredView::rot
const Double_t * rot() const
The absolute rotation of the current node.
Definition: DDFilteredView.cc:120
cms::DDFilteredView::volume
const PlacedVolume volume() const
The physical volume of the current node.
Definition: DDFilteredView.cc:68
DTGeometry
Definition: DTGeometry.h:28
TkRotation< float >
DTSuperLayerId
Definition: DTSuperLayerId.h:12
MuonGeometryConstants
Definition: MuonGeometryConstants.h:20
GlobalPositionRcd.h
cms::DDFilteredView::parameters
const std::vector< double > parameters() const
extract shape parameters
Definition: DDFilteredView.cc:536
cms::DDFilteredView::sibling
bool sibling()
set the current node to the next sub sibling
Definition: DDFilteredView.cc:450
MuonGeometryNumbering::geoHistoryToBaseNumber
MuonBaseNumber geoHistoryToBaseNumber(const DDGeoHistory &history) const
Definition: MuonGeometryNumbering.cc:38
DTRecoGeometryRcd.h
DTAlignmentErrorExtendedRcd.h
edm
HLT enums.
Definition: AlignableModifier.h:19
DTGeometryBuilderFromDD4Hep::buildLayer
DTLayer * buildLayer(cms::DDFilteredView &, DTSuperLayer *, const MuonGeometryConstants &) const
Definition: DTGeometryBuilderFromDD4Hep.cc:127
DTChamber
Definition: DTChamber.h:24
cms::DDFilteredView::parent
bool parent()
set the current node to the parent node ...
Definition: DDFilteredView.cc:481
Bounds
Definition: Bounds.h:18
DetectorGlobalPosition.h
MuonGeometryNumbering.h
ReferenceCountingPointer< Plane >
DTSuperLayer
Definition: DTSuperLayer.h:24
cms::DDFilteredView
Definition: DDFilteredView.h:70
DTGeometryBuilderFromDD4Hep::buildSuperLayer
DTSuperLayer * buildSuperLayer(cms::DDFilteredView &, DTChamber *, const MuonGeometryConstants &) const
Definition: DTGeometryBuilderFromDD4Hep.cc:107
MuonNumberingRecord.h
DTGeometryBuilderFromDD4Hep::buildGeometry
void buildGeometry(cms::DDFilteredView &, DTGeometry &, const MuonGeometryConstants &) const
Definition: DTGeometryBuilderFromDD4Hep.cc:49
cms::DDFilteredView::nextSibling
bool nextSibling()
set the current node to the next sibling
Definition: DDFilteredView.cc:427
DTTopology
Definition: DTTopology.h:28
Plane.h
GeometryFileRcd.h
cms::DDFilteredView::trans
const Double_t * trans() const
The absolute translation of the current node.
Definition: DDFilteredView.cc:101
ecaldqm::topology
const CaloTopology * topology(nullptr)
cms::DDFilteredView::firstChild
bool firstChild()
set the current node to the first child
Definition: DDFilteredView.cc:268
RectangularPlaneBounds.h
relativeConstraints.geom
geom
Definition: relativeConstraints.py:72
cms::DDFilteredView::mergedSpecifics
void mergedSpecifics(DDSpecParRefs const &)
User specific data.
Definition: DDFilteredView.cc:159
DTNumberingScheme::baseNumberToUnitNumber
int baseNumberToUnitNumber(const MuonBaseNumber &num) const override
Definition: DTNumberingScheme.cc:38
cms::DDFilteredView::down
void down()
set current node to the child node in the filtered tree
Definition: DDFilteredView.cc:505
Bounds.h
Point3DBase< float, GlobalTag >
DTLayerId
Definition: DTLayerId.h:12
RecoIdealGeometry.h
DTSuperLayer::add
void add(DTLayer *l)
Add layer to the SL which owns it.
Definition: DTSuperLayer.cc:47
DTGeometry.h
cms::Volume
dd4hep::Volume Volume
Definition: DDFilteredView.h:47
DTAlignmentErrorRcd.h
DTGeometryBuilderFromDD4Hep.h
MuonBaseNumber.h
cms::DDDetector::worldVolume
dd4hep::Volume worldVolume() const
Handle to the world volume containing everything.
Definition: DDDetector.cc:40
cms::DDFilteredView::history
const ExpandedNodes & history()
The numbering history of the current node.
Definition: DDFilteredView.cc:683
cms::DDFilteredView::up
void up()
set current node to the parent node in the filtered tree
Definition: DDFilteredView.cc:516
DTAlignmentRcd.h
DTNumberingScheme.h
DTLayer
Definition: DTLayer.h:25
EgammaValidation_cff.num
num
Definition: EgammaValidation_cff.py:34
cmsLHEtoEOSManager.l
l
Definition: cmsLHEtoEOSManager.py:204
DTGeometryBuilderFromDD4Hep::plane
RCPPlane plane(const cms::DDFilteredView &, Bounds *bounds) const
Definition: DTGeometryBuilderFromDD4Hep.cc:80
DTGeometryBuilderFromDD4Hep::build
void build(DTGeometry &, const cms::DDDetector *, const MuonGeometryConstants &, const dd4hep::SpecParRefs &)
Definition: DTGeometryBuilderFromDD4Hep.cc:163
std
Definition: JetResolutionObject.h:76
RectangularPlaneBounds
Definition: RectangularPlaneBounds.h:12
GeometryAligner.h
cms::DDFilteredView::checkChild
bool checkChild()
count the number of children matching selection
Definition: DDFilteredView.cc:466
DTLayerType
Definition: DTLayerType.h:15
cms::DDDetector
Definition: DDDetector.h:12
Plane
Definition: Plane.h:16
makeMuonMisalignmentScenario.rot
rot
Definition: makeMuonMisalignmentScenario.py:322
relativeConstraints.chamber
chamber
Definition: relativeConstraints.py:53
MuonGeometryNumbering
Definition: MuonGeometryNumbering.h:24
DTGeometryBuilderFromDD4Hep::buildChamber
DTChamber * buildChamber(cms::DDFilteredView &, const MuonGeometryConstants &) const
Definition: DTGeometryBuilderFromDD4Hep.cc:91
DTChamberId
Definition: DTChamberId.h:14
MuonGeometryRecord.h
DTNumberingScheme
Definition: DTNumberingScheme.h:20