aboutsummaryrefslogtreecommitdiff
path: root/src/patch
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-22 15:17:09 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-22 15:17:09 +0000
commitf37d988f03cacf03cec3c8da10a9394cb0c87af9 (patch)
treeca9abc947a49f36c520ea55972ba37ab13dd7a52 /src/patch
parent6415d56d484329f6e77825658ba632b84ea0f259 (diff)
fix *another* botch in last commit
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@578 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch')
-rw-r--r--src/patch/coords.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/patch/coords.cc b/src/patch/coords.cc
index dfacfac..af32552 100644
--- a/src/patch/coords.cc
+++ b/src/patch/coords.cc
@@ -431,7 +431,7 @@ assert( fuzzy_EQ_ang(phi, ps_phi) );
namespace local_coords
{
-void xcos_ycos_zcos_of_mu_nu (fp mu, fp nu , fp& xcos, fp& ycos, fp& zcos)
+void xyzcos_of_mu_nu (fp mu, fp nu , fp& xcos, fp& ycos, fp& zcos)
{
xyz_of_r_mu_nu(1.0,mu,nu, xcos,ycos,zcos);
}
@@ -439,7 +439,7 @@ xyz_of_r_mu_nu(1.0,mu,nu, xcos,ycos,zcos);
namespace local_coords
{
-void xcos_ycos_zcos_of_mu_phi(fp mu, fp phi, fp& xcos, fp& ycos, fp& zcos)
+void xyzcos_of_mu_phi(fp mu, fp phi, fp& xcos, fp& ycos, fp& zcos)
{
xyz_of_r_mu_phi(1.0,mu,phi, xcos,ycos,zcos);
}
@@ -447,7 +447,7 @@ xyz_of_r_mu_phi(1.0,mu,phi, xcos,ycos,zcos);
namespace local_coords
{
-void xcos_ycos_zcos_of_nu_phi(fp nu, fp phi, fp& xcos, fp& ycos, fp& zcos)
+void xyzcos_of_nu_phi(fp nu, fp phi, fp& xcos, fp& ycos, fp& zcos)
{
xyz_of_r_nu_phi(1.0,nu,phi, xcos,ycos,zcos);
}