aboutsummaryrefslogtreecommitdiff
path: root/src/ioASCIIGH.h
diff options
context:
space:
mode:
authortradke <tradke@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2004-06-09 10:42:22 +0000
committertradke <tradke@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2004-06-09 10:42:22 +0000
commit38ada55f16de8da0d3532fc87ba8e2fd68f96639 (patch)
tree1b3b8199333d24727db6563bc9aa0cc860c84ea8 /src/ioASCIIGH.h
parent3974284b1f5cfa807114302e57fdb5a5aa4acbb7 (diff)
After setup, do an initial I/O parameter parsing and warn/stop on parsing errors
(depending on IO::strict_io_parameter_check). You will also need to update CactusBase/IOUtil. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOASCII/trunk@180 94b1c47f-dcfd-45ef-a468-0854c0e9e350
Diffstat (limited to 'src/ioASCIIGH.h')
-rw-r--r--src/ioASCIIGH.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ioASCIIGH.h b/src/ioASCIIGH.h
index abb2f9e..a244454 100644
--- a/src/ioASCIIGH.h
+++ b/src/ioASCIIGH.h
@@ -45,6 +45,9 @@ typedef struct IOASCIIGH
sp2xyz[maxdim][perpendicular direction] */
int **sp2xyz;
+ /* stop on I/O parameter parsing errors ? */
+ int stop_on_parse_errors;
+
} asciiioGH;
@@ -67,6 +70,10 @@ int IOASCII_Write1D (const cGH *GH, int vindex, const char *alias);
int IOASCII_Write2D (const cGH *GH, int vindex, const char *alias);
int IOASCII_Write3D (const cGH *GH, int vindex, const char *alias);
+void IOASCII_CheckSteerableParameters1D (asciiioGH *myGH);
+void IOASCII_CheckSteerableParameters2D (asciiioGH *myGH);
+void IOASCII_CheckSteerableParameters3D (asciiioGH *myGH);
+
#ifdef __cplusplus
} // extern "C"
#endif