CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
DDLLogicalPart Class Reference

DDLLogicalPart processes LogicalPart elements. More...

#include <DDLLogicalPart.h>

Inheritance diagram for DDLLogicalPart:
DDXMLElement

Public Member Functions

 DDLLogicalPart (DDLElementRegistry *myreg)
 Constructor. More...
 
void preProcessElement (const std::string &name, const std::string &nmspace, DDCompactView &cpv)
 Called by loadAttributes AFTER attributes are loaded. More...
 
void processElement (const std::string &name, const std::string &nmspace, DDCompactView &cpv)
 Processing the element. More...
 
 ~DDLLogicalPart (void)
 Destructor. 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)
 Destructor. More...
 

Private Attributes

std::map< std::string,
DDEnums::Category
catMap_
 

Additional Inherited Members

- Static Public Member Functions inherited from DDXMLElement
static std::string itostr (int i)
 WARNING: abused by other classes in this system: yet another conversion from int to std::string... More...
 
- 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 30 of file DDLLogicalPart.h.

Constructor & Destructor Documentation

DDLLogicalPart::DDLLogicalPart ( DDLElementRegistry myreg)

Constructor.

Definition at line 21 of file DDLLogicalPart.cc.

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

22  : DDXMLElement( myreg )
23 {
24  // initialize category map
25  catMap_["sensitive"] = DDEnums::sensitive;
26  catMap_["cable"] = DDEnums::cable;
27  catMap_["cooling"] = DDEnums::cooling;
28  catMap_["support"] = DDEnums::support;
29  catMap_["envelope"] = DDEnums::envelope;
30  catMap_["unspecified"] = DDEnums::unspecified;
31 }
std::map< std::string, DDEnums::Category > catMap_
DDXMLElement(DDLElementRegistry *myreg)
Constructor.
Definition: DDXMLElement.cc:15
DDLLogicalPart::~DDLLogicalPart ( void  )

Destructor.

Definition at line 33 of file DDLLogicalPart.cc.

34 {}

Member Function Documentation

void DDLLogicalPart::preProcessElement ( const std::string &  name,
const std::string &  nmspace,
DDCompactView cpv 
)
virtual

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 38 of file DDLLogicalPart.cc.

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

39 {
40  myRegistry_->getElement( "rMaterial" )->clear();
41  myRegistry_->getElement( "rSolid" )->clear();
42 }
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:186
DDXMLElement * getElement(const std::string &name)
THE most important part. Getting the pointer to a given element type.
virtual void clear(void)
clear this element&#39;s contents.
Definition: DDXMLElement.cc:61
void DDLLogicalPart::processElement ( const std::string &  name,
const std::string &  nmspace,
DDCompactView cpv 
)
virtual

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 57 of file DDLLogicalPart.cc.

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

58 {
59  DCOUT_V('P', "DDLLogicalPart::processElement started");
60 
61  // rMaterial and rSolid
62  DDXMLElement* myrMaterial = myRegistry_->getElement("rMaterial"); // get Material reference child
63  DDXMLElement* myrSolid = myRegistry_->getElement("rSolid"); // get Solid reference child
64 
66 
67  // this check really is overkill so I'm commenting it out for now.
68  // validation of the XML should PREVENT this.
69 // if (myrSolid->size() > 1)
70 // {
71 // std::string s = "DDLLogicalPart::processElement: When looking at rSolid, found more than one. ";
72 // s += " Logical part name was: ";
73 // s += atts.find("name")->second;
74 // throw DDException(s);
75 // }
76 
77  DDSolid mySolid = DDSolid(myrSolid->getDDName(nmspace));
78  DDMaterial myMaterial = DDMaterial(myrMaterial->getDDName(nmspace));
79 
81 
82  if (atts.find("category") != atts.end())
83  cat = catMap_[atts.find("category")->second];
84  else
85  cat = catMap_["unspecified"];
86 
87  DDLogicalPart lp( getDDName( nmspace ), myMaterial, mySolid, cat );
88 
89  // clear all "children" and attributes
90  myrMaterial->clear();
91  myrSolid->clear();
92 
93  // after each logical part is made, we can clear it
94  clear();
95 
96  DCOUT_V('P', "DDLLogicalPart::processElement completed");
97 }
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:186
DDMaterial is used to define and access material information.
Definition: DDMaterial.h:41
virtual const DDXMLAttribute & getAttributeSet(size_t aIndex=0) const
Get a &quot;row&quot; of attributes, i.e. one attribute set.
Definition: DDXMLElement.cc:79
std::map< std::string, std::string > DDXMLAttribute
Definition: DDXMLElement.h:55
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
DDXMLElement * getElement(const std::string &name)
THE most important part. Getting the pointer to a given element type.
def cat
Definition: eostools.py:400
Category
Definition: DDEnums.h:7
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:88
#define DCOUT_V(M_v_Y, M_v_S)
Definition: DDdebug.h:54
This is a base class for processing XML elements in the DDD.
Definition: DDXMLElement.h:58
std::map< std::string, DDEnums::Category > catMap_
virtual void clear(void)
clear this element&#39;s contents.
Definition: DDXMLElement.cc:61
virtual const DDName getDDName(const std::string &defaultNS, const std::string &attname=std::string("name"), size_t aIndex=0)
Definition: DDXMLElement.cc:86

Member Data Documentation

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

Definition at line 45 of file DDLLogicalPart.h.

Referenced by DDLLogicalPart(), and processElement().