aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-09-09 14:33:01 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-09-09 14:33:01 +0000
commit906af66cbd514e2a5805a2f4ebd6fc1dde26976e (patch)
tree233402f75d04f88449961a3077329504d313dd20
parentb52b22d5f248b6eff727254c0491b8c0559a73e2 (diff)
fix z_patch::dpx_of_irho_isigma()
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@306 f88db872-0e4f-0410-b76b-b9085cfa78c5
-rw-r--r--src/patch/patch.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/patch/patch.hh b/src/patch/patch.hh
index 88eeb25..d86457e 100644
--- a/src/patch/patch.hh
+++ b/src/patch/patch.hh
@@ -468,7 +468,7 @@ public:
const fp dnu = jtutil::degrees_of_radians(
sigma_of_isigma(isigma)
);
- return is_plus() ? dnu : 180.0 - dnu;
+ return is_plus() ? dnu : 360.0 - dnu;
}
fp dpy_of_irho_isigma(int irho, int sigma) const
{