CMS 3D CMS Logo

TGeoMgrFromDdd.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Geometry
4 // Class : TGeoMgrFromDdd
5 //
6 // Implementation:
7 // [Notes on implementation]
8 //
9 // Original Author:
10 // Created: Fri Jul 2 16:11:42 CEST 2010
11 //
12 
20 
24 
26 
28 
29 #include "TGeoManager.h"
30 #include "TGeoMatrix.h"
31 #include "TGeoCompositeShape.h"
32 #include "TGeoPcon.h"
33 #include "TGeoPgon.h"
34 #include "TGeoCone.h"
35 #include "TGeoBoolNode.h"
36 #include "TGeoTube.h"
37 #include "TGeoArb8.h"
38 #include "TGeoTrd2.h"
39 #include "TGeoTorus.h"
40 #include "TGeoEltu.h"
41 #include "TGeoXtru.h"
42 
43 #include "Math/GenVector/RotationX.h"
44 #include "Math/GenVector/RotationZ.h"
45 
46 #include "CLHEP/Units/GlobalSystemOfUnits.h"
47 #include <cmath>
48 
50 public:
52  TGeoMgrFromDdd(const TGeoMgrFromDdd&) = delete;
53  const TGeoMgrFromDdd& operator=(const TGeoMgrFromDdd&) = delete;
54 
55  using ReturnType = std::unique_ptr<TGeoManager>;
56 
57  // ---------- const member functions ---------------------
58 
59  // ---------- static member functions --------------------
60 
61  // ---------- member functions ---------------------------
62 
64 
66 
67 private:
68  TGeoManager* createManager(int level);
69 
70  TGeoShape* createShape(const std::string& iName, const DDSolid& iSolid);
71  TGeoVolume* createVolume(const std::string& iName, const DDSolid& iSolid, const DDMaterial& iMaterial);
72  TGeoMaterial* createMaterial(const DDMaterial& iMaterial);
73 
74  // ---------- member data --------------------------------
75 
76  const int m_level;
77  const bool m_verbose;
78  const bool m_fullname;
81 
82  std::map<std::string, TGeoShape*> nameToShape_;
83  std::map<std::string, TGeoVolume*> nameToVolume_;
84  std::map<std::string, TGeoMaterial*> nameToMaterial_;
85  std::map<std::string, TGeoMedium*> nameToMedium_;
86 
88 };
89 
91  : m_level(pset.getUntrackedParameter<int>("level")),
92  m_verbose(pset.getUntrackedParameter<bool>("verbose")),
93  m_fullname(pset.getUntrackedParameter<bool>("fullName")),
94  viewToken_(setWhatProduced(this).consumes()) {}
95 
98  desc.addUntracked<int>("level", 10)->setComment("How deep into the geometry hierarchy should the conversion go.");
99  desc.addUntracked<bool>("verbose", false);
100  desc.addUntracked<bool>("fullName", true)->setComment("use fillname() instead of name() when generating node names");
101 
102  conf.add("TGeoMgrFromDdd", desc);
103 }
104 
105 //==============================================================================
106 // Local helpers
107 //==============================================================================
108 
109 namespace {
110  TGeoCombiTrans* createPlacement(const DDRotationMatrix& iRot, const DDTranslation& iTrans) {
111  double elements[9];
112  iRot.GetComponents(elements);
113  TGeoRotation r;
114  r.SetMatrix(elements);
115 
116  TGeoTranslation t(iTrans.x() / cm, iTrans.y() / cm, iTrans.z() / cm);
117 
118  return new TGeoCombiTrans(t, r);
119  }
120 } // namespace
121 
122 //==============================================================================
123 // public member functions
124 //==============================================================================
125 
127  using namespace edm;
128 
130 
131  if (!viewH.isValid()) {
132  return std::unique_ptr<TGeoManager>();
133  }
134 
135  TGeoManager* geo_mgr = new TGeoManager("cmsGeo", "CMS Detector");
136  // NOTE: the default constructor does not create the identity matrix
137  if (gGeoIdentity == nullptr) {
138  gGeoIdentity = new TGeoIdentity("Identity");
139  }
140 
141  edm::LogVerbatim("TGeoMgrFromDdd") << "about to initialize the DDCompactView walker with a root node "
142  << viewH->root() << std::endl;
143 
144  auto walker = viewH->walker();
145  auto info = walker.current();
146 
147  // The top most item is actually the volume holding both the
148  // geometry AND the magnetic field volumes!
149  walker.firstChild();
150  if (!walker.firstChild()) {
151  return std::unique_ptr<TGeoManager>();
152  }
153 
154  TGeoVolume* top = (m_fullname ? createVolume(info.first.name().fullname(), info.first.solid(), info.first.material())
155  : createVolume(info.first.name().name(), info.first.solid(), info.first.material()));
156 
157  if (top == nullptr) {
158  return std::unique_ptr<TGeoManager>();
159  }
160 
161  geo_mgr->SetTopVolume(top);
162  // ROOT chokes unless colors are assigned
163  top->SetVisibility(kFALSE);
164  top->SetLineColor(kBlue);
165 
166  std::vector<TGeoVolume*> parentStack;
167  parentStack.push_back(top);
168 
169  do {
170  auto info = walker.current();
171 
172  if (m_verbose) {
173  edm::LogVerbatim("TGeoMgrFromDdd") << "parentStack of size " << parentStack.size();
174  auto num = (info.second != nullptr) ? info.second->copyno() : 0;
175  edm::LogVerbatim("TGeoMgrFromDdd") << info.first.name() << " " << num << " "
176  << DDSolidShapesName::name(info.first.solid().shape());
177  }
178 
179  std::string name = m_fullname ? info.first.name().fullname() : info.first.name().name();
180  bool childAlreadyExists = (nullptr != nameToVolume_[name]);
181  TGeoVolume* child = createVolume(name, info.first.solid(), info.first.material());
182  if (nullptr != child && info.second != nullptr) {
183  parentStack.back()->AddNode(
184  child, info.second->copyno(), createPlacement(info.second->rotation(), info.second->translation()));
185  child->SetLineColor(kBlue);
186  } else {
187  if (info.second == nullptr) {
188  break;
189  }
190  }
191  if (nullptr == child || childAlreadyExists || m_level == int(parentStack.size())) {
192  if (nullptr != child) {
193  child->SetLineColor(kRed);
194  }
195  //stop descending
196  if (!walker.nextSibling()) {
197  while (walker.parent()) {
198  parentStack.pop_back();
199  if (walker.nextSibling()) {
200  break;
201  }
202  }
203  }
204  } else {
205  if (walker.firstChild()) {
206  parentStack.push_back(child);
207  } else {
208  if (!walker.nextSibling()) {
209  while (walker.parent()) {
210  parentStack.pop_back();
211  if (walker.nextSibling()) {
212  break;
213  }
214  }
215  }
216  }
217  }
218  } while (!parentStack.empty());
219 
220  geo_mgr->CloseGeometry();
221 
222  geo_mgr->DefaultColors();
223 
224  nameToShape_.clear();
225  nameToVolume_.clear();
226  nameToMaterial_.clear();
227  nameToMedium_.clear();
228 
229  return std::unique_ptr<TGeoManager>(geo_mgr);
230 }
231 
232 //==============================================================================
233 // private member functions
234 //==============================================================================
235 
236 TGeoShape* TGeoMgrFromDdd::createShape(const std::string& iName, const DDSolid& iSolid) {
237  edm::LogVerbatim("TGeoMgrFromDdd") << "createShape with name: " << iName
238  << " and solid: " << iSolid.name().fullname();
239 
241  if (!defined.first)
242  throw cms::Exception("TGeoMgrFromDdd::createShape * solid " + iName + " is not declared * ");
243  if (!defined.second)
244  throw cms::Exception("TGeoMgrFromDdd::createShape * solid " + defined.first->name() + " is not defined *");
245 
246  TGeoShape* rSolid = nameToShape_[iName];
247  if (rSolid == nullptr) {
248  const std::vector<double>& params = iSolid.parameters();
249  switch (iSolid.shape()) {
250  case DDSolidShape::ddbox:
251  rSolid = new TGeoBBox(iName.c_str(), params[0] / cm, params[1] / cm, params[2] / cm);
252  break;
254  rSolid = new TGeoConeSeg(iName.c_str(),
255  params[0] / cm,
256  params[1] / cm,
257  params[2] / cm,
258  params[3] / cm,
259  params[4] / cm,
260  params[5] / deg,
261  params[6] / deg + params[5] / deg);
262  break;
264  //Order in params is zhalf,rIn,rOut,startPhi,deltaPhi
265  rSolid = new TGeoTubeSeg(iName.c_str(),
266  params[1] / cm,
267  params[2] / cm,
268  params[0] / cm,
269  params[3] / deg,
270  params[3] / deg + params[4] / deg);
271  break;
273  //Order in params is zhalf,rIn,rOut,startPhi,deltaPhi,lx,ly,lz,tx,ty,tz
274  rSolid = new TGeoCtub(iName.c_str(),
275  params[1] / cm,
276  params[2] / cm,
277  params[0] / cm,
278  params[3] / deg,
279  params[3] / deg + params[4] / deg,
280  params[5],
281  params[6],
282  params[7],
283  params[8],
284  params[9],
285  params[10]);
286  break;
288  rSolid = new TGeoTrap(iName.c_str(),
289  params[0] / cm, //dz
290  params[1] / deg, //theta
291  params[2] / deg, //phi
292  params[3] / cm, //dy1
293  params[4] / cm, //dx1
294  params[5] / cm, //dx2
295  params[6] / deg, //alpha1
296  params[7] / cm, //dy2
297  params[8] / cm, //dx3
298  params[9] / cm, //dx4
299  params[10] / deg); //alpha2
300  break;
302  rSolid = new TGeoPcon(iName.c_str(), params[0] / deg, params[1] / deg, (params.size() - 2) / 3);
303  {
304  std::vector<double> temp(params.size() + 1);
305  temp.reserve(params.size() + 1);
306  temp[0] = params[0] / deg;
307  temp[1] = params[1] / deg;
308  temp[2] = (params.size() - 2) / 3;
309  std::copy(params.begin() + 2, params.end(), temp.begin() + 3);
310  for (std::vector<double>::iterator it = temp.begin() + 3; it != temp.end(); ++it) {
311  *it /= cm;
312  }
313  rSolid->SetDimensions(&(*(temp.begin())));
314  }
315  break;
317  rSolid = new TGeoPgon(
318  iName.c_str(), params[1] / deg, params[2] / deg, static_cast<int>(params[0]), (params.size() - 3) / 3);
319  {
320  std::vector<double> temp(params.size() + 1);
321  temp[0] = params[1] / deg;
322  temp[1] = params[2] / deg;
323  temp[2] = params[0];
324  temp[3] = (params.size() - 3) / 3;
325  std::copy(params.begin() + 3, params.end(), temp.begin() + 4);
326  for (std::vector<double>::iterator it = temp.begin() + 4; it != temp.end(); ++it) {
327  *it /= cm;
328  }
329  rSolid->SetDimensions(&(*(temp.begin())));
330  }
331  break;
333  DDExtrudedPolygon extrPgon(iSolid);
334  std::vector<double> x = extrPgon.xVec();
335  std::transform(x.begin(), x.end(), x.begin(), [](double d) { return d / cm; });
336  std::vector<double> y = extrPgon.yVec();
337  std::transform(y.begin(), y.end(), y.begin(), [](double d) { return d / cm; });
338  std::vector<double> z = extrPgon.zVec();
339  std::vector<double> zx = extrPgon.zxVec();
340  std::vector<double> zy = extrPgon.zyVec();
341  std::vector<double> zscale = extrPgon.zscaleVec();
342 
343  TGeoXtru* mySolid = new TGeoXtru(z.size());
344  mySolid->DefinePolygon(x.size(), &(*x.begin()), &(*y.begin()));
345  for (size_t i = 0; i < params[0]; ++i) {
346  mySolid->DefineSection(i, z[i] / cm, zx[i] / cm, zy[i] / cm, zscale[i]);
347  }
348 
349  rSolid = mySolid;
350  } break;
352  //implementation taken from SimG4Core/Geometry/src/DDG4SolidConverter.cc
353  const static DDRotationMatrix s_rot(ROOT::Math::RotationX(90. * deg));
354  DDPseudoTrap pt(iSolid);
355 
356  double r = pt.radius();
357  bool atMinusZ = pt.atMinusZ();
358  double x = 0;
359  double h = 0;
360  bool intersec = false; // union or intersection solid
361 
362  if (atMinusZ) {
363  x = pt.x1(); // tubs radius
364  } else {
365  x = pt.x2(); // tubs radius
366  }
367  double halfOpeningAngle = asin(x / std::abs(r)) / deg;
368  double displacement = 0;
369  double startPhi = 0;
370  /* calculate the displacement of the tubs w.r.t. to the trap,
371  determine the opening angle of the tubs */
372  double delta = sqrt(r * r - x * x);
373  std::string name = m_fullname ? pt.name().fullname() : pt.name().name();
374 
375  if (r < 0 && std::abs(r) >= x) {
376  intersec = true; // intersection solid
377  h = pt.y1() < pt.y2() ? pt.y2() : pt.y1(); // tubs half height
378  h += h / 20.; // enlarge a bit - for subtraction solid
379  if (atMinusZ) {
380  displacement = -pt.halfZ() - delta;
381  startPhi = 90. - halfOpeningAngle;
382  } else {
383  displacement = pt.halfZ() + delta;
384  startPhi = -90. - halfOpeningAngle;
385  }
386  } else if (r > 0 && std::abs(r) >= x) {
387  if (atMinusZ) {
388  displacement = -pt.halfZ() + delta;
389  startPhi = 270. - halfOpeningAngle;
390  h = pt.y1();
391  } else {
392  displacement = pt.halfZ() - delta;
393  startPhi = 90. - halfOpeningAngle;
394  h = pt.y2();
395  }
396  } else {
397  throw cms::Exception("Check parameters of the PseudoTrap! name=" + name);
398  }
399 
400  std::unique_ptr<TGeoShape> trap(
401  new TGeoTrd2(name.c_str(), pt.x1() / cm, pt.x2() / cm, pt.y1() / cm, pt.y2() / cm, pt.halfZ() / cm));
402 
403  std::unique_ptr<TGeoShape> tubs(new TGeoTubeSeg(name.c_str(),
404  0.,
405  std::abs(r) / cm, // radius cannot be negative!!!
406  h / cm,
407  startPhi,
408  startPhi + halfOpeningAngle * 2.));
409  if (intersec) {
410  TGeoSubtraction* sub = new TGeoSubtraction(
411  trap.release(), tubs.release(), nullptr, createPlacement(s_rot, DDTranslation(0., 0., displacement)));
412  rSolid = new TGeoCompositeShape(iName.c_str(), sub);
413  } else {
414  std::unique_ptr<TGeoShape> box(new TGeoBBox(1.1 * x / cm, 1.1 * h / cm, sqrt(r * r - x * x) / cm));
415 
416  TGeoSubtraction* sub = new TGeoSubtraction(
417  tubs.release(), box.release(), nullptr, createPlacement(s_rot, DDTranslation(0., 0., 0.)));
418 
419  std::unique_ptr<TGeoShape> tubicCap(new TGeoCompositeShape(iName.c_str(), sub));
420 
421  TGeoUnion* boolS = new TGeoUnion(
422  trap.release(), tubicCap.release(), nullptr, createPlacement(s_rot, DDTranslation(0., 0., displacement)));
423 
424  rSolid = new TGeoCompositeShape(iName.c_str(), boolS);
425  }
426 
427  break;
428  }
429  case DDSolidShape::ddtorus: {
430  DDTorus solid(iSolid);
431  rSolid = new TGeoTorus(iName.c_str(),
432  solid.rTorus() / cm,
433  solid.rMin() / cm,
434  solid.rMax() / cm,
435  solid.startPhi() / deg,
436  solid.deltaPhi() / deg);
437  break;
438  }
440  DDBooleanSolid boolSolid(iSolid);
441  if (!boolSolid) {
442  throw cms::Exception("GeomConvert") << "conversion to DDBooleanSolid failed";
443  }
444 
445  std::string nameA = m_fullname ? boolSolid.solidA().name().fullname() : boolSolid.solidA().name().name();
446  std::string nameB = m_fullname ? boolSolid.solidB().name().fullname() : boolSolid.solidB().name().name();
447  std::unique_ptr<TGeoShape> left(createShape(nameA, boolSolid.solidA()));
448  std::unique_ptr<TGeoShape> right(createShape(nameB, boolSolid.solidB()));
449  if (nullptr != left.get() && nullptr != right.get()) {
450  TGeoSubtraction* sub =
451  new TGeoSubtraction(left.release(),
452  right.release(),
453  nullptr,
454  createPlacement(boolSolid.rotation().matrix(), boolSolid.translation()));
455  rSolid = new TGeoCompositeShape(iName.c_str(), sub);
456  }
457  break;
458  }
460  DDTruncTubs tt(iSolid);
461  if (!tt) {
462  throw cms::Exception("GeomConvert") << "conversion to DDTruncTubs failed";
463  }
464  double rIn(tt.rIn());
465  double rOut(tt.rOut());
466  double zHalf(tt.zHalf());
467  double startPhi(tt.startPhi());
468  double deltaPhi(tt.deltaPhi());
469  double cutAtStart(tt.cutAtStart());
470  double cutAtDelta(tt.cutAtDelta());
471  bool cutInside(bool(tt.cutInside()));
472  std::string name = m_fullname ? tt.name().fullname() : tt.name().name();
473 
474  // check the parameters
475  if (rIn <= 0 || rOut <= 0 || cutAtStart <= 0 || cutAtDelta <= 0) {
476  std::string s = "TruncTubs " + name + ": 0 <= rIn,cutAtStart,rOut,cutAtDelta,rOut violated!";
477  throw cms::Exception(s);
478  }
479  if (rIn >= rOut) {
480  std::string s = "TruncTubs " + name + ": rIn<rOut violated!";
481  throw cms::Exception(s);
482  }
483  if (startPhi != 0.) {
484  std::string s = "TruncTubs " + name + ": startPhi != 0 not supported!";
485  throw cms::Exception(s);
486  }
487 
488  startPhi = 0.;
489  double r(cutAtStart);
490  double R(cutAtDelta);
491 
492  // Note: startPhi is always 0.0
493  std::unique_ptr<TGeoShape> tubs(
494  new TGeoTubeSeg(name.c_str(), rIn / cm, rOut / cm, zHalf / cm, startPhi, deltaPhi / deg));
495 
496  double boxX(rOut), boxY(rOut); // exaggerate dimensions - does not matter, it's subtracted!
497 
498  // width of the box > width of the tubs
499  double boxZ(1.1 * zHalf);
500 
501  // angle of the box w.r.t. tubs
502  double cath = r - R * cos(deltaPhi);
503  double hypo = sqrt(r * r + R * R - 2. * r * R * cos(deltaPhi));
504  double cos_alpha = cath / hypo;
505  double alpha = -acos(cos_alpha);
506 
507  // rotationmatrix of box w.r.t. tubs
508  TGeoRotation rot;
509  rot.RotateX(90);
510  rot.RotateZ(alpha / deg);
511 
512  // center point of the box
513  double xBox;
514  if (!cutInside) {
515  xBox = r + boxX / sin(fabs(alpha));
516  } else {
517  xBox = -(boxX / sin(fabs(alpha)) - r);
518  }
519  std::unique_ptr<TGeoShape> box(new TGeoBBox(name.c_str(), boxX / cm, boxZ / cm, boxY / cm));
520 
521  TGeoTranslation trans(xBox / cm, 0., 0.);
522 
523  TGeoSubtraction* sub =
524  new TGeoSubtraction(tubs.release(), box.release(), nullptr, new TGeoCombiTrans(trans, rot));
525 
526  rSolid = new TGeoCompositeShape(iName.c_str(), sub);
527  break;
528  }
529  case DDSolidShape::ddunion: {
530  DDBooleanSolid boolSolid(iSolid);
531  if (!boolSolid) {
532  throw cms::Exception("GeomConvert") << "conversion to DDBooleanSolid failed";
533  }
534 
535  std::string nameA = m_fullname ? boolSolid.solidA().name().fullname() : boolSolid.solidA().name().name();
536  std::string nameB = m_fullname ? boolSolid.solidB().name().fullname() : boolSolid.solidB().name().name();
537  std::unique_ptr<TGeoShape> left(createShape(nameA, boolSolid.solidA()));
538  std::unique_ptr<TGeoShape> right(createShape(nameB, boolSolid.solidB()));
539  //DEBUGGING
540  //break;
541  if (nullptr != left.get() && nullptr != right.get()) {
542  TGeoUnion* boolS = new TGeoUnion(left.release(),
543  right.release(),
544  nullptr,
545  createPlacement(boolSolid.rotation().matrix(), boolSolid.translation()));
546  rSolid = new TGeoCompositeShape(iName.c_str(), boolS);
547  }
548  break;
549  }
551  DDBooleanSolid boolSolid(iSolid);
552  if (!boolSolid) {
553  throw cms::Exception("GeomConvert") << "conversion to DDBooleanSolid failed";
554  }
555 
556  std::string nameA = m_fullname ? boolSolid.solidA().name().fullname() : boolSolid.solidA().name().name();
557  std::string nameB = m_fullname ? boolSolid.solidB().name().fullname() : boolSolid.solidB().name().name();
558  std::unique_ptr<TGeoShape> left(createShape(nameA, boolSolid.solidA()));
559  std::unique_ptr<TGeoShape> right(createShape(nameB, boolSolid.solidB()));
560  if (nullptr != left.get() && nullptr != right.get()) {
561  TGeoIntersection* boolS =
562  new TGeoIntersection(left.release(),
563  right.release(),
564  nullptr,
565  createPlacement(boolSolid.rotation().matrix(), boolSolid.translation()));
566  rSolid = new TGeoCompositeShape(iName.c_str(), boolS);
567  }
568  break;
569  }
571  DDEllipticalTube eSolid(iSolid);
572  if (!eSolid) {
573  throw cms::Exception("GeomConvert") << "conversion to DDEllipticalTube failed";
574  }
575  rSolid = new TGeoEltu(iName.c_str(), params[0] / cm, params[1] / cm, params[2] / cm);
576  break;
577  }
578  default:
579  break;
580  }
581  nameToShape_[iName] = rSolid;
582  }
583  if (rSolid == nullptr) {
584  edm::LogError("TGeoMgrFromDdd") << "COULD NOT MAKE " << iName << " of a shape " << iSolid;
585  }
586 
587  edm::LogVerbatim("TGeoMgrFromDdd") << "solid " << iName << " has been created.";
588 
589  return rSolid;
590 }
591 
592 TGeoVolume* TGeoMgrFromDdd::createVolume(const std::string& iName, const DDSolid& iSolid, const DDMaterial& iMaterial) {
593  edm::LogVerbatim("TGeoMgrFromDdd") << "createVolume with name: " << iName
594  << " and solid: " << iSolid.name().fullname() << " and material "
595  << iMaterial.name().fullname();
596  TGeoVolume* v = nameToVolume_[iName];
597  if (v == nullptr) {
598  TGeoShape* solid =
599  m_fullname ? createShape(iSolid.name().fullname(), iSolid) : createShape(iSolid.name().name(), iSolid);
600  std::string mat_name = m_fullname ? iMaterial.name().fullname() : iMaterial.name().name();
601  TGeoMedium* geo_med = nameToMedium_[mat_name];
602  if (geo_med == nullptr) {
603  TGeoMaterial* geo_mat = createMaterial(iMaterial);
604  geo_med = new TGeoMedium(mat_name.c_str(), 0, geo_mat);
605  nameToMedium_[mat_name] = geo_med;
606  }
607  if (solid) {
608  v = new TGeoVolume(iName.c_str(), solid, geo_med);
609  }
610  nameToVolume_[iName] = v;
611  }
612  return v;
613 }
614 
615 TGeoMaterial* TGeoMgrFromDdd::createMaterial(const DDMaterial& iMaterial) {
616  std::string mat_name = m_fullname ? iMaterial.name().fullname() : iMaterial.name().name();
617  edm::LogVerbatim("TGeoMgrFromDdd") << "createMaterial with name: " << mat_name;
618  TGeoMaterial* mat = nameToMaterial_[mat_name];
619 
620  if (mat == nullptr) {
621  if (iMaterial.noOfConstituents() > 0) {
622  TGeoMixture* mix = new TGeoMixture(mat_name.c_str(), iMaterial.noOfConstituents(), iMaterial.density() * cm3 / g);
623  for (int i = 0; i < iMaterial.noOfConstituents(); ++i) {
624  mix->AddElement(createMaterial(iMaterial.constituent(i).first), iMaterial.constituent(i).second);
625  }
626  mat = mix;
627  } else {
628  mat = new TGeoMaterial(mat_name.c_str(), iMaterial.a() * mole / g, iMaterial.z(), iMaterial.density() * cm3 / g);
629  }
630  nameToMaterial_[mat_name] = mat;
631  }
632 
633  return mat;
634 }
635 
636 //
637 // const member functions
638 //
639 
640 //
641 // static member functions
642 //
ESTransientHandle< ProductT > getTransientHandle(ESGetToken< ProductT, DepRecordT > const &iToken) const
Log< level::Info, true > LogVerbatim
DDSolid solidA(void) const
Definition: DDSolid.cc:470
DDRotation rotation(void) const
Definition: DDSolid.cc:466
std::vector< double > yVec(void) const
Definition: DDSolid.cc:382
std::vector< double > zscaleVec(void) const
Definition: DDSolid.cc:402
TGeoMaterial * createMaterial(const DDMaterial &iMaterial)
static const TGPicture * info(bool iBackgroundIsBlack)
GraphWalker walker() const
A truncated tube section.
Definition: DDSolid.h:139
DDMaterial is used to define and access material information.
Definition: DDMaterial.h:45
const TGeoMgrFromDdd & operator=(const TGeoMgrFromDdd &)=delete
std::unique_ptr< TGeoManager > ReturnType
std::vector< double > xVec(void) const
Definition: DDSolid.cc:378
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
const std::vector< double > & parameters(void) const
Give the parameters of the solid.
Definition: DDSolid.cc:125
Log< level::Error, false > LogError
TGeoCombiTrans * createPlacement(const Rotation3D &iRot, const Position &iTrans)
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e g
Definition: Activities.doc:4
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
std::vector< double > zVec(void) const
Definition: DDSolid.cc:387
const bool m_fullname
double startPhi(void) const
Definition: DDSolid.cc:442
const edm::ESGetToken< DDCompactView, IdealGeometryRecord > viewToken_
static const char *const name(DDSolidShape s)
Definition: DDSolidShapes.h:33
DDTranslation translation(void) const
Definition: DDSolid.cc:468
Definition: TTTypes.h:54
const std::string & name() const
Returns the name.
Definition: DDName.cc:41
ROOT::Math::Rotation3D DDRotationMatrix
A DDRotationMatrix is currently implemented with a ROOT Rotation3D.
TGeoVolume * createVolume(const std::string &iName, const DDSolid &iSolid, const DDMaterial &iMaterial)
std::string m_TGeoTitle
T sqrt(T t)
Definition: SSEVec.h:19
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
std::map< std::string, TGeoShape * > nameToShape_
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
double deltaPhi(void) const
Definition: DDSolid.cc:444
DDSolid solidB(void) const
Definition: DDSolid.cc:472
ReturnType produce(const DisplayGeomRecord &)
std::vector< double > zxVec(void) const
Definition: DDSolid.cc:392
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:61
d
Definition: ztail.py:151
double density() const
returns the density
Definition: DDMaterial.cc:80
DDSolidShape shape(void) const
The type of the solid.
Definition: DDSolid.cc:123
TGeoShape * createShape(const std::string &iName, const DDSolid &iSolid)
double z() const
retruns the atomic number
Definition: DDMaterial.cc:78
bool isValid() const
Definition: ESHandle.h:44
const N & name() const
Definition: DDBase.h:59
TGeoMgrFromDdd(const edm::ParameterSet &)
std::vector< double > zyVec(void) const
Definition: DDSolid.cc:397
FractionV::value_type constituent(int i) const
returns the i-th compound material and its fraction-mass
Definition: DDMaterial.cc:74
double rMax(void) const
Definition: DDSolid.cc:438
const DDLogicalPart & root() const
returns the DDLogicalPart representing the root of the geometrical hierarchy
std::map< std::string, TGeoMaterial * > nameToMaterial_
const bool m_verbose
int noOfConstituents() const
returns the number of compound materials or 0 for elementary materials
Definition: DDMaterial.cc:72
std::map< std::string, TGeoVolume * > nameToVolume_
const std::string fullname() const
Definition: DDName.h:43
void add(std::string const &label, ParameterSetDescription const &psetDescription)
TGeoManager * createManager(int level)
HLT enums.
std::map< std::string, TGeoMedium * > nameToMedium_
std::pair< const N *, bool > def_type
Definition: DDBase.h:51
std::string m_TGeoName
double rMin(void) const
Definition: DDSolid.cc:436
static void fillDescriptions(edm::ConfigurationDescriptions &)
double a() const
returns the atomic mass
Definition: DDMaterial.cc:76
double rTorus(void) const
Definition: DDSolid.cc:440
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
def_type isDefined() const
Definition: DDBase.h:90
const int m_level
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7
DDRotationMatrix & matrix()
Definition: DDTransform.h:85
unsigned transform(const HcalDetId &id, unsigned transformCode)