ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
ECCE @ EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
analysis
coresoftware
Doxygen_Assist
ecce-detectors
fun4all_eicdetectors
geant4
tree
geant4-10.6-release
config
environments
examples
source
analysis
digits_hits
error_propagation
event
externals
g3tog4
geometry
biasing
divisions
magneticfield
management
navigation
solids
Boolean
CSG
include
src
G4Box.cc
G4Cons.cc
G4CSGSolid.cc
G4CutTubs.cc
G4Orb.cc
G4Para.cc
G4Sphere.cc
G4Torus.cc
G4Trap.cc
G4Trd.cc
G4Tubs.cc
G4UBox.cc
G4UCons.cc
G4UCutTubs.cc
G4UOrb.cc
G4UPara.cc
G4USphere.cc
G4UTorus.cc
G4UTrap.cc
G4UTrd.cc
G4UTubs.cc
specific
volumes
global
graphics_reps
intercoms
interfaces
materials
parameterisations
particles
persistency
physics_lists
processes
readout
run
track
tracking
visualization
macros
online_distribution
tutorials
doxygen_mainpage.h
File Members
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
G4CSGSolid.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4CSGSolid.cc
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 of G4CSGSolid
27
//
28
// 27.03.98 J.Apostolakis - First version.
29
// --------------------------------------------------------------------
30
31
#include <cmath>
32
33
#include "
G4CSGSolid.hh
"
34
#include "
Randomize.hh
"
35
#include "
G4RandomTools.hh
"
36
#include "
G4Polyhedron.hh
"
37
38
#include "
G4AutoLock.hh
"
39
40
namespace
41
{
42
G4Mutex
polyhedronMutex =
G4MUTEX_INITIALIZER
;
43
}
44
46
//
47
// Constructor
48
// - Base class constructor
49
50
G4CSGSolid::G4CSGSolid
(
const
G4String
&
name
) :
51
G4VSolid
(name)
52
{
53
}
54
56
//
57
// Fake default constructor - sets only member data and allocates memory
58
// for usage restricted to object persistency.
59
60
G4CSGSolid::G4CSGSolid
( __void__&
a
)
61
:
G4VSolid
(a)
62
{
63
}
64
66
//
67
// Destructor
68
//
69
70
G4CSGSolid::~G4CSGSolid
()
71
{
72
delete
fpPolyhedron
;
fpPolyhedron
=
nullptr
;
73
}
74
76
//
77
// Copy constructor
78
//
79
80
G4CSGSolid::G4CSGSolid
(
const
G4CSGSolid
& rhs)
81
:
G4VSolid
(rhs), fCubicVolume(rhs.fCubicVolume),
82
fSurfaceArea(rhs.fSurfaceArea)
83
{
84
}
85
87
//
88
// Assignment operator
89
90
G4CSGSolid
&
G4CSGSolid::operator =
(
const
G4CSGSolid
& rhs)
91
{
92
// Check assignment to self
93
//
94
if
(
this
== &rhs) {
return
*
this
; }
95
96
// Copy base class data
97
//
98
G4VSolid::operator=
(rhs);
99
100
// Copy data
101
//
102
fCubicVolume
= rhs.
fCubicVolume
;
103
fSurfaceArea
= rhs.
fSurfaceArea
;
104
fRebuildPolyhedron
=
false
;
105
delete
fpPolyhedron
;
fpPolyhedron
=
nullptr
;
106
107
return
*
this
;
108
}
109
110
G4double
G4CSGSolid::GetRadiusInRing
(
G4double
rmin,
G4double
rmax
)
const
111
{
112
return
G4RandomRadiusInRing
(rmin, rmax);
113
}
114
115
std::ostream&
G4CSGSolid::StreamInfo
(std::ostream& os)
const
116
{
117
os <<
"-----------------------------------------------------------\n"
118
<<
" *** Dump for solid - "
<<
GetName
() <<
" ***\n"
119
<<
" ===================================================\n"
120
<<
" Solid type: "
<<
GetEntityType
() <<
"\n"
121
<<
" Parameters: \n"
122
<<
" NOT available !\n"
123
<<
"-----------------------------------------------------------\n"
;
124
125
return
os;
126
}
127
128
G4Polyhedron
*
G4CSGSolid::GetPolyhedron
()
const
129
{
130
if
(
fpPolyhedron
==
nullptr
||
131
fRebuildPolyhedron
||
132
fpPolyhedron
->
GetNumberOfRotationStepsAtTimeOfCreation
() !=
133
fpPolyhedron
->
GetNumberOfRotationSteps
())
134
{
135
G4AutoLock
l(&polyhedronMutex);
136
delete
fpPolyhedron
;
137
fpPolyhedron
=
CreatePolyhedron
();
138
fRebuildPolyhedron
=
false
;
139
l.
unlock
();
140
}
141
return
fpPolyhedron
;
142
}
geant4
tree
geant4-10.6-release
source
geometry
solids
CSG
src
G4CSGSolid.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:18
using
1.8.2 with
ECCE GitHub integration