aboutsummaryrefslogtreecommitdiff
path: root/src/gr/AHFinderDirect.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-07-08 13:56:07 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-07-08 13:56:07 +0000
commit14ae6196a829340bafc46c20f589c9c64a1c8e86 (patch)
tree91994bca78bc1d342246ab303ae297632077c1f3 /src/gr/AHFinderDirect.hh
parent4a2fc5d2e9bb72b321e27af96f6d5a2f91c6dd4b (diff)
start adding Jadcobian support --> not working yet
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@618 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/gr/AHFinderDirect.hh')
-rw-r--r--src/gr/AHFinderDirect.hh17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/gr/AHFinderDirect.hh b/src/gr/AHFinderDirect.hh
index 59dacb8..8bd0225 100644
--- a/src/gr/AHFinderDirect.hh
+++ b/src/gr/AHFinderDirect.hh
@@ -21,10 +21,11 @@ struct geometry_interpolator_info
//
// This structure holds all the information we need about the Cactus grid
-// and gridfns outside the top-level driver. At present we use
-// CCTK_InterpLocalUniform()
-// to access the Cactus gridfns, and much of this information is specific
-// to that API.
+// and gridfns outside the top-level driver. At present we use the
+// CCTK_InterpLocalUniform() local interpolator to access the Cactus
+// gridfns. Much of the information in this structure is specific to
+// that API, and (alas) will need changing when we eventually switch to
+// a "global" multiprocessor/distributed interpolator.
//
struct cactus_grid_info
{
@@ -67,4 +68,10 @@ extern "C"
// horizon_function.cc
void horizon_function(patch_system& ps,
const struct cactus_grid_info& cgi,
- const struct geometry_interpolator_info& gii);
+ const struct geometry_interpolator_info& gii,
+ bool Jacobian_flag);
+
+// horizon_Jacobian.cc
+class Jacobian;
+void horizon_Jacobian(const patch_system& ps,
+ Jacobian& Jac);