Geant4.10
 All Data Structures 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 73430 2013-08-27 11:04:49Z 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 
85  const G4int n,
86  const G4VPhysicalVolume* pRep);
87 
88  G4bool CalculateExtent(const EAxis pAxis,
89  const G4VoxelLimits& pVoxelLimit,
90  const G4AffineTransform& pTransform,
91  G4double& pmin, G4double& pmax) const;
92  EInside Inside(const G4ThreeVector& p) const;
93  G4ThreeVector SurfaceNormal( const G4ThreeVector& p) const;
95  const G4ThreeVector& v) const;
96  G4double DistanceToIn(const G4ThreeVector& p) const;
98  const G4ThreeVector& v,
99  const G4bool calcNorm=G4bool(false),
100  G4bool *validNorm=0,
101  G4ThreeVector *n=0) const;
102  G4double DistanceToOut(const G4ThreeVector& p) const;
103 
105 
106  G4VSolid* Clone() const;
107 
108  std::ostream& StreamInfo(std::ostream& os) const;
109 
111 
112  // Visualisation functions
113 
114  G4Polyhedron* GetPolyhedron () const;
115  void DescribeYourselfTo(G4VGraphicsScene& scene) const;
116  G4VisExtent GetExtent() const;
118 
119  public: // without description
120 
121  G4Ellipsoid(__void__&);
122  // Fake default constructor for usage restricted to direct object
123  // persistency for clients requiring preallocation of memory for
124  // persistifiable objects.
125 
126  G4Ellipsoid(const G4Ellipsoid& rhs);
127  G4Ellipsoid& operator=(const G4Ellipsoid& rhs);
128  // Copy constructor and assignment operator.
129 
130  protected: // without description
131 
133  G4int& noPV) const;
134 
136 
137  private:
138 
139  G4double kRadTolerance;
140  G4double halfCarTolerance, halfRadTolerance;
141 
142  G4double fCubicVolume;
143  G4double fSurfaceArea;
144  G4double xSemiAxis, ySemiAxis, zSemiAxis,
145  semiAxisMax, zBottomCut, zTopCut;
146 };
147 
148 #include "G4Ellipsoid.icc"
149 
150 #endif
G4Polyhedron * GetPolyhedron() const
G4GeometryType GetEntityType() const
Definition: G4Ellipsoid.cc:952
G4double z
Definition: TRTMaterials.hh:39
G4double DistanceToOut(const G4ThreeVector &p, const G4ThreeVector &v, const G4bool calcNorm=G4bool(false), G4bool *validNorm=0, G4ThreeVector *n=0) const
Definition: G4Ellipsoid.cc:647
const char * p
Definition: xmltok.h:285
G4double GetZTopCut() const
EInside Inside(const G4ThreeVector &p) const
Definition: G4Ellipsoid.cc:435
G4double GetZBottomCut() const
G4double GetSurfaceArea()
virtual ~G4Ellipsoid()
Definition: G4Ellipsoid.cc:125
G4bool CalculateExtent(const EAxis pAxis, const G4VoxelLimits &pVoxelLimit, const G4AffineTransform &pTransform, G4double &pmin, G4double &pmax) const
Definition: G4Ellipsoid.cc:189
int G4int
Definition: G4Types.hh:78
G4double GetSemiAxisMax(G4int i) const
void SetZCuts(G4double newzBottomCut, G4double newzTopCut)
void DescribeYourselfTo(G4VGraphicsScene &scene) const
G4Ellipsoid(const G4String &pName, G4double pxSemiAxis, G4double pySemiAxis, G4double pzSemiAxis, G4double pzBottomCut=0, G4double pzTopCut=0)
Definition: G4Ellipsoid.cc:63
G4VisExtent GetExtent() const
G4Polyhedron * fpPolyhedron
Definition: G4Ellipsoid.hh:135
G4ThreeVectorList * CreateRotatedVertices(const G4AffineTransform &pT, G4int &noPV) const
Definition: G4Ellipsoid.cc:836
bool G4bool
Definition: G4Types.hh:79
G4double GetCubicVolume()
G4Ellipsoid & operator=(const G4Ellipsoid &rhs)
Definition: G4Ellipsoid.cc:149
G4Polyhedron * CreatePolyhedron() const
G4VSolid * Clone() const
Definition: G4Ellipsoid.cc:961
std::vector< G4ThreeVector > G4ThreeVectorList
Definition: G4VSolid.hh:79
G4double DistanceToIn(const G4ThreeVector &p, const G4ThreeVector &v) const
Definition: G4Ellipsoid.cc:511
const G4int n
G4ThreeVector SurfaceNormal(const G4ThreeVector &p) const
Definition: G4Ellipsoid.cc:477
std::ostream & StreamInfo(std::ostream &os) const
Definition: G4Ellipsoid.cc:970
EInside
Definition: geomdefs.hh:58
EAxis
Definition: geomdefs.hh:54
void SetSemiAxis(G4double x, G4double y, G4double z)
G4ThreeVector GetPointOnSurface() const
Definition: G4Ellipsoid.cc:995
double G4double
Definition: G4Types.hh:76
void ComputeDimensions(G4VPVParameterisation *p, const G4int n, const G4VPhysicalVolume *pRep)
Definition: G4Ellipsoid.cc:177