CMS 3D CMS Logo

DDLPgonGenerator.cc
Go to the documentation of this file.
7 
8 #include <cstddef>
9 #include <map>
10 #include <utility>
11 #include <vector>
12 
13 class DDCompactView;
14 
16 
18  myRegistry_->getElement("XYPoint")->clear();
19  myRegistry_->getElement("ZXYSection")->clear();
20 }
21 
22 // Upon encountering an end Extruded Polygone tag, process the XYPoints
23 // element and extract the x and y std::vectors to feed into DDCore. Then, clear
24 // the XYPoints and clear this element.
26  auto myXYPoints = myRegistry_->getElement("XYPoint");
27  auto myZXYSection = myRegistry_->getElement("ZXYSection");
28 
30  DDXMLAttribute atts;
31 
32  // get x and y
33  std::vector<double> x, y;
34  for (size_t i = 0; i < myXYPoints->size(); ++i) {
35  atts = myXYPoints->getAttributeSet(i);
36  auto xit = atts.find("x");
37  if (xit != atts.end())
38  x.emplace_back(ev.eval(nmspace, xit->second));
39  auto yit = atts.find("y");
40  if (yit != atts.end())
41  y.emplace_back(ev.eval(nmspace, yit->second));
42  }
43  assert(x.size() == y.size());
44 
45  // get zSection information
46  std::vector<double> z, zx, zy, zscale;
47 
48  for (size_t i = 0; i < myZXYSection->size(); ++i) {
49  atts = myZXYSection->getAttributeSet(i);
50  auto zit = atts.find("z");
51  if (zit != atts.end())
52  z.emplace_back(ev.eval(nmspace, zit->second));
53  auto xit = atts.find("x");
54  if (xit != atts.end())
55  zx.emplace_back(ev.eval(nmspace, xit->second));
56  auto yit = atts.find("y");
57  if (yit != atts.end())
58  zy.emplace_back(ev.eval(nmspace, yit->second));
59  auto sit = atts.find("scale");
60  if (sit != atts.end())
61  zscale.emplace_back(std::stod(sit->second));
62  }
63  assert(z.size() == zx.size());
64  assert(z.size() == zy.size());
65  assert(z.size() == zscale.size());
66 
67  atts = getAttributeSet();
68  if (name == "ExtrudedPolygon") {
69  DDSolid extrudedpolygon = DDSolidFactory::extrudedpolygon(getDDName(nmspace), x, y, z, zx, zy, zscale);
70  } else {
71  std::string msg = "\nDDLPgonGenerator::processElement was called with incorrect name of solid: " + name;
72  throwError(msg);
73  }
74  DDLSolid::setReference(nmspace, cpv);
75 
76  // clear out XYPoint element accumulator and ZXYSections
77  myXYPoints->clear();
78  myZXYSection->clear();
79  clear();
80 }
DDLPgonGenerator::preProcessElement
void preProcessElement(const std::string &name, const std::string &nmspace, DDCompactView &cpv) override
Called by loadAttributes AFTER attributes are loaded.
Definition: DDLPgonGenerator.cc:17
DDXMLElement::clear
virtual void clear(void)
clear this element's contents.
Definition: DDXMLElement.cc:40
DDLPgonGenerator.h
DDAxes::y
mps_fire.i
i
Definition: mps_fire.py:428
DDXMLElement::throwError
void throwError(const std::string &keyMessage) const
format std::string for throw an error.
Definition: DDXMLElement.cc:209
DDLSolid::setReference
void setReference(const std::string &nmspace, DDCompactView &cpv)
Definition: DDLSolid.cc:13
DDLPgonGenerator::processElement
void processElement(const std::string &name, const std::string &nmspace, DDCompactView &cpv) override
Processing the element.
Definition: DDLPgonGenerator.cc:25
DDLSolid
DDLSolid processes Box elements.
Definition: DDLSolid.h:30
ClhepEvaluator.h
cms::cuda::assert
assert(be >=bs)
DDLElementRegistry
The main class for processing parsed elements.
Definition: DDLElementRegistry.h:23
ClhepEvaluator
Definition: ClhepEvaluator.h:8
mps_check.msg
tuple msg
Definition: mps_check.py:285
DDAxes::x
DDXMLElement::getAttributeSet
virtual const DDXMLAttribute & getAttributeSet(size_t aIndex=0) const
Get a "row" of attributes, i.e. one attribute set.
Definition: DDXMLElement.cc:54
DDLElementRegistry::evaluator
ClhepEvaluator & evaluator()
Definition: DDLElementRegistry.h:42
DDCompactView
Compact representation of the geometrical detector hierarchy.
Definition: DDCompactView.h:81
DDAxes::z
DDSolid.h
DDLPgonGenerator::DDLPgonGenerator
DDLPgonGenerator(DDLElementRegistry *myreg)
Definition: DDLPgonGenerator.cc:15
DDXMLAttribute
std::map< std::string, std::string > DDXMLAttribute
Definition: DDXMLElement.h:45
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
DDSolidFactory::extrudedpolygon
static DDSolid extrudedpolygon(const DDName &name, const std::vector< double > &x, const std::vector< double > &y, const std::vector< double > &z, const std::vector< double > &zx, const std::vector< double > &zy, const std::vector< double > &zscale)
Definition: DDSolid.cc:570
DDLElementRegistry.h
DDLSolid.h
DDXMLElement::getDDName
const virtual DDName getDDName(const std::string &defaultNS, const std::string &attname=std::string("name"), size_t aIndex=0)
Definition: DDXMLElement.cc:56
DDLElementRegistry::getElement
std::shared_ptr< DDXMLElement > getElement(const std::string &name)
THE most important part. Getting the pointer to a given element type.
Definition: DDLElementRegistry.cc:42
DDXMLElement.h
ev
bool ev
Definition: Hydjet2Hadronizer.cc:95
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
DDSolid
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDXMLElement::myRegistry_
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:173