aboutsummaryrefslogtreecommitdiff
path: root/src/maskvalues.h
diff options
context:
space:
mode:
authormiguel <miguel@f75ba9e5-694f-0410-ac2c-87ea7ce7132b>2001-03-29 16:02:03 +0000
committermiguel <miguel@f75ba9e5-694f-0410-ac2c-87ea7ce7132b>2001-03-29 16:02:03 +0000
commit081df995153f249fc86c04972692d43b2f7450dd (patch)
treeb98e9ca18a5bbdddae4a37e6d6c2767ace87210a /src/maskvalues.h
parent60fbb40f73b2b7393881cd557aa7deffc59120fe (diff)
Removed the original file that handled extrapolation directly.
There are now three files for three purposes: findboundary takes a mask with only 0s and 1s and marks the boundary with 0.5s. findnormals takes a mask where the boundary has been marked and returns the normal directions to the mask for these locations. extrapolate takes a mask the normals and extrapolates a grid function. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinEvolve/LegoExcision/trunk@6 f75ba9e5-694f-0410-ac2c-87ea7ce7132b
Diffstat (limited to 'src/maskvalues.h')
-rw-r--r--src/maskvalues.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/maskvalues.h b/src/maskvalues.h
new file mode 100644
index 0000000..c2822f2
--- /dev/null
+++ b/src/maskvalues.h
@@ -0,0 +1,8 @@
+/* -*-f90-*- */
+/* $Header$ */
+
+/* Values of the mask */
+
+#define MASK_EXCISED 0
+#define MASK_BOUNDARY 0.5
+#define MASK_ACTIVE 1