aboutsummaryrefslogtreecommitdiff
path: root/src/iobasicGH.h
diff options
context:
space:
mode:
authorallen <allen@b589c3ab-70e8-4b4d-a09f-cba2dd200880>1999-09-21 11:27:32 +0000
committerallen <allen@b589c3ab-70e8-4b4d-a09f-cba2dd200880>1999-09-21 11:27:32 +0000
commit1940d71782b4cc3519972ebf4504bbe4486cf7d0 (patch)
treebc11dc4e95891c19d3e88c0b15bb4ebf068d1d45 /src/iobasicGH.h
parentac667e93729515249ec4d81961d1c83e2a0e217d (diff)
This commit was generated by cvs2svn to compensate for changes in r2, which
included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@3 b589c3ab-70e8-4b4d-a09f-cba2dd200880
Diffstat (limited to 'src/iobasicGH.h')
-rw-r--r--src/iobasicGH.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/iobasicGH.h b/src/iobasicGH.h
new file mode 100644
index 0000000..a61fdb4
--- /dev/null
+++ b/src/iobasicGH.h
@@ -0,0 +1,42 @@
+ /*@@
+ @header iobasic.h
+ @date Friday 18th September 1999
+ @author Gabrielle Allen
+ @desc
+ The extensions to the GH structure from IOBasic.
+ @enddesc
+ @version $Header$
+ @@*/
+
+#include "StoreNamedData.h"
+
+
+typedef struct IOBASICGH {
+
+ /* The number of times output */
+ int *infonum;
+ int *Scalarnum;
+
+ int Scalarevery;
+ int infoevery;
+
+ /* Directory in which to output */
+ char *outpfx_Scalar;
+
+ /* The last iteration output */
+ int *infolast;
+ int *Scalarlast;
+
+ /* The values for info */
+ CCTK_REAL **infovals;
+
+ pNamedData *filenameListScalar;
+
+} iobasicGH;
+
+
+/* function prototypes */
+void IOBasic_Write (cGH *GH, int index, const char *alias);
+void IOBasic_WriteGF (cGH *GH, int index, const char *alias);
+CCTK_REAL IOBasic_WriteInfo (cGH *GH, int index, const char *operator, const char *alias);
+