From 799fdb308d5ca562793ca24fd11c364076f98685 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Tue, 30 Jul 2019 14:08:24 +0200 Subject: Spectrum: Define Gaussian using area, not height --- libcrystfel/src/spectrum.c | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) (limited to 'libcrystfel/src/spectrum.c') diff --git a/libcrystfel/src/spectrum.c b/libcrystfel/src/spectrum.c index be454a59..62dab7b0 100644 --- a/libcrystfel/src/spectrum.c +++ b/libcrystfel/src/spectrum.c @@ -126,7 +126,7 @@ int spectrum_get_num_gaussians(Spectrum *s) * * If \p n is greater than or equal to the number of Gaussians in the spectrum, * or if the spectrum is not represented as Gaussians, the returned Gaussian - * will have zero height. + * will have zero area. * * \returns The \p n-th Gaussian. */ @@ -136,7 +136,7 @@ struct gaussian spectrum_get_gaussian(Spectrum *s, int n) if ( (s->rep != SPEC_GAUSSIANS) || (n >= s->n_gaussians) ) { g.kcen = 0.0; g.sigma = 0.0; - g.height = 0.0; + g.area = 0.0; } else { g = s->gaussians[n]; } @@ -174,10 +174,10 @@ double spectrum_get_density_at_k(Spectrum *s, double k) double total = 0.0; int i; for ( i=0; in_gaussians; i++ ) { - double a = s->gaussians[i].height; + double a = s->gaussians[i].area; double b = s->gaussians[i].kcen; double c = s->gaussians[i].sigma; - total += a*exp(-(k-b)*(k-b)/(2.0*c*c)); + total += a*exp(-(k-b)*(k-b)/(2.0*c*c)) / (c*sqrt(2.0*M_PI)); } return total; } @@ -260,8 +260,7 @@ static signed int cmp_gauss(const void *va, const void *vb) { const struct gaussian *a = va; const struct gaussian *b = vb; - /* Integral of Gaussian = height * std deviation */ - if ( a->height * a->sigma > b->height * b->sigma ) return +1; + if ( a->area > b->area ) return +1; return -1; } @@ -271,11 +270,10 @@ static void normalise_gaussians(struct gaussian *gauss, int n_gauss) int i; double total_area = 0.0; for ( i=0; i