Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/geometry/solids/specific/src/G4UEllipsoid.cc

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  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 // Implementation for G4UEllipsoid wrapper class
 27 //
 28 // 13-08-2019 Gabriele Cosmo, CERN
 29 // --------------------------------------------------------------------
 30 
 31 #include "G4Ellipsoid.hh"
 32 #include "G4UEllipsoid.hh"
 33 
 34 #if ( defined(G4GEOM_USE_USOLIDS) || defined(G4GEOM_USE_PARTIAL_USOLIDS) )
 35 
 36 #include "G4AffineTransform.hh"
 37 #include "G4VPVParameterisation.hh"
 38 #include "G4PhysicalConstants.hh"
 39 #include "G4BoundingEnvelope.hh"
 40 #include "G4Polyhedron.hh"
 41 
 42 ////////////////////////////////////////////////////////////////////////
 43 //
 44 // Constructor - check & set half widths
 45 
 46 
 47 G4UEllipsoid::G4UEllipsoid(const G4String& pName,
 48                                            G4double dx,
 49                                            G4double dy,
 50                                            G4double dz,
 51                                            G4double bcut,
 52                                            G4double tcut )
 53   : Base_t(pName, dx, dy, dz, bcut, tcut)
 54 { }
 55 
 56 //////////////////////////////////////////////////////////////////////////
 57 //
 58 // Fake default constructor - sets only member data and allocates memory
 59 //                            for usage restricted to object persistency.
 60 
 61 G4UEllipsoid::G4UEllipsoid( __void__& a )
 62   : Base_t(a)
 63 { }
 64 
 65 //////////////////////////////////////////////////////////////////////////
 66 //
 67 // Destructor
 68 
 69 G4UEllipsoid::~G4UEllipsoid() = default;
 70 
 71 //////////////////////////////////////////////////////////////////////////
 72 //
 73 // Copy constructor
 74 
 75 G4UEllipsoid::G4UEllipsoid(const G4UEllipsoid& rhs)
 76   : Base_t(rhs)
 77 { }
 78 
 79 //////////////////////////////////////////////////////////////////////////
 80 //
 81 // Assignment operator
 82 
 83 G4UEllipsoid& G4UEllipsoid::operator = (const G4UEllipsoid& rhs)
 84 {
 85    // Check assignment to self
 86    //
 87    if (this == &rhs)  { return *this; }
 88 
 89    // Copy base class data
 90    //
 91    Base_t::operator=(rhs);
 92 
 93    return *this;
 94 }
 95 
 96 //////////////////////////////////////////////////////////////////////////
 97 //
 98 // Accessors
 99 
100 G4double G4UEllipsoid::GetDx() const
101 {
102   return Base_t::GetDx();
103 }
104 
105 G4double G4UEllipsoid::GetDy() const
106 {
107   return Base_t::GetDy();
108 }
109 
110 G4double G4UEllipsoid::GetDz() const
111 {
112   return Base_t::GetDz();
113 }
114 
115 G4double G4UEllipsoid::GetSemiAxisMax (G4int i) const
116 {
117   return (i==0) ? GetDx()
118        : (i==1) ? GetDy()
119        : GetDz();
120 }
121 
122 G4double G4UEllipsoid::GetZBottomCut() const
123 {
124   return Base_t::GetZBottomCut();
125 }
126 
127 G4double G4UEllipsoid::GetZTopCut() const
128 {
129   return Base_t::GetZTopCut();
130 }
131 
132 //////////////////////////////////////////////////////////////////////////
133 //
134 // Modifiers
135 
136 void G4UEllipsoid::SetSemiAxis (G4double x, G4double y, G4double z)
137 {
138   Base_t::SetSemiAxes(x, y, z);
139 }
140 
141 void G4UEllipsoid::SetZCuts (G4double newzBottomCut, G4double newzTopCut)
142 {
143   Base_t::SetZCuts(newzBottomCut, newzTopCut);
144 }
145 
146 //////////////////////////////////////////////////////////////////////////
147 //
148 // Make a clone of the object
149 
150 G4VSolid* G4UEllipsoid::Clone() const
151 {
152   return new G4UEllipsoid(*this);
153 }
154 
155 //////////////////////////////////////////////////////////////////////////
156 //
157 // Get bounding box
158 
159 void G4UEllipsoid::BoundingLimits(G4ThreeVector& pMin,
160                                   G4ThreeVector& pMax) const
161 {
162   G4double dx = GetDx();
163   G4double dy = GetDy();
164   G4double dz = GetDz();
165   G4double zmin = std::max(-dz,GetZBottomCut());
166   G4double zmax = std::min( dz,GetZTopCut());
167   pMin.set(-dx,-dy,zmin);
168   pMax.set( dx, dy,zmax);
169 
170   // Check correctness of the bounding box
171   //
172   if (pMin.x() >= pMax.x() || pMin.y() >= pMax.y() || pMin.z() >= pMax.z())
173   {
174     std::ostringstream message;
175     message << "Bad bounding box (min >= max) for solid: "
176             << GetName() << " !"
177             << "\npMin = " << pMin
178             << "\npMax = " << pMax;
179     G4Exception("G4UEllipsoid::BoundingLimits()", "GeomMgt0001",
180                 JustWarning, message);
181     StreamInfo(G4cout);
182   }
183 }
184 
185 //////////////////////////////////////////////////////////////////////////
186 //
187 // Calculate extent under transform and specified limit
188 
189 G4bool
190 G4UEllipsoid::CalculateExtent(const EAxis pAxis,
191                               const G4VoxelLimits& pVoxelLimit,
192                               const G4AffineTransform& pTransform,
193                                     G4double& pMin, G4double& pMax) const
194 {
195   G4ThreeVector bmin, bmax;
196 
197   // Get bounding box
198   BoundingLimits(bmin,bmax);
199 
200   // Find extent
201   G4BoundingEnvelope bbox(bmin,bmax);
202   return bbox.CalculateExtent(pAxis,pVoxelLimit,pTransform,pMin,pMax);
203 }
204 
205 ////////////////////////////////////////////////////////////////////////
206 //
207 // CreatePolyhedron
208 
209 G4Polyhedron* G4UEllipsoid::CreatePolyhedron() const
210 {
211   return new G4PolyhedronEllipsoid(GetDx(), GetDy(), GetDz(),
212                                    GetZBottomCut(), GetZTopCut());
213 }
214 
215 #endif  // G4GEOM_USE_USOLIDS
216