CMS 3D CMS Logo

List of all members | Public Member Functions
DDLPgonGenerator Class Referencefinal

DDLPgonGenerator processes DDL XML Extruded Polygone elements. More...

#include <DDLPgonGenerator.h>

Inheritance diagram for DDLPgonGenerator:
DDLSolid DDXMLElement

Public Member Functions

 DDLPgonGenerator (DDLElementRegistry *myreg)
 
void preProcessElement (const std::string &name, const std::string &nmspace, DDCompactView &cpv) override
 Called by loadAttributes AFTER attributes are loaded. More...
 
void processElement (const std::string &name, const std::string &nmspace, DDCompactView &cpv) override
 Processing the element. More...
 
- Public Member Functions inherited from DDLSolid
 DDLSolid (DDLElementRegistry *myreg)
 Constructor. More...
 
void setReference (const std::string &nmspace, DDCompactView &cpv)
 
- Public Member Functions inherited from DDXMLElement
void appendText (const std::string &inText)
 append to the current (i.e. most recently added) More...
 
virtual std::vector< DDXMLAttribute >::const_iterator begin (void)
 
virtual void clear (void)
 clear this element's contents. More...
 
 DDXMLElement (DDLElementRegistry *myreg)
 Constructor. More...
 
 DDXMLElement (DDLElementRegistry *myreg, const bool &clearme)
 Constructor for autoClear element. More...
 
virtual std::vector< DDXMLAttribute >::const_iterator end (void)
 
virtual const std::string & get (const std::string &name, size_t aIndex=0) const
 Returns a specific value from the aIndex set of attributes. More...
 
virtual const std::string & getAttribute (const std::string &name) const
 Access to attributes by name. More...
 
virtual const DDXMLAttributegetAttributeSet (size_t aIndex=0) const
 Get a "row" of attributes, i.e. one attribute set. More...
 
virtual const DDName getDDName (const std::string &defaultNS, const std::string &attname=std::string("name"), size_t aIndex=0)
 
const std::string getText (size_t tindex=0) const
 retrieve the text blob. More...
 
virtual std::vector< std::string > getVectorAttribute (const std::string &name)
 Returns a set of values as a std::vector of strings, given the attribute name. More...
 
virtual bool gotText (void) const
 gotText()? kind of like gotMilk? Yes = text has already been encountered. More...
 
virtual bool isEmpty (void) const
 Have any elements of this type been encountered but not processed? More...
 
void loadAttributes (const std::string &elemName, const std::vector< std::string > &names, const std::vector< std::string > &values, const std::string &nmspace, DDCompactView &cpv)
 Load the element attributes. More...
 
void loadText (const std::string &inText)
 Used to load both text and XML comments into this object. More...
 
std::vector< DDXMLAttribute >::const_iterator & operator++ (int inc)
 Allow the elements of this type to be iterated over using ++ operator. More...
 
const std::string & parent (void) const
 access to parent element name More...
 
void setParent (const std::string &pename)
 Set parent element name to central list of names. More...
 
void setSelf (const std::string &sename)
 Set self element name to central list of names. More...
 
virtual size_t size (void) const
 Number of elements accumulated. More...
 
virtual void stream (std::ostream &os) const
 Allow for the elements to have their own streaming method, but also provide a default. More...
 
void throwError (const std::string &keyMessage) const
 format std::string for throw an error. More...
 
virtual ~DDXMLElement (void)=default
 Destructor. More...
 

Additional Inherited Members

- Protected Attributes inherited from DDXMLElement
DDLElementRegistrymyRegistry_
 

Detailed Description

DDLPgonGenerator processes DDL XML Extruded Polygone elements.

The PgonGenerator element uses XYPoint elements. The DDLXYPoint can return the x and y std::vectors with the points needed to form the extruded polygone.

Definition at line 19 of file DDLPgonGenerator.h.

Constructor & Destructor Documentation

◆ DDLPgonGenerator()

DDLPgonGenerator::DDLPgonGenerator ( DDLElementRegistry myreg)

Definition at line 15 of file DDLPgonGenerator.cc.

15 : DDLSolid(myreg) {}
DDLSolid(DDLElementRegistry *myreg)
Constructor.
Definition: DDLSolid.cc:11

Member Function Documentation

◆ preProcessElement()

void DDLPgonGenerator::preProcessElement ( const std::string &  name,
const std::string &  nmspace,
DDCompactView cpv 
)
overridevirtual

Called by loadAttributes AFTER attributes are loaded.

The preProcessElement method can assume that the attributes are loaded and perform any code that is necessary at the start of an element.

This would allow users to call their own code to setup anything necessary for the continued processing of the child elements.

Reimplemented from DDXMLElement.

Definition at line 17 of file DDLPgonGenerator.cc.

References DDLElementRegistry::getElement(), and DDXMLElement::myRegistry_.

17  {
18  myRegistry_->getElement("XYPoint")->clear();
19  myRegistry_->getElement("ZXYSection")->clear();
20 }
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:173
std::shared_ptr< DDXMLElement > getElement(const std::string &name)
THE most important part. Getting the pointer to a given element type.

◆ processElement()

void DDLPgonGenerator::processElement ( const std::string &  name,
const std::string &  nmspace,
DDCompactView cpv 
)
overridevirtual

Processing the element.

The processElement method completes any necessary work to process the XML element.

For example, this can be used to call the DDCore to make the geometry in memory. There is a default for this so that if not declared in the inheriting class, no processing is done.

Reimplemented from DDXMLElement.

Definition at line 25 of file DDLPgonGenerator.cc.

References cms::cuda::assert(), DDXMLElement::clear(), makeMEIFBenchmarkPlots::ev, DDLElementRegistry::evaluator(), DDSolidFactory::extrudedpolygon(), DDXMLElement::getAttributeSet(), DDXMLElement::getDDName(), DDLElementRegistry::getElement(), mps_fire::i, mps_check::msg, DDXMLElement::myRegistry_, Skims_PA_cff::name, DDLSolid::setReference(), AlCaHLTBitMon_QueryRunRegistry::string, DDXMLElement::throwError(), x, y, and z.

25  {
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 }
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:173
assert(be >=bs)
std::map< std::string, std::string > DDXMLAttribute
Definition: DDXMLElement.h:45
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
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
std::shared_ptr< DDXMLElement > getElement(const std::string &name)
THE most important part. Getting the pointer to a given element type.
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:584
tuple msg
Definition: mps_check.py:286
virtual void clear(void)
clear this element&#39;s contents.
Definition: DDXMLElement.cc:40
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