/* This is the header file for the functions that specify the rho wavefunction. */ #ifndef rho_wavefunction_h #define rho_wavefunction_h #include #include #define F_RHO 0.216 /* 0.216 */ /* rho decay constant in GeV */ #define F_OMEGA 0.195 /* 0.195 */ /* omega decay constant in GeV */ #define F_PHI 0.079 /* 0.079 */ /* phi decay constant in GeV */ double rho_distr_ampl(double z); double rho_wavef_impactpar(double x, double b); double rho_wavef_momspace(double x, double k_perp); double omega_distr_ampl(double z); double omega_wavef_impactpar(double x, double b); double omega_wavef_momspace(double x, double k_perp); double phi_distr_ampl(double z); double phi_wavef_impactpar(double x, double b); double phi_wavef_momspace(double x, double k_perp); #endif