aboutsummaryrefslogtreecommitdiff
path: root/src/DumpGH.c
diff options
context:
space:
mode:
authorallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>1999-07-18 11:35:29 +0000
committerallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>1999-07-18 11:35:29 +0000
commitab7c971ceb848db311af7e57c00e1bf8773add9b (patch)
tree69057de76d2322fb89eea0d1e0c70941725b9638 /src/DumpGH.c
parentbb1c3a9f91c93befd38f29ca22f5c0d954cbf132 (diff)
Changing parameter names for IO. There should be one more change tomorrow,
but then that should be it. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@16 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'src/DumpGH.c')
-rw-r--r--src/DumpGH.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/DumpGH.c b/src/DumpGH.c
index b0290a1..fcedca9 100644
--- a/src/DumpGH.c
+++ b/src/DumpGH.c
@@ -70,7 +70,7 @@ void IOFlexIO_ConditionallyDumpGH (cGH *GH)
if (checkpoint_every > 0 &&
GH->cctk_iteration % checkpoint_every == 0) {
- if (IO_verbose) {
+ if (output_verbose) {
printf ("------------------------------------------------------------\n");
printf ("Dumping periodic checkpoint file at iteration %d\n",
GH->cctk_iteration);
@@ -267,7 +267,7 @@ void IOFlexIO_DumpGH (cGH *GH, int called_from)
/* Now open the file */
if (CCTK_MyProc (GH) == ioUtilGH->ioproc) {
- if (IO_verbose)
+ if (output_verbose)
printf ("Creating file %s\n", tmpfname);
iof = IEEEopen (tmpfname, "w");
if (! IOisValid (iof)) {
@@ -281,17 +281,17 @@ void IOFlexIO_DumpGH (cGH *GH, int called_from)
CactusResetTimer (&write_time);
CactusStartTimer (&write_time);
- if (IO_verbose)
+ if (output_verbose)
printf ("Dumping Params ...\n -- ");
/* first the parameters ... */
if (iof) {
/*** FIXME ***/
#if 0
- if (IO_parameters)
+ if (output3d_parameters)
IOFlexIO_IEEEIOparamDump (iof);
#endif
- if (IO_structures)
+ if (output3d_structures)
IOFlexIO_IEEEIOStructDump (GH, iof);
}
@@ -305,7 +305,7 @@ void IOFlexIO_DumpGH (cGH *GH, int called_from)
CCTK_GroupIndexFromVarI (index)))
continue;
- if (IO_verbose) {
+ if (output_verbose) {
char *varname = CCTK_VarName (index);
printf (" %s", varname);
@@ -330,7 +330,7 @@ void IOFlexIO_DumpGH (cGH *GH, int called_from)
CACTUS_IEEEIO_ERROR (IOclose (iof));
- if (IO_verbose)
+ if (output_verbose)
printf ("\nTime to write: %lf sec (%lf sec per Grid Func)\n",
/*** FIXME: choose right component of basic[] ***/
write_time.total.basic [0],
@@ -371,7 +371,7 @@ void IOFlexIO_DumpGH (cGH *GH, int called_from)
ioUtilGH->downsample_z = old_downsample_z;
CactusStopTimer (&total_time);
- if (IO_verbose) {
+ if (output_verbose) {
/*** FIXME: choose right component of basic[] ***/
printf ("Time to checkpoint: %lf sec\n", total_time.total.basic [0]);
printf ("------------------------------------------------------------\n");