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
LorentzVectorR.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file LorentzVectorR.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 part of the implementation of the HepLorentzVector class:
7
// Those methods which might, if coded in LorentzVector.cc, force loading
8
// of the Rotation.cc code module.
9
//
10
11
#ifdef GNUPRAGMA
12
#pragma implementation
13
#endif
14
15
#include "
CLHEP/Vector/LorentzVector.h
"
16
17
namespace
CLHEP {
18
19
HepLorentzVector
&
HepLorentzVector::rotate
(
double
a
,
const
Hep3Vector
&
v1
) {
20
pp
.
rotate
(a,v1);
21
return
*
this
;
22
}
23
24
HepLorentzVector
&
HepLorentzVector::rotate
(
const
Hep3Vector
& aaxis,
25
double
ddelta ) {
26
pp
.
rotate
(aaxis, ddelta);
27
return
*
this
;
28
}
29
30
HepLorentzVector
&
HepLorentzVector::rotate
(
const
HepAxisAngle
&
ax
) {
31
pp
.
rotate
(ax);
32
return
*
this
;
33
}
34
35
HepLorentzVector
&
HepLorentzVector::rotate
(
const
HepEulerAngles
&
e1
) {
36
pp
.
rotate
(e1);
37
return
*
this
;
38
}
39
40
HepLorentzVector
&
HepLorentzVector::rotate
(
double
phi1,
41
double
theta1,
42
double
psi1 ) {
43
pp
.
rotate
(phi1, theta1, psi1);
44
return
*
this
;
45
}
46
47
HepLorentzVector
rotationOf
(
const
HepLorentzVector
& vec,
48
const
Hep3Vector
& aaxis,
49
double
ddelta) {
50
HepLorentzVector
vv (vec);
51
return
vv.
rotate
(aaxis, ddelta);
52
}
53
54
HepLorentzVector
rotationOf
55
(
const
HepLorentzVector
& vec,
const
HepAxisAngle
&
ax
) {
56
HepLorentzVector
vv (vec);
57
return
vv.
rotate
(ax);
58
}
59
60
HepLorentzVector
rotationOf
61
(
const
HepLorentzVector
& vec,
const
HepEulerAngles
&
e1
) {
62
HepLorentzVector
vv (vec);
63
return
vv.
rotate
(e1);
64
}
65
66
HepLorentzVector
rotationOf
(
const
HepLorentzVector
& vec,
67
double
phi1,
68
double
theta1,
69
double
psi1) {
70
HepLorentzVector
vv (vec);
71
return
vv.
rotate
(phi1, theta1, psi1);
72
}
73
74
}
// namespace CLHEP
geant4
tree
geant4-10.6-release
source
externals
clhep
src
LorentzVectorR.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:14
using
1.8.2 with
ECCE GitHub integration