455 const xercesc::DOMNamedNodeMap*
const attributes
456 = materialElement->getAttributes();
457 XMLSize_t attributeCount = attributes->getLength();
459 for (XMLSize_t attribute_index=0;
460 attribute_index<attributeCount; attribute_index++)
462 xercesc::DOMNode* attribute_node = attributes->item(attribute_index);
464 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE)
467 const xercesc::DOMAttr*
const attribute
468 =
dynamic_cast<xercesc::DOMAttr*
>(attribute_node);
471 G4Exception(
"G4GDMLReadMaterials::MaterialRead()",
"InvalidRead",
478 if (attName==
"name") { name =
GenerateName(attValue); }
else
480 if (attName==
"state")
482 if (attValue==
"solid") { state =
kStateSolid; }
else
484 if (attValue==
"gas") { state =
kStateGas; }
488 size_t nComponents = 0;
490 for (xercesc::DOMNode* iter = materialElement->getFirstChild();
491 iter != 0; iter = iter->getNextSibling())
493 if (iter->getNodeType() != xercesc::DOMNode::ELEMENT_NODE) {
continue; }
495 const xercesc::DOMElement*
const child
496 =
dynamic_cast<xercesc::DOMElement*
>(iter);
499 G4Exception(
"G4GDMLReadMaterials::MaterialRead()",
"InvalidRead",
505 if (tag==
"atom") { a =
AtomRead(child); }
else
510 if (tag==
"D") { D =
DRead(child); }
else
511 if (tag==
"P") { P =
PRead(child); }
else
512 if (tag==
"T") { T =
TRead(child); }
else
513 if (tag==
"MEE") { MEE =
MEERead(child); }
else
514 if (tag==
"fraction" || tag==
"composite") { nComponents++; }
533 for (xercesc::DOMNode* iter = materialElement->getFirstChild();
534 iter != 0; iter = iter->getNextSibling())
536 if (iter->getNodeType() != xercesc::DOMNode::ELEMENT_NODE) {
continue; }
538 const xercesc::DOMElement*
const child
539 =
dynamic_cast<xercesc::DOMElement*
>(iter);
542 G4Exception(
"G4GDMLReadMaterials::MaterialRead()",
"InvalidRead",
G4double TRead(const xercesc::DOMElement *const)
G4IonisParamMat * GetIonisation() const
G4double GetQuantity(const G4String &)
G4double DRead(const xercesc::DOMElement *const)
void SetMeanExcitationEnergy(G4double value)
G4String Transcode(const XMLCh *const)
static constexpr double STP_Pressure
static constexpr double STP_Temperature
G4String RefRead(const xercesc::DOMElement *const)
void MixtureRead(const xercesc::DOMElement *const, G4Element *)
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
G4String GenerateName(const G4String &name, G4bool strip=false)
G4double PRead(const xercesc::DOMElement *const)
G4double MEERead(const xercesc::DOMElement *const)
G4String Strip(const G4String &) const
void PropertyRead(const xercesc::DOMElement *const, G4Material *)
G4double Evaluate(const G4String &)
G4double AtomRead(const xercesc::DOMElement *const)