Fast Evolution of Parton Distributions
constants_math.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_CONSTANTS_MATH_H__
27 #define __PDF_CONSTANTS_MATH_H__
28 
29 #include <cmath>
30 
31 namespace pdf {
32 
33  const double Pi = 3.14159265358979;
34  const double Euler = 0.577215664901533;
35  const double zeta2 = pow(Pi,2)/6.0;
36  const double zeta3 = 1.20205690315959;
37 
38  // --------------------------------------
39  // constants for SU(3)
40 
41  const double Nc = 3.0;
42  const double CF = 4.0/3.0;
43  const double TR = 0.5;
44  const double CA = 3.0;
45 
46  // electromagnetic charges in units of the (negative) electron charge
47 
48  const double Q_up = -2.0/3.0;
49  const double Q_down = 1.0/3.0;
50 
51  const double Q_electron = 1.0;
52 
53 } // namespace pdf
54 
55 #endif // ndef __PDF_CONSTANTS_MATH_H__
56 
Definition: anomalous.cc:33