aboutsummaryrefslogtreecommitdiff
path: root/src/NuSurfacer.h
diff options
context:
space:
mode:
authorjshalf <jshalf@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2000-10-07 05:09:03 +0000
committerjshalf <jshalf@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2000-10-07 05:09:03 +0000
commite626a0effb3f657a36f2c9be6f80149814d620f3 (patch)
tree9941e00d1fe5c47c4aeb472e14256df4028ad5f2 /src/NuSurfacer.h
parenta56d13efe4ca5ae5ec16daf48a1842e61de89109 (diff)
OK,
it builds... Isn't carefully tested, but at least it builds. I got rid of an awful lot of extraneous crap and in particular *all* of the static global variables. We can add crap back when its clear that it is a necessity. For some reason CCTK_INT8 was an unrecognized type in the build. You might want to add that back to the Socket.c if its clear why this type was not recognized. This only affects the subroutine IsoWriteDataToClients() git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IsoSurfacer/trunk@7 bfcf8e34-485d-4d46-a995-1fd6fa6fb178
Diffstat (limited to 'src/NuSurfacer.h')
-rw-r--r--src/NuSurfacer.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/NuSurfacer.h b/src/NuSurfacer.h
index 8636c60..f5c5c29 100644
--- a/src/NuSurfacer.h
+++ b/src/NuSurfacer.h
@@ -1,7 +1,10 @@
#ifndef _NUSURFACER_H_
#define _NUSURFACER_H_
-#include "common.h"
-void NuFindSurface(cGH *gh, int index,CCTK_REAL isovalue,polypatch *results);
+#include "IsoSurfacerGH.h"
+void NuFindSurface(CCTK_REAL *data,
+ int nx,int ny,int nz,
+ CCTK_REAL *xcoords, CCTK_REAL *ycoords, CCTK_REAL *zcoords,
+ CCTK_REAL isovalue, polypatch *results);
#endif