summaryrefslogtreecommitdiff
path: root/src/include/cctk.h
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-03-01 13:04:36 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-03-01 13:04:36 +0000
commitf9166ce74de2534bfc12611743c295e788f769fe (patch)
tree2b971679df73be6fc409ce8912e54a02e0f46e07 /src/include/cctk.h
parent15ceae2a1eba62fdaf28f5c131acf9499e83f74a (diff)
Pass new GH variables through to thorns
git-svn-id: http://svn.cactuscode.org/flesh/trunk@369 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 bf763a10..181f93de 100644
--- a/src/include/cctk.h
+++ b/src/include/cctk.h
@@ -19,10 +19,11 @@
/* Define some stuff */
#ifdef FCODE
-#define _CCTK_FARGUMENTS dim, global_sh, sh, lb, ub, bbox, levfac, convlevel, nghostzones, GH
+#define _CCTK_FARGUMENTS dim, global_sh, sh, lb, ub, bbox, delta_time, time, delta_space, levfac, convlevel, nghostzones, 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)&&\
INTEGER levfac&&\
INTEGER convlevel&&\
INTEGER nghostzones&&\
@@ -36,6 +37,7 @@
#define _PASS_CCTK_C2F(xGH) &((xGH)->dim),\
(xGH)->global_shape,\
(xGH)->local_shape, (xGH)->lower_bound, (xGH)->upper_bound, (xGH)->bbox,\
+ &((xGH)->delta_time), &((xGH)->time), (xGH)->delta_space,\
&((xGH)->levfac),\
&((xGH)->convlevel),\
&((xGH)->nghostzones),\
@@ -43,6 +45,7 @@
#define _CCTK_C2F_PROTO int *,\
int *,\
int *,int *, int *, int *,\
+ Double *, Double *, Double *,\
int *,\
int *,\
int *,\