Go to the source code of this file.
◆ __fPS2_integrand()
double __fPS2_integrand |
( |
double |
x, |
|
|
void * |
p |
|
) |
| |
◆ __fS2_integrand()
double __fS2_integrand |
( |
double |
x, |
|
|
void * |
p |
|
) |
| |
Definition at line 226 of file GeneralTHDMMatching.cpp.
228 double integ = (2.0 * x * (1.0 - x) - 1.0) * log(x * (1.0 - x) / params.
a) / (x * (1.0 - x) - params.
a);
◆ gpseudoscalar2()
double gpseudoscalar2 |
( |
double |
r | ) |
|
Definition at line 257 of file GeneralTHDMMatching.cpp.
262 gsl_integration_glfixed_table * w
263 = gsl_integration_glfixed_table_alloc(100);
267 F.params =
reinterpret_cast<void *
> (¶ms);
269 result = gsl_integration_glfixed(&F, 0, 1, w);
271 gsl_integration_glfixed_table_free(w);
double __fPS2_integrand(double x, void *p)
◆ gscalar2()
double gscalar2 |
( |
double |
r | ) |
|
Definition at line 238 of file GeneralTHDMMatching.cpp.
243 gsl_integration_glfixed_table * w
244 = gsl_integration_glfixed_table_alloc(100);
248 F.params =
reinterpret_cast<void *
> (¶ms);
250 result = gsl_integration_glfixed(&F, 0, 1, w);
252 gsl_integration_glfixed_table_free(w);
double __fS2_integrand(double x, void *p)