Go to the source code of this file.
◆ __fPS_integrand()
double __fPS_integrand |
( |
double |
x, |
|
|
void * |
p |
|
) |
| |
Definition at line 499 of file THDMMatching.cpp.
501 double integ = log(x*(1.0-x)/params.
a) / (x*(1.0-x)-params.
a);
◆ __fS_integrand()
double __fS_integrand |
( |
double |
x, |
|
|
void * |
p |
|
) |
| |
Definition at line 493 of file THDMMatching.cpp.
495 double integ = (2.0*x*(1.0-x)-1.0) * log(x*(1.0-x)/params.
a) / (x*(1.0-x)-params.
a);
◆ gpseudoscalar()
double gpseudoscalar |
( |
double |
r | ) |
|
Definition at line 526 of file THDMMatching.cpp.
532 gsl_integration_glfixed_table * w
533 = gsl_integration_glfixed_table_alloc(100);
537 F.params =
reinterpret_cast<void *
>(¶ms);
539 result = gsl_integration_glfixed (&F, 0, 1, w);
541 gsl_integration_glfixed_table_free (w);
double __fPS_integrand(double x, void *p)
◆ gscalar()
double gscalar |
( |
double |
r | ) |
|
Definition at line 505 of file THDMMatching.cpp.
511 gsl_integration_glfixed_table * w
512 = gsl_integration_glfixed_table_alloc(100);
516 F.params =
reinterpret_cast<void *
>(¶ms);
518 result = gsl_integration_glfixed (&F, 0, 1, w);
520 gsl_integration_glfixed_table_free (w);
double __fS_integrand(double x, void *p)