aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@10716dce-81a3-4424-a2c8-48026a0d3035>2000-11-24 13:25:46 +0000
committertradke <tradke@10716dce-81a3-4424-a2c8-48026a0d3035>2000-11-24 13:25:46 +0000
commit9a243ecf1fe51ea3b486eb352bd534c727998f0a (patch)
tree9fcd8125c7a2290591890f6ed88ab414bc3d08da
parenta6874ecb52e744abb7a8b20a4a19994c1e07b8c0 (diff)
Removed unused include file from IOUtil.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHSlab/trunk@41 10716dce-81a3-4424-a2c8-48026a0d3035
-rw-r--r--src/NewHyperslab.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/NewHyperslab.c b/src/NewHyperslab.c
index 82a6e9f..1922c41 100644
--- a/src/NewHyperslab.c
+++ b/src/NewHyperslab.c
@@ -15,7 +15,6 @@
#include "cctk.h"
#include "cctk_Parameters.h"
-#include "CactusBase/IOUtil/src/ioGH.h"
#include "CactusPUGH/PUGH/src/include/pugh.h"
#include "NewPUGHSlab.h"
@@ -671,8 +670,8 @@ int NewHyperslab_GetHyperslab (cGH *GH, int target_proc, int vindex, int vtimelv
/* FIXME: hack for getting diagonals from 3D variables
This is calling Gerd's CollectData1D() routine which can
- extract non-axis-parallel lines too but is fixed to 3D data. */
- if (errormsg && ! strcmp (errormsg, "Given normal vector isn't axis-parallel"))
+ extract non-orthogonal lines too but is fixed to 3D data. */
+ if (errormsg && ! strcmp (errormsg, "Given normal vector isn't orthogonal"))
{
int length;
@@ -682,7 +681,7 @@ int NewHyperslab_GetHyperslab (cGH *GH, int target_proc, int vindex, int vtimelv
if (hdim != 1 || vinfo.dim != 3)
{
- CCTK_WARN (1, "Non-axis-parallel hyperslabs are supported as 1D lines "
+ CCTK_WARN (1, "Non-orthogonal hyperslabs are supported as 1D lines "
"from 3D variables only");
return (-1);
}
@@ -1074,7 +1073,7 @@ static const char *checkParameters (cGH *GH, int vindex, int vtimelvl,
}
if (num_directions > 1)
{
- return ("Given normal vector isn't axis-parallel");
+ return ("Given normal vector isn't orthogonal");
}
}