source: trunk/source/geometry/solids/CSG/include/G4Tubs.icc@ 880

Last change on this file since 880 was 850, checked in by garnier, 17 years ago

geant4.8.2 beta

File size: 3.8 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: G4Tubs.icc,v 1.7 2006/10/19 15:33:37 gcosmo Exp $
28// GEANT4 tag $Name: HEAD $
29//
30// --------------------------------------------------------------------
31// GEANT 4 inline definitions file
32//
33// G4Tubs.icc
34//
35// Implementation of inline methods of G4Tubs
36// --------------------------------------------------------------------
37
38inline
39G4double G4Tubs::GetInnerRadius () const
40{
41 return fRMin;
42}
43
44inline
45G4double G4Tubs::GetOuterRadius () const
46{
47 return fRMax;
48}
49
50inline
51G4double G4Tubs::GetZHalfLength () const
52{
53 return fDz;
54}
55
56inline
57G4double G4Tubs::GetStartPhiAngle () const
58{
59 return fSPhi;
60}
61
62inline
63G4double G4Tubs::GetDeltaPhiAngle () const
64{
65 return fDPhi;
66}
67
68inline
69void G4Tubs::SetInnerRadius (G4double newRMin)
70{
71 fRMin= newRMin;
72 fCubicVolume= 0.;
73 fSurfaceArea= 0.;
74 fpPolyhedron = 0;
75}
76
77inline
78void G4Tubs::SetOuterRadius (G4double newRMax)
79{
80 fRMax= newRMax;
81 fCubicVolume= 0.;
82 fSurfaceArea= 0.;
83 fpPolyhedron = 0;
84}
85
86inline
87void G4Tubs::SetZHalfLength (G4double newDz)
88{
89 fDz= newDz;
90 fCubicVolume= 0.;
91 fSurfaceArea= 0.;
92 fpPolyhedron = 0;
93}
94
95inline
96void G4Tubs::SetStartPhiAngle (G4double newSPhi)
97{
98 fSPhi= newSPhi;
99 fCubicVolume= 0.;
100 fSurfaceArea= 0.;
101 fpPolyhedron = 0;
102}
103
104inline
105void G4Tubs::SetDeltaPhiAngle (G4double newDPhi)
106{
107 fDPhi= newDPhi;
108 fCubicVolume= 0.;
109 fSurfaceArea= 0.;
110 fpPolyhedron = 0;
111}
112
113// Older names for access functions
114
115inline
116G4double G4Tubs::GetRMin () const
117{
118 return GetInnerRadius();
119}
120
121inline
122G4double G4Tubs::GetRMax () const
123{
124 return GetOuterRadius();
125}
126
127inline
128G4double G4Tubs::GetDz () const
129{
130 return GetZHalfLength() ;
131}
132
133inline
134G4double G4Tubs::GetSPhi () const
135{
136 return GetStartPhiAngle();
137}
138
139inline
140G4double G4Tubs::GetDPhi () const
141{
142 return GetDeltaPhiAngle();
143}
144
145inline
146G4double G4Tubs::GetCubicVolume()
147{
148 if(fCubicVolume != 0.) {;}
149 else { fCubicVolume = fDPhi*fDz*(fRMax*fRMax-fRMin*fRMin); }
150 return fCubicVolume;
151}
152
153inline
154G4double G4Tubs::GetSurfaceArea()
155{
156 if(fSurfaceArea != 0.) {;}
157 else
158 {
159 fSurfaceArea = fDPhi*(fRMin+fRMax)*(2*fDz+fRMax-fRMin);
160 if (fDPhi < twopi)
161 {
162 fSurfaceArea = fSurfaceArea + 4*fDz*(fRMax-fRMin);
163 }
164 }
165 return fSurfaceArea;
166}
Note: See TracBrowser for help on using the repository browser.