aboutsummaryrefslogtreecommitdiff
path: root/src/DumpGH.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/DumpGH.c')
-rw-r--r--src/DumpGH.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/DumpGH.c b/src/DumpGH.c
index c94ed8e..6a3f9df 100644
--- a/src/DumpGH.c
+++ b/src/DumpGH.c
@@ -433,14 +433,16 @@ static int Checkpoint (const cGH *GH, int called_from)
/* get the default I/O request for this group */
request = IOUtil_DefaultIORequest (GH, first_vindex, 1);
- /* disable checking for old data objects, disable datatype conversion
- and downsampling */
+ /* disable checking for old data objects,
+ disable datatype conversion and downsampling,
+ request hyperslab output including ghostzones */
request->check_exist = 0;
request->hdatatype = gdata.vartype;
for (request->hdim = 0; request->hdim < request->vdim; request->hdim++)
{
request->downsample[request->hdim] = 1;
}
+ request->with_ghostzones = 1;
/* loop over all variables in this group */
for (request->vindex = first_vindex;