File indexing completed on 2025-04-19 09:10:06
0001 #ifndef METOOLS_Loops_Master_Integrals_H
0002 #define METOOLS_Loops_Master_Integrals_H
0003
0004 #include "ATOOLS/Math/MyComplex.H"
0005 #include "METOOLS/Loops/Divergence_Array.H"
0006
0007
0008 #define GLOBAL_RENORMALISATION_SCALE 8315.251344
0009
0010 namespace METOOLS {
0011
0012
0013 inline DivArrD D() { return DivArrD(0.,0.,0.,4.,-2.,0.); }
0014 #define D D()
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032 DivArrC
0033 Master_Tadpole(const Complex&,
0034 double);
0035
0036 DivArrC
0037 Master_Bubble(const double&,
0038 const Complex&, const Complex&,
0039 double);
0040
0041 DivArrC
0042 Master_Triangle(const double&, const double&, const double&,
0043 const Complex&, const Complex&, const Complex&,
0044 double);
0045
0046 DivArrC
0047 Master_Box(const double&, const double&, const double&, const double&,
0048 const double&, const double&,
0049 const Complex&, const Complex&, const Complex&, const Complex&,
0050 double);
0051
0052
0053 }
0054
0055 #endif