source: trunk/source/geometry/solids/CSG/include/G4Tubs.hh@ 1350

Last change on this file since 1350 was 1337, checked in by garnier, 15 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 7.3 KB
RevLine 
[831]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//
[1228]27// $Id: G4Tubs.hh,v 1.22 2009/03/26 16:25:44 gcosmo Exp $
[1337]28// GEANT4 tag $Name: geant4-09-04-beta-01 $
[831]29//
30//
31// --------------------------------------------------------------------
32// GEANT 4 class header file
33//
34//
35// G4Tubs
36//
37// Class description:
38//
39// A tube or tube segment with curved sides parallel to
40// the z-axis. The tube has a specified half-length along
[921]41// the z-axis, about which it is centered, and a given
[831]42// minimum and maximum radius. A minimum radius of 0
[921]43// corresponds to filled tube /cylinder. The tube segment is
[831]44// specified by starting and delta angles for phi, with 0
45// being the +x axis, PI/2 the +y axis.
46// A delta angle of 2PI signifies a complete, unsegmented
47// tube/cylinder.
48//
49// Member Data:
50//
51// fRMin Inner radius
52// fRMax Outer radius
53// fDz half length in z
54//
55// fSPhi The starting phi angle in radians,
56// adjusted such that fSPhi+fDPhi<=2PI, fSPhi>-2PI
57//
58// fDPhi Delta angle of the segment.
[921]59//
60// fPhiFullTube Boolean variable used for indicate the Phi Section
[831]61
62// History:
63// 10.08.95 P.Kent: General cleanup, use G4VSolid extent helper functions
64// to CalculateExtent()
65// 23.01.94 P.Kent: Converted to `tolerant' geometry
66// 19.07.96 J.Allison: G4GraphicsScene - see G4Box
67// 22.07.96 J.Allison: Changed SendPolyhedronTo to CreatePolyhedron
68// --------------------------------------------------------------------
69
70#ifndef G4TUBS_HH
71#define G4TUBS_HH
72
73#include "G4CSGSolid.hh"
74
75class G4Tubs : public G4CSGSolid
76{
77 public: // with description
78
79 G4Tubs( const G4String& pName,
80 G4double pRMin,
81 G4double pRMax,
82 G4double pDz,
83 G4double pSPhi,
84 G4double pDPhi );
85 //
86 // Constructs a tubs with the given name and dimensions
87
[1228]88 ~G4Tubs();
[831]89 //
90 // Destructor
91
92 // Accessors
93
94 inline G4double GetInnerRadius () const;
95 inline G4double GetOuterRadius () const;
96 inline G4double GetZHalfLength () const;
97 inline G4double GetStartPhiAngle () const;
98 inline G4double GetDeltaPhiAngle () const;
99
100 // Modifiers
101
102 inline void SetInnerRadius (G4double newRMin);
103 inline void SetOuterRadius (G4double newRMax);
104 inline void SetZHalfLength (G4double newDz);
[1228]105 inline void SetStartPhiAngle (G4double newSPhi, G4bool trig=true);
[831]106 inline void SetDeltaPhiAngle (G4double newDPhi);
[921]107
[831]108 // 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, const G4ThreeVector& v) const;
127 G4double DistanceToIn(const G4ThreeVector& p) const;
128 G4double DistanceToOut(const G4ThreeVector& p, const G4ThreeVector& v,
129 const G4bool calcNorm=G4bool(false),
130 G4bool *validNorm=0, G4ThreeVector *n=0) const;
131 G4double DistanceToOut(const G4ThreeVector& p) const;
132
133 G4GeometryType GetEntityType() const;
134
135 G4ThreeVector GetPointOnSurface() const;
136
137 std::ostream& StreamInfo( std::ostream& os ) const;
138
139 // Visualisation functions
140
141 void DescribeYourselfTo ( G4VGraphicsScene& scene ) const;
142 G4Polyhedron* CreatePolyhedron () const;
143 G4NURBS* CreateNURBS () const;
144
145 public: // without description
146
147 G4Tubs(__void__&);
[921]148 //
[831]149 // Fake default constructor for usage restricted to direct object
150 // persistency for clients requiring preallocation of memory for
151 // persistifiable objects.
152
153 // Older names for access functions
154
155 inline G4double GetRMin() const;
156 inline G4double GetRMax() const;
157 inline G4double GetDz () const;
158 inline G4double GetSPhi() const;
159 inline G4double GetDPhi() const;
160
[1228]161 private:
[831]162
163 G4ThreeVectorList*
164 CreateRotatedVertices( const G4AffineTransform& pTransform ) const;
165 //
166 // Creates the List of transformed vertices in the format required
167 // for G4VSolid:: ClipCrossSection and ClipBetweenSections
168
[921]169 inline void Initialize();
170 //
171 // Reset relevant values to zero
172
[1228]173 inline void CheckSPhiAngle(G4double sPhi);
174 inline void CheckDPhiAngle(G4double dPhi);
175 inline void CheckPhiAngles(G4double sPhi, G4double dPhi);
176 //
177 // Reset relevant flags and angle values
178
[921]179 inline void InitializeTrigonometry();
180 //
181 // Recompute relevant trigonometric values and cache them
182
[831]183 G4ThreeVector ApproxSurfaceNormal( const G4ThreeVector& p ) const;
[921]184 //
[831]185 // Algorithm for SurfaceNormal() following the original
186 // specification for points not on the surface
187
188 private:
189
[1228]190 // Used by distanceToOut
191 //
192 enum ESide {kNull,kRMin,kRMax,kSPhi,kEPhi,kPZ,kMZ};
193
194 // Used by normal
195 //
196 enum ENorm {kNRMin,kNRMax,kNSPhi,kNEPhi,kNZ};
197
[831]198 G4double kRadTolerance, kAngTolerance;
[921]199 //
[831]200 // Radial and angular tolerances
[921]201
[1228]202 G4double fRMin, fRMax, fDz, fSPhi, fDPhi;
203 //
204 // Radial and angular dimensions
205
[921]206 G4double sinCPhi, cosCPhi, cosHDPhiOT, cosHDPhiIT,
207 sinSPhi, cosSPhi, sinEPhi, cosEPhi;
208 //
209 // Cached trigonometric values
[1228]210
211 G4bool fPhiFullTube;
212 //
213 // Flag for identification of section or full tube
[831]214};
215
216#include "G4Tubs.icc"
217
218#endif
Note: See TracBrowser for help on using the repository browser.