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
clhep
include
src
AxisAngle.cc
BasicVector3D.cc
Boost.cc
BoostX.cc
BoostY.cc
BoostZ.cc
DoubConv.cc
DualRand.cc
EngineFactory.cc
engineIDulong.cc
erfQ.cc
EulerAngles.cc
Evaluator.cc
flatToGaussian.cc
gammln.cc
JamesRandom.cc
LorentzRotation.cc
LorentzRotationC.cc
LorentzRotationD.cc
LorentzVector.cc
LorentzVectorB.cc
LorentzVectorC.cc
LorentzVectorK.cc
LorentzVectorL.cc
LorentzVectorR.cc
MixMaxRng.cc
MTwistEngine.cc
NonRandomEngine.cc
Normal3D.cc
Plane3D.cc
Point3D.cc
RandBinomial.cc
RandBit.cc
RandBreitWigner.cc
RandChiSquare.cc
RandExponential.cc
RandExpZiggurat.cc
RandFlat.cc
RandGamma.cc
RandGauss.cc
RandGaussQ.cc
RandGaussZiggurat.cc
RandGeneral.cc
RandLandau.cc
Random.cc
RandomEngine.cc
RandPoisson.cc
RandPoissonQ.cc
RandStudentT.cc
RanecuEngine.cc
Ranlux64Engine.cc
RanluxEngine.cc
RanshiEngine.cc
Rotation.cc
RotationA.cc
RotationC.cc
RotationE.cc
RotationInterfaces.cc
RotationIO.cc
RotationL.cc
RotationP.cc
RotationX.cc
RotationY.cc
RotationZ.cc
setStdMath.cc
setSystemOfUnits.cc
SpaceVector.cc
SpaceVectorD.cc
SpaceVectorP.cc
SpaceVectorR.cc
StaticRandomStates.cc
ThreeVector.cc
ThreeVectorR.cc
Transform3D.cc
TwoVector.cc
Vector3D.cc
ZMinput.cc
expat
zlib
g3tog4
geometry
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
SpaceVectorD.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file SpaceVectorD.cc
1
// -*- C++ -*-
2
// ---------------------------------------------------------------------------
3
//
4
// This file is a part of the CLHEP - a Class Library for High Energy Physics.
5
//
6
// This is the implementation of the subset of those methods of the Hep3Vector
7
// class which originated from the ZOOM SpaceVector class *and* which involve
8
// the esoteric concepts of polar/azimuthal angular decomposition.
9
//
10
11
#ifdef GNUPRAGMA
12
#pragma implementation
13
#endif
14
15
#include "
CLHEP/Vector/ThreeVector.h
"
16
17
#include <cmath>
18
19
namespace
CLHEP {
20
21
//-*********************************************
22
// - 6 -
23
// Decomposition of an angle between two vectors
24
//
25
//-*********************************************
26
27
28
double
Hep3Vector::polarAngle
(
const
Hep3Vector
&
v2
)
const
{
29
return
std::fabs(v2.
getTheta
() -
getTheta
());
30
}
/* polarAngle */
31
32
double
Hep3Vector::polarAngle
(
const
Hep3Vector
&
v2
,
33
const
Hep3Vector
& ref)
const
{
34
return
std::fabs( v2.
angle
(ref) -
angle
(ref) );
35
}
/* polarAngle (v2, ref) */
36
37
// double Hep3Vector::azimAngle (const Hep3Vector & v2) const
38
// is now in the .icc file as deltaPhi(v2)
39
40
double
Hep3Vector::azimAngle
(
const
Hep3Vector
&
v2
,
41
const
Hep3Vector
& ref)
const
{
42
43
Hep3Vector
vperp (
perpPart
(ref) );
44
if
( vperp.
mag2
() == 0 ) {
45
std::cerr <<
"Hep3Vector::azimAngle() - "
46
<<
"Cannot find azimuthal angle with reference direction parallel to "
47
<<
"vector 1 -- will return zero"
<< std::endl;
48
return
0;
49
}
50
51
Hep3Vector
v2perp ( v2.
perpPart
(ref) );
52
if
( v2perp.mag2() == 0 ) {
53
std::cerr <<
"Hep3Vector::azimAngle() - "
54
<<
"Cannot find azimuthal angle with reference direction parallel to "
55
<<
"vector 2 -- will return zero"
<< std::endl;
56
return
0;
57
}
58
59
double
ang = vperp.
angle
(v2perp);
60
61
// Now compute the sign of the answer: that of U*(VxV2) or
62
// the equivalent expression V*(V2xU).
63
64
if
(
dot
(v2.
cross
(ref)) >= 0 ) {
65
return
ang;
66
}
else
{
67
return
-ang;
68
}
69
70
//-| Note that if V*(V2xU) is zero, we want to return 0 or PI
71
//-| depending on whether vperp is aligned or antialigned with v2perp.
72
//-| The computed angle() expression does this properly.
73
74
}
/* azimAngle (v2, ref) */
75
76
}
// namespace CLHEP
geant4
tree
geant4-10.6-release
source
externals
clhep
src
SpaceVectorD.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:15
using
1.8.2 with
ECCE GitHub integration