CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
DDLLogicalPart Class Referencefinal

DDLLogicalPart processes LogicalPart elements. More...

#include <DDLLogicalPart.h>

Inheritance diagram for DDLLogicalPart:
DDXMLElement

Public Member Functions

 DDLLogicalPart (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 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...
 

Private Attributes

std::map< std::string, DDEnums::CategorycatMap_
 

Additional Inherited Members

- Protected Attributes inherited from DDXMLElement
DDLElementRegistrymyRegistry_
 

Detailed Description

DDLLogicalPart processes LogicalPart elements.

Author
Michael Case

DDLLogicalPart.h - description

begin: Tue Oct 31 2001 email: case@.nosp@m.ucdh.nosp@m.ep.uc.nosp@m.davi.nosp@m.s.edu

LogicalPart elements simply have the name attribute. However, they also contain elements rSolid and rMaterial. These come together in implementation, but as an XML element the only relevant information to the DDCore is the name attribute. Optionally, they can have instead any Solid or Material elements. To handle the fact that those elements must "stand alone" and also work within LogicalParts, each of those must create a reference (rMaterial or rSolid) to the most recently processed such element.

Definition at line 34 of file DDLLogicalPart.h.

Constructor & Destructor Documentation

DDLLogicalPart::DDLLogicalPart ( DDLElementRegistry myreg)

Definition at line 12 of file DDLLogicalPart.cc.

References DDEnums::cable, catMap_, DDEnums::cooling, DDEnums::envelope, DDEnums::sensitive, DDEnums::support, and DDEnums::unspecified.

13  : DDXMLElement( myreg )
14 {
15  // initialize category map
16  catMap_["sensitive"] = DDEnums::sensitive;
17  catMap_["cable"] = DDEnums::cable;
18  catMap_["cooling"] = DDEnums::cooling;
19  catMap_["support"] = DDEnums::support;
20  catMap_["envelope"] = DDEnums::envelope;
21  catMap_["unspecified"] = DDEnums::unspecified;
22 }
std::map< std::string, DDEnums::Category > catMap_
DDXMLElement(DDLElementRegistry *myreg)
Constructor.
Definition: DDXMLElement.cc:14

Member Function Documentation

void DDLLogicalPart::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 26 of file DDLLogicalPart.cc.

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

27 {
28  myRegistry_->getElement( "rMaterial" )->clear();
29  myRegistry_->getElement( "rSolid" )->clear();
30 }
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:172
std::shared_ptr< DDXMLElement > getElement(const std::string &name)
THE most important part. Getting the pointer to a given element type.
void DDLLogicalPart::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 45 of file DDLLogicalPart.cc.

References eostools::cat(), catMap_, DDXMLElement::clear(), DDXMLElement::getAttributeSet(), DDXMLElement::getDDName(), DDLElementRegistry::getElement(), and DDXMLElement::myRegistry_.

46 {
47  // rMaterial and rSolid
48  auto myrMaterial = myRegistry_->getElement("rMaterial"); // get Material reference child
49  auto myrSolid = myRegistry_->getElement("rSolid"); // get Solid reference child
50 
52 
53  DDSolid mySolid = DDSolid(myrSolid->getDDName(nmspace));
54  DDMaterial myMaterial = DDMaterial(myrMaterial->getDDName(nmspace));
55 
57 
58  if (atts.find("category") != atts.end())
59  cat = catMap_[atts.find("category")->second];
60  else
61  cat = catMap_["unspecified"];
62 
63  DDLogicalPart lp( getDDName( nmspace ), myMaterial, mySolid, cat );
64 
65  // clear all "children" and attributes
66  myrMaterial->clear();
67  myrSolid->clear();
68 
69  // after each logical part is made, we can clear it
70  clear();
71 }
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:172
DDMaterial is used to define and access material information.
Definition: DDMaterial.h:43
virtual const DDXMLAttribute & getAttributeSet(size_t aIndex=0) const
Get a "row" of attributes, i.e. one attribute set.
Definition: DDXMLElement.cc:72
std::map< std::string, std::string > DDXMLAttribute
Definition: DDXMLElement.h:45
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
def cat(path)
Definition: eostools.py:401
std::shared_ptr< DDXMLElement > getElement(const std::string &name)
THE most important part. Getting the pointer to a given element type.
Category
Definition: DDEnums.h:7
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:93
std::map< std::string, DDEnums::Category > catMap_
virtual void clear(void)
clear this element&#39;s contents.
Definition: DDXMLElement.cc:54
virtual const DDName getDDName(const std::string &defaultNS, const std::string &attname=std::string("name"), size_t aIndex=0)
Definition: DDXMLElement.cc:79

Member Data Documentation

std::map<std::string, DDEnums::Category> DDLLogicalPart::catMap_
private

Definition at line 44 of file DDLLogicalPart.h.

Referenced by DDLLogicalPart(), and processElement().