CMS 3D CMS Logo

List of all members | Public Member Functions
DDLPosPart Class Referencefinal

DDLPosPart handles PosPart elements. More...

#include <DDLPosPart.h>

Inheritance diagram for DDLPosPart:
DDXMLElement

Public Member Functions

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

Additional Inherited Members

- Protected Attributes inherited from DDXMLElement
DDLElementRegistrymyRegistry_
 

Detailed Description

DDLPosPart handles PosPart elements.

Author
Michael Case

DDLPosPart.h - description

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

A PosPart (or Positioning Part or Part Positioner :-)) is used to position a LogicalPart somewhere inside it's parent. So, A PosPart needs two rLogicalParts (self and parent) on which to operate, a Translation and a Rotation.

Definition at line 27 of file DDLPosPart.h.

Constructor & Destructor Documentation

DDLPosPart::DDLPosPart ( DDLElementRegistry myreg)

Definition at line 16 of file DDLPosPart.cc.

17  : DDXMLElement( myreg )
18 {}
DDXMLElement(DDLElementRegistry *myreg)
Constructor.
Definition: DDXMLElement.cc:14

Member Function Documentation

void DDLPosPart::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 DDLPosPart.cc.

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

27 {
28  // Clear out child elements.
29  myRegistry_->getElement("Rotation")->clear();
30  myRegistry_->getElement("ReflectionRotation")->clear();
31 }
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 DDLPosPart::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 37 of file DDLPosPart.cc.

References DDXMLElement::clear(), DDrotPtr(), ev, ClhepEvaluator::eval(), DDLElementRegistry::evaluator(), DDXMLElement::getAttributeSet(), DDLElementRegistry::getElement(), DDXMLElement::myRegistry_, DDName::name(), DDName::ns(), DDCompactView::position(), AlCaHLTBitMon_QueryRunRegistry::string, x, y, and z.

38 {
39  // get all internal elements.
40  auto myParent = myRegistry_->getElement("rParent");
41  auto myChild = myRegistry_->getElement("rChild");
42  auto myTranslation= myRegistry_->getElement("Translation");
43  auto myDDLRotation= myRegistry_->getElement("Rotation");
44  auto myrRotation = myRegistry_->getElement("rRotation");
45  auto myDDLRefl = myRegistry_->getElement("ReflectionRotation");
46  auto myrRefl = myRegistry_->getElement("rReflectionRotation");
47  // FIXME!!! add in the new RotationByAxis element...
48 
49  // At this time, PosPart is becoming the most complex of the elements.
50  // For simply reflections/rotations we have 4 possible internal "components"
51  // to the PosPart. We take them in the following order of priority
52  // rRotation, Rotation, rReflectionRotation, ReflectionRotation.
53  //
54  // The idea in the following if-else-if is that no matter
55  // what was used inside the PosPart element, the order in which we
56  // will look for and use an internal element is:
57  // rRotation, Rotation, ReflectionRotation, rReflectionRotation.
58  // If it falls through here, a default call will result in a nameless
59  // "identity" rotation being passed to DDCore.
60  DDName rotn(( myrRotation->size() > 0) ? myrRotation->getDDName( nmspace ) :
61  (( myDDLRotation->size() > 0) ? myDDLRotation->getDDName( nmspace ) :
62  (( myDDLRefl->size() > 0) ? myDDLRefl->getDDName(nmspace) :
63  (( myrRefl->size() > 0 ) ? myrRefl->getDDName(nmspace) : DDName("")))));
64 
66 
67  double x = 0.0, y = 0.0, z = 0.0;
68  if (myTranslation->size() > 0)
69  {
70  const DDXMLAttribute & atts = myTranslation->getAttributeSet();
71  x = ev.eval(nmspace, atts.find("x")->second);
72  y = ev.eval(nmspace, atts.find("y")->second);
73  z = ev.eval(nmspace, atts.find("z")->second);
74  }
75 
76  std::unique_ptr<DDRotation> myDDRotation;
77  // if rotation is named ...
78  if ( !rotn.name().empty() && !rotn.ns().empty() ) {
79  myDDRotation = std::make_unique<DDRotation>(rotn);
80  } else {
81  // rotn is not assigned a name anywhere therefore the DDPos assumes the identity matrix.
82  myDDRotation = std::make_unique<DDRotation>(DDName(std::string("identity"),std::string("generatedForDDD")));
83  // if the identity is not yet defined, then...
84  if ( !myDDRotation->isValid() ) {
85  myDDRotation = DDrotPtr( DDName( std::string( "identity" ), std::string( "generatedForDDD" )), std::make_unique<DDRotationMatrix>());
86  }
87  }
88 
89 
90  DDTranslation myDDTranslation(x, y, z);
91 
92  const DDXMLAttribute & atts = getAttributeSet();
93  std::string copyno = "";
94  if (atts.find("copyNumber") != atts.end())
95  copyno = atts.find("copyNumber")->second;
96 
97  cpv.position(DDLogicalPart(myChild->getDDName(nmspace))
98  , DDLogicalPart(myParent->getDDName(nmspace))
99  , copyno
100  , myDDTranslation
101  , *myDDRotation);
102 
103  // clear all "children" and attributes
104  myParent->clear();
105  myChild->clear();
106  myTranslation->clear();
107  myDDLRotation->clear();
108  myrRotation->clear();
109  myDDLRefl->clear();
110  myrRefl->clear();
111 
112  // after a pos part is done, we know we can clear it.
113  clear();
114 }
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:172
virtual const DDXMLAttribute & getAttributeSet(size_t aIndex=0) const
Get a "row" of attributes, i.e. one attribute set.
Definition: DDXMLElement.cc:72
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:15
bool ev
std::unique_ptr< DDRotation > DDrotPtr(const DDName &name, std::unique_ptr< DDRotationMatrix > rot)
Definition: DDRotation.cc:87
std::map< std::string, std::string > DDXMLAttribute
Definition: DDXMLElement.h:45
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7
ClhepEvaluator & evaluator()
std::shared_ptr< DDXMLElement > getElement(const std::string &name)
THE most important part. Getting the pointer to a given element type.
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:93
void position(const DDLogicalPart &self, const DDLogicalPart &parent, const std::string &copyno, const DDTranslation &trans, const DDRotation &rot, const DDDivision *div=0)
double eval(const std::string &ns, const std::string &expr)
virtual void clear(void)
clear this element&#39;s contents.
Definition: DDXMLElement.cc:54