00001
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef __PDF_INTEGRATION_CONTOUR_H__
00027 #define __PDF_INTEGRATION_CONTOUR_H__
00028
00029 #include "complex_d.h"
00030 #include "matrix_c.h"
00031 #include "matrix_d.h"
00032
00033 #include "partondistribution.h"
00034
00035 namespace pdf {
00036
00043 class integration_contour {
00044
00045
00046
00047
00048 public :
00049 static double nonsinglet(const partondistribution & f, double Q, double x, double u);
00050 static vector_d singlet(const partondistribution & s, const partondistribution & g, double Q, double x, double u);
00051
00052 static vector_d singlet_with_qed(const partondistribution & Delta,
00053 const partondistribution & s, const partondistribution & g,
00054 const partondistribution & phot, const partondistribution & lept,
00055 double Q, double x, double u);
00056
00057
00058
00059 };
00060
00061 }
00062
00063 #endif // ndef __PDF_INTEGRATION_CONTOUR_H__
00064