source: trunk/source/persistency/gdml/include/G4GDMLRead.hh@ 1239

Last change on this file since 1239 was 1228, checked in by garnier, 16 years ago

update geant4.9.3 tag

File size: 5.3 KB
Line 
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: G4GDMLRead.hh,v 1.31 2009/05/12 15:46:43 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-03 $
29//
30// class G4GDMLRead
31//
32// Class description:
33//
34// GDML reader.
35
36// History:
37// - Created. Zoltan Torzsok, November 2007
38// -------------------------------------------------------------------------
39
40#ifndef _G4GDMLBASE_INCLUDED_
41#define _G4GDMLBASE_INCLUDED_
42
43#include <xercesc/parsers/XercesDOMParser.hpp>
44#include <xercesc/util/PlatformUtils.hpp>
45#include <xercesc/sax/HandlerBase.hpp>
46#include <xercesc/util/XMLUni.hpp>
47#include <xercesc/dom/DOM.hpp>
48
49#include "G4Types.hh"
50
51#include "G4GDMLEvaluator.hh"
52
53class G4LogicalVolume;
54class G4VPhysicalVolume;
55
56class G4GDMLErrorHandler : public xercesc::ErrorHandler
57{
58 G4bool Suppress;
59
60 public:
61
62 G4GDMLErrorHandler(const G4bool set) { Suppress = set; }
63
64 void warning(const xercesc::SAXParseException& exception)
65 {
66 if (Suppress) { return; }
67 char* message = xercesc::XMLString::transcode(exception.getMessage());
68 G4cout << "G4GDML: VALIDATION WARNING! " << message
69 << " at line: " << exception.getLineNumber() << G4endl;
70 xercesc::XMLString::release(&message);
71 }
72
73 void error(const xercesc::SAXParseException& exception)
74 {
75 if (Suppress) { return; }
76 char* message = xercesc::XMLString::transcode(exception.getMessage());
77 G4cout << "G4GDML: VALIDATION ERROR! " << message
78 << " at line: " << exception.getLineNumber() << G4endl;
79 xercesc::XMLString::release(&message);
80 }
81
82 void fatalError(const xercesc::SAXParseException& exception)
83 {
84 error(exception);
85 }
86 void resetErrors() {}
87};
88
89class G4GDMLRead
90{
91
92 public: // with description
93
94 virtual void DefineRead(const xercesc::DOMElement* const)=0;
95 virtual void MaterialsRead(const xercesc::DOMElement* const)=0;
96 virtual void SetupRead(const xercesc::DOMElement* const)=0;
97 virtual void SolidsRead(const xercesc::DOMElement* const)=0;
98 virtual void Paramvol_contentRead(const xercesc::DOMElement* const)=0;
99 virtual void Volume_contentRead(const xercesc::DOMElement* const)=0;
100 virtual void StructureRead(const xercesc::DOMElement* const)=0;
101 //
102 // Pure virtual methods implemented in concrete reader plugin's classes
103
104 virtual void ExtensionRead(const xercesc::DOMElement* const);
105 //
106 // To be implemented in the client code for handling extensions
107 // to the GDML schema, identified with the tag "extension".
108 // The implementation should be placed inside a user-class
109 // inheriting from G4GDMLReadStructure and being registered
110 // as argument to G4GDMLParser.
111
112 virtual G4LogicalVolume* GetVolume(const G4String&) const=0;
113 virtual G4String GetSetup(const G4String&)=0;
114 //
115 // More pure virtual methods implemented in the reader plugin.
116
117 void Read(const G4String&, G4bool validation, G4bool isModule);
118 //
119 // Main method for reading GDML files.
120
121 void StripNames() const;
122 //
123 // Strip off pointers from entity IDs.
124
125 void OverlapCheck(G4bool);
126 //
127 // Activate/de-activate surface check for overlaps (default is off)
128
129 protected:
130
131 G4GDMLRead();
132 virtual ~G4GDMLRead();
133
134 G4String Transcode(const XMLCh* const);
135 G4String GenerateName(const G4String& name, G4bool strip=false);
136 G4String Strip(const G4String&) const;
137 void StripName(G4String&) const;
138 void GeneratePhysvolName(const G4String&,G4VPhysicalVolume*);
139 void LoopRead(const xercesc::DOMElement* const,
140 void(G4GDMLRead::*)(const xercesc::DOMElement* const));
141
142 protected:
143
144 G4GDMLEvaluator eval;
145 G4bool validate;
146 G4bool check;
147
148 private:
149
150 G4int inLoop, loopCount;
151
152};
153
154#endif
Note: See TracBrowser for help on using the repository browser.