aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjshalf <jshalf@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2000-10-07 05:10:00 +0000
committerjshalf <jshalf@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2000-10-07 05:10:00 +0000
commit0544d752403aedf035e7ccd3ac9bccf8410877d2 (patch)
tree6f5373a1c3453c38aa26d3414879158317ba86e6
parente626a0effb3f657a36f2c9be6f80149814d620f3 (diff)
No longer needed. The isosurfacerGH supercedes the garden of
datastructures we originally had. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IsoSurfacer/trunk@8 bfcf8e34-485d-4d46-a995-1fd6fa6fb178
-rw-r--r--src/common.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/common.h b/src/common.h
deleted file mode 100644
index f4bb8a7..0000000
--- a/src/common.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef _COMMON_H
-#define _COMMON_H
-
-#include "cctk.h"
-
-
-typedef struct
-{
- isofl isovalue;
- char *outfname;
- CCTK_INT4 outtype;
- CCTK_INT4 step;
- CCTK_INT4 doRemoveDuplicateVertices;
- CCTK_INT4 useTree;
- CCTK_INT4 doEliminateSmallTriangles;
-
-// CCTK_INT4 timestep; timestep information is really not required here!
- isofl minval; // need to use cactus collective ops for this
- isofl maxval;
-} par_st;
-
-
-typedef struct GridAll_st
-{
- cGH *GH;
- int gfi;
- int timelevel;
- CCTK_REAL *x, *y, *z;
-} GridAll_st;
-
-#endif