File indexing completed on 2026-06-02 08:51:45
0001 #ifndef GPD_GK19_COMPASS_H
0002 #define GPD_GK19_COMPASS_H
0003
0004
0005
0006
0007
0008
0009
0010
0011 #include <ElementaryUtils/parameters/Parameters.h>
0012 #include <string>
0013 #include <vector>
0014
0015 #include "../MathIntegratorModule.h"
0016 #include "GPDGK16.h"
0017
0018 namespace NumA {
0019 class FunctionType1D;
0020 }
0021
0022 namespace PARTONS {
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032 class GPDGK19COMPASS: public GPDGK16, public MathIntegratorModule {
0033
0034 public:
0035
0036 static const unsigned int classId;
0037
0038
0039
0040
0041
0042
0043
0044 GPDGK19COMPASS(const std::string &className);
0045
0046
0047
0048
0049 virtual ~GPDGK19COMPASS();
0050
0051 virtual GPDGK19COMPASS* clone() const;
0052 virtual void resolveObjectDependencies();
0053 virtual void configure(const ElemUtils::Parameters ¶meters);
0054
0055 protected:
0056
0057
0058
0059
0060 GPDGK19COMPASS(const GPDGK19COMPASS& other);
0061
0062 virtual void initModule();
0063 virtual void isModuleWellConfigured();
0064
0065 double HtUp(double rho, std::vector<double> par);
0066 double HtDown(double rho, std::vector<double> par);
0067
0068 virtual PartonDistribution computeHt();
0069 virtual PartonDistribution computeEt();
0070 virtual PartonDistribution computeHTrans();
0071 virtual PartonDistribution computeEbarTrans();
0072
0073 void calculateHtCoefs();
0074 void calculateEtCoefs();
0075 void calculateHTransCoefs();
0076 void calculateETransCoefs();
0077
0078 private:
0079
0080 double kHtgluon;
0081 double kHtsea;
0082 double kHtuval;
0083 double kHtdval;
0084
0085 double kEtgluon;
0086 double kEtsea;
0087 double kEtuval;
0088 double kEtdval;
0089
0090 double kHTransgluon;
0091 double kHTranssea;
0092 double kHTransuval;
0093 double kHTransdval;
0094
0095 double kETransgluon;
0096 double kETranssea;
0097 double kETransuval;
0098 double kETransdval;
0099
0100 std::vector<double> Etuval1tab;
0101 std::vector<double> Etdval1tab;
0102 std::vector<double> Etuval1mtab;
0103 std::vector<double> Etdval1mtab;
0104
0105 std::vector<double> HTransuval1tab;
0106 std::vector<double> HTransdval1tab;
0107 std::vector<double> HTransuval1mtab;
0108 std::vector<double> HTransdval1mtab;
0109
0110 std::vector<double> ETransuval1tab;
0111 std::vector<double> ETransdval1tab;
0112 std::vector<double> ETransuval1mtab;
0113 std::vector<double> ETransdval1mtab;
0114
0115 void calculateHtKas();
0116 void calculateEtKas();
0117 void calculateHTransKas();
0118 void calculateETransKas();
0119
0120 double ValenceExpansion(double x, double i, double k);
0121
0122
0123
0124
0125 void initFunctorsForIntegrations();
0126
0127 NumA::FunctionType1D* m_pint_HtUp;
0128 NumA::FunctionType1D* m_pint_HtDown;
0129 };
0130
0131 }
0132
0133 #endif