Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
partons
core
partons
Commits
3d3fa95c
Commit
3d3fa95c
authored
Nov 19, 2019
by
Oskar Grocholski
Browse files
Strict form of xi implemented.
parent
943dac33
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/partons/modules/process/TCS/TCSProcessModule.cpp
View file @
3d3fa95c
...
...
@@ -426,7 +426,9 @@ void TCSProcessModule::initModule() {
//evaluate internal variables
double
s
=
pow
(
Constant
::
PROTON_MASS
,
2
)
+
2.
*
Constant
::
PROTON_MASS
*
m_E
;
double
tau
=
m_Q2Prim
/
(
s
-
pow
(
Constant
::
PROTON_MASS
,
2
));
double
xi
=
tau
/
(
2.
-
tau
);
//double xi = tau / (2. - tau); this is an approximate formula
double
xi
=
m_t
-
2.
*
m_Q2Prim
;
xi
/=
4.
*
s
+
2.
*
m_t
-
4.
*
pow
(
Constant
::
PROTON_MASS
,
2
)
-
2.
*
m_Q2Prim
;
double
p1cm
=
m_E
*
Constant
::
PROTON_MASS
/
sqrt
(
s
);
double
E3cm
=
(
s
+
m_Q2Prim
-
pow
(
Constant
::
PROTON_MASS
,
2
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment