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{
26  double bgen;
27  }plfpar_;
28 }
29 #define plfpar plfpar_
30 
31 extern "C" {
32  extern struct{
33  double T0u;
34  double tau0u;
35  int nfu;
36  int ienglu;
37  int ianglu;
38  }pyqpar_;
39 }
40 #define pyqpar pyqpar_
41 
42 #endif // PYQUEN_WRAPPER_H
void pyqver_(int &, int &, int &, int &)
double T0u
Definition: PyquenWrapper.h:33
void pyquen_(double &a, int &ifb, double &bfix, double &bmin, double &bmax)
double tau0u
Definition: PyquenWrapper.h:34
struct @738 plfpar_
int ienglu
Definition: PyquenWrapper.h:36
struct @739 pyqpar_
double a
Definition: hdecay.h:121
int nfu
Definition: PyquenWrapper.h:35
double bgen
Definition: PyquenWrapper.h:26
int ianglu
Definition: PyquenWrapper.h:37