From 7ab437b085e04af8fd8f3d48fcc8adcd9d28fb7a Mon Sep 17 00:00:00 2001 From: Martin Reinecke Date: Tue, 18 Sep 2012 16:26:26 +0200 Subject: [PATCH] add Gauss geometry --- libsharp/sharp_cxx.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libsharp/sharp_cxx.h b/libsharp/sharp_cxx.h index e2c881c..b5ed35f 100644 --- a/libsharp/sharp_cxx.h +++ b/libsharp/sharp_cxx.h @@ -63,6 +63,9 @@ class sharp_base void set_ECP_geometry (int nrings, int nphi) { sharp_make_ecp_geom_info (nrings, nphi, 0., 1, nphi, &ginfo); } + void set_Gauss_geometry (int nrings, int nphi) + { sharp_make_gauss_geom_info (nrings, nphi, 1, nphi, &ginfo); } + void set_Healpix_geometry (int nside) { sharp_make_healpix_geom_info (nside, 1, &ginfo); }