summaryrefslogtreecommitdiff
path: root/src/include/cctk.h
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-04-06 00:38:48 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-04-06 00:38:48 +0000
commit7038aa4a14073fcdd0d041d0aea6a485e554e1f7 (patch)
tree8a683982a48e85539c2d8c4cb0e3bb6f7e9f67fa /src/include/cctk.h
parentac89ed4128c31c5760f028c24835836136507270 (diff)
Added the origin of the spatial coordinate system to the GH
This is temporary until we add coordinate registration routines just to get the right coordinates in IO git-svn-id: http://svn.cactuscode.org/flesh/trunk@439 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk.h')
-rw-r--r--src/include/cctk.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/cctk.h b/src/include/cctk.h
index 12e17c2b..66903680 100644
--- a/src/include/cctk.h
+++ b/src/include/cctk.h
@@ -19,11 +19,12 @@
/* Define some stuff */
#ifdef FCODE
-#define _CCTK_FARGUMENTS dim, global_sh, sh, lb, ub, bbox, delta_time, time, delta_space, levfac, convlevel, nghostzones, iteration, GH
+#define _CCTK_FARGUMENTS dim, global_sh, sh, lb, ub, bbox, delta_time, time, delta_space, origin_space, levfac, convlevel, nghostzones, iteration, GH
#define _DECLARE_CCTK_FARGUMENTS INTEGER dim&&\
INTEGER global_sh(dim)&&\
INTEGER sh(dim), lb(dim), ub(dim), bbox(2*dim)&&\
REAL delta_time, time, delta_space(dim)&&\
+ REAL origin_space(dim)&&\
INTEGER levfac&&\
INTEGER convlevel&&\
INTEGER nghostzones&&\
@@ -39,6 +40,7 @@
(xGH)->global_shape,\
(xGH)->local_shape, (xGH)->lower_bound, (xGH)->upper_bound, (xGH)->bbox,\
&((xGH)->delta_time), &((xGH)->time), (xGH)->delta_space,\
+ (xGH)->origin_space,\
&((xGH)->levfac),\
&((xGH)->convlevel),\
&((xGH)->nghostzones),\
@@ -48,6 +50,7 @@
int *,\
int *,int *, int *, int *,\
Double *, Double *, Double *,\
+ Double *,\
int *,\
int *,\
int *,\