/* * predict-refine.c * * Prediction refinement * * Copyright © 2012-2015 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: * 2010-2015 Thomas White * * This file is part of CrystFEL. * * CrystFEL is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * CrystFEL is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with CrystFEL. If not, see . * */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include #include "image.h" #include "geometry.h" #include "cell-utils.h" /* Maximum number of iterations of NLSq to do for each image per macrocycle. */ #define MAX_CYCLES (10) /* Weighting of excitation error term (m^-1) compared to position term (m) */ #define EXC_WEIGHT (4e-20) struct reflpeak { Reflection *refl; struct imagefeature *peak; double Ih; /* normalised */ struct panel *panel; /* panel the reflection appears on * (we assume this never changes) */ }; static int pair_peaks(ImageFeatureList *flist, UnitCell *cell, RefList *reflist, struct reflpeak *rps, struct detector *det) { int i; const double min_dist = 0.05; int n_acc = 0; int n_notintegrated = 0; for ( i=0; irx * ax + f->ry * ay + f->rz * az; kd = f->rx * bx + f->ry * by + f->rz * bz; ld = f->rx * cx + f->ry * cy + f->rz * cz; h = lrint(hd); k = lrint(kd); l = lrint(ld); /* Check distance */ if ( (fabs(h - hd) < min_dist) && (fabs(k - kd) < min_dist) && (fabs(l - ld) < min_dist) ) { Reflection *refl; /* Dig out the reflection */ refl = find_refl(reflist, h, k, l); if ( refl == NULL ) { n_notintegrated++; continue; } rps[n_acc].refl = refl; rps[n_acc].peak = f; rps[n_acc].panel = find_panel(det, f->fs, f->ss); n_acc++; } } return n_acc; } 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; } /* Returns d(xh-xpk)/dP + d(yh-ypk)/dP, where P = any parameter */ static double x_gradient(int param, struct reflpeak *rp, struct detector *det, double lambda, UnitCell *cell) { signed int h, k, l; double xpk, ypk, xh, yh; double fsh, ssh; double tt, clen, azi, azf; twod_mapping(rp->peak->fs, rp->peak->ss, &xpk, &ypk, rp->panel); get_detector_pos(rp->refl, &fsh, &ssh); twod_mapping(fsh, ssh, &xh, &yh, rp->panel); get_indices(rp->refl, &h, &k, &l); tt = asin(lambda * resolution(cell, h, k, l)); clen = rp->panel->clen; azi = atan2(yh, xh); azf = 2.0*cos(azi); /* FIXME: Why factor of 2? */ switch ( param ) { case GPARAM_ASX : return h * lambda * clen / cos(tt); case GPARAM_BSX : return k * lambda * clen / cos(tt); case GPARAM_CSX : return l * lambda * clen / cos(tt); case GPARAM_ASY : return 0.0; case GPARAM_BSY : return 0.0; case GPARAM_CSY : return 0.0; case GPARAM_ASZ : return -h * lambda * clen * azf * sin(tt) / (cos(tt)*cos(tt)); case GPARAM_BSZ : return -k * lambda * clen * azf * sin(tt) / (cos(tt)*cos(tt)); case GPARAM_CSZ : return -l * lambda * clen * azf * sin(tt) / (cos(tt)*cos(tt)); } ERROR("Positional gradient requested for parameter %i?\n", param); abort(); } /* Returns d(yh-ypk)/dP, where P = any parameter */ static double y_gradient(int param, struct reflpeak *rp, struct detector *det, double lambda, UnitCell *cell) { signed int h, k, l; double xpk, ypk, xh, yh; double fsh, ssh; double tt, clen, azi, azf; twod_mapping(rp->peak->fs, rp->peak->ss, &xpk, &ypk, rp->panel); get_detector_pos(rp->refl, &fsh, &ssh); twod_mapping(fsh, ssh, &xh, &yh, rp->panel); get_indices(rp->refl, &h, &k, &l); tt = asin(lambda * resolution(cell, h, k, l)); clen = rp->panel->clen; azi = atan2(yh, xh); azf = 2.0*sin(azi); /* FIXME: Why factor of 2? */ switch ( param ) { case GPARAM_ASX : return 0.0; case GPARAM_BSX : return 0.0; case GPARAM_CSX : return 0.0; case GPARAM_ASY : return h * lambda * clen / cos(tt); case GPARAM_BSY : return k * lambda * clen / cos(tt); case GPARAM_CSY : return l * lambda * clen / cos(tt); case GPARAM_ASZ : return -h * lambda * clen * azf * sin(tt) / (cos(tt)*cos(tt)); case GPARAM_BSZ : return -k * lambda * clen * azf * sin(tt) / (cos(tt)*cos(tt)); case GPARAM_CSZ : return -l * lambda * clen * azf * sin(tt) / (cos(tt)*cos(tt)); } ERROR("Positional gradient requested for parameter %i?\n", param); abort(); } static double r_dev(struct reflpeak *rp) { /* Excitation error term */ double rlow, rhigh, p; get_partial(rp->refl, &rlow, &rhigh, &p); return (rlow+rhigh)/2.0; } static double x_dev(struct reflpeak *rp, struct detector *det) { /* Peak position term */ double xpk, ypk, xh, yh; double fsh, ssh; twod_mapping(rp->peak->fs, rp->peak->ss, &xpk, &ypk, rp->panel); get_detector_pos(rp->refl, &fsh, &ssh); twod_mapping(fsh, ssh, &xh, &yh, rp->panel); return xh-xpk; } static double y_dev(struct reflpeak *rp, struct detector *det) { /* Peak position term */ double xpk, ypk, xh, yh; double fsh, ssh; twod_mapping(rp->peak->fs, rp->peak->ss, &xpk, &ypk, rp->panel); get_detector_pos(rp->refl, &fsh, &ssh); twod_mapping(fsh, ssh, &xh, &yh, rp->panel); return yh-ypk; } static int iterate(struct reflpeak *rps, int n, UnitCell *cell, struct image *image) { int i; gsl_matrix *M; gsl_vector *v; gsl_vector *shifts; double asx, asy, asz; double bsx, bsy, bsz; double csx, csy, csz; /* Number of parameters to refine */ M = gsl_matrix_calloc(9, 9); v = gsl_vector_calloc(9); for ( i=0; i k ) continue; M_c = w * gradients[g] * gradients[k]; M_curr = gsl_matrix_get(M, k, g); gsl_matrix_set(M, k, g, M_curr + M_c); gsl_matrix_set(M, g, k, M_curr + M_c); } v_c = w * r_dev(&rps[i]); v_c *= -gradients[k]; v_curr = gsl_vector_get(v, k); gsl_vector_set(v, k, v_curr + v_c); } /* Positional x terms */ for ( k=0; k<9; k++ ) { gradients[k] = x_gradient(k, &rps[i], image->det, image->lambda, cell); } for ( k=0; k<9; k++ ) { int g; double v_c, v_curr; for ( g=0; g<9; g++ ) { double M_c, M_curr; /* Matrix is symmetric */ if ( g > k ) continue; M_c = gradients[g] * gradients[k]; M_curr = gsl_matrix_get(M, k, g); gsl_matrix_set(M, k, g, M_curr + M_c); gsl_matrix_set(M, g, k, M_curr + M_c); } v_c = x_dev(&rps[i], image->det); v_c *= -gradients[k]; v_curr = gsl_vector_get(v, k); gsl_vector_set(v, k, v_curr + v_c); } /* Positional y terms */ for ( k=0; k<9; k++ ) { gradients[k] = y_gradient(k, &rps[i], image->det, image->lambda, cell); } for ( k=0; k<9; k++ ) { int g; double v_c, v_curr; for ( g=0; g<9; g++ ) { double M_c, M_curr; /* Matrix is symmetric */ if ( g > k ) continue; M_c = gradients[g] * gradients[k]; M_curr = gsl_matrix_get(M, k, g); gsl_matrix_set(M, k, g, M_curr + M_c); gsl_matrix_set(M, g, k, M_curr + M_c); } v_c = y_dev(&rps[i], image->det); v_c *= -gradients[k]; v_curr = gsl_vector_get(v, k); gsl_vector_set(v, k, v_curr + v_c); } } //show_matrix_eqn(M, v); shifts = solve_svd(v, M, NULL, 0); for ( i=0; i<9; i++ ) { // STATUS("Shift %i = %e\n", i, gsl_vector_get(shifts, i)); } /* Apply shifts */ cell_get_reciprocal(cell, &asx, &asy, &asz, &bsx, &bsy, &bsz, &csx, &csy, &csz); asx += gsl_vector_get(shifts, 0); asy += gsl_vector_get(shifts, 1); asz += gsl_vector_get(shifts, 2); bsx += gsl_vector_get(shifts, 3); bsy += gsl_vector_get(shifts, 4); bsz += gsl_vector_get(shifts, 5); csx += gsl_vector_get(shifts, 6); csy += gsl_vector_get(shifts, 7); csz += gsl_vector_get(shifts, 8); cell_set_reciprocal(cell, asx, asy, asz, bsx, bsy, bsz, csx, csy, csz); gsl_vector_free(shifts); gsl_matrix_free(M); gsl_vector_free(v); return 0; } static double residual(struct reflpeak *rps, int n, struct detector *det) { int i; double res = 0.0; double r; r = 0.0; for ( i=0; ifeatures) * sizeof(struct reflpeak)); if ( rps == NULL ) return 1; n = pair_peaks(image->features, crystal_get_cell(cr), crystal_get_reflections(cr), rps, image->det); if ( n < 10 ) { ERROR("Too few paired peaks to refine orientation.\n"); free(rps); return 1; } /* Normalise the intensities to max 1 */ max_I = -INFINITY; for ( i=0; iintensity; if ( cur_I > max_I ) max_I = cur_I; } if ( max_I <= 0.0 ) { ERROR("All peaks negative?\n"); free(rps); return 1; } for ( i=0; iintensity / max_I; } /* Refine */ for ( i=0; i