aboutsummaryrefslogtreecommitdiff
path: root/src/dirax.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-01-08 16:45:03 +0100
committerThomas White <taw@physics.org>2010-01-08 16:45:03 +0100
commitb7691bf576bf1d8e0af02d9cede71a2680f2db0d (patch)
treea75101f47b6f7964ffa72f38ec3681c7210efa42 /src/dirax.c
parentbd26d5745269594647ec79f64fdfb8e750891672 (diff)
Formatting
Diffstat (limited to 'src/dirax.c')
-rw-r--r--src/dirax.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/dirax.c b/src/dirax.c
index c1794764..634a37e9 100644
--- a/src/dirax.c
+++ b/src/dirax.c
@@ -339,10 +339,6 @@ static int map_position(struct image *image, double x, double y,
/* Convert pixels to metres */
x /= image->resolution;
- y /= image->resolution;
- x = x * k / image->camera_len;
- y = y * k / image->camera_len;
- x /= image->resolution;
y /= image->resolution; /* Convert pixels to metres */
d = sqrt((x*x) + (y*y));
theta = atan2(d, image->camera_len);
@@ -350,8 +346,6 @@ static int map_position(struct image *image, double x, double y,
} else if (image->fmode == FORMULATION_PIXELSIZE ) {
/* Convert pixels to metres^-1 */
- x = x * image->pixel_size;
- y = y * image->pixel_size;
x *= image->pixel_size;
y *= image->pixel_size; /* Convert pixels to metres^-1 */
d = sqrt((x*x) + (y*y));
@@ -377,7 +371,7 @@ static int map_position(struct image *image, double x, double y,
static void search_peaks(struct image *image)
{
FILE *fh;
- int x, y, width;
+ int x, y, width, height;
int16_t *data;
fh = fopen("xfel.drx", "w");
@@ -389,6 +383,7 @@ static void search_peaks(struct image *image)
data = image->data;
width = image->width;
+ height = image->height;
for ( x=1; x<image->width-1; x++ ) {
for ( y=1; y<image->height-1; y++ ) {
@@ -426,7 +421,7 @@ static void search_peaks(struct image *image)
did_something = 0;
for ( sy=biggest(mask_y-PEAK_WINDOW_SIZE/2, 0);
- sy<smallest(mask_y+PEAK_WINDOW_SIZE/2, image->height);
+ sy<smallest(mask_y+PEAK_WINDOW_SIZE/2, height);
sy++ ) {
for ( sx=biggest(mask_x-PEAK_WINDOW_SIZE/2, 0);
sx<smallest(mask_x+PEAK_WINDOW_SIZE/2, width);