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
14e49619
Commit
14e49619
authored
Jun 10, 2020
by
Kemal Tezgin
Browse files
Changing the integral range
parent
59d819b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/partons/modules/convol_coeff_function/DVMP/DVMPCFFGK06.h
View file @
14e49619
...
...
@@ -145,6 +145,8 @@ private:
PartonDistribution
m_gpdResultXiXi
;
///< GPD result at x=xi.
PartonDistribution
m_gpdResultmXiXi
;
///< GPD result at x=-xi.
RunningAlphaStrongModule
*
m_pRunningAlphaStrongModule
;
///< AlphaS module.
//*** MISC FUNCTIONS *************************************************
...
...
src/partons/modules/convol_coeff_function/DVMP/DVMPCFFGK06.cpp
View file @
14e49619
...
...
@@ -203,6 +203,10 @@ std::complex<double> DVMPCFFGK06::computeCFF() {
GPDKinematic
(
m_xi
,
m_xi
,
m_t
,
m_MuF2
,
m_MuR2
),
m_currentGPDComputeType
);
m_gpdResultmXiXi
=
m_pGPDModule
->
compute
(
GPDKinematic
(
-
m_xi
,
m_xi
,
m_t
,
m_MuF2
,
m_MuR2
),
m_currentGPDComputeType
);
//GPD
std
::
complex
<
double
>
convolution
;
...
...
@@ -823,7 +827,13 @@ double DVMPCFFGK06::convolutionTwist3BFunction(double x, void * params) const {
GPDKinematic
(
x
,
m_xi
,
m_t
,
m_MuF2
,
m_MuR2
),
p
->
m_gpdType
);
//evaluate
double
convolution
=
1.
/
(
x
+
m_xi
)
*
(
getMesonGPDCombination
(
gpdResult
))
// double convolution = 1. / (x + m_xi) * (getMesonGPDCombination(gpdResult))
// - 1.
// * (getMesonGPDCombination(gpdResult)
// - getMesonGPDCombination(m_gpdResultXiXi))
// / (x - m_xi);
double
convolution
=
1.
/
(
x
+
m_xi
)
*
(
getMesonGPDCombination
(
gpdResult
)
-
getMesonGPDCombination
(
m_gpdResultmXiXi
))
-
1.
*
(
getMesonGPDCombination
(
gpdResult
)
-
getMesonGPDCombination
(
m_gpdResultXiXi
))
...
...
@@ -851,7 +861,7 @@ std::complex<double> DVMPCFFGK06::convolutionTwist3B(
double
rangeMin
,
rangeMax
;
// range
for
(
size_t
i
=
1
;
i
<
3
;
i
++
)
{
for
(
size_t
i
=
0
;
i
<
3
;
i
++
)
{
//range
if
(
i
==
0
)
{
...
...
@@ -890,12 +900,23 @@ std::complex<double> DVMPCFFGK06::convolutionTwist3C(
//get WF parameters
std
::
pair
<
double
,
double
>
par
=
mesonWFParameters
(
3
);
// return 16. * M_PI * m_Cf / m_Nc
// * m_pRunningAlphaStrongModule->compute(m_Q2 / 2.) * par.first
// * m_muPi * pow(par.second, 2.)
// * (getMesonGPDCombination(m_gpdResultXiXi)
// * (std::complex<double>(0., 1.) * M_PI
// - log((1. - m_xi) / (2. * m_xi))));
return
16.
*
M_PI
*
m_Cf
/
m_Nc
*
m_pRunningAlphaStrongModule
->
compute
(
m_Q2
/
2.
)
*
par
.
first
*
m_muPi
*
pow
(
par
.
second
,
2.
)
*
(
getMesonGPDCombination
(
m_gpdResultXiXi
)
*
(
std
::
complex
<
double
>
(
0.
,
1.
)
*
M_PI
-
log
((
1.
-
m_xi
)
/
(
2.
*
m_xi
))));
+
log
((
1.
+
m_xi
)
/
(
1.
-
m_xi
)))
+
getMesonGPDCombination
(
m_gpdResultmXiXi
)
*
(
std
::
complex
<
double
>
(
0.
,
1.
)
*
M_PI
+
log
((
1.
+
m_xi
)
/
(
1.
-
m_xi
))));
}
std
::
complex
<
double
>
DVMPCFFGK06
::
HankelFunctionFirstKind
(
double
z
)
const
{
...
...
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