CMS 3D CMS Logo

ME0GeometryParsFromDD.cc
Go to the documentation of this file.
11 #include "CLHEP/Units/GlobalSystemOfUnits.h"
12 
14  const MuonDDDConstants& muonConstants,
15  RecoIdealGeometry& rgeo) {
16  std::string attribute = "MuStructure";
17  std::string value = "MuonEndCapME0";
18 
19  // Asking only for the MuonME0's
20  DDSpecificsMatchesValueFilter filter{DDValue(attribute, value, 0.0)};
21  DDFilteredView fview(*cview, filter);
22 
23  this->buildGeometry(fview, muonConstants, rgeo);
24 }
25 
27  const MuonDDDConstants& muonConstants,
28  RecoIdealGeometry& rgeo) {
29  LogDebug("ME0GeometryParsFromDD") << "Building the geometry service";
30  LogDebug("ME0GeometryParsFromDD") << "About to run through the ME0 structure\n"
31  << " First logical part " << fv.logicalPart().name().name();
32 
33  MuonDDDNumbering muonDDDNumbering(muonConstants);
34  ME0NumberingScheme me0Numbering(muonConstants);
35 
36  bool doChambers = fv.firstChild();
37  LogDebug("ME0GeometryParsFromDD") << "doChamber = " << doChambers;
38  // loop over superchambers
39  while (doChambers) {
40  // getting chamber id from eta partitions
41  fv.firstChild();
42  fv.firstChild();
43  ME0DetId detIdCh =
44  ME0DetId(me0Numbering.baseNumberToUnitNumber(muonDDDNumbering.geoHistoryToBaseNumber(fv.geoHistory())));
45  // back to chambers
46  fv.parent();
47  fv.parent();
48 
49  buildChamber(fv, detIdCh, rgeo);
50 
51  // loop over chambers
52  // only 1 chamber
53  bool doLayers = fv.firstChild();
54  while (doLayers) {
55  // get layer ID
56  fv.firstChild();
57  ME0DetId detIdLa =
58  ME0DetId(me0Numbering.baseNumberToUnitNumber(muonDDDNumbering.geoHistoryToBaseNumber(fv.geoHistory())));
59  fv.parent();
60  // build layer
61  buildLayer(fv, detIdLa, rgeo);
62 
63  // loop over ME0EtaPartitions
64  bool doEtaPart = fv.firstChild();
65  while (doEtaPart) {
66  ME0DetId detId =
67  ME0DetId(me0Numbering.baseNumberToUnitNumber(muonDDDNumbering.geoHistoryToBaseNumber(fv.geoHistory())));
68  buildEtaPartition(fv, detId, rgeo);
69 
70  doEtaPart = fv.nextSibling();
71  }
72  fv.parent();
73  doLayers = fv.nextSibling();
74  }
75  fv.parent();
76  doChambers = fv.nextSibling();
77  }
78 }
79 
81  LogDebug("ME0GeometryParsFromDD") << "buildChamber " << fv.logicalPart().name().name() << " " << detId << std::endl;
82 
83  std::vector<double> pars = getDimension(fv);
84  std::vector<double> vtra = getTranslation(fv);
85  std::vector<double> vrot = getRotation(fv);
86 
87  rgeo.insert(detId.chamberId().rawId(), vtra, vrot, pars, {fv.logicalPart().name().name()});
88 }
89 
91  LogDebug("ME0GeometryParsFromDD") << "buildLayer " << fv.logicalPart().name().name() << " " << detId << std::endl;
92 
93  std::vector<double> pars = getDimension(fv);
94  std::vector<double> vtra = getTranslation(fv);
95  std::vector<double> vrot = getRotation(fv);
96 
97  rgeo.insert(detId.layerId().rawId(), vtra, vrot, pars, {fv.logicalPart().name().name()});
98 }
99 
101  LogDebug("ME0GeometryParsFromDD") << "buildEtaPartition " << fv.logicalPart().name().name() << " " << detId
102  << std::endl;
103 
104  // EtaPartition specific parameter (nstrips and npads)
105  DDValue numbOfStrips("nStrips");
106  DDValue numbOfPads("nPads");
107  const std::vector<const DDsvalues_type*>& specs = fv.specifics();
108  double nStrips = 0., nPads = 0.;
109  for (auto const& is : specs) {
110  if (DDfetch(is, numbOfStrips))
111  nStrips = numbOfStrips.doubles()[0];
112  if (DDfetch(is, numbOfPads))
113  nPads = numbOfPads.doubles()[0];
114  }
115  LogDebug("ME0GeometryParsFromDD") << ((nStrips == 0.) ? ("No nStrips found!!")
116  : ("Number of strips: " + std::to_string(nStrips)));
117  LogDebug("ME0GeometryParsFromDD") << ((nPads == 0.) ? ("No nPads found!!")
118  : ("Number of pads: " + std::to_string(nPads)));
119 
120  std::vector<double> pars = getDimension(fv);
121  pars.emplace_back(nStrips);
122  pars.emplace_back(nPads);
123  std::vector<double> vtra = getTranslation(fv);
124  std::vector<double> vrot = getRotation(fv);
125 
126  rgeo.insert(detId.rawId(), vtra, vrot, pars, {fv.logicalPart().name().name()});
127 }
128 
130  std::vector<double> dpar = fv.logicalPart().solid().parameters();
131  //dpar[4] bottom width is along local X
132  //dpar[8] top width is along local X
133  //dpar[3] thickness is long local Z
134  //dpar[0] length is along local Y
135  LogDebug("ME0GeometryParsFromDD") << "dimension dx1 " << dpar[4] << ", dx2 " << dpar[8] << ", dy " << dpar[0]
136  << ", dz " << dpar[3];
137  return {dpar[4], dpar[8], dpar[0], dpar[3]};
138 }
139 
141  const DDTranslation& tran = fv.translation();
142  return {tran.x(), tran.y(), tran.z()};
143 }
144 
146  const DDRotationMatrix& rota = fv.rotation(); //.Inverse();
147  DD3Vector x, y, z;
148  rota.GetComponents(x, y, z);
149  return {x.X(), x.Y(), x.Z(), y.X(), y.Y(), y.Z(), z.X(), z.Y(), z.Z()};
150 }
#define LogDebug(id)
const std::vector< double > & parameters(void) const
Give the parameters of the solid.
Definition: DDSolid.cc:121
bool parent()
set the current node to the parent node ...
ME0DetId layerId() const
Return the corresponding LayerId (mask eta partition)
Definition: ME0DetId.h:55
const DDLogicalPart & logicalPart() const
The logical-part of the current node in the filtered-view.
const std::vector< double > & doubles() const
a reference to the double-valued values stored in the given instance of DDValue
Definition: DDValue.cc:111
void buildEtaPartition(DDFilteredView &fv, ME0DetId detId, RecoIdealGeometry &rgeo)
const N & name() const
Definition: DDBase.h:59
std::vector< double > getDimension(DDFilteredView &fv)
ME0DetId chamberId() const
Return the corresponding ChamberId (mask layers)
Definition: ME0DetId.h:53
bool nextSibling()
set the current node to the next sibling ...
const DDRotationMatrix & rotation() const
The absolute rotation of the current node.
bool insert(DetId id, const std::vector< double > &trans, const std::vector< double > &rot, const std::vector< double > &pars)
ROOT::Math::Rotation3D DDRotationMatrix
A DDRotationMatrix is currently implemented with a ROOT Rotation3D.
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
void build(const DDCompactView *, const MuonDDDConstants &, RecoIdealGeometry &)
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
Compact representation of the geometrical detector hierarchy.
Definition: DDCompactView.h:80
const DDGeoHistory & geoHistory() const
The list of ancestors up to the root-node of the current node.
void buildChamber(DDFilteredView &fv, ME0DetId detId, RecoIdealGeometry &rgeo)
bool DDfetch(const DDsvalues_type *, DDValue &)
helper for retrieving DDValues from DDsvalues_type *.
Definition: DDsvalues.cc:79
nStrips
1.2 is to make the matching window safely the two nearest strips 0.35 is the size of an ME0 chamber i...
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7
int baseNumberToUnitNumber(const MuonBaseNumber &) override
std::vector< double > getRotation(DDFilteredView &fv)
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DD3Vector
A DD Translation is currently implemented with Root Vector3D.
Definition: DDTranslation.h:6
Definition: value.py:1
void buildGeometry(DDFilteredView &, const MuonDDDConstants &, RecoIdealGeometry &)
bool firstChild()
set the current node to the first child ...
const DDTranslation & translation() const
The absolute translation of the current node.
std::vector< const DDsvalues_type * > specifics() const
void buildLayer(DDFilteredView &fv, ME0DetId detId, RecoIdealGeometry &rgeo)
std::vector< double > getTranslation(DDFilteredView &fv)
MuonBaseNumber geoHistoryToBaseNumber(const DDGeoHistory &history)
const std::string & name() const
Returns the name.
Definition: DDName.cc:40