36 #include <Geant4/G4SystemOfUnits.hh>
54 G4RotationMatrix mat = mtx;
59 static const G4double kMatrixPrecision = 10E-10;
60 const G4double cosb = std::sqrt(mtx.xx()*mtx.xx()+mtx.yx()*mtx.yx());
62 if (cosb > kMatrixPrecision)
64 x = std::atan2(mtx.zy(),mtx.zz());
65 y = std::atan2(-mtx.zx(),cosb);
66 z = std::atan2(mtx.yx(),mtx.xx());
70 x = std::atan2(-mtx.yz(),mtx.yy());
71 y = std::atan2(-mtx.zx(),cosb);
75 return G4ThreeVector(x,y,z);
80 const G4String& name,
const G4ThreeVector& scl)
89 xercesc::DOMElement* scaleElement =
NewElement(tag);
90 scaleElement->setAttributeNode(
NewAttribute(
"name",name));
94 element->appendChild(scaleElement);
99 const G4String& name,
const G4ThreeVector& rot)
105 xercesc::DOMElement* rotationElement =
NewElement(tag);
106 rotationElement->setAttributeNode(
NewAttribute(
"name",name));
107 rotationElement->setAttributeNode(
NewAttribute(
"x",x/degree));
108 rotationElement->setAttributeNode(
NewAttribute(
"y",y/degree));
109 rotationElement->setAttributeNode(
NewAttribute(
"z",z/degree));
110 rotationElement->setAttributeNode(
NewAttribute(
"unit",
"deg"));
111 element->appendChild(rotationElement);
116 const G4String& name,
const G4ThreeVector& pos)
122 xercesc::DOMElement* positionElement =
NewElement(tag);
123 positionElement->setAttributeNode(
NewAttribute(
"name",name));
124 positionElement->setAttributeNode(
NewAttribute(
"x",x/mm));
125 positionElement->setAttributeNode(
NewAttribute(
"y",y/mm));
126 positionElement->setAttributeNode(
NewAttribute(
"z",z/mm));
127 positionElement->setAttributeNode(
NewAttribute(
"unit",
"mm"));
128 element->appendChild(positionElement);
133 G4cout <<
"PHG4GDML: Writing definitions..." << G4endl;
virtual void DefineWrite(xercesc::DOMElement *)
void Position_vectorWrite(xercesc::DOMElement *, const G4String &, const G4String &, const G4ThreeVector &)
void Scale_vectorWrite(xercesc::DOMElement *, const G4String &, const G4String &, const G4ThreeVector &)
G4ThreeVector GetAngles(const G4RotationMatrix &)
static const G4double kAngularPrecision
void Rotation_vectorWrite(xercesc::DOMElement *, const G4String &, const G4String &, const G4ThreeVector &)
xercesc::DOMElement * defineElement
static const G4double kRelativePrecision
static const G4double kLinearPrecision
virtual ~PHG4GDMLWriteDefine()
xercesc::DOMElement * NewElement(const G4String &)
xercesc::DOMAttr * NewAttribute(const G4String &, const G4String &)