Go to the source code of this file.
◆ __fPS_integrand()
| double __fPS_integrand |
( |
double |
x, |
|
|
void * |
p |
|
) |
| |
Definition at line 491 of file THDMMatching.cpp.
494 __f_params ¶ms= *reinterpret_cast<__f_params *>(p);
495 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 485 of file THDMMatching.cpp.
488 __f_params ¶ms= *reinterpret_cast<__f_params *>(p);
489 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 518 of file THDMMatching.cpp.
526 gsl_integration_glfixed_table * w
527 = gsl_integration_glfixed_table_alloc(100);
531 F.params = reinterpret_cast<void *>(¶ms);
533 result = gsl_integration_glfixed (&F, 0, 1, w);
535 gsl_integration_glfixed_table_free (w);
◆ gscalar()
| double gscalar |
( |
double |
r | ) |
|
Definition at line 497 of file THDMMatching.cpp.
505 gsl_integration_glfixed_table * w
506 = gsl_integration_glfixed_table_alloc(100);
510 F.params = reinterpret_cast<void *>(¶ms);
512 result = gsl_integration_glfixed (&F, 0, 1, w);
514 gsl_integration_glfixed_table_free (w);