Fast Evolution of Parton Distributions
coupling.h
Go to the documentation of this file.
1 
8 /*
9  * Copyright (C) 2002 Stefan Weinzierl
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24  */
25 
26 #ifndef __PDF_COUPLING_H__
27 #define __PDF_COUPLING_H__
28 
29 namespace pdf {
30 
56  class alpha_strong {
57 
58  // ctors
59 
60  // static functions
61  public :
62  static double beta_0(int Nf);
63  static double beta_1(int Nf);
64 
65  static int get_active_flavours(double Q);
66  static double get_lambda_QCD(double Q);
67  static double get_lambda_QCD(int Nf);
68  static double get_value(double Q, int Nf);
69 
70  private :
71  static double get_F(double Q, double a_s, int Nf);
72  static double get_dF(double Q, double a_s, int Nf);
73  static double root_safeI(double a, double b, double Q, int Nf);
74 
75  // data members
76  public :
77  static double lambda_3;
78  static double lambda_4;
79  static double lambda_5;
80 
81  static double charm_threshold;
82  static double bottom_threshold;
83 
84  static int method;
85 
86  // keywords
87  enum {
88  exact,
89  truncate_in_one_over_L
90  };
91 
92  };
93 
94 } // namespace pdf
95 
96 #endif // ndef __PDF_COUPLING_H__
97 
static double get_dF(double Q, double a_s, int Nf)
Definition: coupling.cc:181
Definition: coupling.h:56
static double beta_0(int Nf)
Definition: coupling.cc:48
static int get_active_flavours(double Q)
Definition: coupling.cc:76
static double get_value(double Q, int Nf)
Definition: coupling.cc:121
static double root_safeI(double a, double b, double Q, int Nf)
Definition: coupling.cc:201
static double get_lambda_QCD(double Q)
Definition: coupling.cc:90
static double get_F(double Q, double a_s, int Nf)
Definition: coupling.cc:159
Definition: anomalous.cc:33
static double beta_1(int Nf)
Definition: coupling.cc:66