source: trunk/source/persistency/gdml/include/G4GDMLSolids.hh @ 818

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

import all except CVS

File size: 4.7 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: G4GDMLSolids.hh,v 1.16 2007/11/30 14:51:20 ztorzsok Exp $
28// GEANT4 tag $Name: geant4-09-01-patch-02 $
29//
30//
31// class G4GDMLSolids
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 _G4GDMLSOLIDS_INCLUDED_
42#define _G4GDMLSOLIDS_INCLUDED_
43
44#include "G4Box.hh"
45#include "G4Cons.hh"
46#include "G4Ellipsoid.hh"
47#include "G4EllipticalTube.hh"
48#include "G4ExtrudedSolid.hh"
49#include "G4Hype.hh"
50#include "G4IntersectionSolid.hh"
51#include "G4Orb.hh"
52#include "G4Para.hh"
53#include "G4Polycone.hh"
54#include "G4Polyhedra.hh"
55#include "G4QuadrangularFacet.hh"
56#include "G4ReflectedSolid.hh"
57#include "G4Sphere.hh"
58#include "G4SolidStore.hh"
59#include "G4SubtractionSolid.hh"
60#include "G4TessellatedSolid.hh"
61#include "G4Tet.hh"
62#include "G4Torus.hh"
63#include "G4Transform3D.hh"
64#include "G4Trap.hh"
65#include "G4Trd.hh"
66#include "G4TriangularFacet.hh"
67#include "G4Tubs.hh"
68#include "G4UnionSolid.hh"
69
70#include "G4GDMLMaterials.hh"
71
72class G4GDMLSolids : public G4GDMLMaterials {
73private:
74   enum BooleanOp {UNION,SUBTRACTION,INTERSECTION};
75   typedef struct zplaneType { G4double rmin,rmax,z; };
76
77   void booleanRead(const xercesc::DOMElement* const,const BooleanOp);
78   void boxRead(const xercesc::DOMElement* const);
79   void coneRead(const xercesc::DOMElement* const);
80   void ellipsoidRead(const xercesc::DOMElement* const);
81   void eltubeRead(const xercesc::DOMElement* const);
82   void hypeRead(const xercesc::DOMElement* const);
83   void loopRead(const xercesc::DOMElement* const);
84   void orbRead(const xercesc::DOMElement* const);
85   void paraRead(const xercesc::DOMElement* const);
86   void polyconeRead(const xercesc::DOMElement* const);
87   void polyhedraRead(const xercesc::DOMElement* const);
88   G4QuadrangularFacet* quadrangularRead(const xercesc::DOMElement* const);
89   G4String refRead(const xercesc::DOMElement* const);
90   void reflectedSolidRead(const xercesc::DOMElement* const);
91   G4ExtrudedSolid::ZSection sectionRead(const xercesc::DOMElement* const,G4double);
92   void sphereRead(const xercesc::DOMElement* const);
93   void tessellatedRead(const xercesc::DOMElement* const);
94   void tetRead(const xercesc::DOMElement* const);
95   void torusRead(const xercesc::DOMElement* const);
96   void trapRead(const xercesc::DOMElement* const);
97   void trdRead(const xercesc::DOMElement* const);
98   G4TriangularFacet* triangularRead(const xercesc::DOMElement* const);
99   void tubeRead(const xercesc::DOMElement* const);
100   G4TwoVector twoDimVertexRead(const xercesc::DOMElement* const,G4double);
101   void xtruRead(const xercesc::DOMElement* const);
102   zplaneType zplaneRead(const xercesc::DOMElement* const,G4double);
103   void solidsRead(const xercesc::DOMElement* const);
104protected:
105   G4ThreeVector positionRead(const xercesc::DOMElement* const);
106   G4ThreeVector rotationRead(const xercesc::DOMElement* const);
107   G4ThreeVector scaleRead(const xercesc::DOMElement* const);
108   G4VSolid* getSolid(const G4String&) const;
109};
110
111#endif
Note: See TracBrowser for help on using the repository browser.