diff options
author | Thomas White <taw@physics.org> | 2010-01-08 16:45:03 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-01-08 16:45:03 +0100 |
commit | b7691bf576bf1d8e0af02d9cede71a2680f2db0d (patch) | |
tree | a75101f47b6f7964ffa72f38ec3681c7210efa42 /src | |
parent | bd26d5745269594647ec79f64fdfb8e750891672 (diff) |
Formatting
Diffstat (limited to 'src')
-rw-r--r-- | src/dirax.c | 11 |
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); |