CMS 3D CMS Logo

PyquenWrapper.h
Go to the documentation of this file.
1 #ifndef PYQUEN_WRAPPER_H
2 #define PYQUEN_WRAPPER_H
3 
4 /*
5  *
6  * Wrapper for FORTRAN version of PYQUEN
7  *
8  * Camelia Mironov
9  *
10  */
11 
12 // PYQUEN routine declaration
13 
14 extern "C" {
15 void pyquen_(double& a, int& ifb, double& bfix, double& bmin, double& bmax);
16 }
17 #define PYQUEN pyquen_
18 
19 extern "C" {
20 void pyqver_(int&, int&, int&, int&);
21 }
22 #define PYQVER pyqver_
23 
24 extern "C" {
25 extern struct { double bgen; } plfpar_;
26 }
27 #define plfpar plfpar_
28 
29 extern "C" {
30 extern struct {
31  double T0u;
32  double tau0u;
33  int nfu;
34  int ienglu;
35  int ianglu;
36 } pyqpar_;
37 }
38 #define pyqpar pyqpar_
39 
40 #endif // PYQUEN_WRAPPER_H
void pyqver_(int &, int &, int &, int &)
double T0u
Definition: PyquenWrapper.h:31
void pyquen_(double &a, int &ifb, double &bfix, double &bmin, double &bmax)
struct @738 pyqpar_
double tau0u
Definition: PyquenWrapper.h:32
int ienglu
Definition: PyquenWrapper.h:34
struct @737 plfpar_
double a
Definition: hdecay.h:119
int nfu
Definition: PyquenWrapper.h:33
double bgen
Definition: PyquenWrapper.h:25
int ianglu
Definition: PyquenWrapper.h:35