aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rotatingsymmetry90.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/rotatingsymmetry90.c b/src/rotatingsymmetry90.c
index 5099169..ba0a360 100644
--- a/src/rotatingsymmetry90.c
+++ b/src/rotatingsymmetry90.c
@@ -94,6 +94,7 @@ int BndRot90VI (cGH const * restrict const cctkGH,
int offset[DIM]; /* offset 0..1 due to avoid_origin */
struct xferinfo * restrict xferinfo;
+ int options;
int have_global_bbox, have_local_bbox;
@@ -494,11 +495,17 @@ int BndRot90VI (cGH const * restrict const cctkGH,
assert (0);
}
+ options = Util_TableCreateFromString ("useghosts=1");
+ assert (options>=0);
+
ierr = Slab_MultiTransfer
- (cctkGH, group.dim, xferinfo, -1,
+ (cctkGH, group.dim, xferinfo, options,
nvars, vartypes, srcptrs, vartypes, varptrs);
assert (!ierr);
+ ierr = Util_TableDestroy (options);
+ assert (!ierr);
+
/* take parity into account */
have_local_bbox = 1;
for (q=0; q<ndirs; ++q) {