CMS 3D CMS Logo

DDLTubs.cc
Go to the documentation of this file.
8 
9 #include <map>
10 #include <utility>
11 
12 class DDCompactView;
13 
14 using namespace geant_units::operators;
15 
17 
18 // Upon encountering the end of a Tubs element, call DDCore.
22  bool cutInside(false);
23 
24  if (atts.find("cutInside") != atts.end()) {
25  cutInside = (atts.find("cutInside")->second == "true") ? true : false;
26  }
27 
28  if (name == "Tubs") {
29  DDSolid myTubs = DDSolidFactory::tubs(getDDName(nmspace),
30  ev.eval(nmspace, atts.find("dz")->second),
31  ev.eval(nmspace, atts.find("rMin")->second),
32  ev.eval(nmspace, atts.find("rMax")->second),
33  ev.eval(nmspace, atts.find("startPhi")->second),
34  ev.eval(nmspace, atts.find("deltaPhi")->second));
35  } else if (name == "Tube") {
36  DDSolid myTubs = DDSolidFactory::tubs(getDDName(nmspace),
37  ev.eval(nmspace, atts.find("dz")->second),
38  ev.eval(nmspace, atts.find("rMin")->second),
39  ev.eval(nmspace, atts.find("rMax")->second),
40  0_deg,
41  360_deg);
42  } else if (name == "TruncTubs") {
44  ev.eval(nmspace, atts.find("zHalf")->second),
45  ev.eval(nmspace, atts.find("rMin")->second),
46  ev.eval(nmspace, atts.find("rMax")->second),
47  ev.eval(nmspace, atts.find("startPhi")->second), //0. // startPhi
48  ev.eval(nmspace, atts.find("deltaPhi")->second),
49  ev.eval(nmspace, atts.find("cutAtStart")->second),
50  ev.eval(nmspace, atts.find("cutAtDelta")->second),
51  cutInside); // cutInside
52  } else if (name == "CutTubs") {
53  DDSolid myTubs = DDSolidFactory::cuttubs(getDDName(nmspace),
54  ev.eval(nmspace, atts.find("dz")->second),
55  ev.eval(nmspace, atts.find("rMin")->second),
56  ev.eval(nmspace, atts.find("rMax")->second),
57  ev.eval(nmspace, atts.find("startPhi")->second),
58  ev.eval(nmspace, atts.find("deltaPhi")->second),
59  ev.eval(nmspace, atts.find("lx")->second),
60  ev.eval(nmspace, atts.find("ly")->second),
61  ev.eval(nmspace, atts.find("lz")->second),
62  ev.eval(nmspace, atts.find("tx")->second),
63  ev.eval(nmspace, atts.find("ty")->second),
64  ev.eval(nmspace, atts.find("tz")->second));
65  } else {
66  std::string msg = "\nDDLTubs::processElement could not process element.";
67  throwError(msg);
68  }
69  DDLSolid::setReference(nmspace, cpv);
70 }
DDLTubs(DDLElementRegistry *myreg)
Definition: DDLTubs.cc:16
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:173
void processElement(const std::string &name, const std::string &nmspace, DDCompactView &cpv) override
Processing the element.
Definition: DDLTubs.cc:19
Compact representation of the geometrical detector hierarchy.
Definition: DDCompactView.h:81
std::map< std::string, std::string > DDXMLAttribute
Definition: DDXMLElement.h:45
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
static DDSolid cuttubs(const DDName &name, double zhalf, double rIn, double rOut, double startPhi, double deltaPhi, double lx, double ly, double lz, double tx, double ty, double tz)
Definition: DDSolid.cc:672
ClhepEvaluator & evaluator()
virtual const DDXMLAttribute & getAttributeSet(size_t aIndex=0) const
Get a "row" of attributes, i.e. one attribute set.
Definition: DDXMLElement.cc:54
static DDSolid tubs(const DDName &name, double zhalf, double rIn, double rOut, double startPhi, double deltaPhi)
Definition: DDSolid.cc:667
static DDSolid truncTubs(const DDName &name, double zHalf, double rIn, double rOut, double startPhi, double deltaPhi, double cutAtStart, double cutAtDelta, bool cutInside)
Definition: DDSolid.cc:637
DDLSolid processes Box elements.
Definition: DDLSolid.h:30
tuple msg
Definition: mps_check.py:286
The main class for processing parsed elements.
void throwError(const std::string &keyMessage) const
format std::string for throw an error.
virtual const DDName getDDName(const std::string &defaultNS, const std::string &attname=std::string("name"), size_t aIndex=0)
Definition: DDXMLElement.cc:56
void setReference(const std::string &nmspace, DDCompactView &cpv)
Definition: DDLSolid.cc:13