aboutsummaryrefslogtreecommitdiff
path: root/src/ioPandaGH.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ioPandaGH.h')
-rw-r--r--src/ioPandaGH.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/ioPandaGH.h b/src/ioPandaGH.h
index 736ca58..51017a8 100644
--- a/src/ioPandaGH.h
+++ b/src/ioPandaGH.h
@@ -22,17 +22,23 @@ extern "C"
typedef struct
{
- /* the number of times to output */
- int out_every;
+ /* default number of times to output */
+ int out_every_default;
+
+ /* number of times to output for each variable */
+ CCTK_INT *out_every;
+
+ /* the last iteration output for each variable */
+ int *out_last;
+
+ /* list of variables to output */
+ char *out_vars;
/* I/O request descriptions for all CCTK variables */
ioRequest **requests;
/* directory in which to output */
char *out_dir;
-
- /* the last iteration output for variable[i] */
- int *out_last;
} pandaGH;