aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2013-11-21 16:17:07 -0800
committerThomas White <taw@physics.org>2013-11-23 02:52:51 -0800
commit0ad145205c9bf405e6142f3b67a54c6f58ae1eb8 (patch)
treee17e00c868cde0a96c2b4035bbdd22277a3cecef
parent2aa38b31c07e0c4fbac47f95cb1a72d3d2dd6d91 (diff)
Add Histogram, and plot integration test results
-rw-r--r--libcrystfel/Makefile.am6
-rw-r--r--libcrystfel/src/histogram.c234
-rw-r--r--libcrystfel/src/histogram.h45
-rw-r--r--tests/integration_check.c15
4 files changed, 294 insertions, 6 deletions
diff --git a/libcrystfel/Makefile.am b/libcrystfel/Makefile.am
index 2812fa52..af8e36f8 100644
--- a/libcrystfel/Makefile.am
+++ b/libcrystfel/Makefile.am
@@ -9,7 +9,8 @@ libcrystfel_la_SOURCES = src/reflist.c src/utils.c src/cell.c src/detector.c \
src/reflist-utils.c src/filters.c \
src/render.c src/index.c src/dirax.c src/mosflm.c \
src/cell-utils.c src/integer_matrix.c src/crystal.c \
- src/grainspotter.c src/xds.c src/integration.c
+ src/grainspotter.c src/xds.c src/integration.c \
+ src/histogram.c
if HAVE_FFTW
libcrystfel_la_SOURCES += src/reax.c
@@ -26,7 +27,8 @@ libcrystfel_la_include_HEADERS = src/beam-parameters.h src/hdf5-file.h \
src/filters.h src/dirax.h src/mosflm.h \
src/reax.h src/cell-utils.h \
src/integer_matrix.h src/crystal.h \
- src/grainspotter.h src/xds.h src/integration.h
+ src/grainspotter.h src/xds.h \
+ src/integration.h src/histogram.h
AM_CPPFLAGS = -DDATADIR=\""$(datadir)"\" -I$(top_builddir)/lib -Wall
AM_CPPFLAGS += -I$(top_srcdir)/lib @LIBCRYSTFEL_CFLAGS@
diff --git a/libcrystfel/src/histogram.c b/libcrystfel/src/histogram.c
new file mode 100644
index 00000000..b232cc24
--- /dev/null
+++ b/libcrystfel/src/histogram.c
@@ -0,0 +1,234 @@
+/*
+ * histogram.c
+ *
+ * Quick histogram functions
+ *
+ * Copyright © 2013 Deutsches Elektronen-Synchrotron DESY,
+ * a research centre of the Helmholtz Association.
+ *
+ * Authors:
+ * 2013 Thomas White <taw@physics.org>
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <math.h>
+#include <string.h>
+#include <assert.h>
+
+#include "histogram.h"
+
+struct _histogram
+{
+ int n_vals;
+ int max_vals;
+ double *vals;
+
+ double min;
+ double max;
+
+ int full;
+
+ int n_bins;
+ double bin_width;
+
+ int *bins;
+
+ int plot_height;
+ int peak;
+ double mean;
+ double stddev;
+};
+
+
+Histogram *histogram_init()
+{
+ Histogram *hi;
+
+ hi = malloc(sizeof(struct _histogram));
+ if ( hi == NULL ) return NULL;
+
+ hi->n_vals = 0;
+ hi->max_vals = 0;
+ hi->vals = NULL;
+ hi->full = 0;
+
+ hi->max = -INFINITY;
+ hi->min = INFINITY;
+
+ hi->bins = NULL;
+ hi->n_bins = 50;
+
+ hi->plot_height = 10;
+
+ return hi;
+}
+
+
+void histogram_free(Histogram *hi)
+{
+ free(hi);
+}
+
+
+void histogram_add_value(Histogram *hi, double val)
+{
+ if ( hi->n_vals == hi->max_vals ) {
+ double *new_vals;
+ new_vals = realloc(hi->vals, (hi->max_vals+512)*sizeof(double));
+ if ( new_vals == NULL ) {
+ hi->full = 1;
+ fprintf(stderr, "Histogram %p full.\n", hi);
+ return;
+ }
+ hi->max_vals += 512;
+ hi->vals = new_vals;
+ }
+
+ hi->vals[hi->n_vals++] = val;
+
+ if ( val > hi->max ) hi->max = val;
+ if ( val < hi->min ) hi->min = val;
+}
+
+
+static void calc_bins(Histogram *hi)
+{
+ int i;
+
+ if ( hi->bins != NULL ) {
+ free(hi->bins);
+ }
+
+ hi->bins = calloc(hi->n_bins, sizeof(int));
+ if ( hi->bins == NULL ) {
+ fprintf(stderr, "Failed to allocate bins.\n");
+ return;
+ }
+
+ hi->bin_width = (hi->max - hi->min)/hi->n_bins;
+
+ for ( i=0; i<hi->n_vals; i++ ) {
+
+ int j;
+
+ j = (hi->vals[i] - hi->min) / hi->bin_width;
+
+ /* Tidy up rounding errors */
+ if ( j < 0 ) j = 0;
+ if ( j > hi->n_bins ) j = hi->n_bins - 1;
+
+ hi->bins[j]++;
+
+ }
+
+ hi->peak = 0;
+ for ( i=0; i<hi->n_bins; i++ ) {
+ if ( hi->bins[i] > hi->peak ) hi->peak = hi->bins[i];
+ }
+}
+
+
+static void calc_stddev(Histogram *hi)
+{
+ double sum = 0.0;
+ int i;
+
+ for ( i=0; i<hi->n_vals; i++ ) {
+ sum += hi->vals[i];
+ }
+ hi->mean = sum / hi->n_vals;
+
+ sum = 0.0;
+ for ( i=0; i<hi->n_vals; i++ ) {
+ sum += pow(hi->vals[i] - hi->mean, 2.0);
+ }
+ hi->stddev = sqrt(sum / hi->n_vals);
+}
+
+
+void histogram_show(Histogram *hi)
+{
+ int i;
+ int *bins;
+ double lines_per_count;
+ char tmp[32];
+ size_t n_left, n_mid, n_right;
+
+ calc_bins(hi);
+ calc_stddev(hi);
+
+ bins = malloc(hi->n_bins*sizeof(int));
+ if ( bins == NULL ) {
+ fprintf(stderr, "Couldn't scale bins\n");
+ return;
+ }
+
+ lines_per_count = (double)hi->plot_height / hi->peak;
+
+ for ( i=0; i<hi->n_bins; i++ ) {
+ bins[i] = hi->bins[i] * lines_per_count;
+ }
+
+ for ( i=hi->plot_height-1; i>=0; i-- ) {
+
+ int j;
+
+ for ( j=0; j<hi->n_bins; j++ ) {
+ if ( bins[j] > i ) {
+ printf("*");
+ } else {
+ printf(" ");
+ }
+ }
+ printf("\n");
+
+ }
+
+ printf("|");
+ for ( i=1; i<hi->n_bins-1; i++ ) {
+ double bin_low, bin_high;
+ bin_low = hi->min + i*hi->bin_width;
+ bin_high = hi->min + (i+1)*hi->bin_width;
+ if ( (bin_low < 0.0) && (bin_high > 0.0) ) {
+ printf("+");
+ } else {
+ printf("-");
+ }
+ }
+ printf("|\n");
+
+ snprintf(tmp, 31, "%.2f", hi->min);
+ n_left = strlen(tmp);
+ snprintf(tmp, 31, "%.2f", hi->max);
+ n_right = strlen(tmp);
+ n_mid = hi->n_bins - (n_left + n_right);
+
+ printf("%.2f", hi->min);
+ for ( i=0; i<n_mid; i++ ) printf(" ");
+ printf("%.2f\n", hi->max);
+
+ printf("Mean = %.2f, Std dev = %.2f\n", hi->mean, hi->stddev);
+
+ free(bins);
+}
diff --git a/libcrystfel/src/histogram.h b/libcrystfel/src/histogram.h
new file mode 100644
index 00000000..bf8c5f1e
--- /dev/null
+++ b/libcrystfel/src/histogram.h
@@ -0,0 +1,45 @@
+/*
+ * histogram.h
+ *
+ * Quick histogram functions
+ *
+ * Copyright © 2013 Deutsches Elektronen-Synchrotron DESY,
+ * a research centre of the Helmholtz Association.
+ *
+ * Authors:
+ * 2013 Thomas White <taw@physics.org>
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef HISTOGRAM_H
+#define HISTOGRAM_H
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
+typedef struct _histogram Histogram;
+
+extern Histogram *histogram_init();
+extern void histogram_free(Histogram *hi);
+extern void histogram_add_value(Histogram *hi, double val);
+extern void histogram_show(Histogram *hi);
+
+
+#endif /* HISTOGRAM_H */
diff --git a/tests/integration_check.c b/tests/integration_check.c
index 9d77b562..a63e27f6 100644
--- a/tests/integration_check.c
+++ b/tests/integration_check.c
@@ -33,6 +33,7 @@
#include <image.h>
#include <utils.h>
#include <beam-parameters.h>
+#include <histogram.h>
#include "../libcrystfel/src/integration.c"
@@ -54,8 +55,9 @@ int main(int argc, char *argv[])
const int ir_inn = 2;
const int ir_mid = 4;
const int ir_out = 6;
- double int_sum = 0.0;
int i;
+ Histogram *hi;
+ double esd_sum = 0.0;
fh = fopen("/dev/urandom", "r");
fread(&seed, sizeof(seed), 1, fh);
@@ -103,7 +105,9 @@ int main(int argc, char *argv[])
image.n_crystals = 0;
image.crystals = NULL;
- for ( i=0; i<1000; i++ ) {
+ hi = histogram_init();
+
+ for ( i=0; i<10000; i++ ) {
for ( fs=0; fs<w; fs++ ) {
for ( ss=0; ss<h; ss++ ) {
@@ -144,12 +148,15 @@ int main(int argc, char *argv[])
cell_free(cell);
- int_sum += get_intensity(refl);
+ histogram_add_value(hi, get_intensity(refl));
+ esd_sum += get_esd_intensity(refl);
}
+ printf("Mean calculated sigma(I) = %.2f\n", esd_sum / 10000);
- STATUS("mean value = %f\n", int_sum/1000.0);
+ histogram_show(hi);
+ histogram_free(hi);
free(image.beam);
free(image.det->panels);
free(image.det);