/* * check_hkl.c * * Characterise reflection lists * * Copyright © 2012 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: * 2010-2012 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 #include #include "utils.h" #include "statistics.h" #include "symmetry.h" #include "reflist.h" #include "reflist-utils.h" /* Number of bins for plot of resolution shells */ #define NBINS (10) static void show_help(const char *s) { printf("Syntax: %s [options] \n\n", s); printf( "Characterise an intensity list.\n" "\n" " -h, --help Display this help message.\n" " -y, --symmetry= The symmetry of the input file.\n" " -p, --pdb= PDB file to use.\n" " --rmin= Fix lower resolution limit for resolution shells. (m^-1).\n" " --rmax= Fix upper resolution limit for resolution shells. (m^-1).\n" " --sigma-cutoff= Discard reflections with I/sigma(I) < n.\n" "\n"); } static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym, double rmin_fix, double rmax_fix) { double num[NBINS]; int cts[NBINS]; int possible[NBINS]; unsigned int measurements[NBINS]; unsigned int measured[NBINS]; double total_vol, vol_per_shell; double rmins[NBINS]; double rmaxs[NBINS]; double snr[NBINS]; double mean[NBINS]; double var[NBINS]; double rmin, rmax; signed int h, k, l; int i; FILE *fh; double snr_total = 0; int nrefl = 0; int nmeastot = 0; int nout = 0; int nsilly = 0; Reflection *refl; RefListIterator *iter; RefList *counted; int hmax, kmax, lmax; double asx, asy, asz; double bsx, bsy, bsz; double csx, csy, csz; fh = fopen("shells.dat", "w"); if ( fh == NULL ) { ERROR("Couldn't open 'shells.dat'\n"); return; } for ( i=0; i 0.0 ) rmin = rmin_fix; if ( rmax_fix > 0.0 ) rmax = rmax_fix; total_vol = pow(rmax, 3.0) - pow(rmin, 3.0); vol_per_shell = total_vol / NBINS; rmins[0] = rmin; for ( i=1; irmins[i]) && (d<=rmaxs[i]) ) { bin = i; break; } } if ( bin == -1 ) continue; get_asymm(sym, h, k, l, &hs, &ks, &ls); if ( find_refl(counted, hs, ks, ls) != NULL ) continue; add_refl(counted, hs, ks, ls); possible[bin]++; } } } reflist_free(counted); /* Calculate means */ for ( refl = first_refl(list, &iter); refl != NULL; refl = next_refl(refl, iter) ) { signed int h, k, l; double d, val, esd; int bin; int j; get_indices(refl, &h, &k, &l); d = resolution(cell, h, k, l) * 2.0; val = get_intensity(refl); esd = get_esd_intensity(refl); bin = -1; for ( j=0; jrmins[j]) && (d<=rmaxs[j]) ) { bin = j; break; } } if ( bin == -1 ) continue; if ( !isfinite(val/esd) ) { nsilly++; continue; } measured[bin]++; mean[bin] += get_intensity(refl); } for ( i=0; irmins[j]) && (d<=rmaxs[j]) ) { bin = j; break; } } if ( bin == -1 ) { nout++; continue; } if ( !isfinite(val/esd) ) continue; /* measured[bin] was done earlier */ measurements[bin] += get_redundancy(refl); snr[bin] += val / esd; snr_total += val / esd; nrefl++; nmeastot += get_redundancy(refl); var[bin] += pow(val-mean[bin], 2.0); } STATUS("overall = %f\n", snr_total/(double)nrefl); STATUS("%i measurements in total.\n", nmeastot); STATUS("%i reflections in total.\n", nrefl); if ( nout ) { STATUS("Warning; %i reflections outside resolution range.\n", nout); } if ( nsilly ) { STATUS("Warning; %i reflections had infinite or invalid values" " of I/sigma(I).\n", nsilly); } fprintf(fh, "1/d centre # refs Possible Compl " "Meas Red SNR Std dev Mean\n"); for ( i=0; i