Changes in / [0639476:3a22ce7] in sasview
- Files:
-
- 21 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
rdf332d8 re04f87b 8 8 # generated. 9 9 # 10 # Feel free to add more stuff to this as and when it becomes an issue. 10 # Feel free to add more stuff to this as and when it becomes an issue. 11 11 12 12 .project … … 50 50 /test/sasdataloader/test/plugins.zip 51 51 /test/sasdataloader/test/test_log.txt 52 /test/sasdataloader/test/isis_1_0_write_test.xml53 /test/sasdataloader/test/isis_1_1_write_test.xml54 /test/sasdataloader/test/write_test.xml55 52 56 53 # autogenerated scripts 57 54 /sasview/installer.iss 55 -
docs/sphinx-docs/source/user/tools.rst
rec860a8f rec860a8f 10 10 11 11 Data Operations Utility <sasgui/perspectives/calculator/data_operator_help> 12 12 13 13 Density/Volume Calculator <sasgui/perspectives/calculator/density_calculator_help> 14 14 15 15 Generic SANS Calculator <sasgui/perspectives/calculator/sas_calculator_help> 16 16 17 17 Image Viewer <sasgui/perspectives/calculator/image_viewer_help> 18 18 19 19 Kiessig Thickness Calculator <sasgui/perspectives/calculator/kiessig_calculator_help> 20 20 21 21 SLD Calculator <sasgui/perspectives/calculator/sld_calculator_help> 22 22 23 23 Slit Size Calculator <sasgui/perspectives/calculator/slit_calculator_help> 24 24 25 25 Q Resolution Estimator <sasgui/perspectives/calculator/resolution_calculator_help> 26 26 27 27 Python Shell <sasgui/perspectives/calculator/python_shell_help> 28 29 File Converter <sasgui/perspectives/file_converter/file_converter_help> 28 -
run.py
r18e7309 r832fea2 72 72 platform = '%s-%s'%(get_platform(),sys.version[:3]) 73 73 build_path = joinpath(root, 'build','lib.'+platform) 74 75 # Notify the help menu that the Sphinx documentation is in a different 74 75 # Notify the help menu that the Sphinx documentation is in a different 76 76 # place than it otherwise would be. 77 77 os.environ['SASVIEW_DOC_PATH'] = joinpath(build_path, "doc") … … 123 123 # Compiled modules need to be pulled from the build directory. 124 124 # Some packages are not where they are needed, so load them explicitly. 125 import sas.sascalc.file_converter126 sas.sascalc.file_converter.core = import_package('sas.sascalc.file_converter.core',127 joinpath(build_path, 'sas', 'sascalc', 'file_converter', 'core'))128 129 # Compiled modules need to be pulled from the build directory.130 # Some packages are not where they are needed, so load them explicitly.131 125 import sas.sascalc.calculator 132 126 sas.sascalc.calculator.core = import_package('sas.sascalc.calculator.core', -
sasview/sasview.py
rcde6e52 rcde6e52 158 158 logging.error(traceback.format_exc()) 159 159 160 # File converter tool161 try:162 import sas.sasgui.perspectives.file_converter as module163 converter_plug = module.Plugin()164 self.gui.add_perspective(converter_plug)165 except:166 logging.error("%s: could not find File Converter plug-in module"% \167 APP_NAME)168 logging.error(traceback.format_exc())169 170 160 171 161 # Add welcome page -
setup.py
r18e7309 rdb74ee8 9 9 from distutils.command.build_ext import build_ext 10 10 from distutils.core import Command 11 import numpy12 11 13 12 # Manage version number ###################################### … … 55 54 print "Removing existing build directory", SASVIEW_BUILD, "for a clean build" 56 55 shutil.rmtree(SASVIEW_BUILD) 57 56 58 57 # 'sys.maxsize' and 64bit: Not supported for python2.5 59 58 is_64bits = False 60 59 if sys.version_info >= (2, 6): 61 60 is_64bits = sys.maxsize > 2**32 62 61 63 62 enable_openmp = False 64 63 … … 119 118 c = self.compiler.compiler_type 120 119 print "Compiling with %s (64bit=%s)" % (c, str(is_64bits)) 121 120 122 121 # OpenMP build options 123 122 if enable_openmp: … … 128 127 for e in self.extensions: 129 128 e.extra_link_args = lopt[ c ] 130 129 131 130 # Platform-specific build options 132 131 if platform_lopt.has_key(c): … … 206 205 ) 207 206 208 207 209 208 # sas.sascalc.pr 210 209 srcdir = os.path.join("src", "sas", "sascalc", "pr", "c_extensions") … … 218 217 include_dirs=[], 219 218 ) ) 220 221 # sas.sascalc.file_converter 222 mydir = os.path.join("src", "sas", "sascalc", "file_converter", "c_ext") 223 package_dir["sas.sascalc.file_converter.core"] = mydir 224 package_dir["sas.sascalc.file_converter"] = os.path.join("src","sas", "sascalc", "file_converter") 225 packages.extend(["sas.sascalc.file_converter","sas.sascalc.file_converter.core"]) 226 ext_modules.append( Extension("sas.sascalc.file_converter.core.bsl_loader", 227 sources = [os.path.join(mydir, "bsl_loader.c")], 228 include_dirs=[numpy.get_include()], 229 ) ) 230 219 231 220 # sas.sascalc.fit 232 221 package_dir["sas.sascalc.fit"] = os.path.join("src", "sas", "sascalc", "fit") … … 250 239 packages.extend(["sas.sasgui.perspectives", "sas.sasgui.perspectives.calculator"]) 251 240 package_data['sas.sasgui.perspectives.calculator'] = ['images/*', 'media/*'] 252 241 253 242 # Data util 254 243 package_dir["sas.sascalc.data_util"] = os.path.join("src", "sas", "sascalc", "data_util") … … 305 294 'test/2d_data/*', 306 295 'test/save_states/*', 307 'test/upcoming_formats/*', 296 'test/upcoming_formats/*', 308 297 'default_categories.json'] 309 298 packages.append("sas.sasview") … … 327 316 required.extend(['pillow']) 328 317 329 # Set up SasView 318 # Set up SasView 330 319 setup( 331 320 name="sasview", … … 352 341 'docs': BuildSphinxCommand, 353 342 'disable_openmp': DisableOpenMPCommand} 354 ) 343 ) -
src/sas/sascalc/dataloader/readers/cansas_reader.py
r654e8e0 r654e8e0 1177 1177 written = written | self.write_node(pix, "z", item.pixel_size.z, 1178 1178 {"unit": item.pixel_size_unit}) 1179 written = written | self.write_node(det, "slit_length", 1180 item.slit_length, 1181 {"unit": item.slit_length_unit}) 1179 1182 if written == True: 1180 1183 self.append(pix, det) 1181 self.write_node(det, "slit_length", item.slit_length,1182 {"unit": item.slit_length_unit})1183 1184 1184 1185 1185 def _write_process_notes(self, datainfo, entry_node): -
src/sas/sascalc/dataloader/readers/cansas_reader_HDF5.py
r5e906207 r479799c 23 23 24 24 Any number of SASdata sets may be present in a SASentry and the data within can be either 1D I(Q) or 2D I(Qx, Qy). 25 26 Also supports reading NXcanSAS formatted HDF5 files27 25 28 26 :Dependencies: … … 78 76 ## Add the last data set to the list of outputs 79 77 self.add_data_set() 80 ## Close the data file81 self.raw_data.close()82 78 ## Return data set(s) 83 79 return self.output … … 187 183 elif key == u'run': 188 184 self.current_datainfo.run.append(data_point) 189 try:190 run_name = value.attrs['name']191 run_dict = {data_point: run_name}192 self.current_datainfo.run_name = run_dict193 except:194 pass195 185 elif key == u'title': 196 186 self.current_datainfo.title = data_point … … 199 189 200 190 ## Sample Information 201 elif key == u'Title' and self.parent_class == u'SASsample': # CanSAS 2.0 format 202 self.current_datainfo.sample.name = data_point 203 elif key == u'ID' and self.parent_class == u'SASsample': # NXcanSAS format 191 elif key == u'Title' and self.parent_class == u'SASsample': 204 192 self.current_datainfo.sample.name = data_point 205 193 elif key == u'thickness' and self.parent_class == u'SASsample': … … 207 195 elif key == u'temperature' and self.parent_class == u'SASsample': 208 196 self.current_datainfo.sample.temperature = data_point 209 elif key == u'transmission' and self.parent_class == u'SASsample':210 self.current_datainfo.sample.transmission = data_point211 elif key == u'x_position' and self.parent_class == u'SASsample':212 self.current_datainfo.sample.position.x = data_point213 elif key == u'y_position' and self.parent_class == u'SASsample':214 self.current_datainfo.sample.position.y = data_point215 elif key == u'polar_angle' and self.parent_class == u'SASsample':216 self.current_datainfo.sample.orientation.x = data_point217 elif key == u'azimuthal_angle' and self.parent_class == u'SASsample':218 self.current_datainfo.sample.orientation.z = data_point219 elif key == u'details' and self.parent_class == u'SASsample':220 self.current_datainfo.sample.details.append(data_point)221 197 222 198 ## Instrumental Information … … 228 204 self.detector.distance = float(data_point) 229 205 self.detector.distance_unit = unit 230 elif key == u'slit_length' and self.parent_class == u'SASdetector':231 self.detector.slit_length = float(data_point)232 self.detector.slit_length_unit = unit233 elif key == u'x_position' and self.parent_class == u'SASdetector':234 self.detector.offset.x = float(data_point)235 self.detector.offset_unit = unit236 elif key == u'y_position' and self.parent_class == u'SASdetector':237 self.detector.offset.y = float(data_point)238 self.detector.offset_unit = unit239 elif key == u'polar_angle' and self.parent_class == u'SASdetector':240 self.detector.orientation.x = float(data_point)241 self.detector.orientation_unit = unit242 elif key == u'azimuthal_angle' and self.parent_class == u'SASdetector':243 self.detector.orientation.z = float(data_point)244 self.detector.orientation_unit = unit245 elif key == u'beam_center_x' and self.parent_class == u'SASdetector':246 self.detector.beam_center.x = float(data_point)247 self.detector.beam_center_unit = unit248 elif key == u'beam_center_y' and self.parent_class == u'SASdetector':249 self.detector.beam_center.y = float(data_point)250 self.detector.beam_center_unit = unit251 elif key == u'x_pixel_size' and self.parent_class == u'SASdetector':252 self.detector.pixel_size.x = float(data_point)253 self.detector.pixel_size_unit = unit254 elif key == u'y_pixel_size' and self.parent_class == u'SASdetector':255 self.detector.pixel_size.y = float(data_point)256 self.detector.pixel_size_unit = unit257 206 elif key == u'SSD' and self.parent_class == u'SAScollimation': 258 207 self.collimation.length = data_point … … 264 213 elif key == u'name' and self.parent_class == u'SASprocess': 265 214 self.process.name = data_point 266 elif key == u'Title' and self.parent_class == u'SASprocess': # CanSAS 2.0 format 267 self.process.name = data_point 268 elif key == u'name' and self.parent_class == u'SASprocess': # NXcanSAS format 215 elif key == u'Title' and self.parent_class == u'SASprocess': 269 216 self.process.name = data_point 270 217 elif key == u'description' and self.parent_class == u'SASprocess': … … 283 230 self.trans_spectrum.wavelength.append(data_point) 284 231 285 ## Source232 ## Other Information 286 233 elif key == u'wavelength' and self.parent_class == u'SASdata': 287 234 self.current_datainfo.source.wavelength = data_point 288 self.current_datainfo.source.wavelength_unit = unit 289 elif key == u'incident_wavelength' and self.parent_class == u'SASsource': 290 self.current_datainfo.source.wavelength = data_point 291 self.current_datainfo.source.wavelength_unit = unit 292 elif key == u'wavelength_max' and self.parent_class == u'SASsource': 293 self.current_datainfo.source.wavelength_max = data_point 294 self.current_datainfo.source.wavelength_max_unit = unit 295 elif key == u'wavelength_min' and self.parent_class == u'SASsource': 296 self.current_datainfo.source.wavelength_min = data_point 297 self.current_datainfo.source.wavelength_min_unit = unit 298 elif key == u'wavelength_spread' and self.parent_class == u'SASsource': 299 self.current_datainfo.source.wavelength_spread = data_point 300 self.current_datainfo.source.wavelength_spread_unit = unit 301 elif key == u'beam_size_x' and self.parent_class == u'SASsource': 302 self.current_datainfo.source.beam_size.x = data_point 303 self.current_datainfo.source.beam_size_unit = unit 304 elif key == u'beam_size_y' and self.parent_class == u'SASsource': 305 self.current_datainfo.source.beam_size.y = data_point 306 self.current_datainfo.source.beam_size_unit = unit 307 elif key == u'beam_shape' and self.parent_class == u'SASsource': 308 self.current_datainfo.source.beam_shape = data_point 235 self.current_datainfo.source.wavelength.unit = unit 309 236 elif key == u'radiation' and self.parent_class == u'SASsource': 310 237 self.current_datainfo.source.radiation = data_point … … 449 376 self.current_datainfo = DataInfo() 450 377 451 452 378 def _initialize_new_data_set(self, parent_list = None): 453 379 """
Note: See TracChangeset
for help on using the changeset viewer.