aboutsummaryrefslogtreecommitdiff
path: root/src/ioFlexGH.h
diff options
context:
space:
mode:
authortradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-05-10 12:53:08 +0000
committertradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-05-10 12:53:08 +0000
commit0e0f4dcea308e77b2e0552cb43a0ae5a9135b64a (patch)
tree77e11595e9ff0906842580220dfeeba3683cbdb0 /src/ioFlexGH.h
parent3980c087d9f1527c0d2a9dcd93d7c4f4bb57105b (diff)
Moving file list structure definitions into ioFlexGH.h.
Removed unused timers for parameter recovery. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@119 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'src/ioFlexGH.h')
-rw-r--r--src/ioFlexGH.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/ioFlexGH.h b/src/ioFlexGH.h
index 4835945..bfe059e 100644
--- a/src/ioFlexGH.h
+++ b/src/ioFlexGH.h
@@ -65,6 +65,14 @@
} while (0)
+/* info structure describing 3D IEEEIO output files
+ For each open file there is one entry in the file database. */
+typedef struct {
+ IOFile iofile;
+ char *filename;
+} IEEEfile_3D_t;
+
+
/* structure holding necessary information about a recovery file */
typedef struct {
int is_IEEEIO_file; /* flag indicating valid file info */
@@ -96,12 +104,8 @@ typedef struct IOFlexIOGH {
int *out2D_last;
int *out3D_last;
- /* IEEEIO file name and pointer for 3D output */
- char **IEEEfname_3D;
- IOFile *IEEEfile_3D;
-
/* filename database for opened files */
- pNamedData *filenameList2D;
+ pNamedData *fileList_2D;
pNamedData *fileList_3D;
/* slice point for 2D output */
@@ -111,8 +115,6 @@ typedef struct IOFlexIOGH {
int dumpVarsTimer;
int dumpParamsTimer;
int checkpointTotalTimer;
- int recoverVarsTimer;
- int recoverParamsTimer;
int recoverTotalTimer;
} flexioGH;