source: trunk/source/persistency/gdml/include/G4GDMLWriteSolids.hh @ 1264

Last change on this file since 1264 was 1228, checked in by garnier, 15 years ago

update geant4.9.3 tag

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