Changeset 01cda57 in sasview for src/sas/sascalc
- Timestamp:
- Sep 27, 2017 10:07:02 AM (7 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- fc4fec8
- Parents:
- adc49fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sascalc/calculator/resolution_calculator.py
r7432acb r01cda57 93 93 : qy_value: y component of q 94 94 """ 95 95 96 # make sure to update all the variables need. 96 97 # except lambda, dlambda, and intensity … … 152 153 sig2_list[ind], sigr_list[ind], 153 154 qx_min, qx_max, qy_min, qy_max, coord) 154 # this is the case of q being outside the detector155 #if numpy.all(out==0.0):156 # continue157 155 image = out 158 156 # set variance as sigmas … … 186 184 sigma_2 = 0 187 185 sigma1d = 0 186 188 187 if len(self.image) > 0: 189 188 self.image += image_out … … 192 191 193 192 # plot image 194 return self. plot_image(self.image)193 return self.image # self.plot_image(self.image) 195 194 196 195 def setup_tof(self, wavelength, wavelength_spread): … … 214 213 coord='cartesian', tof=False): 215 214 """ 216 Compute the Q resol tuion in || and + direction of 2D215 Compute the Q resolution in || and + direction of 2D 217 216 : qx_value: x component of q 218 217 : qy_value: y component of q
Note: See TracChangeset
for help on using the changeset viewer.