From 7f338f43f237587941a3f39f429756fbcd7a7c2a Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Thu, 5 Jun 2014 16:24:08 +0200 Subject: [PATCH] Fixes --- python_sample/test_spheric_proj.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python_sample/test_spheric_proj.py b/python_sample/test_spheric_proj.py index 312a387..534a95b 100644 --- a/python_sample/test_spheric_proj.py +++ b/python_sample/test_spheric_proj.py @@ -4,7 +4,7 @@ import healpy as hp d = np.zeros((64,64,64), ct.DTYPE) -d[33,33,33] = 1 +d[32,32,32] = 1 -proj0 = ct.spherical_projection(32, d, 0, 20, integrator_id=0) -proj1 = ct.spherical_projection(32, d, 0, 20, integrator_id=1) +proj0 = ct.spherical_projection(64, d, 0, 20, integrator_id=0, shifter=np.array([0.5,0.5,0.5])) +proj1 = ct.spherical_projection(64, d, 0, 20, integrator_id=1)