Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4GDMLWrite.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// G4GDMLWrite implementation
27//
28// Author: Zoltan Torzsok, November 2007
29// --------------------------------------------------------------------
30
31#include <sys/stat.h>
32#include <iostream>
33
34#include "G4GDMLWrite.hh"
35
36#include "G4LogicalVolume.hh"
37#include "G4Transform3D.hh"
38#include "G4PVDivision.hh"
39
41
42// --------------------------------------------------------------------
44{
45}
46
47// --------------------------------------------------------------------
49{
50}
51
52// --------------------------------------------------------------------
54{
55 struct stat FileInfo;
56 return (stat(fname.c_str(), &FileInfo) == 0);
57}
58
59// --------------------------------------------------------------------
60G4GDMLWrite::VolumeMapType& G4GDMLWrite::VolumeMap()
61{
62 static VolumeMapType instance;
63 return instance;
64}
65
66G4GDMLWrite::PhysVolumeMapType& G4GDMLWrite::PvolumeMap()
67{
68 static PhysVolumeMapType instance;
69 return instance;
70}
71
72// --------------------------------------------------------------------
73G4GDMLWrite::DepthMapType& G4GDMLWrite::DepthMap()
74{
75 static DepthMapType instance;
76 return instance;
77}
78
79// --------------------------------------------------------------------
80void G4GDMLWrite::AddExtension(xercesc::DOMElement*,
81 const G4LogicalVolume* const)
82{
83 // Empty implementation. To be overwritten by user for specific extensions
84 // related to attributes associated to volumes
85}
86
87// --------------------------------------------------------------------
88void G4GDMLWrite::ExtensionWrite(xercesc::DOMElement*)
89{
90 // Empty implementation. To be overwritten by user for specific extensions
91}
92
93// --------------------------------------------------------------------
95 xercesc::DOMElement* element)
96{
97 for(auto iaux = auxInfoList->cbegin(); iaux != auxInfoList->cend(); ++iaux)
98 {
99 xercesc::DOMElement* auxiliaryElement = NewElement("auxiliary");
100 element->appendChild(auxiliaryElement);
101
102 auxiliaryElement->setAttributeNode(NewAttribute("auxtype", (*iaux).type));
103 auxiliaryElement->setAttributeNode(NewAttribute("auxvalue", (*iaux).value));
104 if(((*iaux).unit) != "")
105 {
106 auxiliaryElement->setAttributeNode(NewAttribute("auxunit", (*iaux).unit));
107 }
108
109 if(iaux->auxList)
110 {
111 AddAuxInfo(iaux->auxList, auxiliaryElement);
112 }
113 }
114 return;
115}
116
117// --------------------------------------------------------------------
118void G4GDMLWrite::UserinfoWrite(xercesc::DOMElement* gdmlElement)
119{
120 if(auxList.size() > 0)
121 {
122#ifdef G4VERBOSE
123 G4cout << "G4GDML: Writing userinfo..." << G4endl;
124#endif
125 userinfoElement = NewElement("userinfo");
126 gdmlElement->appendChild(userinfoElement);
128 }
129}
130
131// --------------------------------------------------------------------
132G4String G4GDMLWrite::GenerateName(const G4String& name, const void* const ptr)
133{
134 G4String nameOut;
135 std::stringstream stream;
136 stream << name;
138 {
139 stream << ptr;
140 };
141
142 nameOut = G4String(stream.str());
143 std::vector<char> toremove = { ' ', '/', ':', '#', '+' };
144 for(auto c : toremove)
145 {
146 if(nameOut.contains(c))
147 {
148 std::replace(nameOut.begin(), nameOut.end(), c, '_');
149 }
150 }
151 return nameOut;
152}
153
154// --------------------------------------------------------------------
155xercesc::DOMAttr* G4GDMLWrite::NewAttribute(const G4String& name,
156 const G4String& value)
157{
158 xercesc::XMLString::transcode(name, tempStr, 9999);
159 xercesc::DOMAttr* att = doc->createAttribute(tempStr);
160 xercesc::XMLString::transcode(value, tempStr, 9999);
161 att->setValue(tempStr);
162 return att;
163}
164
165// --------------------------------------------------------------------
166xercesc::DOMAttr* G4GDMLWrite::NewAttribute(const G4String& name,
167 const G4double& value)
168{
169 xercesc::XMLString::transcode(name, tempStr, 9999);
170 xercesc::DOMAttr* att = doc->createAttribute(tempStr);
171 std::ostringstream ostream;
172 ostream.precision(15);
173 ostream << value;
174 G4String str = ostream.str();
175 xercesc::XMLString::transcode(str, tempStr, 9999);
176 att->setValue(tempStr);
177 return att;
178}
179
180// --------------------------------------------------------------------
181xercesc::DOMElement* G4GDMLWrite::NewElement(const G4String& name)
182{
183 xercesc::XMLString::transcode(name, tempStr, 9999);
184 return doc->createElement(tempStr);
185}
186
187// --------------------------------------------------------------------
189 const G4LogicalVolume* const logvol,
190 const G4String& setSchemaLocation,
191 const G4int depth, G4bool refs)
192{
193 SchemaLocation = setSchemaLocation;
194 addPointerToName = refs;
195#ifdef G4VERBOSE
196 if(depth == 0)
197 {
198 G4cout << "G4GDML: Writing '" << fname << "'..." << G4endl;
199 }
200 else
201 {
202 G4cout << "G4GDML: Writing module '" << fname << "'..." << G4endl;
203 }
204#endif
205 if(!overwriteOutputFile && FileExists(fname))
206 {
207 G4String ErrorMessage = "File '" + fname + "' already exists!";
208 G4Exception("G4GDMLWrite::Write()", "InvalidSetup", FatalException,
209 ErrorMessage);
210 }
211
212 VolumeMap().clear(); // The module map is global for all modules,
213 // so clear it only at once!
214
215 xercesc::XMLString::transcode("LS", tempStr, 9999);
216 xercesc::DOMImplementationRegistry::getDOMImplementation(tempStr);
217 xercesc::XMLString::transcode("Range", tempStr, 9999);
218 xercesc::DOMImplementation* impl =
219 xercesc::DOMImplementationRegistry::getDOMImplementation(tempStr);
220 xercesc::XMLString::transcode("gdml", tempStr, 9999);
221 doc = impl->createDocument(0, tempStr, 0);
222 xercesc::DOMElement* gdml = doc->getDocumentElement();
223
224#if XERCES_VERSION_MAJOR >= 3
225 // DOM L3 as per Xerces 3.0 API
226 xercesc::DOMLSSerializer* writer =
227 ((xercesc::DOMImplementationLS*) impl)->createLSSerializer();
228
229 xercesc::DOMConfiguration* dc = writer->getDomConfig();
230 dc->setParameter(xercesc::XMLUni::fgDOMWRTFormatPrettyPrint, true);
231
232#else
233
234 xercesc::DOMWriter* writer =
235 ((xercesc::DOMImplementationLS*) impl)->createDOMWriter();
236
237 if(writer->canSetFeature(xercesc::XMLUni::fgDOMWRTFormatPrettyPrint, true))
238 writer->setFeature(xercesc::XMLUni::fgDOMWRTFormatPrettyPrint, true);
239
240#endif
241
242 gdml->setAttributeNode(
243 NewAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance"));
244 gdml->setAttributeNode(
245 NewAttribute("xsi:noNamespaceSchemaLocation", SchemaLocation));
246
247 ExtensionWrite(gdml);
248 DefineWrite(gdml);
249 MaterialsWrite(gdml);
250 SolidsWrite(gdml);
251 StructureWrite(gdml);
252 UserinfoWrite(gdml);
253 SetupWrite(gdml, logvol);
254
255 G4Transform3D R = TraverseVolumeTree(logvol, depth);
256
258 xercesc::XMLFormatTarget* myFormTarget =
259 new xercesc::LocalFileFormatTarget(fname.c_str());
260
261 try
262 {
263#if XERCES_VERSION_MAJOR >= 3
264 // DOM L3 as per Xerces 3.0 API
265 xercesc::DOMLSOutput* theOutput =
266 ((xercesc::DOMImplementationLS*) impl)->createLSOutput();
267 theOutput->setByteStream(myFormTarget);
268 writer->write(doc, theOutput);
269#else
270 writer->writeNode(myFormTarget, *doc);
271#endif
272 } catch(const xercesc::XMLException& toCatch)
273 {
274 char* message = xercesc::XMLString::transcode(toCatch.getMessage());
275 G4cout << "G4GDML: Exception message is: " << message << G4endl;
276 xercesc::XMLString::release(&message);
278 } catch(const xercesc::DOMException& toCatch)
279 {
280 char* message = xercesc::XMLString::transcode(toCatch.msg);
281 G4cout << "G4GDML: Exception message is: " << message << G4endl;
282 xercesc::XMLString::release(&message);
284 } catch(...)
285 {
286 G4cout << "G4GDML: Unexpected Exception!" << G4endl;
288 }
289
290 delete myFormTarget;
291 writer->release();
292
293 if(depth == 0)
294 {
295 G4cout << "G4GDML: Writing '" << fname << "' done !" << G4endl;
296 }
297 else
298 {
299#ifdef G4VERBOSE
300 G4cout << "G4GDML: Writing module '" << fname << "' done !" << G4endl;
301#endif
302 }
303
304 return R;
305}
306
307// --------------------------------------------------------------------
309{
310 G4String fname = GenerateName(physvol->GetName(), physvol);
311 G4cout << "G4GDML: Adding module '" << fname << "'..." << G4endl;
312
313 if(physvol == nullptr)
314 {
315 G4Exception("G4GDMLWrite::AddModule()", "InvalidSetup", FatalException,
316 "Invalid NULL pointer is specified for modularization!");
317 return;
318 }
319 if(dynamic_cast<const G4PVDivision*>(physvol))
320 {
321 G4Exception("G4GDMLWrite::AddModule()", "InvalidSetup", FatalException,
322 "It is not possible to modularize by divisionvol!");
323 return;
324 }
325 if(physvol->IsParameterised())
326 {
327 G4Exception("G4GDMLWrite::AddModule()", "InvalidSetup", FatalException,
328 "It is not possible to modularize by parameterised volume!");
329 return;
330 }
331 if(physvol->IsReplicated())
332 {
333 G4Exception("G4GDMLWrite::AddModule()", "InvalidSetup", FatalException,
334 "It is not possible to modularize by replicated volume!");
335 return;
336 }
337
338 PvolumeMap()[physvol] = fname;
339}
340
341// --------------------------------------------------------------------
343{
344 if(depth < 0)
345 {
346 G4Exception("G4GDMLWrite::AddModule()", "InvalidSetup", FatalException,
347 "Depth must be a positive number!");
348 }
349 if(DepthMap().find(depth) != DepthMap().end())
350 {
351 G4Exception("G4GDMLWrite::AddModule()", "InvalidSetup", FatalException,
352 "Adding module(s) at this depth is already requested!");
353 }
354 DepthMap()[depth] = 0;
355}
356
357// --------------------------------------------------------------------
359 const G4int depth)
360{
361 if(PvolumeMap().find(physvol) != PvolumeMap().cend())
362 {
363 return PvolumeMap()[physvol]; // Modularize via physvol
364 }
365
366 if(DepthMap().find(depth) != DepthMap().cend()) // Modularize via depth
367 {
368 std::stringstream stream;
369 stream << "depth" << depth << "_module" << DepthMap()[depth] << ".gdml";
370 DepthMap()[depth]++; // There can be more modules at this depth!
371 return G4String(stream.str());
372 }
373
374 return G4String(""); // Empty string for module name = no modularization
375 // was requested at that level/physvol!
376}
377
378// --------------------------------------------------------------------
380{
381 auxList.push_back(myaux);
382}
383
384// --------------------------------------------------------------------
386{
387 overwriteOutputFile = flag;
388}
389
390// --------------------------------------------------------------------
392{
393 addPointerToName = set;
394}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:35
std::vector< G4GDMLAuxStructType > G4GDMLAuxListType
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
virtual void SurfacesWrite()=0
virtual void MaterialsWrite(xercesc::DOMElement *)=0
DepthMapType & DepthMap()
Definition: G4GDMLWrite.cc:73
G4bool FileExists(const G4String &) const
Definition: G4GDMLWrite.cc:53
static void SetAddPointerToName(G4bool)
Definition: G4GDMLWrite.cc:391
G4GDMLAuxListType auxList
Definition: G4GDMLWrite.hh:136
void AddModule(const G4VPhysicalVolume *const topVol)
Definition: G4GDMLWrite.cc:308
xercesc::DOMElement * NewElement(const G4String &)
Definition: G4GDMLWrite.cc:181
G4String GenerateName(const G4String &, const void *const)
Definition: G4GDMLWrite.cc:132
G4String SchemaLocation
Definition: G4GDMLWrite.hh:130
void AddAuxiliary(G4GDMLAuxStructType myaux)
Definition: G4GDMLWrite.cc:379
G4String Modularize(const G4VPhysicalVolume *const topvol, const G4int depth)
Definition: G4GDMLWrite.cc:358
virtual void AddExtension(xercesc::DOMElement *, const G4LogicalVolume *const)
Definition: G4GDMLWrite.cc:80
virtual void SetupWrite(xercesc::DOMElement *, const G4LogicalVolume *const)=0
G4Transform3D Write(const G4String &filename, const G4LogicalVolume *const topLog, const G4String &schemaPath, const G4int depth, G4bool storeReferences=true)
Definition: G4GDMLWrite.cc:188
virtual G4Transform3D TraverseVolumeTree(const G4LogicalVolume *const, const G4int)=0
virtual ~G4GDMLWrite()
Definition: G4GDMLWrite.cc:48
virtual void DefineWrite(xercesc::DOMElement *)=0
xercesc::DOMDocument * doc
Definition: G4GDMLWrite.hh:132
xercesc::DOMAttr * NewAttribute(const G4String &, const G4String &)
Definition: G4GDMLWrite.cc:155
virtual void UserinfoWrite(xercesc::DOMElement *)
Definition: G4GDMLWrite.cc:118
void AddAuxInfo(G4GDMLAuxListType *auxInfoList, xercesc::DOMElement *element)
Definition: G4GDMLWrite.cc:94
static G4bool addPointerToName
Definition: G4GDMLWrite.hh:131
xercesc::DOMElement * userinfoElement
Definition: G4GDMLWrite.hh:134
virtual void ExtensionWrite(xercesc::DOMElement *)
Definition: G4GDMLWrite.cc:88
virtual void SolidsWrite(xercesc::DOMElement *)=0
VolumeMapType & VolumeMap()
Definition: G4GDMLWrite.cc:60
virtual void StructureWrite(xercesc::DOMElement *)=0
G4bool overwriteOutputFile
Definition: G4GDMLWrite.hh:137
void SetOutputFileOverwrite(G4bool flag)
Definition: G4GDMLWrite.cc:385
XMLCh tempStr[10000]
Definition: G4GDMLWrite.hh:135
PhysVolumeMapType & PvolumeMap()
Definition: G4GDMLWrite.cc:66
G4bool contains(const std::string &) const
virtual G4bool IsReplicated() const =0
const G4String & GetName() const
virtual G4bool IsParameterised() const =0
static DLL_API const Transform3D Identity
Definition: Transform3D.h:196