aboutsummaryrefslogtreecommitdiff
path: root/src/ioPandaGH.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ioPandaGH.h')
-rw-r--r--src/ioPandaGH.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/ioPandaGH.h b/src/ioPandaGH.h
index f4da8d7..b4c20a8 100644
--- a/src/ioPandaGH.h
+++ b/src/ioPandaGH.h
@@ -14,19 +14,16 @@
typedef struct IOPandaGH {
- /* The number of times output */
- int *IO_3Dnum;
+ /* the number of times to output */
+ int out3D_every;
- /* How often to output */
- int IO_3Devery;
+ /* flags indicating output for var [i] */
+ char *do_out3D;
- /* Directory in which to output */
- char *outpfx_3D;
+ /* directory in which to output */
+ char *outdir3D;
- /* The last iteration output */
- int *IO_3Dlast;
-
- /* filename database for opened files */
- pNamedData *fileList_3D;
+ /* the last iteration output for var [i] */
+ int *out3D_last;
} pandaGH;