Geant4 11.1.1
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4TwistedTrd.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// G4TwistedTrd
27//
28// Author: 18/03/2005 - O.Link (Oliver.Link@cern.ch)
29// --------------------------------------------------------------------
30
31#include "G4TwistedTrd.hh"
32#include "G4SystemOfUnits.hh"
33#include "G4Polyhedron.hh"
34
35//=====================================================================
36//* Constructor -------------------------------------------------------
37
39 G4double pDx1,
40 G4double pDx2,
41 G4double pDy1,
42 G4double pDy2,
43 G4double pDz,
44 G4double pPhiTwist )
45 : G4VTwistedFaceted( pName, pPhiTwist,pDz,0.,0.,
46 pDy1, pDx1, pDx1, pDy2, pDx2, pDx2,0.)
47{
48}
49
50//=====================================================================
51// Fake default constructor - sets only member data and allocates memory
52// for usage restricted to object persistency.
53
56{
57}
58
59//=====================================================================
60//* Destructor --------------------------------------------------------
61
63{
64}
65
66//=====================================================================
67//* Copy constructor --------------------------------------------------
68
71{
73}
74
75//=====================================================================
76//* Assignment operator -----------------------------------------------
77
79{
80 // Check assignment to self
81 //
82 if (this == &rhs) { return *this; }
83
84 // Copy base class data
85 //
88
89 return *this;
90}
91
92//=====================================================================
93//* StreamInfo --------------------------------------------------------
94
95std::ostream& G4TwistedTrd::StreamInfo(std::ostream& os) const
96{
97 //
98 // Stream object contents to an output stream
99 //
100 os << "-----------------------------------------------------------\n"
101 << " *** Dump for solid - " << GetName() << " ***\n"
102 << " ===================================================\n"
103 << " Solid type: G4TwistedTrd\n"
104 << " Parameters: \n"
105 << " pDx1 = " << GetX1HalfLength()/cm << " cm" << G4endl
106 << " pDx2 = " << GetX2HalfLength()/cm << " cm" << G4endl
107 << " pDy1 = " << GetY1HalfLength()/cm << " cm" << G4endl
108 << " pDy2 = " << GetY2HalfLength()/cm << " cm" << G4endl
109 << " pDz = " << GetZHalfLength()/cm << " cm" << G4endl
110 << " pPhiTwist = " << GetPhiTwist()/degree << " deg" << G4endl
111 << "-----------------------------------------------------------\n";
112
113 return os;
114}
115
116//=====================================================================
117//* GetEntityType -----------------------------------------------------
118
120{
121 return G4String("G4TwistedTrd");
122}
123
124//=====================================================================
125//* Clone -------------------------------------------------------------
126
128{
129 return new G4TwistedTrd(*this);
130}
131
132//=====================================================================
133//* GetCubicVolume ----------------------------------------------------
134
136{
137 if (fCubicVolume == 0.)
138 {
143 G4double h = 2.*GetZHalfLength();
144 fCubicVolume = h*((x1 + x2)*(y1 + y2) + (x2 - x1)*(y2 - y1)/3.);
145 }
146 return fCubicVolume;
147}
148
149//=====================================================================
150//* GetSurfaceArea ----------------------------------------------------
151
153{
154 if (fSurfaceArea == 0.)
155 {
156 G4double ang = GetPhiTwist();
161 G4double h = 2.*GetZHalfLength();
162 G4double hh = h*h;
163 G4double delX = x2 - x1;
164 G4double delY = y2 - y1;
165 if (ang == 0.)
166 {
167 G4double hx = std::sqrt(delY*delY + hh);
168 G4double hy = std::sqrt(delX*delX + hh);
169 return fSurfaceArea =
170 2.*(x1 + x2)*hx + 2.*(y1 + y2)*hy + 4.*(x1*y1 + x2*y2);
171 }
172
173 // compute area of x-faces
174 G4double U1, U2, V1, V2;
175 G4double areaX = 0.;
176 U1 = delY + x1*ang;
177 U2 = delY + x2*ang;
178 V1 = delY - x1*ang;
179 V2 = delY - x2*ang;
180 if (std::abs(delX) < kCarTolerance) // case x1 == x2
181 {
182 areaX = (U1*std::sqrt(hh + U1*U1) + hh*std::asinh(U1/h) -
183 V1*std::sqrt(hh + V1*V1) - hh*std::asinh(V1/h))/ang;
184 }
185 else
186 {
187 // U contribution
188 areaX += ((hh + U2*U2)*std::sqrt(hh + U2*U2) -
189 (hh + U1*U1)*std::sqrt(hh + U1*U1))/3.
190 + hh*(U2*std::asinh(U2/h) - U1*std::asinh(U1/h))
191 - hh*(std::sqrt(hh + U2*U2) - std::sqrt(hh + U1*U1));
192 // V contribution
193 areaX += ((hh + V2*V2)*std::sqrt(hh + V2*V2) -
194 (hh + V1*V1)*std::sqrt(hh + V1*V1))/3.
195 + hh*(V2*std::asinh(V2/h) - V1*std::asinh(V1/h))
196 - hh*(std::sqrt(hh + V2*V2) - std::sqrt(hh + V1*V1));
197 areaX /= delX*ang*ang;
198 }
199
200 // compute area of y-faces
201 G4double areaY = 0.;
202 U1 = delX + y1*ang;
203 U2 = delX + y2*ang;
204 V1 = delX - y1*ang;
205 V2 = delX - y2*ang;
206 if (std::abs(delY) < kCarTolerance) // case y1 == y2
207 {
208 areaY = (U1*std::sqrt(hh + U1*U1) + hh*std::asinh(U1/h) -
209 V1*std::sqrt(hh + V1*V1) - hh*std::asinh(V1/h))/ang;
210 }
211 else
212 {
213 // U contribution
214 areaY += ((hh + U2*U2)*std::sqrt(hh + U2*U2) -
215 (hh + U1*U1)*std::sqrt(hh + U1*U1))/3.
216 + hh*(U2*std::asinh(U2/h) - U1*std::asinh(U1/h))
217 - hh*(std::sqrt(hh + U2*U2) - std::sqrt(hh + U1*U1));
218 // V contribution
219 areaY += ((hh + V2*V2)*std::sqrt(hh + V2*V2) -
220 (hh + V1*V1)*std::sqrt(hh + V1*V1))/3.
221 + hh*(V2*std::asinh(V2/h) - V1*std::asinh(V1/h))
222 - hh*(std::sqrt(hh + V2*V2) - std::sqrt(hh + V1*V1));
223 areaY /= delY*ang*ang;
224 }
225 fSurfaceArea = areaX + areaY + 4.*(x1*y1 + x2*y2);
226 }
227 return fSurfaceArea;
228}
double G4double
Definition: G4Types.hh:83
#define G4endl
Definition: G4ios.hh:57
G4TwistedTrd & operator=(const G4TwistedTrd &rhs)
Definition: G4TwistedTrd.cc:78
G4TwistedTrd(const G4String &pName, G4double pDx1, G4double pDx2, G4double pDy1, G4double pDy2, G4double pDz, G4double pPhiTwist)
Definition: G4TwistedTrd.cc:38
virtual ~G4TwistedTrd()
Definition: G4TwistedTrd.cc:62
G4double GetCubicVolume()
G4double GetX2HalfLength() const
Definition: G4TwistedTrd.hh:67
G4double GetY2HalfLength() const
Definition: G4TwistedTrd.hh:69
G4VSolid * Clone() const
std::ostream & StreamInfo(std::ostream &os) const
Definition: G4TwistedTrd.cc:95
G4double GetY1HalfLength() const
Definition: G4TwistedTrd.hh:68
G4double GetZHalfLength() const
Definition: G4TwistedTrd.hh:70
G4GeometryType GetEntityType() const
G4double GetPhiTwist() const
Definition: G4TwistedTrd.hh:71
G4double GetX1HalfLength() const
Definition: G4TwistedTrd.hh:66
G4double GetSurfaceArea()
G4String GetName() const
G4double kCarTolerance
Definition: G4VSolid.hh:299
G4VTwistedFaceted & operator=(const G4VTwistedFaceted &rhs)
G4Polyhedron * fpPolyhedron
virtual G4Polyhedron * GetPolyhedron() const
#define V1(a, b, c)
#define V2(a, b, c)