FLAG  1.0b1
Exact Fourier-Laguerre transform in spherical coordinates
flag_sampling.h
Go to the documentation of this file.
1 // FLAG package
2 // Copyright (C) 2012
3 // Boris Leistedt & Jason McEwen
4 
5 #ifndef FLAG_SAMPLING
6 #define FLAG_SAMPLING
7 
8 /* FOR FUTURE IMPROVEMENTS // multi-scheme support
9 enum ssht_methods {
10  MW,
11  MWSS,
12  GL,
13  DH
14 };
15 */
16 
29 void flag_sampling_allocate(double **rs, double **thetas, double **phis, double **laguweights, int L, int N);
30 
43 void flag_sampling(double *rs, double *thetas, double *phis, double *laguweights, double tau, int L, int N);
44 
45 #endif
void flag_sampling(double *rs, double *thetas, double *phis, double *laguweights, double tau, int L, int N)
Definition: flag_sampling.c:69
void flag_sampling_allocate(double **rs, double **thetas, double **phis, double **laguweights, int L, int N)
Definition: flag_sampling.c:48