ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
sf_coupling.hpp
Go to the documentation of this file.
1/*
2 * $Id: sf_coupling.hpp 9 2010-06-13 14:02:43Z jdl3 $
3 * Copyright (C) 2010 John D Lamb
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or (at
8 * your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20#ifndef CCGSL_SF_COUPLING_HPP
21#define CCGSL_SF_COUPLING_HPP
22
23#include<gsl/gsl_sf_coupling.h>
24#include"mode.hpp"
25#include"sf_result.hpp"
26
27namespace gsl {
28 namespace sf {
40 inline int coupling_3j_e( int two_ja, int two_jb, int two_jc, int two_ma, int two_mb, int two_mc,
41 result& result ){
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,
67 result& result ){
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,
93 result& result ){
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,
122 int two_jh, int two_ji, result& result ){
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,
124 &result ); }
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 ); }
141 }
142}
143
144#endif
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().
Definition: sf_coupling.hpp:53
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().
Definition: sf_coupling.hpp:79
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().
Definition: sf_coupling.hpp:66
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().
Definition: sf_coupling.hpp:40
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().
Definition: sf_coupling.hpp:92
gsl_sf_result result
Typedef for gsl_sf_result.
Definition: sf_result.hpp:30
The gsl package creates an interface to the GNU Scientific Library for C++.
Definition: blas.hpp:34