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
286a0df9
Commit
286a0df9
authored
Jan 08, 2021
by
Pawel Sznajder
Browse files
update
parent
348a6b23
Changes
4
Hide whitespace changes
Inline
Side-by-side
include/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21.h
View file @
286a0df9
...
...
@@ -8,13 +8,15 @@
#ifndef GPD_SUBTRACTION_CONSTANT_DLMSTW21_H
#define GPD_SUBTRACTION_CONSTANT_DLMSTW21_H
#include <ElementaryUtils/parameters/Parameters.h>
#include <include/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantModule.h>
#include <include/partons/utils/type/PhysicalType.h>
#include <stddef.h>
#include <string>
#include <vector>
#include <ElementaryUtils/parameters/Parameters.h>
#include "../../modules/gpd_subtraction_constant/GPDSubtractionConstantModule.h"
#include "../../utils/type/PhysicalType.h"
namespace
PARTONS
{
/**
...
...
include/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21Evolution.h
View file @
286a0df9
...
...
@@ -5,8 +5,8 @@
* Author: partons
*/
#ifndef INCLUDE_EVOLUTION_H_
#define INCLUDE_EVOLUTION_H_
#ifndef INCLUDE_
GPDSUBTRACTIONCONSTANTDLMSTW21
EVOLUTION_H_
#define INCLUDE_
GPDSUBTRACTIONCONSTANTDLMSTW21
EVOLUTION_H_
#include <stddef.h>
#include <cmath>
...
...
@@ -108,4 +108,4 @@ std::vector<double> evolveQuarkGluon(double mu2, double mu20,
}
}
#endif
/* INCLUDE_EVOLUTION_H_ */
#endif
/* INCLUDE_
GPDSUBTRACTIONCONSTANTDLMSTW21
EVOLUTION_H_ */
src/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21.cpp
View file @
286a0df9
#include "../../../../include/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21.h"
#include "../../../../include/partons/BaseObjectRegistry.h"
#include "../../../../include/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21Evolution.h"
#include "../../../../include/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21Replicas.h"
#include "../../../../include/partons/utils/type/PhysicalUnit.h"
#include <ElementaryUtils/logger/CustomException.h>
#include <ElementaryUtils/parameters/GenericType.h>
#include <ElementaryUtils/string_utils/Formatter.h>
#include <include/partons/BaseObjectRegistry.h>
#include <include/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21.h>
#include <include/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21Evolution.h>
#include <include/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21Replicas.h>
#include <include/partons/utils/type/PhysicalUnit.h>
#include <cmath>
#include <iterator>
...
...
@@ -60,8 +63,8 @@ void GPDSubtractionConstantDLMSTW21::loadParameters(size_t replica,
ElemUtils
::
Formatter
()
<<
"Illegal replica "
<<
replica
);
}
m_d1g
=
GPDSubtractionConstantDLMSTW21Replicas
::
c_Replicas
[
replica
][
0
]
;
m_d1q
=
GPDSubtractionConstantDLMSTW21Replicas
::
c_Replicas
[
replica
]
[
1
]
;
m_d1g
=
0.
;
m_d1q
=
GPDSubtractionConstantDLMSTW21Replicas
::
c_Replicas
[
replica
];
if
(
printInfo
)
{
info
(
__func__
,
...
...
@@ -75,20 +78,20 @@ PhysicalType<double> GPDSubtractionConstantDLMSTW21::computeSubtractionConstant(
//charges u,d,s,c,b,t
std
::
vector
<
double
>
charges
(
6
);
charges
.
push_back
(
2
/
3.
)
;
//u
charges
.
push_back
(
-
1
/
3.
)
;
//d
charges
.
push_back
(
-
1
/
3.
)
;
//s
charges
.
push_back
(
2
/
3.
)
;
//c
charges
.
push_back
(
-
1
/
.
3
)
;
//b
charges
.
push_back
(
2
/
3.
)
;
//t
charges
[
0
]
=
2
/
3.
;
//u
charges
[
1
]
=
-
1
/
3.
;
//d
charges
[
2
]
=
-
1
/
3.
;
//s
charges
[
3
]
=
2
/
3.
;
//c
charges
[
4
]
=
-
1
/
3
.
;
//b
charges
[
5
]
=
2
/
3.
;
//t
//d1 at initial scale
std
::
vector
<
double
>
d1
(
4
);
d1
.
push_back
(
m_d1g
)
;
//g
d1
.
push_back
(
m_d1q
)
;
//u
d1
.
push_back
(
m_d1q
)
;
//d
d1
.
push_back
(
m_d1q
)
;
//s
d1
[
0
]
=
m_d1g
;
//g
d1
[
1
]
=
m_d1q
;
//u
d1
[
2
]
=
m_d1q
;
//d
d1
[
3
]
=
m_d1q
;
//s
//evolve
std
::
vector
<
double
>
d1Evolved
=
...
...
src/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21Evolution.cpp
View file @
286a0df9
...
...
@@ -5,7 +5,8 @@
* Author: Paweł Sznajder and Arkadiusz P. Trawiński
*/
#include <include/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21Evolution.h>
#include "../../../../include/partons/modules/gpd_subtraction_constant/GPDSubtractionConstantDLMSTW21Evolution.h"
#include <cstdlib>
#include <iostream>
#include <iterator>
...
...
Write
Preview
Markdown
is supported
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