Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
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$
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
59class 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);
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;
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
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
bool G4bool
Definition: G4Types.hh:67
std::vector< G4ThreeVector > G4ThreeVectorList
Definition: G4VSolid.hh:85
G4double GetSemiAxisMax(G4int i) const
void DescribeYourselfTo(G4VGraphicsScene &scene) const
void SetZCuts(G4double newzBottomCut, G4double newzTopCut)
std::ostream & StreamInfo(std::ostream &os) const
Definition: G4Ellipsoid.cc:956
G4double DistanceToIn(const G4ThreeVector &p, const G4ThreeVector &v) const
Definition: G4Ellipsoid.cc:494
G4Polyhedron * GetPolyhedron() const
G4VSolid * Clone() const
Definition: G4Ellipsoid.cc:947
G4Polyhedron * CreatePolyhedron() const
G4ThreeVectorList * CreateRotatedVertices(const G4AffineTransform &pT, G4int &noPV) const
Definition: G4Ellipsoid.cc:822
G4double GetZTopCut() const
G4Polyhedron * fpPolyhedron
Definition: G4Ellipsoid.hh:132
G4double GetZBottomCut() const
EInside Inside(const G4ThreeVector &p) const
Definition: G4Ellipsoid.cc:416
G4NURBS * CreateNURBS() const
G4double GetSurfaceArea()
G4bool CalculateExtent(const EAxis pAxis, const G4VoxelLimits &pVoxelLimit, const G4AffineTransform &pTransform, G4double &pmin, G4double &pmax) const
Definition: G4Ellipsoid.cc:170
void SetSemiAxis(G4double x, G4double y, G4double z)
G4double DistanceToOut(const G4ThreeVector &p, const G4ThreeVector &v, const G4bool calcNorm=G4bool(false), G4bool *validNorm=0, G4ThreeVector *n=0) const
Definition: G4Ellipsoid.cc:633
G4Ellipsoid & operator=(const G4Ellipsoid &rhs)
Definition: G4Ellipsoid.cc:144
G4double GetCubicVolume()
G4ThreeVector GetPointOnSurface() const
Definition: G4Ellipsoid.cc:981
G4ThreeVector SurfaceNormal(const G4ThreeVector &p) const
Definition: G4Ellipsoid.cc:460
G4VisExtent GetExtent() const
virtual ~G4Ellipsoid()
Definition: G4Ellipsoid.cc:122
G4GeometryType GetEntityType() const
Definition: G4Ellipsoid.cc:938
EAxis
Definition: geomdefs.hh:54
EInside
Definition: geomdefs.hh:58