IAP GITLAB
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
corsika
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pranav Sampathkumar
corsika
Commits
ffecc0d4
Commit
ffecc0d4
authored
4 years ago
by
Maximilian Reininghaus
Committed by
Ralf Ulrich
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
use CoordinateSystem::RotateToZ in COMBoost and add rest frame boost
parent
532fcfec
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Framework/Utilities/COMBoost.cc
+20
-33
20 additions, 33 deletions
Framework/Utilities/COMBoost.cc
Framework/Utilities/COMBoost.h
+29
-24
29 additions, 24 deletions
Framework/Utilities/COMBoost.h
Framework/Utilities/testCOMBoost.cc
+27
-81
27 additions, 81 deletions
Framework/Utilities/testCOMBoost.cc
with
76 additions
and
138 deletions
Framework/Utilities/COMBoost.cc
+
20
−
33
View file @
ffecc0d4
...
@@ -23,36 +23,11 @@ using namespace corsika::geometry;
...
@@ -23,36 +23,11 @@ using namespace corsika::geometry;
COMBoost
::
COMBoost
(
FourVector
<
HEPEnergyType
,
Vector
<
hepmomentum_d
>>
const
&
Pprojectile
,
COMBoost
::
COMBoost
(
FourVector
<
HEPEnergyType
,
Vector
<
hepmomentum_d
>>
const
&
Pprojectile
,
const
HEPMassType
massTarget
)
const
HEPMassType
massTarget
)
:
fCS
(
Pprojectile
.
GetSpaceLikeComponents
().
GetCoordinateSystem
())
{
:
originalCS_
{
Pprojectile
.
GetSpaceLikeComponents
().
GetCoordinateSystem
()}
,
rotatedCS_
{
originalCS_
.
RotateToZ
(
Pprojectile
.
GetSpaceLikeComponents
())}
{
auto
const
pProjectile
=
Pprojectile
.
GetSpaceLikeComponents
();
auto
const
pProjectile
=
Pprojectile
.
GetSpaceLikeComponents
();
auto
const
pProjNormSquared
=
pProjectile
.
squaredNorm
();
auto
const
pProjNormSquared
=
pProjectile
.
squaredNorm
();
auto
const
pProjNorm
=
sqrt
(
pProjNormSquared
);
auto
const
pProjNorm
=
sqrt
(
pProjNormSquared
);
auto
const
a
=
(
pProjectile
/
pProjNorm
).
GetComponents
().
eVector
;
auto
const
a1
=
a
(
0
),
a2
=
a
(
1
);
auto
const
sign
=
sgn
(
a
(
2
));
auto
const
c
=
1
/
(
1
+
sign
*
a
(
2
));
Eigen
::
Matrix3d
A
,
B
;
if
(
sign
>
0
)
{
A
<<
1
,
0
,
-
a1
,
// comment to prevent clang-format
0
,
1
,
-
a2
,
// .
a1
,
a2
,
1
;
// .
B
<<
-
a1
*
a1
*
c
,
-
a1
*
a2
*
c
,
0
,
// .
-
a1
*
a2
*
c
,
-
a2
*
a2
*
c
,
0
,
// .
0
,
0
,
-
(
a1
*
a1
+
a2
*
a2
)
*
c
;
// .
}
else
{
A
<<
1
,
0
,
a1
,
// comment to prevent clang-format
0
,
-
1
,
-
a2
,
// .
a1
,
a2
,
-
1
;
// .
B
<<
-
a1
*
a1
*
c
,
-
a1
*
a2
*
c
,
0
,
// .
+
a1
*
a2
*
c
,
+
a2
*
a2
*
c
,
0
,
// .
0
,
0
,
(
a1
*
a1
+
a2
*
a2
)
*
c
;
// .
}
fRotation
=
A
+
B
;
auto
const
eProjectile
=
Pprojectile
.
GetTimeLikeComponent
();
auto
const
eProjectile
=
Pprojectile
.
GetTimeLikeComponent
();
auto
const
massProjectileSquared
=
eProjectile
*
eProjectile
-
pProjNormSquared
;
auto
const
massProjectileSquared
=
eProjectile
*
eProjectile
-
pProjNormSquared
;
...
@@ -63,15 +38,27 @@ COMBoost::COMBoost(FourVector<HEPEnergyType, Vector<hepmomentum_d>> const& Pproj
...
@@ -63,15 +38,27 @@ COMBoost::COMBoost(FourVector<HEPEnergyType, Vector<hepmomentum_d>> const& Pproj
auto
const
sinhEta
=
-
pProjNorm
/
sqrtS
;
auto
const
sinhEta
=
-
pProjNorm
/
sqrtS
;
auto
const
coshEta
=
sqrt
(
1
+
pProjNormSquared
/
s
);
auto
const
coshEta
=
sqrt
(
1
+
pProjNormSquared
/
s
);
setBoost
(
coshEta
,
sinhEta
);
std
::
cout
<<
"COMBoost (1-beta)="
<<
1
-
sinhEta
/
coshEta
<<
" gamma="
<<
coshEta
std
::
cout
<<
"COMBoost (1-beta)="
<<
1
-
sinhEta
/
coshEta
<<
" gamma="
<<
coshEta
<<
std
::
endl
;
<<
std
::
endl
;
std
::
cout
<<
" det = "
<<
fRotation
.
determinant
()
-
1
<<
std
::
endl
;
std
::
cout
<<
" det = "
<<
boost_
.
determinant
()
-
1
<<
std
::
endl
;
}
fBoost
<<
coshEta
,
sinhEta
,
sinhEta
,
coshEta
;
COMBoost
::
COMBoost
(
geometry
::
Vector
<
units
::
si
::
hepmomentum_d
>
const
&
momentum
,
units
::
si
::
HEPEnergyType
mass
)
:
originalCS_
{
momentum
.
GetCoordinateSystem
()}
,
rotatedCS_
{
originalCS_
.
RotateToZ
(
momentum
)}
{
auto
const
squaredNorm
=
momentum
.
squaredNorm
();
auto
const
norm
=
sqrt
(
squaredNorm
);
auto
const
sinhEta
=
-
norm
/
mass
;
auto
const
coshEta
=
sqrt
(
1
+
squaredNorm
/
(
mass
*
mass
));
setBoost
(
coshEta
,
sinhEta
);
}
fInverseBoost
<<
coshEta
,
-
sinhEta
,
-
sinhEta
,
coshEta
;
void
COMBoost
::
setBoost
(
double
coshEta
,
double
sinhEta
)
{
boost_
<<
coshEta
,
sinhEta
,
sinhEta
,
coshEta
;
inverseBoost_
<<
coshEta
,
-
sinhEta
,
-
sinhEta
,
coshEta
;
}
}
/*
CoordinateSystem
const
&
COMBoost
::
GetRotatedCS
()
const
{
return
rotatedCS_
;
}
Here we instantiate all physically meaningful versions of COMBoost
*/
This diff is collapsed.
Click to expand it.
Framework/Utilities/COMBoost.h
+
29
−
24
View file @
ffecc0d4
...
@@ -25,72 +25,77 @@ namespace corsika::utl {
...
@@ -25,72 +25,77 @@ namespace corsika::utl {
*/
*/
class
COMBoost
{
class
COMBoost
{
Eigen
::
Matrix3d
fRotation
;
Eigen
::
Matrix2d
boost_
,
inverseBoost_
;
Eigen
::
Matrix2d
fBoost
,
fInverseBoost
;
corsika
::
geometry
::
CoordinateSystem
const
&
originalCS_
,
rotatedCS_
;
corsika
::
geometry
::
CoordinateSystem
const
&
fCS
;
void
setBoost
(
double
coshEta
,
double
sinhEta
);
public:
public:
//! construct a COMBoost given four-vector of prjectile and mass of target
//! construct a COMBoost given four-vector of pr
o
jectile and mass of target
COMBoost
(
COMBoost
(
const
corsika
::
geometry
::
FourVector
<
const
corsika
::
geometry
::
FourVector
<
corsika
::
units
::
si
::
HEPEnergyType
,
corsika
::
units
::
si
::
HEPEnergyType
,
corsika
::
geometry
::
Vector
<
corsika
::
units
::
si
::
hepmomentum_d
>>&
Pprojectile
,
corsika
::
geometry
::
Vector
<
corsika
::
units
::
si
::
hepmomentum_d
>>&
Pprojectile
,
const
corsika
::
units
::
si
::
HEPEnergyType
massTarget
);
const
corsika
::
units
::
si
::
HEPEnergyType
massTarget
);
auto
const
&
GetRotationMatrix
()
const
{
return
fRotation
;
}
//! construct a COMBoost to boost into the rest frame given a 3-momentum and mass
COMBoost
(
geometry
::
Vector
<
units
::
si
::
hepmomentum_d
>
const
&
momentum
,
units
::
si
::
HEPEnergyType
mass
);
//! transforms a 4-momentum from lab frame to the center-of-mass frame
//! transforms a 4-momentum from lab frame to the center-of-mass frame
template
<
typename
FourVector
>
template
<
typename
FourVector
>
FourVector
toCoM
(
const
FourVector
&
p
)
const
{
FourVector
toCoM
(
const
FourVector
&
p
)
const
{
using
namespace
corsika
::
units
::
si
;
using
namespace
corsika
::
units
::
si
;
auto
pComponents
=
p
.
GetSpaceLikeComponents
().
GetComponents
(
f
CS
);
auto
pComponents
=
p
.
GetSpaceLikeComponents
().
GetComponents
(
rotated
CS
_
);
Eigen
::
Vector3d
eVecRotated
=
fRotation
*
pComponents
.
eVector
;
Eigen
::
Vector3d
eVecRotated
=
pComponents
.
eVector
;
Eigen
::
Vector2d
lab
;
Eigen
::
Vector2d
lab
;
lab
<<
(
p
.
GetTimeLikeComponent
()
*
(
1
/
1
_GeV
)),
lab
<<
(
p
.
GetTimeLikeComponent
()
*
(
1
/
1
_GeV
)),
(
eVecRotated
(
2
)
*
(
1
/
1
_GeV
).
magnitude
());
(
eVecRotated
(
2
)
*
(
1
/
1
_GeV
).
magnitude
());
auto
const
boostedZ
=
fB
oost
*
lab
;
auto
const
boostedZ
=
b
oost
_
*
lab
;
auto
const
E_CoM
=
boostedZ
(
0
)
*
1
_GeV
;
auto
const
E_CoM
=
boostedZ
(
0
)
*
1
_GeV
;
eVecRotated
(
2
)
=
boostedZ
(
1
)
*
(
1
_GeV
).
magnitude
();
eVecRotated
(
2
)
=
boostedZ
(
1
)
*
(
1
_GeV
).
magnitude
();
return
FourVector
(
E_CoM
,
return
FourVector
(
corsika
::
geometry
::
Vector
<
hepmomentum_d
>
(
f
CS
,
eVecRotated
));
E_CoM
,
corsika
::
geometry
::
Vector
<
hepmomentum_d
>
(
rotated
CS
_
,
eVecRotated
));
}
}
//! transforms a 4-momentum from the center-of-mass frame back to lab frame
//! transforms a 4-momentum from the center-of-mass frame back to lab frame
template
<
typename
FourVector
>
template
<
typename
FourVector
>
FourVector
fromCoM
(
const
FourVector
&
p
)
const
{
FourVector
fromCoM
(
const
FourVector
&
p
)
const
{
using
namespace
corsika
::
units
::
si
;
using
namespace
corsika
::
units
::
si
;
auto
pCM
=
p
.
GetSpaceLikeComponents
().
GetComponents
(
rotatedCS_
);
auto
const
Ecm
=
p
.
GetTimeLikeComponent
();
Eigen
::
Vector2d
com
;
Eigen
::
Vector2d
com
;
com
<<
(
p
.
GetTimeLikeComponent
()
*
(
1
/
1
_GeV
)),
com
<<
(
Ecm
*
(
1
/
1
_GeV
)),
(
pCM
.
eVector
(
2
)
*
(
1
/
1
_GeV
).
magnitude
());
(
p
.
GetSpaceLikeComponents
().
GetComponents
().
eVector
(
2
)
*
(
1
/
1
_GeV
).
magnitude
());
std
::
cout
<<
"COMBoost::fromCoM Ecm="
<<
Ecm
/
1
_GeV
<<
" GeV, "
<<
" pcm = "
<<
pCM
/
1
_GeV
<<
" (norm = "
<<
pCM
.
norm
()
/
1
_GeV
auto
const
plab
=
p
.
GetSpaceLikeComponents
().
GetComponents
();
std
::
cout
<<
"COMBoost::fromCoM Ecm="
<<
p
.
GetTimeLikeComponent
()
/
1
_GeV
<<
" GeV, "
<<
" pcm = "
<<
plab
/
1
_GeV
<<
" (norm = "
<<
plab
.
norm
()
/
1
_GeV
<<
" GeV), invariant mass = "
<<
p
.
GetNorm
()
/
1
_GeV
<<
" GeV"
<<
" GeV), invariant mass = "
<<
p
.
GetNorm
()
/
1
_GeV
<<
" GeV"
<<
std
::
endl
;
<<
std
::
endl
;
auto
const
boostedZ
=
fI
nverseBoost
*
com
;
auto
const
boostedZ
=
i
nverseBoost
_
*
com
;
auto
const
E_lab
=
boostedZ
(
0
)
*
1
_GeV
;
auto
const
E_lab
=
boostedZ
(
0
)
*
1
_GeV
;
auto
pLab
=
p
.
GetSpaceLikeComponents
().
GetComponents
();
pCM
.
eVector
(
2
)
=
boostedZ
(
1
)
*
(
1
_GeV
).
magnitude
();
pLab
.
eVector
(
2
)
=
boostedZ
(
1
)
*
(
1
_GeV
).
magnitude
();
pLab
.
eVector
=
fRotation
.
transpose
()
*
pLab
.
eVector
;
FourVector
f
(
E_lab
,
corsika
::
geometry
::
Vector
(
fCS
,
pLab
));
geometry
::
Vector
<
typename
decltype
(
pCM
)
::
dimension
>
pLab
{
rotatedCS_
,
pCM
};
pLab
.
rebase
(
originalCS_
);
FourVector
f
(
E_lab
,
pLab
);
std
::
cout
<<
"COMBoost::fromCoM --> Elab="
<<
E_lab
/
1
_GeV
<<
"GeV, "
std
::
cout
<<
"COMBoost::fromCoM --> Elab="
<<
E_lab
/
1
_GeV
<<
"GeV, "
<<
" p
cm
= "
<<
pLab
/
1
_GeV
<<
" (norm ="
<<
pLab
.
norm
()
/
1
_GeV
<<
" p
lab
= "
<<
pLab
.
GetComponents
()
<<
" (norm ="
<<
pLab
.
norm
()
/
1
_GeV
<<
" GeV), invariant mass = "
<<
f
.
GetNorm
()
/
1
_GeV
<<
" GeV"
<<
" GeV), invariant mass = "
<<
f
.
GetNorm
()
/
1
_GeV
<<
" GeV"
<<
std
::
endl
;
<<
std
::
endl
;
return
f
;
return
f
;
}
}
geometry
::
CoordinateSystem
const
&
GetRotatedCS
()
const
;
};
};
}
// namespace corsika::utl
}
// namespace corsika::utl
...
...
This diff is collapsed.
Click to expand it.
Framework/Utilities/testCOMBoost.cc
+
27
−
81
View file @
ffecc0d4
...
@@ -42,87 +42,6 @@ auto const s = [](HEPEnergyType E, QuantityVector<hepmomentum_d> const& p) {
...
@@ -42,87 +42,6 @@ auto const s = [](HEPEnergyType E, QuantityVector<hepmomentum_d> const& p) {
return
E
*
E
-
p
.
squaredNorm
();
return
E
*
E
-
p
.
squaredNorm
();
};
};
TEST_CASE
(
"rotation"
)
{
// define projectile kinematics in lab frame
HEPMassType
const
projectileMass
=
1
_GeV
;
HEPMassType
const
targetMass
=
1.0e300
_eV
;
Vector
<
hepmomentum_d
>
pProjectileLab
{
rootCS
,
{
0
_GeV
,
0
_PeV
,
1
_GeV
}};
HEPEnergyType
const
eProjectileLab
=
energy
(
projectileMass
,
pProjectileLab
);
const
FourVector
PprojLab
(
eProjectileLab
,
pProjectileLab
);
Eigen
::
Vector3d
e1
,
e2
,
e3
;
e1
<<
1
,
0
,
0
;
e2
<<
0
,
1
,
0
;
e3
<<
0
,
0
,
1
;
// define boost to com frame
SECTION
(
"pos. z-axis"
)
{
COMBoost
boost
({
eProjectileLab
,
{
rootCS
,
{
0
_GeV
,
0
_GeV
,
1
_GeV
}}},
targetMass
);
auto
const
&
rot
=
boost
.
GetRotationMatrix
();
CHECK
((
rot
*
e3
-
e3
).
norm
()
==
Approx
(
0
).
margin
(
absMargin
));
CHECK
((
rot
*
e1
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e2
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e3
).
norm
()
==
Approx
(
1
));
CHECK
(
rot
.
determinant
()
==
Approx
(
1
));
}
SECTION
(
"y-axis in upper half"
)
{
COMBoost
boost
({
eProjectileLab
,
{
rootCS
,
{
0
_GeV
,
1
_GeV
,
1
_meV
}}},
targetMass
);
auto
const
&
rot
=
boost
.
GetRotationMatrix
();
CHECK
((
rot
*
e2
-
e3
).
norm
()
==
Approx
(
0
).
margin
(
absMargin
));
CHECK
((
rot
*
e1
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e2
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e3
).
norm
()
==
Approx
(
1
));
CHECK
(
rot
.
determinant
()
==
Approx
(
1
));
}
SECTION
(
"x-axis in upper half"
)
{
COMBoost
boost
({
eProjectileLab
,
{
rootCS
,
{
1
_GeV
,
0
_GeV
,
1
_meV
}}},
targetMass
);
auto
const
&
rot
=
boost
.
GetRotationMatrix
();
CHECK
((
rot
*
e1
-
e3
).
norm
()
==
Approx
(
0
).
margin
(
absMargin
));
CHECK
((
rot
*
e1
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e2
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e3
).
norm
()
==
Approx
(
1
));
CHECK
(
rot
.
determinant
()
==
Approx
(
1
));
}
SECTION
(
"neg. z-axis"
)
{
COMBoost
boost
({
eProjectileLab
,
{
rootCS
,
{
0
_GeV
,
0
_GeV
,
-
1
_GeV
}}},
targetMass
);
auto
const
&
rot
=
boost
.
GetRotationMatrix
();
CHECK
((
rot
*
(
-
e3
)
-
e3
).
norm
()
==
Approx
(
0
).
margin
(
absMargin
));
CHECK
((
rot
*
e1
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e2
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e3
).
norm
()
==
Approx
(
1
));
CHECK
(
rot
.
determinant
()
==
Approx
(
1
));
}
SECTION
(
"x-axis lower half"
)
{
COMBoost
boost
({
eProjectileLab
,
{
rootCS
,
{
1
_GeV
,
0
_GeV
,
-
1
_meV
}}},
targetMass
);
auto
const
&
rot
=
boost
.
GetRotationMatrix
();
CHECK
((
rot
*
e1
-
e3
).
norm
()
==
Approx
(
0
).
margin
(
absMargin
));
CHECK
((
rot
*
e1
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e2
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e3
).
norm
()
==
Approx
(
1
));
CHECK
(
rot
.
determinant
()
==
Approx
(
1
));
}
SECTION
(
"y-axis lower half"
)
{
COMBoost
boost
({
eProjectileLab
,
{
rootCS
,
{
0
_GeV
,
1
_GeV
,
-
1
_meV
}}},
targetMass
);
auto
const
&
rot
=
boost
.
GetRotationMatrix
();
CHECK
((
rot
*
e2
-
e3
).
norm
()
==
Approx
(
0
).
margin
(
absMargin
));
CHECK
((
rot
*
e1
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e2
).
norm
()
==
Approx
(
1
));
CHECK
((
rot
*
e3
).
norm
()
==
Approx
(
1
));
CHECK
(
rot
.
determinant
()
==
Approx
(
1
));
}
}
TEST_CASE
(
"boosts"
)
{
TEST_CASE
(
"boosts"
)
{
// define target kinematics in lab frame
// define target kinematics in lab frame
HEPMassType
const
targetMass
=
1
_GeV
;
HEPMassType
const
targetMass
=
1
_GeV
;
...
@@ -266,4 +185,31 @@ TEST_CASE("boosts") {
...
@@ -266,4 +185,31 @@ TEST_CASE("boosts") {
PprojCoM
.
GetSpaceLikeComponents
()
+
PtargCoM
.
GetSpaceLikeComponents
();
PprojCoM
.
GetSpaceLikeComponents
()
+
PtargCoM
.
GetSpaceLikeComponents
();
CHECK
(
sumPCoM
.
norm
()
/
P0
==
Approx
(
0
).
margin
(
absMargin
));
// MAKE RELATIVE CHECK
CHECK
(
sumPCoM
.
norm
()
/
P0
==
Approx
(
0
).
margin
(
absMargin
));
// MAKE RELATIVE CHECK
}
}
SECTION
(
"rest frame"
)
{
HEPMassType
const
projectileMass
=
1
_GeV
;
HEPMomentumType
const
P0
=
1
_TeV
;
Vector
<
hepmomentum_d
>
pProjectileLab
{
rootCS
,
{
0
_GeV
,
P0
,
0
_GeV
}};
HEPEnergyType
const
eProjectileLab
=
energy
(
projectileMass
,
pProjectileLab
);
const
FourVector
PprojLab
(
eProjectileLab
,
pProjectileLab
);
COMBoost
boostRest
(
pProjectileLab
,
projectileMass
);
auto
const
&
csPrime
=
boostRest
.
GetRotatedCS
();
FourVector
const
rest4Mom
=
boostRest
.
toCoM
(
PprojLab
);
CHECK
(
rest4Mom
.
GetTimeLikeComponent
()
/
1
_GeV
==
Approx
(
projectileMass
/
1
_GeV
));
CHECK
(
rest4Mom
.
GetSpaceLikeComponents
().
norm
()
/
1
_GeV
==
Approx
(
0
).
margin
(
absMargin
));
FourVector
const
a
{
0
_eV
,
Vector
{
csPrime
,
0
_eV
,
5
_GeV
,
0
_eV
}};
FourVector
const
b
{
0
_eV
,
Vector
{
rootCS
,
3
_GeV
,
0
_eV
,
0
_eV
}};
auto
const
aLab
=
boostRest
.
fromCoM
(
a
);
auto
const
bLab
=
boostRest
.
fromCoM
(
b
);
CHECK
(
aLab
.
GetNorm
()
/
a
.
GetNorm
()
==
Approx
(
1
));
CHECK
(
aLab
.
GetSpaceLikeComponents
().
GetComponents
(
csPrime
)[
1
].
magnitude
()
==
Approx
((
5
_GeV
).
magnitude
()));
CHECK
(
bLab
.
GetSpaceLikeComponents
().
GetComponents
(
rootCS
)[
0
].
magnitude
()
==
Approx
((
3
_GeV
).
magnitude
()));
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment