1 | """ |
---|
2 | Handle Q smearing |
---|
3 | """ |
---|
4 | ##################################################################### |
---|
5 | #This software was developed by the University of Tennessee as part of the |
---|
6 | #Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
7 | #project funded by the US National Science Foundation. |
---|
8 | #See the license text in license.txt |
---|
9 | #copyright 2008, University of Tennessee |
---|
10 | ###################################################################### |
---|
11 | import numpy |
---|
12 | import math |
---|
13 | import logging |
---|
14 | import sys |
---|
15 | import time |
---|
16 | from sasmodels import sesans |
---|
17 | import numpy as np # type: ignore |
---|
18 | from numpy import pi, exp # type: ignore |
---|
19 | |
---|
20 | from sasmodels.resolution import Slit1D, Pinhole1D |
---|
21 | from sasmodels.sesans import SESANS1D |
---|
22 | from sasmodels.resolution2d import Pinhole2D |
---|
23 | from src.sas.sascalc.data_util.nxsunit import Converter |
---|
24 | |
---|
25 | |
---|
26 | def smear_selection(data, model = None): |
---|
27 | """ |
---|
28 | Creates the right type of smearer according |
---|
29 | to the data. |
---|
30 | The canSAS format has a rule that either |
---|
31 | slit smearing data OR resolution smearing data |
---|
32 | is available. |
---|
33 | |
---|
34 | For the present purpose, we choose the one that |
---|
35 | has none-zero data. If both slit and resolution |
---|
36 | smearing arrays are filled with good data |
---|
37 | (which should not happen), then we choose the |
---|
38 | resolution smearing data. |
---|
39 | |
---|
40 | :param data: Data1D object |
---|
41 | :param model: sas.model instance |
---|
42 | """ |
---|
43 | # Sanity check. If we are not dealing with a SAS Data1D |
---|
44 | # object, just return None |
---|
45 | |
---|
46 | # This checks for 2D data (does not throw exception because fail is common) |
---|
47 | if data.__class__.__name__ not in ['Data1D', 'Theory1D']: |
---|
48 | if data == None: |
---|
49 | return None |
---|
50 | elif data.dqx_data == None or data.dqy_data == None: |
---|
51 | return None |
---|
52 | return Pinhole2D(data) |
---|
53 | # This checks for 1D data with smearing info in the data itself (again, fail is likely; no exceptions) |
---|
54 | if not hasattr(data, "dx") and not hasattr(data, "dxl")\ |
---|
55 | and not hasattr(data, "dxw"): |
---|
56 | return None |
---|
57 | |
---|
58 | # Look for resolution smearing data |
---|
59 | # This is the code that checks for SESANS data; it looks for the file loader |
---|
60 | # TODO: change other sanity checks to check for file loader instead of data structure? |
---|
61 | _found_sesans = False |
---|
62 | #if data.dx is not None and data.meta_data['loader']=='SESANS': |
---|
63 | if data.dx is not None and data.isSesans: |
---|
64 | if data.dx[0] > 0.0: |
---|
65 | _found_sesans = True |
---|
66 | |
---|
67 | if _found_sesans == True: |
---|
68 | #Pre-compute the Hankel matrix (H) |
---|
69 | qmax, qunits = data.sample.zacceptance |
---|
70 | hankel=sesans.SesansTransform() |
---|
71 | sesans.SesansTransform.set_transform(hankel, |
---|
72 | SE = Converter(data._xunit)(data.x, "A"), |
---|
73 | zaccept = Converter(qunits)(qmax, "1/A"), |
---|
74 | Rmax = 1000000) |
---|
75 | # Then return the actual transform, as if it were a smearing function |
---|
76 | # applying evalDistribution to a model, with a q-space as param, returns the I(q) values that go with the q-values |
---|
77 | |
---|
78 | return PySmear(SESANS1D(data, hankel._H0, hankel._H, hankel.q), model) |
---|
79 | |
---|
80 | _found_resolution = False |
---|
81 | if data.dx is not None and len(data.dx) == len(data.x): |
---|
82 | |
---|
83 | # Check that we have non-zero data |
---|
84 | if data.dx[0] > 0.0: |
---|
85 | _found_resolution = True |
---|
86 | #print "_found_resolution",_found_resolution |
---|
87 | #print "data1D.dx[0]",data1D.dx[0],data1D.dxl[0] |
---|
88 | # If we found resolution smearing data, return a QSmearer |
---|
89 | if _found_resolution == True: |
---|
90 | return pinhole_smear(data, model) |
---|
91 | |
---|
92 | # Look for slit smearing data |
---|
93 | _found_slit = False |
---|
94 | if data.dxl is not None and len(data.dxl) == len(data.x) \ |
---|
95 | and data.dxw is not None and len(data.dxw) == len(data.x): |
---|
96 | |
---|
97 | # Check that we have non-zero data |
---|
98 | if data.dxl[0] > 0.0 or data.dxw[0] > 0.0: |
---|
99 | _found_slit = True |
---|
100 | |
---|
101 | # Sanity check: all data should be the same as a function of Q |
---|
102 | for item in data.dxl: |
---|
103 | if data.dxl[0] != item: |
---|
104 | _found_resolution = False |
---|
105 | break |
---|
106 | |
---|
107 | for item in data.dxw: |
---|
108 | if data.dxw[0] != item: |
---|
109 | _found_resolution = False |
---|
110 | break |
---|
111 | # If we found slit smearing data, return a slit smearer |
---|
112 | if _found_slit == True: |
---|
113 | return slit_smear(data, model) |
---|
114 | return None |
---|
115 | |
---|
116 | |
---|
117 | class PySmear(object): |
---|
118 | """ |
---|
119 | Wrapper for pure python sasmodels resolution functions. |
---|
120 | """ |
---|
121 | def __init__(self, resolution, model): |
---|
122 | self.model = model |
---|
123 | self.resolution = resolution |
---|
124 | if hasattr(self.resolution, 'data'): |
---|
125 | if self.resolution.data.meta_data['loader'] == 'SESANS': |
---|
126 | self.offset = 0 |
---|
127 | # This is default behaviour, for future resolution/transform functions this needs to be revisited. |
---|
128 | else: |
---|
129 | self.offset = numpy.searchsorted(self.resolution.q_calc, self.resolution.q[0]) |
---|
130 | else: |
---|
131 | self.offset = numpy.searchsorted(self.resolution.q_calc, self.resolution.q[0]) |
---|
132 | |
---|
133 | #self.offset = numpy.searchsorted(self.resolution.q_calc, self.resolution.q[0]) |
---|
134 | |
---|
135 | def apply(self, iq_in, first_bin=0, last_bin=None): |
---|
136 | """ |
---|
137 | Apply the resolution function to the data. |
---|
138 | Note that this is called with iq_in matching data.x, but with |
---|
139 | iq_in[first_bin:last_bin] set to theory values for these bins, |
---|
140 | and the remainder left undefined. The first_bin, last_bin values |
---|
141 | should be those returned from get_bin_range. |
---|
142 | The returned value is of the same length as iq_in, with the range |
---|
143 | first_bin:last_bin set to the resolution smeared values. |
---|
144 | """ |
---|
145 | if last_bin is None: last_bin = len(iq_in) |
---|
146 | start, end = first_bin + self.offset, last_bin + self.offset |
---|
147 | q_calc = self.resolution.q_calc |
---|
148 | iq_calc = numpy.empty_like(q_calc) |
---|
149 | if start > 0: |
---|
150 | iq_calc[:start] = self.model.evalDistribution(q_calc[:start]) |
---|
151 | if end+1 < len(q_calc): |
---|
152 | iq_calc[end+1:] = self.model.evalDistribution(q_calc[end+1:]) |
---|
153 | iq_calc[start:end+1] = iq_in[first_bin:last_bin+1] |
---|
154 | smeared = self.resolution.apply(iq_calc) |
---|
155 | return smeared |
---|
156 | __call__ = apply |
---|
157 | |
---|
158 | def get_bin_range(self, q_min=None, q_max=None): |
---|
159 | """ |
---|
160 | For a given q_min, q_max, find the corresponding indices in the data. |
---|
161 | Returns first, last. |
---|
162 | Note that these are indexes into q from the data, not the q_calc |
---|
163 | needed by the resolution function. Note also that these are the |
---|
164 | indices, not the range limits. That is, the complete range will be |
---|
165 | q[first:last+1]. |
---|
166 | """ |
---|
167 | |
---|
168 | q = self.resolution.q |
---|
169 | first = numpy.searchsorted(q, q_min) |
---|
170 | last = numpy.searchsorted(q, q_max) |
---|
171 | return first, min(last,len(q)-1) |
---|
172 | |
---|
173 | def slit_smear(data, model=None): |
---|
174 | q = data.x |
---|
175 | width = data.dxw if data.dxw is not None else 0 |
---|
176 | height = data.dxl if data.dxl is not None else 0 |
---|
177 | # TODO: width and height seem to be reversed |
---|
178 | return PySmear(Slit1D(q, height, width), model) |
---|
179 | |
---|
180 | def pinhole_smear(data, model=None): |
---|
181 | q = data.x |
---|
182 | width = data.dx if data.dx is not None else 0 |
---|
183 | return PySmear(Pinhole1D(q, width), model) |
---|