aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2015-07-08 14:00:16 +0200
committerThomas White <taw@physics.org>2015-07-08 15:58:48 +0200
commit3638ffdee226e248c351362fed7fdc213d4d39b0 (patch)
tree24bf7d02ea6d6df811af3640ef7f9989b2eaba71 /tests
parentcc42a8ac8d210527411ce811eb960264d4d8ad1e (diff)
Remove unnecessary calculations from prediction refinement
Diffstat (limited to 'tests')
-rw-r--r--tests/prediction_gradient_check.c38
1 files changed, 21 insertions, 17 deletions
diff --git a/tests/prediction_gradient_check.c b/tests/prediction_gradient_check.c
index 18c9f023..c5d4206b 100644
--- a/tests/prediction_gradient_check.c
+++ b/tests/prediction_gradient_check.c
@@ -41,12 +41,24 @@
#include <cell-utils.h>
#include <geometry.h>
#include <reflist.h>
-#include "../src/predict-refine.c"
int checkrxy;
+static void twod_mapping(double fs, double ss, double *px, double *py,
+ struct panel *p)
+{
+ double xs, ys;
+
+ xs = fs*p->fsx + ss*p->ssx;
+ ys = fs*p->fsy + ss*p->ssy;
+
+ *px = (xs + p->cnx) / p->res;
+ *py = (ys + p->cny) / p->res;
+}
+
+
static void scan(RefList *reflections, RefList *compare,
int *valid, long double *vals[3], int idx)
{
@@ -260,7 +272,6 @@ static double test_gradients(Crystal *cr, double incr_val, int refine,
long double grad1, grad2, grad;
double cgrad;
signed int h, k, l;
- struct reflpeak rp;
get_indices(refl, &h, &k, &l);
@@ -283,27 +294,20 @@ static double test_gradients(Crystal *cr, double incr_val, int refine,
} else {
- struct imagefeature pk;
struct image *image;
- pk.fs = 0.0;
- pk.ss = 0.0;
-
image = crystal_get_image(cr);
- rp.refl = refl;
- rp.peak = &pk;
- rp.panel = &image->det->panels[0];
if ( checkrxy == 1 ) {
- cgrad = x_gradient(refine, &rp,
- crystal_get_image(cr)->det,
- crystal_get_image(cr)->lambda,
- crystal_get_cell(cr));
+ cgrad = x_gradient(refine, refl,
+ crystal_get_cell(cr),
+ &image->det->panels[0],
+ crystal_get_image(cr)->lambda);
} else {
- cgrad = y_gradient(refine, &rp,
- crystal_get_image(cr)->det,
- crystal_get_image(cr)->lambda,
- crystal_get_cell(cr));
+ cgrad = y_gradient(refine, refl,
+ crystal_get_cell(cr),
+ &image->det->panels[0],
+ crystal_get_image(cr)->lambda);
}
}