aboutsummaryrefslogtreecommitdiff
path: root/src/Write3D.c
diff options
context:
space:
mode:
authortradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-03-27 13:15:27 +0000
committertradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-03-27 13:15:27 +0000
commit52c82a9aefc0c96ba9d8bde98e159fc4707ed055 (patch)
tree43ec49f9595aef5ba1929bceea7af635a842f7e6 /src/Write3D.c
parent80631ac6c5509ee69d8bf76343a703550cb5d7e8 (diff)
Output and cp/recovery for arrays of arbitrary size and dims
(although tested only for maxdim <= 3 of course). The (identical) downsampling code in IOHDF5 and IOFlexIO is hard-coded for 3D arrays only. But this will be replaced by Gerd's fantastic hyperslabbing thorn in the very next days anyways :-) git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@99 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'src/Write3D.c')
-rw-r--r--src/Write3D.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Write3D.c b/src/Write3D.c
index e890f85..d88443e 100644
--- a/src/Write3D.c
+++ b/src/Write3D.c
@@ -169,8 +169,8 @@ void IOFlexIO_Write3D (cGH *GH, int index, const char *alias)
printf ("-------------------------------------------------------\n");
printf ("3D I/O on Grid Function %s\n", alias);
printf (" downsample (x,y,z): (%d,%d,%d) ioproc : %d\n",
- ioUtilGH->downsample_x, ioUtilGH->downsample_y,
- ioUtilGH->downsample_z, ioUtilGH->ioproc);
+ ioUtilGH->downsample [0], ioUtilGH->downsample [1],
+ ioUtilGH->downsample [2], ioUtilGH->ioproc);
fflush (stdout);
}