Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4GDMLWriteSolids.hh
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$
28 //
29 //
30 // class G4GDMLWriteSolids
31 //
32 // Class description:
33 //
34 // GDML class for writing solids.
35 
36 // History:
37 // - Created. Zoltan Torzsok, November 2007
38 // -------------------------------------------------------------------------
39 
40 #ifndef _G4GDMLWRITESOLIDS_INCLUDED_
41 #define _G4GDMLWRITESOLIDS_INCLUDED_
42 
43 #include "G4Types.hh"
44 
45 #include "G4GDMLWriteMaterials.hh"
46 
47 class G4BooleanSolid;
48 class G4Box;
49 class G4Cons;
50 class G4EllipticalCone;
51 class G4Ellipsoid;
52 class G4EllipticalTube;
53 class G4ExtrudedSolid;
54 class G4Hype;
55 class G4Orb;
56 class G4Para;
57 class G4Paraboloid;
58 class G4Polycone;
59 class G4Polyhedra;
60 class G4Sphere;
61 class G4TessellatedSolid;
62 class G4Tet;
63 class G4Torus;
64 class G4GenericTrap;
65 class G4Trap;
66 class G4Trd;
67 class G4Tubs;
68 class G4CutTubs;
69 class G4TwistedBox;
70 class G4TwistedTrap;
71 class G4TwistedTrd;
72 class G4TwistedTubs;
73 class G4VSolid;
74 class G4OpticalSurface;
75 
77 {
78  public:
79 
80  virtual void AddSolid(const G4VSolid* const);
81  virtual void SolidsWrite(xercesc::DOMElement*);
82 
83  protected:
84 
86  virtual ~G4GDMLWriteSolids();
87 
88  void BooleanWrite(xercesc::DOMElement*, const G4BooleanSolid* const);
89  void BoxWrite(xercesc::DOMElement*, const G4Box* const);
90  void ConeWrite(xercesc::DOMElement*, const G4Cons* const);
91  void ElconeWrite(xercesc::DOMElement*, const G4EllipticalCone* const);
92  void EllipsoidWrite(xercesc::DOMElement*, const G4Ellipsoid* const);
93  void EltubeWrite(xercesc::DOMElement*, const G4EllipticalTube* const);
94  void XtruWrite(xercesc::DOMElement*, const G4ExtrudedSolid* const);
95  void HypeWrite(xercesc::DOMElement*, const G4Hype* const);
96  void OrbWrite(xercesc::DOMElement*, const G4Orb* const);
97  void ParaWrite(xercesc::DOMElement*, const G4Para* const);
98  void ParaboloidWrite(xercesc::DOMElement*, const G4Paraboloid* const);
99  void PolyconeWrite(xercesc::DOMElement*, const G4Polycone* const);
100  void PolyhedraWrite(xercesc::DOMElement*, const G4Polyhedra* const);
101  void SphereWrite(xercesc::DOMElement*, const G4Sphere* const);
102  void TessellatedWrite(xercesc::DOMElement*, const G4TessellatedSolid* const);
103  void TetWrite(xercesc::DOMElement*, const G4Tet* const);
104  void TorusWrite(xercesc::DOMElement*, const G4Torus* const);
105  void GenTrapWrite(xercesc::DOMElement*, const G4GenericTrap* const);
106  void TrapWrite(xercesc::DOMElement*, const G4Trap* const);
107  void TrdWrite(xercesc::DOMElement*, const G4Trd* const);
108  void TubeWrite(xercesc::DOMElement*, const G4Tubs* const);
109  void CutTubeWrite(xercesc::DOMElement*, const G4CutTubs* const);
110  void TwistedboxWrite(xercesc::DOMElement*, const G4TwistedBox* const);
111  void TwistedtrapWrite(xercesc::DOMElement*, const G4TwistedTrap* const);
112  void TwistedtrdWrite(xercesc::DOMElement*, const G4TwistedTrd* const);
113  void TwistedtubsWrite(xercesc::DOMElement*, const G4TwistedTubs* const);
114  void ZplaneWrite(xercesc::DOMElement*, const G4double&,
115  const G4double&, const G4double&);
116  void OpticalSurfaceWrite(xercesc::DOMElement*,
117  const G4OpticalSurface* const);
118 
119  protected:
120 
121  std::vector<const G4VSolid*> solidList;
122  xercesc::DOMElement* solidsElement;
123  static const G4int maxTransforms = 8; // Constant for limiting the number
124  // of displacements/reflections
125  // applied to a single solid
126 };
127 
128 #endif