source: trunk/source/persistency/gdml/include/G4GDMLReadSolids.hh@ 1036

Last change on this file since 1036 was 987, checked in by garnier, 17 years ago

fichiers manquants

File size: 5.1 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: G4GDMLReadSolids.hh,v 1.12 2008/11/21 09:32:46 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-02-ref-02 $
29//
30//
31// class G4GDMLReadSolids
32//
33// Class description:
34//
35// GDML class for loading solids according to specifications in Geant4.
36
37// History:
38// - Created. Zoltan Torzsok, November 2007
39// -------------------------------------------------------------------------
40
41#ifndef _G4GDMLREADSOLIDS_INCLUDED_
42#define _G4GDMLREADSOLIDS_INCLUDED_
43
44#include "G4Box.hh"
45#include "G4Cons.hh"
46#include "G4Ellipsoid.hh"
47#include "G4EllipticalCone.hh"
48#include "G4EllipticalTube.hh"
49#include "G4ExtrudedSolid.hh"
50#include "G4Hype.hh"
51#include "G4IntersectionSolid.hh"
52#include "G4Orb.hh"
53#include "G4Para.hh"
54#include "G4Paraboloid.hh"
55#include "G4Polycone.hh"
56#include "G4Polyhedra.hh"
57#include "G4QuadrangularFacet.hh"
58#include "G4ReflectedSolid.hh"
59#include "G4Sphere.hh"
60#include "G4SolidStore.hh"
61#include "G4SubtractionSolid.hh"
62#include "G4TessellatedSolid.hh"
63#include "G4Tet.hh"
64#include "G4Torus.hh"
65#include "G4Transform3D.hh"
66#include "G4Trap.hh"
67#include "G4Trd.hh"
68#include "G4TriangularFacet.hh"
69#include "G4Tubs.hh"
70#include "G4TwistedBox.hh"
71#include "G4TwistedTrap.hh"
72#include "G4TwistedTrd.hh"
73#include "G4TwistedTubs.hh"
74#include "G4UnionSolid.hh"
75#include "G4OpticalSurface.hh"
76#include "G4SurfaceProperty.hh"
77
78#include "G4GDMLReadMaterials.hh"
79
80class G4GDMLReadSolids : public G4GDMLReadMaterials
81{
82 enum BooleanOp {UNION,SUBTRACTION,INTERSECTION};
83 typedef struct { G4double rmin,rmax,z; } zplaneType;
84
85 public:
86
87 G4VSolid* GetSolid(const G4String&) const;
88 G4SurfaceProperty* GetSurfaceProperty(const G4String&) const;
89
90 virtual void SolidsRead(const xercesc::DOMElement* const);
91
92 protected:
93
94 void BooleanRead(const xercesc::DOMElement* const,const BooleanOp);
95 void BoxRead(const xercesc::DOMElement* const);
96 void ConeRead(const xercesc::DOMElement* const);
97 void ElconeRead(const xercesc::DOMElement* const);
98 void EllipsoidRead(const xercesc::DOMElement* const);
99 void EltubeRead(const xercesc::DOMElement* const);
100 void XtruRead(const xercesc::DOMElement* const);
101 void HypeRead(const xercesc::DOMElement* const);
102 void OrbRead(const xercesc::DOMElement* const);
103 void ParaRead(const xercesc::DOMElement* const);
104 void ParaboloidRead(const xercesc::DOMElement* const);
105 void PolyconeRead(const xercesc::DOMElement* const);
106 void PolyhedraRead(const xercesc::DOMElement* const);
107 G4QuadrangularFacet* QuadrangularRead(const xercesc::DOMElement* const);
108 void ReflectedSolidRead(const xercesc::DOMElement* const);
109 G4ExtrudedSolid::ZSection SectionRead(const xercesc::DOMElement* const,G4double);
110 void SphereRead(const xercesc::DOMElement* const);
111 void TessellatedRead(const xercesc::DOMElement* const);
112 void TetRead(const xercesc::DOMElement* const);
113 void TorusRead(const xercesc::DOMElement* const);
114 void TrapRead(const xercesc::DOMElement* const);
115 void TrdRead(const xercesc::DOMElement* const);
116 void TubeRead(const xercesc::DOMElement* const);
117 void TwistedboxRead(const xercesc::DOMElement* const);
118 void TwistedtrapRead(const xercesc::DOMElement* const);
119 void TwistedtrdRead(const xercesc::DOMElement* const);
120 void TwistedtubsRead(const xercesc::DOMElement* const);
121 G4TriangularFacet* TriangularRead(const xercesc::DOMElement* const);
122 G4TwoVector TwoDimVertexRead(const xercesc::DOMElement* const,G4double);
123 zplaneType ZplaneRead(const xercesc::DOMElement* const);
124 void OpticalsurfaceRead(const xercesc::DOMElement* const);
125};
126
127#endif
Note: See TracBrowser for help on using the repository browser.