source: sasview/sansmodels/src/sans/models/c_smearer/smearer.cpp @ ef70686

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since ef70686 was b23b722, checked in by Mathieu Doucet <doucetm@…>, 13 years ago

Re #5 fixing samsmodels compilation on MSVC

  • Property mode set to 100644
File size: 11.6 KB
Line 
1/**
2        This software was developed by the University of Tennessee as part of the
3        Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
4        project funded by the US National Science Foundation.
5
6        If you use DANSE applications to do scientific research that leads to
7        publication, we ask that you acknowledge the use of the software with the
8        following sentence:
9
10        "This work benefited from DANSE software developed under NSF award DMR-0520547."
11
12        copyright 2009, University of Tennessee
13 */
14#include "smearer.hh"
15#include <stdio.h>
16#include <math.h>
17using namespace std;
18
19#if defined(_MSC_VER)
20#include "winFuncs.h"
21#endif
22/**
23 * Constructor for BaseSmearer
24 *
25 * @param qmin: minimum Q value
26 * @param qmax: maximum Q value
27 * @param nbins: number of Q bins
28 */
29BaseSmearer :: BaseSmearer(double qmin, double qmax, int nbins) {
30        // Number of bins
31        this->nbins = nbins;
32        this->qmin = qmin;
33        this->qmax = qmax;
34        // Flag to keep track of whether we have a smearing matrix or
35        // whether we need to compute one
36        has_matrix = false;
37        even_binning = true;
38};
39
40/**
41 * Constructor for BaseSmearer
42 *
43 * Used for uneven binning
44 * @param q: array of Q values
45 * @param nbins: number of Q bins
46 */
47BaseSmearer :: BaseSmearer(double* q, int nbins) {
48        // Number of bins
49        this->nbins = nbins;
50        this->q_values = q;
51        // Flag to keep track of whether we have a smearing matrix or
52        // whether we need to compute one
53        has_matrix = false;
54        even_binning = false;
55};
56
57/**
58 * Constructor for SlitSmearer
59 *
60 * @param width: slit width in Q units
61 * @param height: slit height in Q units
62 * @param qmin: minimum Q value
63 * @param qmax: maximum Q value
64 * @param nbins: number of Q bins
65 */
66SlitSmearer :: SlitSmearer(double width, double height, double qmin, double qmax, int nbins) :
67        BaseSmearer(qmin, qmax, nbins){
68        this->height = height;
69        this->width = width;
70};
71
72/**
73 * Constructor for SlitSmearer
74 *
75 * @param width: slit width in Q units
76 * @param height: slit height in Q units
77 * @param q: array of Q values
78 * @param nbins: number of Q bins
79 */
80SlitSmearer :: SlitSmearer(double width, double height, double* q, int nbins) :
81        BaseSmearer(q, nbins){
82        this->height = height;
83        this->width = width;
84};
85
86/**
87 * Constructor for QSmearer
88 *
89 * @param width: array slit widths for each Q point, in Q units
90 * @param qmin: minimum Q value
91 * @param qmax: maximum Q value
92 * @param nbins: number of Q bins
93 */
94QSmearer :: QSmearer(double* width, double qmin, double qmax, int nbins) :
95        BaseSmearer(qmin, qmax, nbins){
96        this->width = width;
97};
98
99/**
100 * Constructor for QSmearer
101 *
102 * @param width: array slit widths for each Q point, in Q units
103 * @param q: array of Q values
104 * @param nbins: number of Q bins
105 */
106QSmearer :: QSmearer(double* width, double* q, int nbins) :
107        BaseSmearer(q, nbins){
108        this->width = width;
109};
110
111/**
112 * Compute the slit smearing matrix
113 *
114 * For even binning (q_min to q_max with nbins):
115 *
116 *   step = (q_max-q_min)/(nbins-1)
117 *   first bin goes from q_min to q_min+step
118 *   last bin goes from q_max to q_max+step
119 *
120 * For binning according to q array:
121 *
122 * Each q point represents a bin going from half the distance between it
123 * and the previous point to half the distance between it and the next point.
124 *
125 *    Example: bin i goes from (q_values[i-1]+q_values[i])/2 to (q_values[i]+q_values[i+1])/2
126 *
127 * The exceptions are the first and last bins, which are centered at the first and
128 * last q-values, respectively. The width of the first and last bins is the distance between
129 * their respective neighboring q-value.
130 */
131void SlitSmearer :: compute_matrix(){
132
133        weights = new vector<double>(nbins*nbins,0);
134
135        // Check the length of the data
136        if (nbins<2) return;
137        int npts_h = height>0.0 ? npts : 1;
138        int npts_w = width>0.0 ? npts : 1;
139
140        // If both height and width are great than zero,
141        // modify the number of points in each direction so
142        // that the total number of points is still what
143        // the user would expect (downgrade resolution)
144        //if(npts_h>1 && npts_w>1){
145        //      npts_h = (int)ceil(sqrt((double)npts));
146        //      npts_w = npts_h;
147        //}
148        double shift_h, shift_w, hbin_size, wbin_size;
149        // Make sure height and width are all positive (FWMH/2)
150        // Assumption; height and width are all same for all q points
151        if(npts_h == 1){
152                shift_h = 0.0;
153        } else {
154                shift_h = fabs(height);
155        }
156        if(npts_w == 1){
157                shift_w = 0.0;
158        } else {
159                shift_w = fabs(width);
160        }
161        // size of the h bin and w bin
162        hbin_size = shift_h / nbins;
163        wbin_size = shift_w / nbins;
164
165        // Loop over all q-values
166        for(int i=0; i<nbins; i++) {
167                // Find Weights
168                // Find q where the resolution smearing calculation of I(q) occurs
169                double q, q_min, q_max, q_0;
170                get_bin_range(i, &q, &q_min, &q_max);
171                // Block q becomes <=0
172                if (q <= 0){
173                        continue;
174                }
175                bool last_qpoint = true;
176                // Find q[0] value to normalize the weight later,
177                //  otherwise, we will have a precision problem.
178                if (i == 0){
179                        q_0 = q;
180                }
181                // Loop over all qj-values
182                bool first_w = true;
183                for(int j=0; j<nbins; j++) {
184                        double q_j, q_high, q_low;
185                        // Calculate bin size of q_j
186                        get_bin_range(j, &q_j, &q_low, &q_high);
187                        // Block q_j becomes <=0
188                        if (q_j <= 0){
189                                continue;
190                        }
191                        // Check q_low that can not be negative.
192                        if (q_low < 0.0){
193                                q_low = 0.0;
194                        }
195                        // default parameter values
196                        (*weights)[i*nbins+j] = 0.0;
197                        // protect for negative q
198                        if (q <= 0.0 || q_j <= 0.0){
199                                        continue;
200                        }
201                        double shift_w = 0.0;
202                        // Condition: zero slit smear.
203                        if (npts_w == 1 && npts_h == 1){
204                                if(q_j == q) {
205                                        (*weights)[i*nbins+j] = 1.0;
206                                }
207                        }
208                        //Condition:Smear weight integration for width >0 when the height (=0) does not present.
209                        //Or height << width.
210                        else if((npts_w!=1 && npts_h == 1)|| (npts_w!=1 && npts_h != 1 && width/height > 100.0)){
211                                shift_w = width;
212                                //del_w = width/((double)npts_w-1.0);
213                                double q_shifted_low = q - shift_w;
214                                // High limit of the resolution range
215                                double q_shifted_high = q + shift_w;
216                                // Go through all the q_js for weighting those points
217                                if(q_j >= q_shifted_low && q_j <= q_shifted_high) {
218                                        // The weighting factor comes,
219                                        // Give some weight (delq_bin) for the q_j within the resolution range
220                                        // Weight should be same for all qs except
221                                        // for the q bin size at j.
222                                        // Note that the division by q_0 is only due to the precision problem
223                                        // where q_high - q_low gets to very small.
224                                        // Later, it will be normalized again.
225                                        (*weights)[i*nbins+j] += (q_high - q_low)/q_0 ;
226                                }
227                        }
228                        else{
229                                // Loop for width (;Height is analytical.)
230                                // Condition: height >>> width, otherwise, below is not accurate enough.
231                                // Smear weight numerical iteration for width >0 when the height (>0) presents.
232                                // When width = 0, the numerical iteration will be skipped.
233                                // The resolution calculation for the height is done by direct integration,
234                                // assuming the I(q'=sqrt(q_j^2-(q+shift_w)^2)) is constant within a q' bin, [q_high, q_low].
235                                // In general, this weight numerical iteration for width >0 might be a rough approximation,
236                                // but it must be good enough when height >>> width.
237                                for(int k=(-npts_w + 1); k<npts_w; k++){
238                                        if(npts_w!=1){
239                                                shift_w = width/((double)npts_w-1.0)*(double)k;
240                                        }
241                                        // For each q-value, compute the weight of each other q-bin
242                                        // in the I(q) array
243                                        // Low limit of the resolution range
244                                        double q_shift = q + shift_w;
245                                        if (q_shift < 0.0){
246                                                q_shift = 0.0;
247                                        }
248                                        double q_shifted_low = q_shift;
249                                        // High limit of the resolution range
250                                        double q_shifted_high = sqrt(q_shift * q_shift + shift_h * shift_h);
251
252
253                                        // Go through all the q_js for weighting those points
254                                        if(q_j >= q_shifted_low && q_j <= q_shifted_high) {
255                                                // The weighting factor comes,
256                                                // Give some weight (delq_bin) for the q_j within the resolution range
257                                                // Weight should be same for all qs except
258                                                // for the q bin size at j.
259                                                // Note that the division by q_0 is only due to the precision problem
260                                                // where q_high - q_low gets to very small.
261                                                // Later, it will be normalized again.
262
263                                                double q_shift_min = q - width;
264
265                                                double u = (q_j * q_j - (q_shift) * (q_shift));
266                                                // The fabs below are not necessary but in case: the weight should never be imaginary.
267                                                // At the edge of each sub_width. weight += u(at q_high bin) - u(0), where u(0) = 0,
268                                                // and weighted by (2.0* npts_w -1.0)once for each q.
269                                                //if (q == q_j) {
270                                                if (q_low <= q_shift && q_high > q_shift) {
271                                                        //if (k==0)
272                                                                (*weights)[i*nbins+j] += (sqrt(fabs((q_high)*(q_high)-q_shift * q_shift)))/q_0;// * (2.0*double(npts_w)-1.0);
273                                                }
274                                                // For the rest of sub_width. weight += u(at q_high bin) - u(at q_low bin)
275                                                else{// if (u > 0.0){
276                                                        (*weights)[i*nbins+j] += (sqrt(fabs((q_high)*(q_high)- q_shift * q_shift))-sqrt(fabs((q_low)*(q_low)- q_shift * q_shift)))/q_0 ;
277                                                }
278                                        }
279                                }
280                        }
281                }
282        }
283};
284
285/**
286 * Compute the point smearing matrix
287 */
288void QSmearer :: compute_matrix(){
289        weights = new vector<double>(nbins*nbins,0);
290
291        // Loop over all q-values
292        double step = (qmax-qmin)/((double)nbins-1.0);
293        double q, q_min, q_max;
294        double q_j, q_jmax, q_jmin;
295        for(int i=0; i<nbins; i++) {
296                get_bin_range(i, &q, &q_min, &q_max);
297
298                for(int j=0; j<nbins; j++) {
299                        get_bin_range(j, &q_j, &q_jmin, &q_jmax);
300
301                        // Compute the fraction of the Gaussian contributing
302                        // to the q_j bin between q_jmin and q_jmax
303                        long double value =  erf( (q_jmax-q)/(sqrt(2.0)*width[i]) );
304                value -= erf( (q_jmin-q)/(sqrt(2.0)*width[i]) );
305                (*weights)[i*nbins+j] += value;
306                }
307        }
308}
309
310/**
311 * Computes the Q range of a given bin of the Q distribution.
312 * The range is computed according the the data distribution that
313 * was given to the object at initialization.
314 *
315 * @param i: number of the bin in the distribution
316 * @param q: q-value of bin i
317 * @param q_min: lower bound of the bin
318 * @param q_max: higher bound of the bin
319 *
320 */
321int BaseSmearer :: get_bin_range(int i, double* q, double* q_min, double* q_max) {
322        if (even_binning) {
323                double step = (qmax-qmin)/((double)nbins-1.0);
324                *q = qmin + (double)i*step;
325                *q_min = *q - 0.5*step;
326                *q_max = *q + 0.5*step;
327                return 1;
328        } else if (i>=0 && i<nbins) {
329                *q = q_values[i];
330                if (i==0) {
331                        double step = (q_values[1]-q_values[0])/2.0;
332                        *q_min = *q - step;
333                        *q_max = *q + step;
334                } else if (i==nbins-1) {
335                        double step = (q_values[i]-q_values[i-1])/2.0;
336                        *q_min = *q - step;
337                        *q_max = *q + step;
338                } else {
339                        *q_min = *q - (q_values[i]-q_values[i-1])/2.0;
340                        *q_max = *q + (q_values[i+1]-q_values[i])/2.0;
341                }
342                return 1;
343        }
344        return -1;
345}
346
347/**
348 * Perform smearing by applying the smearing matrix to the input Q array
349 */
350void BaseSmearer :: smear(double *iq_in, double *iq_out, int first_bin, int last_bin){
351
352        // If we haven't computed the smearing matrix, do it now
353        if(!has_matrix) {
354                compute_matrix();
355                has_matrix = true;
356        }
357
358        // Loop over q-values and multiply apply matrix
359        for(int q_i=first_bin; q_i<=last_bin; q_i++){
360                double sum = 0.0;
361                double counts = 0.0;
362
363                for(int i=first_bin; i<=last_bin; i++){
364                        // Skip if weight is less than 1e-03(this value is much smaller than
365                        // the weight at the 3*sigma distance
366                        // Will speed up a little bit...
367                        if ((*weights)[q_i*nbins+i] < 1.0e-003){
368                                continue;
369                        }
370                        sum += iq_in[i] * (*weights)[q_i*nbins+i];
371                        counts += (*weights)[q_i*nbins+i];
372                }
373
374                // Normalize counts
375                iq_out[q_i] = (counts>0.0) ? sum/counts : 0.0;
376        }
377}
Note: See TracBrowser for help on using the repository browser.