source: trunk/source/geometry/solids/CSG/include/G4Cons.hh @ 1202

Last change on this file since 1202 was 1058, checked in by garnier, 15 years ago

file release beta

File size: 7.2 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: G4Cons.hh,v 1.21 2008/11/06 11:04:00 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-02-ref-02 $
29//
30//
31// --------------------------------------------------------------------
32// GEANT 4 class header file
33//
34// G4Cons
35//
36// Class description:
37//
38//   A G4Cons is, in the general case, a Phi segment of a cone, with
39//   half-length fDz, inner and outer radii specified at -fDz and +fDz.
40//   The Phi segment is described by a starting fSPhi angle, and the
41//   +fDPhi delta angle for the shape.
42//   If the delta angle is >=2*pi, the shape is treated as continuous
43//   in Phi
44//
45//   Member Data:
46//
47//  fRmin1  inside radius at  -fDz
48//  fRmin2  inside radius at  +fDz
49//  fRmax1  outside radius at -fDz
50//  fRmax2  outside radius at +fDz
51//  fDz  half length in z
52//
53//  fSPhi  starting angle of the segment in radians
54//  fDPhi  delta angle of the segment in radians
55//
56//  fPhiFullCone   Boolean variable used for indicate the Phi Section
57//
58//   Note:
59//      Internally fSPhi & fDPhi are adjusted so that fDPhi<=2PI,
60//      and fDPhi+fSPhi<=2PI. This enables simpler comparisons to be
61//      made with (say) Phi of a point.
62
63// History:
64// 19.3.94 P.Kent: Old C++ code converted to tolerant geometry
65// 13.9.96 V.Grichine: Final modifications to commit
66// --------------------------------------------------------------------
67
68#ifndef G4Cons_HH
69#define G4Cons_HH
70
71#include "G4CSGSolid.hh"
72
73class G4Cons : public G4CSGSolid
74{
75  public:  // with description
76
77    G4Cons(const G4String& pName,
78                 G4double pRmin1, G4double pRmax1,
79                 G4double pRmin2, G4double pRmax2,
80                 G4double pDz,
81                 G4double pSPhi, G4double pDPhi);
82         
83    virtual ~G4Cons() ;
84
85    // Accessors
86
87    inline G4double    GetInnerRadiusMinusZ() const;
88    inline G4double    GetOuterRadiusMinusZ() const;
89    inline G4double    GetInnerRadiusPlusZ()  const;
90    inline G4double    GetOuterRadiusPlusZ()  const;
91 
92    inline G4double    GetZHalfLength()       const;
93 
94    inline G4double    GetStartPhiAngle () const;
95    inline G4double    GetDeltaPhiAngle () const;
96 
97    // Modifiers
98
99    inline void    SetInnerRadiusMinusZ( G4double Rmin1 );
100    inline void    SetOuterRadiusMinusZ( G4double Rmax1 );
101    inline void    SetInnerRadiusPlusZ ( G4double Rmin2 );
102    inline void    SetOuterRadiusPlusZ ( G4double Rmax2 );
103         
104    inline void    SetZHalfLength      ( G4double newDz );
105    inline void    SetStartPhiAngle    ( G4double newSPhi);
106    inline void    SetDeltaPhiAngle    ( G4double newDPhi);
107
108    // Other methods for solid
109
110    inline G4double    GetCubicVolume();
111    inline G4double    GetSurfaceArea();
112
113    void ComputeDimensions(G4VPVParameterisation* p,
114                           const G4int n,
115                           const G4VPhysicalVolume* pRep);
116
117    G4bool CalculateExtent(const EAxis pAxis,
118                           const G4VoxelLimits& pVoxelLimit,
119                           const G4AffineTransform& pTransform,
120                                 G4double& pmin, G4double& pmax) const;         
121
122    EInside Inside(const G4ThreeVector& p) const;
123
124    G4ThreeVector SurfaceNormal(const G4ThreeVector& p) const;
125
126    G4double DistanceToIn (const G4ThreeVector& p,
127                           const G4ThreeVector& v) const;
128    G4double DistanceToIn (const G4ThreeVector& p) const;
129    G4double DistanceToOut(const G4ThreeVector& p,
130                           const G4ThreeVector& v,
131                           const G4bool calcNorm=G4bool(false),
132                                 G4bool *validNorm=0,
133                                 G4ThreeVector *n=0) const;             
134    G4double DistanceToOut(const G4ThreeVector& p) const;
135
136    G4GeometryType  GetEntityType() const;
137       
138    G4ThreeVector GetPointOnSurface() const; 
139       
140    std::ostream& StreamInfo(std::ostream& os) const;
141
142    // Visualisation functions
143
144    void          DescribeYourselfTo( G4VGraphicsScene& scene ) const;
145    G4Polyhedron* CreatePolyhedron() const;
146    G4NURBS*      CreateNURBS() const;
147
148  public:  // without description
149       
150    G4Cons(__void__&);
151      //
152      // Fake default constructor for usage restricted to direct object
153      // persistency for clients requiring preallocation of memory for
154      // persistifiable objects.
155
156    //  Old access functions
157
158    inline G4double    GetRmin1() const;
159    inline G4double    GetRmax1() const;
160    inline G4double    GetRmin2() const;
161    inline G4double    GetRmax2() const;
162 
163    inline G4double    GetDz()    const;
164 
165    inline G4double    GetSPhi() const;
166    inline G4double    GetDPhi() const;
167
168  protected:
169 
170    G4ThreeVectorList*
171    CreateRotatedVertices(const G4AffineTransform& pTransform) const;
172 
173    G4double fRmin1, fRmin2, fRmax1, fRmax2, fDz, fSPhi, fDPhi;
174    G4bool fPhiFullCone;
175
176    // Used by distanceToOut
177 
178    enum ESide {kNull,kRMin,kRMax,kSPhi,kEPhi,kPZ,kMZ};
179 
180    // used by normal
181 
182    enum ENorm {kNRMin,kNRMax,kNSPhi,kNEPhi,kNZ};
183
184  private:
185
186    inline void Initialise();
187      // Reset relevant values to zero
188
189    inline void InitializeTrigonometry();
190      //
191      // Recompute relevant trigonometric values and cache them
192
193    G4ThreeVector ApproxSurfaceNormal(const G4ThreeVector& p) const;
194      //
195      // Algorithm for SurfaceNormal() following the original
196      // specification for points not on the surface
197
198  private:
199
200    G4double kRadTolerance, kAngTolerance;
201      //
202      // Radial and angular tolerances
203
204    G4double sinCPhi, cosCPhi, cosHDPhiOT, cosHDPhiIT,
205             sinSPhi, cosSPhi, sinEPhi, cosEPhi;
206      //
207      // Cached trigonometric values
208};
209
210#include "G4Cons.icc"
211
212#endif
Note: See TracBrowser for help on using the repository browser.