fast pQCD calculations for hadron-induced processes
HoppetInterface.h
1 #include <vector>
2 
3 class fastNLOReader;
4 
5 extern "C" void evolvepdf_(const double& x, const double& Q, double* xf);
6 
8  public:
9  static void InitHoppet(fastNLOReader&);
10  static std::vector<double> GetSpl(double, double);
11  static std::vector<double> GetXFX(double, double);
12  static double EvolveAlphas(double);
13  static bool IsInitialized;
14  // ---- Alphas vars ---- //
15  static double fAlphasMz;
16  static double fMz;
17  static int fnFlavor;
18  static int fnLoop;
19  static double QMass[6];
20  // ____ //
21  private:
22  static void StartHoppet();
23  static void LHAsub(const double &, const double &, double*);
24  static fastNLOReader *fnlo;
25 };
static std::vector< double > GetSpl(double, double)
Definition: HoppetInterface.cc:57
Definition: HoppetInterface.h:7
static std::vector< double > GetXFX(double, double)
Definition: HoppetInterface.cc:69
Definition: fastNLOReader.h:17