00001
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef __PDF_ANOMALOUS_H__
00027 #define __PDF_ANOMALOUS_H__
00028
00029 #include "complex_d.h"
00030
00031 namespace pdf {
00032
00050 class anomalous_dimensions {
00051
00052
00053
00054
00055 public :
00056 static complex_d anomalous_0_NS(const complex_d & N, int Nf);
00057
00058 static complex_d anomalous_0_qq(const complex_d & N, int Nf);
00059 static complex_d anomalous_0_qg(const complex_d & N, int Nf);
00060 static complex_d anomalous_0_gq(const complex_d & N, int Nf);
00061 static complex_d anomalous_0_gg(const complex_d & N, int Nf);
00062
00063 static complex_d anomalous_1_NS(const complex_d & N, int eta, int Nf);
00064
00065 static complex_d anomalous_1_qq(const complex_d & N, int Nf);
00066 static complex_d anomalous_1_qg(const complex_d & N, int Nf);
00067 static complex_d anomalous_1_gq(const complex_d & N, int Nf);
00068 static complex_d anomalous_1_gg(const complex_d & N, int Nf);
00069
00070
00071
00072 };
00073
00074 }
00075
00076 #endif // ndef __PDF_ANOMALOUS_H__
00077
00078
00079
00080
00081
00082