Class Reference for E1039 Core & Analysis Software
PHG4GDMLWriteMaterials.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 //
27 // $Id: PHG4GDMLWriteMaterials.cc 70764 2013-06-05 12:54:37Z gcosmo $
28 //
29 // class PHG4GDMLWriteMaterials Implementation
30 //
31 // Original author: Zoltan Torzsok, November 2007
32 //
33 // --------------------------------------------------------------------
34 
36 
37 #include <Geant4/G4PhysicalConstants.hh>
38 #include <Geant4/G4SystemOfUnits.hh>
39 #include <Geant4/G4Element.hh>
40 #include <Geant4/G4Isotope.hh>
41 #include <Geant4/G4Material.hh>
42 
43 #include <sstream>
44 
45 
47  : PHG4GDMLWriteDefine(), materialsElement(0)
48 {
49 }
50 
52 {
53 }
54 
56 AtomWrite(xercesc::DOMElement* element,const G4double& a)
57 {
58  xercesc::DOMElement* atomElement = NewElement("atom");
59  atomElement->setAttributeNode(NewAttribute("unit","g/mole"));
60  atomElement->setAttributeNode(NewAttribute("value",a*mole/g));
61  element->appendChild(atomElement);
62 }
63 
65 DWrite(xercesc::DOMElement* element,const G4double& d)
66 {
67  xercesc::DOMElement* DElement = NewElement("D");
68  DElement->setAttributeNode(NewAttribute("unit","g/cm3"));
69  DElement->setAttributeNode(NewAttribute("value",d*cm3/g));
70  element->appendChild(DElement);
71 }
72 
74 PWrite(xercesc::DOMElement* element,const G4double& P)
75 {
76  xercesc::DOMElement* PElement = NewElement("P");
77  PElement->setAttributeNode(NewAttribute("unit","pascal"));
78  PElement->setAttributeNode(NewAttribute("value",P/hep_pascal));
79  element->appendChild(PElement);
80 }
81 
83 TWrite(xercesc::DOMElement* element,const G4double& T)
84 {
85  xercesc::DOMElement* TElement = NewElement("T");
86  TElement->setAttributeNode(NewAttribute("unit","K"));
87  TElement->setAttributeNode(NewAttribute("value",T/kelvin));
88  element->appendChild(TElement);
89 }
90 
92 MEEWrite(xercesc::DOMElement* element,const G4double& MEE)
93 {
94  xercesc::DOMElement* PElement = NewElement("MEE");
95  PElement->setAttributeNode(NewAttribute("unit","eV"));
96  PElement->setAttributeNode(NewAttribute("value",MEE/electronvolt));
97  element->appendChild(PElement);
98 }
99 
101 IsotopeWrite(const G4Isotope* const isotopePtr)
102 {
103  const G4String name = GenerateName(isotopePtr->GetName(),isotopePtr);
104 
105  xercesc::DOMElement* isotopeElement = NewElement("isotope");
106  isotopeElement->setAttributeNode(NewAttribute("name",name));
107  isotopeElement->setAttributeNode(NewAttribute("N",isotopePtr->GetN()));
108  isotopeElement->setAttributeNode(NewAttribute("Z",isotopePtr->GetZ()));
109  materialsElement->appendChild(isotopeElement);
110  AtomWrite(isotopeElement,isotopePtr->GetA());
111 }
112 
113 void PHG4GDMLWriteMaterials::ElementWrite(const G4Element* const elementPtr)
114 {
115  const G4String name = GenerateName(elementPtr->GetName(),elementPtr);
116 
117  xercesc::DOMElement* elementElement = NewElement("element");
118  elementElement->setAttributeNode(NewAttribute("name",name));
119 
120  const size_t NumberOfIsotopes = elementPtr->GetNumberOfIsotopes();
121 
122  if (NumberOfIsotopes>0)
123  {
124  const G4double* RelativeAbundanceVector =
125  elementPtr->GetRelativeAbundanceVector();
126  for (size_t i=0;i<NumberOfIsotopes;i++)
127  {
128  G4String fractionref = GenerateName(elementPtr->GetIsotope(i)->GetName(),
129  elementPtr->GetIsotope(i));
130  xercesc::DOMElement* fractionElement = NewElement("fraction");
131  fractionElement->setAttributeNode(NewAttribute("n",
132  RelativeAbundanceVector[i]));
133  fractionElement->setAttributeNode(NewAttribute("ref",fractionref));
134  elementElement->appendChild(fractionElement);
135  AddIsotope(elementPtr->GetIsotope(i));
136  }
137  }
138  else
139  {
140  elementElement->setAttributeNode(NewAttribute("Z",elementPtr->GetZ()));
141  AtomWrite(elementElement,elementPtr->GetA());
142  }
143 
144  materialsElement->appendChild(elementElement);
145  // Append the element AFTER all the possible components are appended!
146 }
147 
148 void PHG4GDMLWriteMaterials::MaterialWrite(const G4Material* const materialPtr)
149 {
150  G4String state_str("undefined");
151  const G4State state = materialPtr->GetState();
152  if (state==kStateSolid) { state_str = "solid"; } else
153  if (state==kStateLiquid) { state_str = "liquid"; } else
154  if (state==kStateGas) { state_str = "gas"; }
155 
156  const G4String name = GenerateName(materialPtr->GetName(), materialPtr);
157 
158  xercesc::DOMElement* materialElement = NewElement("material");
159  materialElement->setAttributeNode(NewAttribute("name",name));
160  materialElement->setAttributeNode(NewAttribute("state",state_str));
161 
162  // Write any property attached to the material...
163  //
164  if (materialPtr->GetMaterialPropertiesTable())
165  {
166  PropertyWrite(materialElement, materialPtr);
167  }
168 
169  if (materialPtr->GetTemperature() != STP_Temperature)
170  { TWrite(materialElement,materialPtr->GetTemperature()); }
171  if (materialPtr->GetPressure() != STP_Pressure)
172  { PWrite(materialElement,materialPtr->GetPressure()); }
173 
174  // Write Ionisation potential (mean excitation energy)
175  MEEWrite(materialElement,materialPtr->GetIonisation()->GetMeanExcitationEnergy());
176 
177  DWrite(materialElement,materialPtr->GetDensity());
178 
179  const size_t NumberOfElements = materialPtr->GetNumberOfElements();
180 
181  if ( (NumberOfElements>1)
182  || ( materialPtr->GetElement(0)
183  && materialPtr->GetElement(0)->GetNumberOfIsotopes()>1 ) )
184  {
185  const G4double* MassFractionVector = materialPtr->GetFractionVector();
186 
187  for (size_t i=0;i<NumberOfElements;i++)
188  {
189  const G4String fractionref =
190  GenerateName(materialPtr->GetElement(i)->GetName(),
191  materialPtr->GetElement(i));
192  xercesc::DOMElement* fractionElement = NewElement("fraction");
193  fractionElement->setAttributeNode(NewAttribute("n",
194  MassFractionVector[i]));
195  fractionElement->setAttributeNode(NewAttribute("ref",fractionref));
196  materialElement->appendChild(fractionElement);
197  AddElement(materialPtr->GetElement(i));
198  }
199  }
200  else
201  {
202  materialElement->setAttributeNode(NewAttribute("Z",materialPtr->GetZ()));
203  AtomWrite(materialElement,materialPtr->GetA());
204  }
205 
206  // Append the material AFTER all the possible components are appended!
207  //
208  materialsElement->appendChild(materialElement);
209 }
210 
212  const G4PhysicsOrderedFreeVector* const pvec)
213 {
214  const G4String matrixref = GenerateName(key, pvec);
215  xercesc::DOMElement* matrixElement = NewElement("matrix");
216  matrixElement->setAttributeNode(NewAttribute("name", matrixref));
217  matrixElement->setAttributeNode(NewAttribute("coldim", "2"));
218  std::ostringstream pvalues;
219  for (size_t i=0; i<pvec->GetVectorLength(); i++)
220  {
221  if (i!=0) { pvalues << " "; }
222  pvalues << pvec->Energy(i) << " " << (*pvec)[i];
223  }
224  matrixElement->setAttributeNode(NewAttribute("values", pvalues.str()));
225 
226  defineElement->appendChild(matrixElement);
227 }
228 
229 void PHG4GDMLWriteMaterials::PropertyWrite(xercesc::DOMElement* matElement,
230  const G4Material* const mat)
231 {
232  xercesc::DOMElement* propElement;
233  G4MaterialPropertiesTable* ptable = mat->GetMaterialPropertiesTable();
234  const std::map< G4String, G4PhysicsOrderedFreeVector*,
235  std::less<G4String> >* pmap = ptable->GetPropertiesMap();
236  const std::map< G4String, G4double,
237  std::less<G4String> >* cmap = ptable->GetPropertiesCMap();
238  std::map< G4String, G4PhysicsOrderedFreeVector*,
239  std::less<G4String> >::const_iterator mpos;
240  std::map< G4String, G4double,
241  std::less<G4String> >::const_iterator cpos;
242  for (mpos=pmap->begin(); mpos!=pmap->end(); mpos++)
243  {
244  propElement = NewElement("property");
245  propElement->setAttributeNode(NewAttribute("name", mpos->first));
246  propElement->setAttributeNode(NewAttribute("ref",
247  GenerateName(mpos->first, mpos->second)));
248  if (mpos->second)
249  {
250  PropertyVectorWrite(mpos->first, mpos->second);
251  matElement->appendChild(propElement);
252  }
253  else
254  {
255  G4String warn_message = "Null pointer for material property -"
256  + mpos->first + "- of material -" + mat->GetName() + "- !";
257  G4Exception("PHG4GDMLWriteMaterials::PropertyWrite()", "NullPointer",
258  JustWarning, warn_message);
259  continue;
260  }
261  }
262  for (cpos=cmap->begin(); cpos!=cmap->end(); cpos++)
263  {
264  propElement = NewElement("property");
265  propElement->setAttributeNode(NewAttribute("name", cpos->first));
266  propElement->setAttributeNode(NewAttribute("ref", cpos->first));
267  xercesc::DOMElement* constElement = NewElement("constant");
268  constElement->setAttributeNode(NewAttribute("name", cpos->first));
269  constElement->setAttributeNode(NewAttribute("value", cpos->second));
270  defineElement->appendChild(constElement);
271  matElement->appendChild(propElement);
272  }
273 }
274 
275 void PHG4GDMLWriteMaterials::MaterialsWrite(xercesc::DOMElement* element)
276 {
277  G4cout << "G4GDML: Writing materials..." << G4endl;
278 
279  materialsElement = NewElement("materials");
280  element->appendChild(materialsElement);
281 
282  isotopeList.clear();
283  elementList.clear();
284  materialList.clear();
285 }
286 
287 void PHG4GDMLWriteMaterials::AddIsotope(const G4Isotope* const isotopePtr)
288 {
289  for (size_t i=0; i<isotopeList.size(); i++) // Check if isotope is
290  { // already in the list!
291  if (isotopeList[i] == isotopePtr) { return; }
292  }
293  isotopeList.push_back(isotopePtr);
294  IsotopeWrite(isotopePtr);
295 }
296 
297 void PHG4GDMLWriteMaterials::AddElement(const G4Element* const elementPtr)
298 {
299  for (size_t i=0;i<elementList.size();i++) // Check if element is
300  { // already in the list!
301  if (elementList[i] == elementPtr) { return; }
302  }
303  elementList.push_back(elementPtr);
304  ElementWrite(elementPtr);
305 }
306 
307 void PHG4GDMLWriteMaterials::AddMaterial(const G4Material* const materialPtr)
308 {
309  for (size_t i=0;i<materialList.size();i++) // Check if material is
310  { // already in the list!
311  if (materialList[i] == materialPtr) { return; }
312  }
313  materialList.push_back(materialPtr);
314  MaterialWrite(materialPtr);
315 }
xercesc::DOMElement * defineElement
void AddMaterial(const G4Material *const)
void PropertyWrite(xercesc::DOMElement *, const G4Material *const)
void MaterialWrite(const G4Material *const)
void AtomWrite(xercesc::DOMElement *, const G4double &)
void PWrite(xercesc::DOMElement *, const G4double &)
void DWrite(xercesc::DOMElement *, const G4double &)
void PropertyVectorWrite(const G4String &, const G4PhysicsOrderedFreeVector *const)
void MEEWrite(xercesc::DOMElement *, const G4double &)
xercesc::DOMElement * materialsElement
std::vector< const G4Isotope * > isotopeList
std::vector< const G4Material * > materialList
void ElementWrite(const G4Element *const)
void IsotopeWrite(const G4Isotope *const)
void TWrite(xercesc::DOMElement *, const G4double &)
std::vector< const G4Element * > elementList
virtual void MaterialsWrite(xercesc::DOMElement *)
void AddElement(const G4Element *const)
void AddIsotope(const G4Isotope *const)
G4String GenerateName(const G4String &, const void *const)
xercesc::DOMElement * NewElement(const G4String &)
xercesc::DOMAttr * NewAttribute(const G4String &, const G4String &)