From 731a51b6d7aee853c747b1d4dedf54c696ed2469 Mon Sep 17 00:00:00 2001 From: allen Date: Wed, 12 Jul 2000 11:12:34 +0000 Subject: New CCTK Coordinate functions git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/CartGrid3D/trunk@118 c78560ca-4b45-4335-b268-5f3340f3cb52 --- src/CartGrid3D.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CartGrid3D.c b/src/CartGrid3D.c index 249bc59..82a8f9e 100644 --- a/src/CartGrid3D.c +++ b/src/CartGrid3D.c @@ -276,15 +276,15 @@ void CartGrid3D(CCTK_ARGUMENTS) lowerx = x_origin; upperx = x_origin+this_dx*(cctk_gsh[0]-1); - CCTK_CoordRegisterRange(cctkGH,lowerx,upperx,"x"); + CCTK_CoordRegisterRange(cctkGH,lowerx,upperx,-1,"x","cart3d"); lowery = y_origin; uppery = y_origin+this_dy*(cctk_gsh[1]-1); - CCTK_CoordRegisterRange(cctkGH,lowery,uppery,"y"); + CCTK_CoordRegisterRange(cctkGH,lowery,uppery,-1,"y","cart3d"); lowerz = z_origin; upperz = z_origin+this_dz*(cctk_gsh[2]-1); - CCTK_CoordRegisterRange(cctkGH,lowerz,upperz,"z"); + CCTK_CoordRegisterRange(cctkGH,lowerz,upperz,-1,"z","cart3d"); sprintf(infoline," %s%12.7e %s%12.7e %s%12.7e ", "dx=>",cctk_delta_space[0], -- cgit v1.2.3