aboutsummaryrefslogtreecommitdiff
path: root/src/reproject.c
diff options
context:
space:
mode:
authortaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-09-27 08:53:21 +0000
committertaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-09-27 08:53:21 +0000
commita7d5360db028fc24547ece8e7a4bc49ecfaa8743 (patch)
tree32709dc2efd00932598812373c0120ed3f26d063 /src/reproject.c
parent96c70acb11075f0b06f43f5b054241ac7048d705 (diff)
Further work on previous stuff
git-svn-id: svn://cook.msm.cam.ac.uk:745/diff-tomo/dtr@133 bf6ca9ba-c028-0410-8290-897cf20841d1
Diffstat (limited to 'src/reproject.c')
-rw-r--r--src/reproject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reproject.c b/src/reproject.c
index 0d79900..0971b25 100644
--- a/src/reproject.c
+++ b/src/reproject.c
@@ -48,7 +48,7 @@ ImageReflection *reproject_get_reflections(ImageRecord image, size_t *n, Reflect
kx = nx / image.lambda;
ky = ny / image.lambda;
kz = nz / image.lambda; /* This is the centre of the Ewald sphere */
- reflection_add(ctx->reflectionctx, kx, ky, kz, 1, REFLECTION_VECTOR_MARKER_1);
+ //reflection_add(ctx->reflectionctx, kx, ky, kz, 1, REFLECTION_VECTOR_MARKER_1);
/* Determine where "up" is
* See above. */
@@ -56,7 +56,7 @@ ImageReflection *reproject_get_reflections(ImageRecord image, size_t *n, Reflect
ux = uxt; uy = cos(tilt)*uyt + sin(tilt)*uzt; uz = -sin(tilt)*uyt + cos(tilt)*uzt;
uxt = ux; uyt = uy; uzt = uz;
ux = uxt*cos(-omega) + uyt*-sin(omega); uy = -uxt*sin(omega) + uyt*cos(omega); uz = uzt;
- reflection_add(ctx->reflectionctx, ux*50e9, uy*50e9, uz*50e9, 1, REFLECTION_VECTOR_MARKER_2);
+ //reflection_add(ctx->reflectionctx, ux*50e9, uy*50e9, uz*50e9, 1, REFLECTION_VECTOR_MARKER_2);
do {