2 // ********************************************************************
3 // * License and Disclaimer *
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. *
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. *
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 // ********************************************************************
27 // $Id: G4Cons.icc 81636 2014-06-04 09:06:08Z gcosmo $
29 // --------------------------------------------------------------------
30 // GEANT 4 inline definitions file
34 // Implementation of inline methods of G4Cons
35 // --------------------------------------------------------------------
38 G4double G4Cons::GetInnerRadiusMinusZ() const
44 G4double G4Cons::GetOuterRadiusMinusZ() const
50 G4double G4Cons::GetInnerRadiusPlusZ() const
56 G4double G4Cons::GetOuterRadiusPlusZ() const
62 G4double G4Cons::GetZHalfLength() const
68 G4double G4Cons::GetStartPhiAngle() const
74 G4double G4Cons::GetDeltaPhiAngle() const
80 void G4Cons::Initialize()
84 delete fpPolyhedron; fpPolyhedron = 0;
88 void G4Cons::InitializeTrigonometry()
90 G4double hDPhi = 0.5*fDPhi; // half delta phi
91 G4double cPhi = fSPhi + hDPhi;
92 G4double ePhi = fSPhi + fDPhi;
94 sinCPhi = std::sin(cPhi);
95 cosCPhi = std::cos(cPhi);
96 cosHDPhiIT = std::cos(hDPhi - 0.5*kAngTolerance); // inner/outer tol half dphi
97 cosHDPhiOT = std::cos(hDPhi + 0.5*kAngTolerance);
98 sinSPhi = std::sin(fSPhi);
99 cosSPhi = std::cos(fSPhi);
100 sinEPhi = std::sin(ePhi);
101 cosEPhi = std::cos(ePhi);
104 inline void G4Cons::CheckSPhiAngle(G4double sPhi)
106 // Ensure fSphi in 0-2PI or -2PI-0 range if shape crosses 0
110 fSPhi = CLHEP::twopi - std::fmod(std::fabs(sPhi),CLHEP::twopi);
114 fSPhi = std::fmod(sPhi,CLHEP::twopi) ;
116 if ( fSPhi+fDPhi > CLHEP::twopi )
118 fSPhi -= CLHEP::twopi ;
122 inline void G4Cons::CheckDPhiAngle(G4double dPhi)
125 if ( dPhi >= CLHEP::twopi-kAngTolerance*0.5 )
132 fPhiFullCone = false;
139 std::ostringstream message;
140 message << "Invalid dphi." << G4endl
141 << "Negative or zero delta-Phi (" << dPhi << ") in solid: "
143 G4Exception("G4Cons::CheckDPhiAngle()", "GeomSolids0002",
144 FatalException, message);
149 inline void G4Cons::CheckPhiAngles(G4double sPhi, G4double dPhi)
151 CheckDPhiAngle(dPhi);
152 if ( (fDPhi<CLHEP::twopi) && (sPhi) ) { CheckSPhiAngle(sPhi); }
153 InitializeTrigonometry();
157 void G4Cons::SetInnerRadiusMinusZ( G4double Rmin1 )
164 void G4Cons::SetOuterRadiusMinusZ( G4double Rmax1 )
171 void G4Cons::SetInnerRadiusPlusZ ( G4double Rmin2 )
178 void G4Cons::SetOuterRadiusPlusZ ( G4double Rmax2 )
185 void G4Cons::SetZHalfLength ( G4double newDz )
192 void G4Cons::SetStartPhiAngle ( G4double newSPhi, G4bool compute )
194 // Flag 'compute' can be used to explicitely avoid recomputation of
195 // trigonometry in case SetDeltaPhiAngle() is invoked afterwards
197 CheckSPhiAngle(newSPhi);
198 fPhiFullCone = false;
199 if (compute) { InitializeTrigonometry(); }
203 void G4Cons::SetDeltaPhiAngle ( G4double newDPhi )
205 CheckPhiAngles(fSPhi, newDPhi);
209 // Old access methods ...
212 G4double G4Cons::GetRmin1() const
214 return GetInnerRadiusMinusZ();
218 G4double G4Cons::GetRmax1() const
220 return GetOuterRadiusMinusZ();
224 G4double G4Cons::GetRmin2() const
226 return GetInnerRadiusPlusZ();
230 G4double G4Cons::GetRmax2() const
232 return GetOuterRadiusPlusZ();
236 G4double G4Cons::GetDz() const
238 return GetZHalfLength();
242 G4double G4Cons::GetSPhi() const
244 return GetStartPhiAngle();
248 G4double G4Cons::GetDPhi() const
250 return GetDeltaPhiAngle();
254 G4double G4Cons::GetCubicVolume()
256 if(fCubicVolume != 0.) {;}
259 G4double Rmean, rMean, deltaR, deltar;
261 Rmean = 0.5*(fRmax1+fRmax2);
262 deltaR = fRmax1-fRmax2;
264 rMean = 0.5*(fRmin1+fRmin2);
265 deltar = fRmin1-fRmin2;
266 fCubicVolume = fDPhi*fDz*(Rmean*Rmean-rMean*rMean
267 +(deltaR*deltaR-deltar*deltar)/12);
273 G4double G4Cons::GetSurfaceArea()
275 if(fSurfaceArea != 0.) {;}
278 G4double mmin, mmax, dmin, dmax;
280 mmin= (fRmin1+fRmin2)*0.5;
281 mmax= (fRmax1+fRmax2)*0.5;
282 dmin= (fRmin2-fRmin1);
283 dmax= (fRmax2-fRmax1);
285 fSurfaceArea = fDPhi*( mmin * std::sqrt(dmin*dmin+4*fDz*fDz)
286 + mmax * std::sqrt(dmax*dmax+4*fDz*fDz)
287 + 0.5*(fRmax1*fRmax1-fRmin1*fRmin1
288 +fRmax2*fRmax2-fRmin2*fRmin2 ));
291 fSurfaceArea = fSurfaceArea+4*fDz*(mmax-mmin);