aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-07-04 14:36:55 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-07-04 14:36:55 +0000
commit48a4a467fc0bd8cced3bb07788ffcbb0bf482e8f (patch)
tree8f97964664f4969ef0eb1f5f9f64ecbaaf0fd51e
parentfdc44a58702cb0deccd6030d65f8e87a88ed4e51 (diff)
COPYING newest version of GPL text (from gcc 3.3)
param.ccl schedule.ccl drop obselete find_AHs_at{poststep,postinitial} parameters git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1117 f88db872-0e4f-0410-b76b-b9085cfa78c5
-rw-r--r--COPYING4
-rw-r--r--param.ccl16
-rw-r--r--schedule.ccl10
3 files changed, 12 insertions, 18 deletions
diff --git a/COPYING b/COPYING
index 5b6e7c6..d60c31a 100644
--- a/COPYING
+++ b/COPYING
@@ -2,7 +2,7 @@
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
@@ -313,7 +313,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
- Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
diff --git a/param.ccl b/param.ccl
index df61516..415358c 100644
--- a/param.ccl
+++ b/param.ccl
@@ -30,13 +30,8 @@ private:
# ***** overall parameters *****
#
-boolean find_AHs_at_postinitial \
- "should we try to find apparent horizons at CCTK_POSTINITIAL?"
-{
-} "true"
-
-boolean find_AHs_at_poststep \
- "should we try to find apparent horizons at CCTK_POSTSTEP?"
+# set this to (try to) find apparent horizons at every time step
+boolean find_AHs "should we try to find apparent horizons?"
{
} "true"
@@ -951,6 +946,13 @@ string geometry_interpolator_name \
.+ :: "any string"
} "Hermite polynomial interpolation"
+#
+# The defaults here are set up for 3rd order Hermite interpolation,
+# which requires driver::ghost_size >= 3. If you want to run with
+# driver::ghost_size == 2, you need to lower the interpolation order
+# to 2; see par/misner-ghost2-mask-noshrink.par for an example of
+# how to do this.
+#
string geometry_interpolator_pars \
"parameters for the geometry interpolator"
{
diff --git a/schedule.ccl b/schedule.ccl
index 6e23cde..41e54ec 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -7,15 +7,7 @@ schedule AHFinderDirect_setup at CCTK_BASEGRID after SpatialCoordinates
options: global
} "setup data structures"
-if (find_AHs_at_postinitial != 0)
- {
- schedule AHFinderDirect_find_horizons at CCTK_POSTINITIAL
- {
- lang: C
- options: global
- } "find apparent horizon(s) in initial data"
- }
-if (find_AHs_at_poststep != 0)
+if (find_AHs != 0)
{
schedule AHFinderDirect_find_horizons at CCTK_POSTSTEP
{