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

Last change on this file since 1315 was 1315, checked in by garnier, 14 years ago

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

File size: 5.0 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.39 2010/06/02 13:53:04 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
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 G4GenericTrap;
66class G4Trap;
67class G4Trd;
68class G4Tubs;
69class G4TwistedBox;
70class G4TwistedTrap;
71class G4TwistedTrd;
72class G4TwistedTubs;
73class G4VSolid;
74class G4OpticalSurface;
75
76class G4GDMLWriteSolids : public G4GDMLWriteMaterials
77{
78  public:
79
80   virtual void AddSolid(const G4VSolid* const);
81   virtual void SolidsWrite(xercesc::DOMElement*);
82
83  protected:
84
85   G4GDMLWriteSolids();
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 TwistedboxWrite(xercesc::DOMElement*, const G4TwistedBox* const);
110   void TwistedtrapWrite(xercesc::DOMElement*, const G4TwistedTrap* const);
111   void TwistedtrdWrite(xercesc::DOMElement*, const G4TwistedTrd* const);
112   void TwistedtubsWrite(xercesc::DOMElement*, const G4TwistedTubs* const);
113   void ZplaneWrite(xercesc::DOMElement*, const G4double&,
114                    const G4double&, const G4double&);
115   void OpticalSurfaceWrite(xercesc::DOMElement*,
116                    const G4OpticalSurface* const);
117
118  protected:
119
120   std::vector<const G4VSolid*> solidList;
121   xercesc::DOMElement* solidsElement;
122   static const G4int maxTransforms = 8; // Constant for limiting the number
123                                         // of displacements/reflections
124                                         // applied to a single solid
125};
126
127#endif
Note: See TracBrowser for help on using the repository browser.