APFEL 4.8.0
A PDF evolution library in C++
Loading...
Searching...
No Matches
gmatchingfunctions.h
Go to the documentation of this file.
1//
2// APFEL++ 2017
3//
4// Author: Valerio Bertone: valerio.bertone@cern.ch
5//
6
7#pragma once
8
9#include "apfel/expression.h"
10
11namespace apfel
12{
19
24
28 class Cgtmd1ns: public Expression
29 {
30 public:
31 Cgtmd1ns(double const& xi);
32 double Regular(double const& x) const;
33 double Local(double const&) const;
34 };
35
40 class Cgtmd1qq: public Expression
41 {
42 public:
43 Cgtmd1qq(double const& xi);
44 double Regular(double const& x) const;
45 double Local(double const&) const;
46 };
47
52 class Cgtmd1qg: public Expression
53 {
54 public:
55 Cgtmd1qg(double const& xi);
56 double Regular(double const& x) const;
57 double SingularPV(double const& x) const;
58 double LocalPV(double const& x) const;
59 };
60
65 class Cgtmd1gq: public Expression
66 {
67 public:
68 Cgtmd1gq(double const& xi);
69 double Regular(double const& x) const;
70 };
71
76 class Cgtmd1gg: public Expression
77 {
78 public:
79 Cgtmd1gg(double const& xi);
80 double Regular(double const& x) const;
81 double Local(double const&) const;
82 double SingularPV(double const& x) const;
83 double LocalPV(double const& x) const;
84 };
86}
The O(αs) gluon-gluon unpolarised matching function for GTMDs.
Definition gmatchingfunctions.h:77
double Regular(double const &x) const
Virtual regular term.
double SingularPV(double const &x) const
Virtual singular term for principal-valued integrals in the DGLAP region (i.e. with pole in x in the ...
double LocalPV(double const &x) const
Virtual local term for principal-valued integrals a la DGLAP with singularity in the interval (0,...
Cgtmd1gg(double const &xi)
double Local(double const &) const
Virtual local term.
The O(αs) gluon-quark unpolarised matching function for GTMDs.
Definition gmatchingfunctions.h:66
double Regular(double const &x) const
Virtual regular term.
Cgtmd1gq(double const &xi)
The O(αs) non-singlet unpolarised matching function for GTMDs.
Definition gmatchingfunctions.h:29
double Local(double const &) const
Virtual local term.
double Regular(double const &x) const
Virtual regular term.
Cgtmd1ns(double const &xi)
The O(αs) quark-gluon unpolarised matching function for GTMDs.
Definition gmatchingfunctions.h:53
double Regular(double const &x) const
Virtual regular term.
double SingularPV(double const &x) const
Virtual singular term for principal-valued integrals in the DGLAP region (i.e. with pole in x in the ...
Cgtmd1qg(double const &xi)
double LocalPV(double const &x) const
Virtual local term for principal-valued integrals a la DGLAP with singularity in the interval (0,...
The O(αs) quark-quark unpolarised matching function for GTMDs.
Definition gmatchingfunctions.h:41
double Local(double const &) const
Virtual local term.
double Regular(double const &x) const
Virtual regular term.
Cgtmd1qq(double const &xi)
The Expression class encapsulates in a proper form a given analytic expression in such a way that it ...
Definition expression.h:17
Namespace for all APFEL++ functions and classes.
Definition alphaqcd.h:14