20#ifndef CCGSL_SF_COUPLING_HPP
21#define CCGSL_SF_COUPLING_HPP
23#include<gsl/gsl_sf_coupling.h>
40 inline int coupling_3j_e(
int two_ja,
int two_jb,
int two_jc,
int two_ma,
int two_mb,
int two_mc,
42 return gsl_sf_coupling_3j_e( two_ja, two_jb, two_jc, two_ma, two_mb, two_mc, &
result ); }
53 inline double coupling_3j(
int two_ja,
int two_jb,
int two_jc,
int two_ma,
int two_mb,
int two_mc ){
54 return gsl_sf_coupling_3j( two_ja, two_jb, two_jc, two_ma, two_mb, two_mc ); }
66 inline int coupling_6j_e(
int two_ja,
int two_jb,
int two_jc,
int two_jd,
int two_je,
int two_jf,
68 return gsl_sf_coupling_6j_e( two_ja, two_jb, two_jc, two_jd, two_je, two_jf, &
result ); }
79 inline double coupling_6j(
int two_ja,
int two_jb,
int two_jc,
int two_jd,
int two_je,
int two_jf ){
80 return gsl_sf_coupling_6j( two_ja, two_jb, two_jc, two_jd, two_je, two_jf ); }
92 inline int coupling_RacahW_e(
int two_ja,
int two_jb,
int two_jc,
int two_jd,
int two_je,
int two_jf,
94 return gsl_sf_coupling_RacahW_e( two_ja, two_jb, two_jc, two_jd, two_je, two_jf, &
result ); }
105 inline double coupling_RacahW(
int two_ja,
int two_jb,
int two_jc,
int two_jd,
int two_je,
int two_jf ){
106 return gsl_sf_coupling_RacahW( two_ja, two_jb, two_jc, two_jd, two_je, two_jf ); }
121 inline int coupling_9j_e(
int two_ja,
int two_jb,
int two_jc,
int two_jd,
int two_je,
int two_jf,
int two_jg,
123 return gsl_sf_coupling_9j_e( two_ja, two_jb, two_jc, two_jd, two_je, two_jf, two_jg, two_jh, two_ji,
138 inline double coupling_9j(
int two_ja,
int two_jb,
int two_jc,
int two_jd,
int two_je,
int two_jf,
139 int two_jg,
int two_jh,
int two_ji ){
140 return gsl_sf_coupling_9j( two_ja, two_jb, two_jc, two_jd, two_je, two_jf, two_jg, two_jh, two_ji ); }
double coupling_RacahW(int two_ja, int two_jb, int two_jc, int two_jd, int two_je, int two_jf)
C++ version of gsl_sf_coupling_RacahW().
double coupling_3j(int two_ja, int two_jb, int two_jc, int two_ma, int two_mb, int two_mc)
C++ version of gsl_sf_coupling_3j().
double coupling_6j(int two_ja, int two_jb, int two_jc, int two_jd, int two_je, int two_jf)
C++ version of gsl_sf_coupling_6j().
int coupling_9j_e(int two_ja, int two_jb, int two_jc, int two_jd, int two_je, int two_jf, int two_jg, int two_jh, int two_ji, result &result)
C++ version of gsl_sf_coupling_9j_e().
int coupling_6j_e(int two_ja, int two_jb, int two_jc, int two_jd, int two_je, int two_jf, result &result)
C++ version of gsl_sf_coupling_6j_e().
double coupling_9j(int two_ja, int two_jb, int two_jc, int two_jd, int two_je, int two_jf, int two_jg, int two_jh, int two_ji)
C++ version of gsl_sf_coupling_9j().
int coupling_3j_e(int two_ja, int two_jb, int two_jc, int two_ma, int two_mb, int two_mc, result &result)
C++ version of gsl_sf_coupling_3j().
int coupling_RacahW_e(int two_ja, int two_jb, int two_jc, int two_jd, int two_je, int two_jf, result &result)
C++ version of gsl_sf_coupling_RacahW_e().
gsl_sf_result result
Typedef for gsl_sf_result.
The gsl package creates an interface to the GNU Scientific Library for C++.