Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // Implementation for G4USphere wrapper class << 27 // 26 // 28 // 13.09.13 G.Cosmo, CERN/PH << 27 // $Id:$ >> 28 // >> 29 // >> 30 // Implementation for G4USphere wrapper class 29 // ------------------------------------------- 31 // -------------------------------------------------------------------- 30 32 31 #include "G4Sphere.hh" 33 #include "G4Sphere.hh" 32 #include "G4USphere.hh" 34 #include "G4USphere.hh" 33 << 34 #if ( defined(G4GEOM_USE_USOLIDS) || defined(G << 35 << 36 #include "G4GeomTools.hh" << 37 #include "G4AffineTransform.hh" << 38 #include "G4VPVParameterisation.hh" 35 #include "G4VPVParameterisation.hh" 39 #include "G4BoundingEnvelope.hh" << 40 << 41 using namespace CLHEP; << 42 36 43 ////////////////////////////////////////////// 37 //////////////////////////////////////////////////////////////////////// 44 // 38 // 45 // constructor - check parameters, convert ang 39 // constructor - check parameters, convert angles so 0<sphi+dpshi<=2_PI 46 // - note if pDPhi>2PI then reset 40 // - note if pDPhi>2PI then reset to 2PI 47 41 48 G4USphere::G4USphere( const G4String& pName, 42 G4USphere::G4USphere( const G4String& pName, 49 G4double pRmin, G4 << 43 G4double pRmin, G4double pRmax, 50 G4double pSPhi, G4 << 44 G4double pSPhi, G4double pDPhi, 51 G4double pSTheta, << 45 G4double pSTheta, G4double pDTheta ) 52 : Base_t(pName, pRmin, pRmax, pSPhi, pDPhi, << 46 : G4USolid(pName, new USphere(pName, pRmin, pRmax, pSPhi, pDPhi, >> 47 pSTheta, pDTheta)) 53 { 48 { 54 } 49 } 55 50 56 ////////////////////////////////////////////// 51 /////////////////////////////////////////////////////////////////////// 57 // 52 // 58 // Fake default constructor - sets only member 53 // Fake default constructor - sets only member data and allocates memory 59 // for usage restri 54 // for usage restricted to object persistency. 60 // 55 // 61 G4USphere::G4USphere( __void__& a ) 56 G4USphere::G4USphere( __void__& a ) 62 : Base_t(a) << 57 : G4USolid(a) 63 { 58 { 64 } 59 } 65 60 66 ////////////////////////////////////////////// 61 ///////////////////////////////////////////////////////////////////// 67 // 62 // 68 // Destructor 63 // Destructor 69 64 70 G4USphere::~G4USphere() = default; << 65 G4USphere::~G4USphere() >> 66 { >> 67 } 71 68 72 ////////////////////////////////////////////// 69 ////////////////////////////////////////////////////////////////////////// 73 // 70 // 74 // Copy constructor 71 // Copy constructor 75 72 76 G4USphere::G4USphere(const G4USphere& rhs) 73 G4USphere::G4USphere(const G4USphere& rhs) 77 : Base_t(rhs) << 74 : G4USolid(rhs) 78 { 75 { 79 } 76 } 80 77 81 ////////////////////////////////////////////// 78 ////////////////////////////////////////////////////////////////////////// 82 // 79 // 83 // Assignment operator 80 // Assignment operator 84 81 85 G4USphere& G4USphere::operator = (const G4USph 82 G4USphere& G4USphere::operator = (const G4USphere& rhs) 86 { 83 { 87 // Check assignment to self 84 // Check assignment to self 88 // 85 // 89 if (this == &rhs) { return *this; } 86 if (this == &rhs) { return *this; } 90 87 91 // Copy base class data 88 // Copy base class data 92 // 89 // 93 Base_t::operator=(rhs); << 90 G4USolid::operator=(rhs); 94 91 95 return *this; 92 return *this; 96 } 93 } 97 94 98 ////////////////////////////////////////////// 95 ////////////////////////////////////////////////////////////////////////// 99 // 96 // 100 // Accessors & modifiers << 101 << 102 G4double G4USphere::GetInnerRadius() const << 103 { << 104 return Base_t::GetInnerRadius(); << 105 } << 106 G4double G4USphere::GetOuterRadius() const << 107 { << 108 return Base_t::GetOuterRadius(); << 109 } << 110 G4double G4USphere::GetStartPhiAngle() const << 111 { << 112 return Base_t::GetStartPhiAngle(); << 113 } << 114 G4double G4USphere::GetDeltaPhiAngle() const << 115 { << 116 return Base_t::GetDeltaPhiAngle(); << 117 } << 118 G4double G4USphere::GetStartThetaAngle() const << 119 { << 120 return Base_t::GetStartThetaAngle(); << 121 } << 122 G4double G4USphere::GetDeltaThetaAngle() const << 123 { << 124 return Base_t::GetDeltaThetaAngle(); << 125 } << 126 G4double G4USphere::GetSinStartPhi() const << 127 { << 128 return Base_t::GetSinSPhi(); << 129 } << 130 G4double G4USphere::GetCosStartPhi() const << 131 { << 132 return Base_t::GetCosSPhi(); << 133 } << 134 G4double G4USphere::GetSinEndPhi() const << 135 { << 136 return Base_t::GetSinEPhi(); << 137 } << 138 G4double G4USphere::GetCosEndPhi() const << 139 { << 140 return Base_t::GetCosEPhi(); << 141 } << 142 G4double G4USphere::GetSinStartTheta() const << 143 { << 144 return Base_t::GetSinSTheta(); << 145 } << 146 G4double G4USphere::GetCosStartTheta() const << 147 { << 148 return Base_t::GetCosSTheta(); << 149 } << 150 G4double G4USphere::GetSinEndTheta() const << 151 { << 152 return Base_t::GetSinETheta(); << 153 } << 154 G4double G4USphere::GetCosEndTheta() const << 155 { << 156 return Base_t::GetCosETheta(); << 157 } << 158 << 159 void G4USphere::SetInnerRadius(G4double newRMi << 160 { << 161 Base_t::SetInnerRadius(newRMin); << 162 fRebuildPolyhedron = true; << 163 } << 164 void G4USphere::SetOuterRadius(G4double newRma << 165 { << 166 Base_t::SetOuterRadius(newRmax); << 167 fRebuildPolyhedron = true; << 168 } << 169 void G4USphere::SetStartPhiAngle(G4double newS << 170 { << 171 Base_t::SetStartPhiAngle(newSphi, trig); << 172 fRebuildPolyhedron = true; << 173 } << 174 void G4USphere::SetDeltaPhiAngle(G4double newD << 175 { << 176 Base_t::SetDeltaPhiAngle(newDphi); << 177 fRebuildPolyhedron = true; << 178 } << 179 void G4USphere::SetStartThetaAngle(G4double ne << 180 { << 181 Base_t::SetStartThetaAngle(newSTheta); << 182 fRebuildPolyhedron = true; << 183 } << 184 void G4USphere::SetDeltaThetaAngle(G4double ne << 185 { << 186 Base_t::SetDeltaThetaAngle(newDTheta); << 187 fRebuildPolyhedron = true; << 188 } << 189 << 190 ////////////////////////////////////////////// << 191 // << 192 // Dispatch to parameterisation for replicatio 97 // Dispatch to parameterisation for replication mechanism dimension 193 // computation & modification. 98 // computation & modification. 194 99 195 void G4USphere::ComputeDimensions( G4VPVP 100 void G4USphere::ComputeDimensions( G4VPVParameterisation* p, 196 const G4int 101 const G4int n, 197 const G4VPhy 102 const G4VPhysicalVolume* pRep) 198 { 103 { 199 p->ComputeDimensions(*(G4Sphere*)this,n,pRep 104 p->ComputeDimensions(*(G4Sphere*)this,n,pRep); 200 } 105 } 201 << 202 ////////////////////////////////////////////// << 203 // << 204 // Make a clone of the object << 205 << 206 G4VSolid* G4USphere::Clone() const << 207 { << 208 return new G4USphere(*this); << 209 } << 210 << 211 ////////////////////////////////////////////// << 212 // << 213 // Get bounding box << 214 << 215 void G4USphere::BoundingLimits(G4ThreeVector& << 216 { << 217 static G4bool checkBBox = true; << 218 << 219 G4double rmin = GetInnerRadius(); << 220 G4double rmax = GetOuterRadius(); << 221 << 222 // Find bounding box << 223 // << 224 if (GetDeltaThetaAngle() >= pi && GetDeltaPh << 225 { << 226 pMin.set(-rmax,-rmax,-rmax); << 227 pMax.set( rmax, rmax, rmax); << 228 } << 229 else << 230 { << 231 G4double sinStart = GetSinStartTheta(); << 232 G4double cosStart = GetCosStartTheta(); << 233 G4double sinEnd = GetSinEndTheta(); << 234 G4double cosEnd = GetCosEndTheta(); << 235 << 236 G4double stheta = GetStartThetaAngle(); << 237 G4double etheta = stheta + GetDeltaThetaAn << 238 G4double rhomin = rmin*std::min(sinStart,s << 239 G4double rhomax = rmax; << 240 if (stheta > halfpi) rhomax = rmax*sinStar << 241 if (etheta < halfpi) rhomax = rmax*sinEnd; << 242 << 243 G4TwoVector xymin,xymax; << 244 G4GeomTools::DiskExtent(rhomin,rhomax, << 245 GetSinStartPhi(),G << 246 GetSinEndPhi(),Get << 247 xymin,xymax); << 248 << 249 G4double zmin = std::min(rmin*cosEnd,rmax* << 250 G4double zmax = std::max(rmin*cosStart,rma << 251 pMin.set(xymin.x(),xymin.y(),zmin); << 252 pMax.set(xymax.x(),xymax.y(),zmax); << 253 } << 254 << 255 // Check correctness of the bounding box << 256 // << 257 if (pMin.x() >= pMax.x() || pMin.y() >= pMax << 258 { << 259 std::ostringstream message; << 260 message << "Bad bounding box (min >= max) << 261 << GetName() << " !" << 262 << "\npMin = " << pMin << 263 << "\npMax = " << pMax; << 264 G4Exception("G4USphere::BoundingLimits()", << 265 JustWarning, message); << 266 StreamInfo(G4cout); << 267 } << 268 << 269 // Check consistency of bounding boxes << 270 // << 271 if (checkBBox) << 272 { << 273 U3Vector vmin, vmax; << 274 Extent(vmin,vmax); << 275 if (std::abs(pMin.x()-vmin.x()) > kCarTole << 276 std::abs(pMin.y()-vmin.y()) > kCarTole << 277 std::abs(pMin.z()-vmin.z()) > kCarTole << 278 std::abs(pMax.x()-vmax.x()) > kCarTole << 279 std::abs(pMax.y()-vmax.y()) > kCarTole << 280 std::abs(pMax.z()-vmax.z()) > kCarTole << 281 { << 282 std::ostringstream message; << 283 message << "Inconsistency in bounding bo << 284 << GetName() << " !" << 285 << "\nBBox min: wrapper = " << p << 286 << "\nBBox max: wrapper = " << p << 287 G4Exception("G4USphere::BoundingLimits() << 288 JustWarning, message); << 289 checkBBox = false; << 290 } << 291 } << 292 } << 293 << 294 ////////////////////////////////////////////// << 295 // << 296 // Calculate extent under transform and specif << 297 << 298 G4bool G4USphere::CalculateExtent(const EAxis << 299 const G4Voxe << 300 const G4Affi << 301 G4doub << 302 { << 303 G4ThreeVector bmin, bmax; << 304 << 305 // Get bounding box << 306 BoundingLimits(bmin,bmax); << 307 << 308 // Find extent << 309 G4BoundingEnvelope bbox(bmin,bmax); << 310 return bbox.CalculateExtent(pAxis,pVoxelLimi << 311 } << 312 << 313 ////////////////////////////////////////////// << 314 // << 315 // Create polyhedron for visualization << 316 << 317 G4Polyhedron* G4USphere::CreatePolyhedron() co << 318 { << 319 return new G4PolyhedronSphere(GetInnerRadius << 320 GetOuterRadius << 321 GetStartPhiAng << 322 GetDeltaPhiAng << 323 GetStartThetaA << 324 GetDeltaThetaA << 325 } << 326 << 327 #endif // G4GEOM_USE_USOLIDS << 328 106