aboutsummaryrefslogtreecommitdiff
path: root/interface.ccl
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-02-15 18:43:08 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-02-15 18:43:08 +0000
commit04ed769ddfacb1d6f5faedb66d3ff8d512ede7d4 (patch)
tree46da01705f245a4b7118b7e78be42c2b5ddb4ebc /interface.ccl
parent644e9be13cfc020e7bc3777b4c71c5f535943716 (diff)
* major changes to driver routines to find multiple horizons in parallel
across multiple processors -- see src/driver/README.parallel for details * drop convergence checks on ||Delta_h|| in param.ccl because they don't fit well with parallelization changes ==> With this changes, AHFinderDirect is now (I think) multiprocessor-ready!! git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@946 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'interface.ccl')
-rw-r--r--interface.ccl50
1 files changed, 25 insertions, 25 deletions
diff --git a/interface.ccl b/interface.ccl
index 8e2dfe6..fd71fbc 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -12,28 +12,28 @@ inherits: Grid ADMBase StaticConformal
#
protected:
-#
-# all the remaining diagnostics are arrays subscripted by the
-# (1-origin) horizon number hn ; subscript 0 is unused
-#
-int BH_diagnostics__int TYPE=array DIM=1 SIZE=N_horizons+1 \
- DISTRIB=constant TIMELEVELS=1
-{
-# this is a Boolean flag: 0=false, 1=true
-AH_found # was this AH found the last time we searched for it?
- # (if this thorn is active, we search at each time step)
-} "CCTK_INT diagnostics calculated for each apparent horizon found"
-
-#
-# these diagnostics are only defined for those apparent horizons
-# where AH_found[hn] is true
-#
-real BH_diagnostics__real TYPE=array DIM=1 SIZE=N_horizons+1 \
- DISTRIB=constant TIMELEVELS=1
-{
-# FIXME: it would be nice to gather these together in some way
-centroid_x, centroid_y, centroid_z # centroid position
-
-area # area of apparent horizon
-m_irreducible # irreducible mass = sqrt(area/(16*pi))
-} "CCTK_REAL diagnostics calculated for each apparent horizon found"
+###
+### all the remaining diagnostics are arrays subscripted by the
+### (1-origin) horizon number hn ; subscript 0 is unused
+###
+##int BH_diagnostics__int TYPE=array DIM=1 SIZE=N_horizons+1 \
+## DISTRIB=constant TIMELEVELS=1
+##{
+### this is a Boolean flag: 0=false, 1=true
+##AH_found # was this AH found the last time we searched for it?
+## # (if this thorn is active, we search at each time step)
+##} "CCTK_INT diagnostics calculated for each apparent horizon found"
+##
+###
+### these diagnostics are only defined for those apparent horizons
+### where AH_found[hn] is true
+###
+##real BH_diagnostics__real TYPE=array DIM=1 SIZE=N_horizons+1 \
+## DISTRIB=constant TIMELEVELS=1
+##{
+### FIXME: it would be nice to gather these together in some way
+##centroid_x, centroid_y, centroid_z # centroid position
+##
+##area # area of apparent horizon
+##m_irreducible # irreducible mass = sqrt(area/(16*pi))
+##} "CCTK_REAL diagnostics calculated for each apparent horizon found"