Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
source
geometry
management
src
G4ErrorPlaneSurfaceTarget.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
//
27
// $Id$
28
//
29
//
30
// --------------------------------------------------------------------
31
// GEANT 4 class implementation file
32
// --------------------------------------------------------------------
33
34
#include "
G4ErrorPlaneSurfaceTarget.hh
"
35
36
#ifdef G4VERBOSE
37
#include "
G4ErrorPropagatorData.hh
"
//for verbosity checking
38
#endif
39
40
#include "
G4Point3D.hh
"
41
#include "
G4ThreeVector.hh
"
42
43
//---------------------------------------------------------------------
44
45
G4ErrorPlaneSurfaceTarget::
46
G4ErrorPlaneSurfaceTarget
(
G4double
aa,
G4double
ab,
G4double
ac,
G4double
ad)
47
:
G4Plane3D
( aa, ab, ac, ad )
48
{
49
theType
=
G4ErrorTarget_PlaneSurface
;
50
51
#ifdef G4VERBOSE
52
if
(
G4ErrorPropagatorData::verbose
() >= 2 )
53
{
54
Dump
(
" $$$ creating G4ErrorPlaneSurfaceTarget from parameters"
);
55
}
56
#endif
57
}
58
59
//---------------------------------------------------------------------
60
61
G4ErrorPlaneSurfaceTarget::
62
G4ErrorPlaneSurfaceTarget
(
const
G4Normal3D
&
norm
,
const
G4Point3D
&
pt
)
63
:
G4Plane3D
( norm, pt )
64
{
65
theType
=
G4ErrorTarget_PlaneSurface
;
66
67
#ifdef G4VERBOSE
68
if
(
G4ErrorPropagatorData::verbose
() >= 2 )
69
{
70
Dump
(
" $$$ creating G4ErrorPlaneSurfaceTarget from point and normal"
);
71
}
72
#endif
73
}
74
75
//---------------------------------------------------------------------
76
77
G4ErrorPlaneSurfaceTarget::
78
G4ErrorPlaneSurfaceTarget
(
const
G4Point3D
&p1,
79
const
G4Point3D
&p2,
80
const
G4Point3D
&p3)
81
:
G4Plane3D
( p1, p2, p3 )
82
{
83
theType
=
G4ErrorTarget_PlaneSurface
;
84
85
#ifdef G4VERBOSE
86
if
(
G4ErrorPropagatorData::verbose
() >= 2 )
87
{
88
Dump
(
" $$$ creating G4ErrorPlaneSurfaceTarget from three points"
);
89
}
90
#endif
91
}
92
93
//---------------------------------------------------------------------
94
95
G4ErrorPlaneSurfaceTarget::~G4ErrorPlaneSurfaceTarget
()
96
{
97
}
98
99
//---------------------------------------------------------------------
100
101
G4ThreeVector
G4ErrorPlaneSurfaceTarget::
102
Intersect
(
const
G4ThreeVector
&
pt
,
const
G4ThreeVector
&
dir
)
const
103
{
104
G4double
lam
=
GetDistanceFromPoint
( pt, dir );
105
G4Point3D
inters = pt + lam *
dir
;
106
107
#ifdef G4VERBOSE
108
if
(
G4ErrorPropagatorData::verbose
() >= 4 )
109
{
110
G4cout
<<
" $$$ creating G4ErrorPlaneSurfaceTarget::Intersect "
111
<< inters <<
G4endl
;
112
}
113
#endif
114
115
return
inters;
116
}
117
118
//---------------------------------------------------------------------
119
120
G4double
G4ErrorPlaneSurfaceTarget::
121
GetDistanceFromPoint
(
const
G4ThreeVector
&
pt
,
const
G4ThreeVector
&
dir
)
const
122
{
123
if
( std::fabs( dir.
mag
() -1. ) > 1.E-6 )
124
{
125
std::ostringstream message;
126
message <<
"Direction is not a unit vector: "
<< dir <<
" !"
;
127
G4Exception
(
"G4ErrorPlaneSurfaceTarget::GetDistanceFromPoint()"
,
128
"GeomMgt1002"
,
JustWarning
, message);
129
}
130
G4double
dist = -(
a_
* pt.
x
() +
b_
* pt.
y
() +
c_
* pt.
z
() +
d_
)
131
/ (
a_
* dir.
x
() +
b_
* dir.
y
() +
c_
* dir.
z
() );
132
133
#ifdef G4VERBOSE
134
if
(
G4ErrorPropagatorData::verbose
() >= 3 )
135
{
136
G4cout
<<
" G4ErrorPlaneSurfaceTarget::GetDistanceFromPoint()"
<<
G4endl
137
<<
" Point: "
<< pt <<
", Direction: "
<< dir <<
G4endl
138
<<
" Distance: "
<< dist <<
G4endl
;
139
}
140
#endif
141
142
return
dist;
143
}
144
145
//---------------------------------------------------------------------
146
147
G4double
G4ErrorPlaneSurfaceTarget::
148
GetDistanceFromPoint
(
const
G4ThreeVector
&
pt
)
const
149
{
150
G4ThreeVector
vec =
point
() -
pt
;
151
G4double
alpha
= std::acos( vec *
normal
() / vec.
mag
() /
normal
().mag() );
152
G4double
dist = std::fabs(vec.
mag
() * std::cos( alpha ));
153
154
#ifdef G4VERBOSE
155
if
(
G4ErrorPropagatorData::verbose
() >= 3 )
156
{
157
G4cout
<<
" G4ErrorPlaneSurfaceTarget::GetDistanceFromPoint()"
<<
G4endl
158
<<
" Point: "
<< pt <<
G4endl
159
<<
" Distance: "
<< dist <<
G4endl
;
160
}
161
#endif
162
163
return
dist;
164
}
165
166
//---------------------------------------------------------------------
167
168
G4Plane3D
G4ErrorPlaneSurfaceTarget::
169
GetTangentPlane
(
const
G4ThreeVector
& )
const
170
{
171
return
*
this
;
172
}
173
174
175
void
G4ErrorPlaneSurfaceTarget::Dump
(
const
G4String
& msg )
const
176
{
177
G4cout
<< msg <<
" point = "
<<
point
()
178
<<
" normal = "
<<
normal
() <<
G4endl
;
179
}
Generated on Sat May 25 2013 14:33:11 for Geant4 by
1.8.4