aboutsummaryrefslogtreecommitdiff
path: root/src/DumpGH.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/DumpGH.c')
-rw-r--r--src/DumpGH.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/DumpGH.c b/src/DumpGH.c
index dcec1a4..b75ed6b 100644
--- a/src/DumpGH.c
+++ b/src/DumpGH.c
@@ -17,7 +17,7 @@
#include "CactusBase/IOUtil/src/ioGH.h"
#include "CactusPUGH/PUGH/src/include/pugh.h"
#include "CactusBase/IOUtil/src/ioutil_CheckpointRecovery.h"
-#include "BetaThorns/IOHDF5Util/src/ioHDF5UtilGH.h"
+#include "CactusPUGHIO/IOHDF5Util/src/ioHDF5UtilGH.h"
#include "ioStreamedHDF5GH.h"
#ifdef HAVE_SYS_TIME_H
@@ -31,8 +31,8 @@
#endif
/* the rcs ID and its dummy function to use it */
-static const char *rcsid = "$Id$";
-CCTK_FILEVERSION(BetaThorns_IOStreamedHDF5_DumpGH_c)
+static const char *rcsid = "$Header$";
+CCTK_FILEVERSION(CactusPUGHIO_IOStreamedHDF5_DumpGH_c)
/********************************************************************
@@ -104,7 +104,7 @@ void IOStreamedHDF5_EvolutionCheckpoint (const cGH *GH)
((checkpoint_every > 0 && GH->cctk_iteration % checkpoint_every == 0) ||
checkpoint_next))
{
- if (verbose)
+ if (CCTK_Equals (verbose, "full"))
{
CCTK_INFO("------------------------------------------------------------");
CCTK_VInfo (CCTK_THORNSTRING, "Dumping periodic checkpoint file at "
@@ -236,7 +236,7 @@ static int Checkpoint (const cGH *GH, int called_from)
/* now open the file */
if (CCTK_MyProc (GH) == ioUtilGH->ioproc && myGH->checkpoint_socket >= 0)
{
- if (verbose)
+ if (CCTK_Equals (verbose, "full"))
{
CCTK_VInfo (CCTK_THORNSTRING, "Creating checkpoint file");
}
@@ -273,7 +273,7 @@ static int Checkpoint (const cGH *GH, int called_from)
{
if (checkpoint_accept_timeout > 0)
{
- if (verbose)
+ if (CCTK_Equals (verbose, "full"))
{
CCTK_VInfo (CCTK_THORNSTRING, "Waiting %d seconds to send "
"checkpoint file to port %d",
@@ -287,7 +287,7 @@ static int Checkpoint (const cGH *GH, int called_from)
timeout.tv_usec = 0;
select (myGH->checkpoint_socket + 1, &readset, NULL, NULL, &timeout);
}
- if (verbose)
+ if (CCTK_Equals (verbose, "full"))
{
CCTK_VInfo (CCTK_THORNSTRING, "Closing checkpoint file on port %d",
checkpoint_port);