aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-02-05 16:04:38 +0100
committerThomas White <taw@physics.org>2021-02-05 16:05:56 +0100
commit04ce5c5c98df8b2d92e8646f8b82e3975f69b50a (patch)
treea0ab357ac585eea949d9b0aeca8bf2a518994020 /src
parentb61283524a7c9e4ec61d8d2bd2d24358df06c062 (diff)
check_hkl: Remove standard deviation of intensity
It would've been difficult to calculate this in the new unified FoM API, and the figure is completely useless anyway. If you disagree with both of the above statements, please get in touch!
Diffstat (limited to 'src')
-rw-r--r--src/check_hkl.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/check_hkl.c b/src/check_hkl.c
index d95fc51f..545650af 100644
--- a/src/check_hkl.c
+++ b/src/check_hkl.c
@@ -399,7 +399,6 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym,
struct fom_context *red_ctx;
struct fom_context *snr_ctx;
struct fom_context *mean_ctx;
- struct fom_context *stddev_ctx;
struct fom_context *compl_ctx;
fh = fopen(shell_file, "w");
@@ -427,8 +426,6 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym,
FOM_SNR, 0, sym);
mean_ctx = fom_calculate(list, NULL, cell, shells,
FOM_MEAN_INTENSITY, 0, sym);
- stddev_ctx = fom_calculate(list, NULL, cell, shells,
- FOM_STDDEV_INTENSITY, 0, sym);
compl_ctx = fom_calculate(list, NULL, cell, shells,
FOM_COMPLETENESS, 0, sym);
@@ -445,7 +442,7 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym,
100.0*fom_overall_value(compl_ctx));
fprintf(fh, "Center 1/nm # refs Possible Compl "
- "Meas Red SNR Std dev Mean d(A) "
+ "Meas Red SNR Mean I d(A) "
"Min 1/nm Max 1/nm\n");
for ( i=0; i<nshells; i++ ) {
@@ -455,7 +452,7 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym,
possible = fom_shell_num_possible(compl_ctx, i);
fprintf(fh, "%10.3f %8li %8li %6.2f %10.0f %5.1f"
- " %5.2f %10.2f %10.2f %8.2f %10.3f %10.3f\n",
+ " %5.2f %10.2f %8.2f %10.3f %10.3f\n",
fom_shell_centre(shells, i)*1.0e-9,
measured,
possible,
@@ -463,7 +460,6 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym,
fom_shell_value(nmeas_ctx, i),
fom_shell_value(red_ctx, i),
fom_shell_value(snr_ctx, i),
- fom_shell_value(stddev_ctx, i),
fom_shell_value(mean_ctx, i),
(1.0/fom_shell_centre(shells, i))*1e10,
shells->rmins[i]*1.0e-9,