Geant4
11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4PolyconeHistorical.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 of G4PolyconeHistorical, polycone data
27
//
28
// Author: David C. Williams (UCSC), 1998
29
// --------------------------------------------------------------------
30
31
#include "
G4PolyconeHistorical.hh
"
32
33
G4PolyconeHistorical::
34
G4PolyconeHistorical
(
G4int
z_planes )
35
:
Num_z_planes
(z_planes)
36
{
37
Z_values
=
new
G4double
[z_planes];
38
Rmin
=
new
G4double
[z_planes];
39
Rmax
=
new
G4double
[z_planes];
40
41
for
(
G4int
i = 0; i < z_planes; ++i)
42
{
43
Z_values
[i] = 0.0;
44
Rmin
[i] = 0.0;
45
Rmax
[i] = 0.0;
46
}
47
}
48
49
G4PolyconeHistorical::~G4PolyconeHistorical
()
50
{
51
delete
[]
Z_values
;
52
delete
[]
Rmin
;
53
delete
[]
Rmax
;
54
}
55
56
G4PolyconeHistorical::
57
G4PolyconeHistorical
(
const
G4PolyconeHistorical
& source )
58
{
59
Start_angle
= source.
Start_angle
;
60
Opening_angle
= source.
Opening_angle
;
61
Num_z_planes
= source.
Num_z_planes
;
62
63
Z_values
=
new
G4double
[
Num_z_planes
];
64
Rmin
=
new
G4double
[
Num_z_planes
];
65
Rmax
=
new
G4double
[
Num_z_planes
];
66
67
for
(
G4int
i = 0; i <
Num_z_planes
; ++i)
68
{
69
Z_values
[i] = source.
Z_values
[i];
70
Rmin
[i] = source.
Rmin
[i];
71
Rmax
[i] = source.
Rmax
[i];
72
}
73
}
74
75
G4PolyconeHistorical
&
76
G4PolyconeHistorical::operator=
(
const
G4PolyconeHistorical
& right )
77
{
78
if
( &right ==
this
) {
return
*
this
; }
79
80
Start_angle
= right.
Start_angle
;
81
Opening_angle
= right.
Opening_angle
;
82
Num_z_planes
= right.
Num_z_planes
;
83
84
delete
[]
Z_values
;
85
delete
[]
Rmin
;
86
delete
[]
Rmax
;
87
Z_values
=
new
G4double
[
Num_z_planes
];
88
Rmin
=
new
G4double
[
Num_z_planes
];
89
Rmax
=
new
G4double
[
Num_z_planes
];
90
91
for
(
G4int
i = 0; i <
Num_z_planes
; ++i)
92
{
93
Z_values
[i] = right.
Z_values
[i];
94
Rmin
[i] = right.
Rmin
[i];
95
Rmax
[i] = right.
Rmax
[i];
96
}
97
98
return
*
this
;
99
}
G4PolyconeHistorical.hh
G4double
double G4double
Definition
G4Types.hh:83
G4int
int G4int
Definition
G4Types.hh:85
G4PolyconeHistorical
G4PolyconeHistorical is a data structure for use in G4Polycone.
Definition
G4PolyconeHistorical.hh:44
G4PolyconeHistorical::~G4PolyconeHistorical
~G4PolyconeHistorical()
Definition
G4PolyconeHistorical.cc:49
G4PolyconeHistorical::Rmax
G4double * Rmax
Definition
G4PolyconeHistorical.hh:58
G4PolyconeHistorical::Rmin
G4double * Rmin
Definition
G4PolyconeHistorical.hh:57
G4PolyconeHistorical::G4PolyconeHistorical
G4PolyconeHistorical()=default
G4PolyconeHistorical::Opening_angle
G4double Opening_angle
Definition
G4PolyconeHistorical.hh:54
G4PolyconeHistorical::Z_values
G4double * Z_values
Definition
G4PolyconeHistorical.hh:56
G4PolyconeHistorical::Num_z_planes
G4int Num_z_planes
Definition
G4PolyconeHistorical.hh:55
G4PolyconeHistorical::Start_angle
G4double Start_angle
Definition
G4PolyconeHistorical.hh:53
G4PolyconeHistorical::operator=
G4PolyconeHistorical & operator=(const G4PolyconeHistorical &right)
Definition
G4PolyconeHistorical.cc:76
geant4-v11.4.0
source
geometry
solids
specific
src
G4PolyconeHistorical.cc
Generated by
1.16.1