aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2008-08-12 16:40:02 +0000
committertaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2008-08-12 16:40:02 +0000
commit87335ef7bc9016ea1e5386599932e28c1d8926f0 (patch)
treed8cf32d563e3c77469da64b3d2fcf532e7636553
parent4ea397e11edfb5ef711e52a0d4088943df052d7b (diff)
Remove debug message
git-svn-id: svn://cook.msm.cam.ac.uk:745/diff-tomo/dtr@286 bf6ca9ba-c028-0410-8290-897cf20841d1
-rw-r--r--src/reproject.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/reproject.c b/src/reproject.c
index d071f9c..439c2f7 100644
--- a/src/reproject.c
+++ b/src/reproject.c
@@ -96,7 +96,6 @@ ImageFeatureList *reproject_get_reflections(ImageRecord *image, ReflectionList *
a = 1.0;
b = -2.0*(xl*nx + yl*ny + zl*nz);
c = xl*xl + yl*yl + zl*zl - 1.0/(image->lambda*image->lambda); /* FIXME: Don't think this is stable */
- printf("%e %e\n", xl*xl + yl*yl + zl*zl, 1.0/(image->lambda*image->lambda));
/* Solve the quadratic equation */
temp = -0.5 * (b + sign(b)*sqrt(b*b - 4*a*c));
A1 = temp / a;