Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4Ellipsoid.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: G4Ellipsoid.hh 67011 2013-01-29 16:17:41Z gcosmo $
28 //
29 //
30 // --------------------------------------------------------------------
31 // GEANT 4 class header file
32 //
33 // G4Ellipsoid
34 //
35 // Class description:
36 //
37 // A G4Ellipsoid is an ellipsoidal solid, optionally cut at a given z.
38 //
39 // Member Data:
40 //
41 // xSemiAxis semi-axis, x
42 // ySemiAxis semi-axis, y
43 // zSemiAxis semi-axis, z
44 // zBottomCut lower cut plane level, z (solid lies above this plane)
45 // zTopCut upper cut plane level, z (solid lies below this plane)
46 
47 // History:
48 // -------
49 // 10.11.1999 G.Horton-Smith (Caltech, USA) - First implementation
50 // 10.02.2005 G.Guerrieri (INFN Genova, Italy) - Revision
51 // --------------------------------------------------------------------
52 #ifndef G4Ellipsoid_HH
53 #define G4Ellipsoid_HH
54 
56 
57 #include "G4VSolid.hh"
58 
59 class G4Ellipsoid : public G4VSolid
60 {
61  public: // with description
62 
63  G4Ellipsoid(const G4String& pName,
64  G4double pxSemiAxis,
65  G4double pySemiAxis,
66  G4double pzSemiAxis,
67  G4double pzBottomCut=0,
68  G4double pzTopCut=0);
69 
70  virtual ~G4Ellipsoid();
71 
72  // Access functions
73 
74  inline G4double GetSemiAxisMax (G4int i) const;
75  inline G4double GetZBottomCut() const;
76  inline G4double GetZTopCut() const;
77  inline void SetSemiAxis (G4double x, G4double y, G4double z);
78  inline void SetZCuts (G4double newzBottomCut, G4double newzTopCut);
79  inline G4double GetCubicVolume();
80  inline G4double GetSurfaceArea();
81 
82  // Solid standard methods
83 
84  G4bool CalculateExtent(const EAxis pAxis,
85  const G4VoxelLimits& pVoxelLimit,
86  const G4AffineTransform& pTransform,
87  G4double& pmin, G4double& pmax) const;
88  EInside Inside(const G4ThreeVector& p) const;
89  G4ThreeVector SurfaceNormal( const G4ThreeVector& p) const;
91  const G4ThreeVector& v) const;
92  G4double DistanceToIn(const G4ThreeVector& p) const;
94  const G4ThreeVector& v,
95  const G4bool calcNorm=G4bool(false),
96  G4bool *validNorm=0,
97  G4ThreeVector *n=0) const;
98  G4double DistanceToOut(const G4ThreeVector& p) const;
99 
101 
102  G4VSolid* Clone() const;
103 
104  std::ostream& StreamInfo(std::ostream& os) const;
105 
107 
108  // Visualisation functions
109 
110  G4Polyhedron* GetPolyhedron () const;
111  void DescribeYourselfTo(G4VGraphicsScene& scene) const;
112  G4VisExtent GetExtent() const;
114  G4NURBS* CreateNURBS() const;
115 
116  public: // without description
117 
118  G4Ellipsoid(__void__&);
119  // Fake default constructor for usage restricted to direct object
120  // persistency for clients requiring preallocation of memory for
121  // persistifiable objects.
122 
123  G4Ellipsoid(const G4Ellipsoid& rhs);
124  G4Ellipsoid& operator=(const G4Ellipsoid& rhs);
125  // Copy constructor and assignment operator.
126 
127  protected: // without description
128 
130  G4int& noPV) const;
131 
133 
134  private:
135 
136  G4double kRadTolerance;
137 
138  G4double fCubicVolume;
139  G4double fSurfaceArea;
140  G4double xSemiAxis, ySemiAxis, zSemiAxis,
141  semiAxisMax, zBottomCut, zTopCut;
142 };
143 
144 #include "G4Ellipsoid.icc"
145 
146 #endif