-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DIS: F2charm is non-zero at low Q2 in FFNS4 for uonly PDF #24
Comments
what is the uonly PDFs? Only up quark to all scales? |
Dear @felixhekhorn, I also found your result worrisome.
and using the "uonly" PDF set, I find:
that seems to be consistent with the expectation. |
The differences with the last comment snippet and what we used in the original post are:
here there is the updated snippet, to make the correct comparison: #include "APFEL/APFEL.h"
#include <utility>
#include <vector>
#include <math.h>
int main()
{
APFEL::SetPerturbativeOrder(0);
APFEL::SetPDFSet("uonly");
APFEL::SetPoleMasses(2, 4, 175);
APFEL::SetMassScheme("FFNS4");
APFEL::SetFFNS(4); // this statement is ignored by APFEL
APFEL::InitializeAPFEL_DIS();
const std::vector<std::pair<double, double>> kin{
{0.01, 2.000000}, {0.01, 2.444444}, {0.01, 2.888889}, {0.01, 3.333333}, {0.01, 3.777778},
{0.01, 4.222222}, {0.01, 4.666667}, {0.01, 5.111111}, {0.01, 5.555556}, {0.01, 6.000000}};
for (auto k : kin)
{
APFEL::ComputeStructureFunctionsAPFEL(sqrt(k.second), sqrt(k.second));
std::cout << std::scientific << k.first << "\t" << k.second << "\t"
<< APFEL::F2charm(k.first) << "\t"
<< std::endl;
}
return 0;
} and the results:
APFEL parameters' reportWARNING: FFNS is a FFN scheme ... setting NF = 4 FFNS PDF evolution
Allowed evolution range [ 1.0000 : 10000.0000 ] GeV Initialization of the evolution completed in 0.053 s Report of the electroweak parameters: Mass of the Z = 91.188 GeV Report of the DIS parameters: Computation in the FFNS4 mass scheme Initialization of the DIS module completed in 0.034 s |
theory 99
might be related to #22
The text was updated successfully, but these errors were encountered: