Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4UEllipticalCone.cc
Go to the documentation of this file.
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 G4UEllipticalCone wrapper class
27//
28// 13-08-2019 Gabriele Cosmo, CERN
29// --------------------------------------------------------------------
30
31#include "G4EllipticalCone.hh"
32#include "G4UEllipticalCone.hh"
33
34#if ( defined(G4GEOM_USE_USOLIDS) || defined(G4GEOM_USE_PARTIAL_USOLIDS) )
35
36#include "G4AffineTransform.hh"
39#include "G4BoundingEnvelope.hh"
40#include "G4Polyhedron.hh"
41
42////////////////////////////////////////////////////////////////////////
43//
44// Constructor - check & set half widths
45
46
47G4UEllipticalCone::G4UEllipticalCone(const G4String& pName,
48 G4double a,
49 G4double b,
50 G4double h,
51 G4double cut )
52 : Base_t(pName, a, b, h, cut)
53{ }
54
55//////////////////////////////////////////////////////////////////////////
56//
57// Copy constructor
58
59G4UEllipticalCone::G4UEllipticalCone(const G4UEllipticalCone& rhs)
60 : Base_t(rhs)
61{ }
62
63//////////////////////////////////////////////////////////////////////////
64//
65// Assignment operator
66
67G4UEllipticalCone& G4UEllipticalCone::operator = (const G4UEllipticalCone& rhs)
68{
69 // Check assignment to self
70 //
71 if (this == &rhs) { return *this; }
72
73 // Copy base class data
74 //
75 Base_t::operator=(rhs);
76
77 return *this;
78}
79
80//////////////////////////////////////////////////////////////////////////
81//
82// Accessors
83
84G4double G4UEllipticalCone::GetSemiAxisX() const
85{
86 return Base_t::GetSemiAxisX();
87}
88
89G4double G4UEllipticalCone::GetSemiAxisY() const
90{
91 return Base_t::GetSemiAxisY();
92}
93
94G4double G4UEllipticalCone::GetZMax() const
95{
96 return Base_t::GetZMax();
97}
98
99G4double G4UEllipticalCone::GetZTopCut() const
100{
101 return Base_t::GetZTopCut();
102}
103
104G4double G4UEllipticalCone::GetSemiAxisMax () const
105{
106 return std::max(GetSemiAxisX(),GetSemiAxisY());
107}
108
109G4double G4UEllipticalCone::GetSemiAxisMin () const
110{
111 return std::min(GetSemiAxisX(),GetSemiAxisY());
112}
113
114//////////////////////////////////////////////////////////////////////////
115//
116// Modifiers
117
118void G4UEllipticalCone::SetSemiAxis(G4double x, G4double y, G4double z)
119{
120 Base_t::SetParameters(x, y, z, GetZTopCut());
121}
122
123void G4UEllipticalCone::SetZCut(G4double newzTopCut)
124{
125 Base_t::SetParameters(GetSemiAxisX(), GetSemiAxisY(), GetZMax(), newzTopCut);
126}
127
128//////////////////////////////////////////////////////////////////////////
129//
130// Make a clone of the object
131
132G4VSolid* G4UEllipticalCone::Clone() const
133{
134 return new G4UEllipticalCone(*this);
135}
136
137//////////////////////////////////////////////////////////////////////////
138//
139// Get bounding box
140
141void G4UEllipticalCone::BoundingLimits(G4ThreeVector& pMin,
142 G4ThreeVector& pMax) const
143{
144 G4double zcut = GetZTopCut();
145 G4double height = GetZMax();
146 G4double xmax = GetSemiAxisX()*(height+zcut);
147 G4double ymax = GetSemiAxisY()*(height+zcut);
148 pMin.set(-xmax,-ymax,-zcut);
149 pMax.set( xmax, ymax, zcut);
150
151 // Check correctness of the bounding box
152 //
153 if (pMin.x() >= pMax.x() || pMin.y() >= pMax.y() || pMin.z() >= pMax.z())
154 {
155 std::ostringstream message;
156 message << "Bad bounding box (min >= max) for solid: "
157 << GetName() << " !"
158 << "\npMin = " << pMin
159 << "\npMax = " << pMax;
160 G4Exception("G4UEllipticalCone::BoundingLimits()", "GeomMgt0001",
161 JustWarning, message);
162 StreamInfo(G4cout);
163 }
164}
165
166//////////////////////////////////////////////////////////////////////////
167//
168// Calculate extent under transform and specified limit
169
170G4bool
171G4UEllipticalCone::CalculateExtent(const EAxis pAxis,
172 const G4VoxelLimits& pVoxelLimit,
173 const G4AffineTransform& pTransform,
174 G4double& pMin, G4double& pMax) const
175{
176 G4ThreeVector bmin,bmax;
177 G4bool exist;
178
179 // Check bounding box (bbox)
180 //
181 BoundingLimits(bmin,bmax);
182 G4BoundingEnvelope bbox(bmin,bmax);
183#ifdef G4BBOX_EXTENT
184 return bbox.CalculateExtent(pAxis,pVoxelLimit,pTransform,pMin,pMax);
185#endif
186 if (bbox.BoundingBoxVsVoxelLimits(pAxis,pVoxelLimit,pTransform,pMin,pMax))
187 {
188 return exist = pMin < pMax;
189 }
190
191 // Set bounding envelope (benv) and calculate extent
192 //
193 static const G4int NSTEPS = 48; // number of steps for whole circle
194 static const G4double ang = twopi/NSTEPS;
195 static const G4double sinHalf = std::sin(0.5*ang);
196 static const G4double cosHalf = std::cos(0.5*ang);
197 static const G4double sinStep = 2.*sinHalf*cosHalf;
198 static const G4double cosStep = 1. - 2.*sinHalf*sinHalf;
199 G4double zcut = bmax.z();
200 G4double height = GetZMax();
201 G4double sxmin = GetSemiAxisX()*(height-zcut)/cosHalf;
202 G4double symin = GetSemiAxisY()*(height-zcut)/cosHalf;
203 G4double sxmax = bmax.x()/cosHalf;
204 G4double symax = bmax.y()/cosHalf;
205
206 G4double sinCur = sinHalf;
207 G4double cosCur = cosHalf;
208 G4ThreeVectorList baseA(NSTEPS),baseB(NSTEPS);
209 for (G4int k=0; k<NSTEPS; ++k)
210 {
211 baseA[k].set(sxmax*cosCur,symax*sinCur,-zcut);
212 baseB[k].set(sxmin*cosCur,symin*sinCur, zcut);
213
214 G4double sinTmp = sinCur;
215 sinCur = sinCur*cosStep + cosCur*sinStep;
216 cosCur = cosCur*cosStep - sinTmp*sinStep;
217 }
218
219 std::vector<const G4ThreeVectorList *> polygons(2);
220 polygons[0] = &baseA;
221 polygons[1] = &baseB;
222 G4BoundingEnvelope benv(bmin,bmax,polygons);
223 exist = benv.CalculateExtent(pAxis,pVoxelLimit,pTransform,pMin,pMax);
224 return exist;
225}
226
227////////////////////////////////////////////////////////////////////////
228//
229// CreatePolyhedron
230//
231G4Polyhedron* G4UEllipticalCone::CreatePolyhedron() const
232{
233 return new G4PolyhedronEllipticalCone(GetSemiAxisX(), GetSemiAxisY(),
234 GetZMax(), GetZTopCut());
235}
236
237#endif // G4GEOM_USE_USOLIDS
std::vector< G4ThreeVector > G4ThreeVectorList
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4GLOB_DLL std::ostream G4cout
double z() const
double x() const
double y() const
void set(double x, double y, double z)
G4AffineTransform is a class for geometric affine transformations. It supports efficient arbitrary ro...
G4BoundingEnvelope is a helper class to facilitate calculation of the extent of a solid within the li...
G4VSolid is an abstract base class for solids, physical shapes that can be tracked through....
Definition G4VSolid.hh:80
G4VoxelLimits represents limitation/restrictions of space, where restrictions are only made perpendic...
EAxis
Definition geomdefs.hh:54