#include "StandardModel.h"
#include "ThObservable.h"
#include <math.h>
#include <gsl/gsl_math.h>
#include <gsl/gsl_integration.h>
#include <assert.h>
#include <gsl/gsl_monte_plain.h>
#include <TF1.h>
#include <TGraph.h>
#include <TFitResultPtr.h>
Go to the source code of this file.
|
| class | MVll |
| | A class for the \(M \to V l^+ l^-\) decay. More...
|
| |
template<class F >
| gsl_function convertToGslFunction |
( |
const F & |
f | ) |
|
Definition at line 38 of file MVll.h.
40 gsl_function gslFunction;
45 gslFunction.function = &gslFunctionAdapter<F>;
47 gslFunction.params =
const_cast<void*
>( p );
template<class F >
| static double gslFunctionAdapter |
( |
double |
x, |
|
|
void * |
p |
|
) |
| |
|
static |
Definition at line 29 of file MVll.h.
33 F*
function =
static_cast<F*
>( p );
34 return (*
function)( x );