Changes in / [db74ee8:3931ea14] in sasview
- Files:
-
- 10 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
re04f87b rdf332d8 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.xml 53 /test/sasdataloader/test/isis_1_1_write_test.xml 54 /test/sasdataloader/test/write_test.xml 52 55 53 56 # autogenerated scripts 54 57 /sasview/installer.iss 55 -
docs/sphinx-docs/source/user/tools.rst
r8f46df7 reb8da5f 8 8 9 9 Data Operations Utility <sasgui/perspectives/calculator/data_operator_help> 10 10 11 11 Density/Volume Calculator <sasgui/perspectives/calculator/density_calculator_help> 12 12 13 13 Generic SANS Calculator <sasgui/perspectives/calculator/sas_calculator_help> 14 14 15 15 Image Viewer <sasgui/perspectives/calculator/image_viewer_help> 16 16 17 17 Kiessig Thickness Calculator <sasgui/perspectives/calculator/kiessig_calculator_help> 18 18 19 19 SLD Calculator <sasgui/perspectives/calculator/sld_calculator_help> 20 20 21 21 Slit Size Calculator <sasgui/perspectives/calculator/slit_calculator_help> 22 22 23 23 Q Resolution Estimator <sasgui/perspectives/calculator/resolution_calculator_help> 24 24 25 25 Python Shell <sasgui/perspectives/calculator/python_shell_help> 26 26 27 File Converter <sasgui/perspectives/file_converter/file_converter_help> -
sasview/sasview.py
r1be5202 r77d92cd 81 81 #Always use private .matplotlib setup to avoid conflicts with other 82 82 #uses of matplotlib 83 #Have to check if .sasview exists first 83 #Have to check if .sasview exists first 84 84 sasdir = os.path.join(os.path.expanduser("~"),'.sasview') 85 85 if not os.path.exists(sasdir): … … 119 119 # Fitting perspective 120 120 try: 121 import sas.sasgui.perspectives.fitting as module 121 import sas.sasgui.perspectives.fitting as module 122 122 fitting_plug = module.Plugin() 123 123 self.gui.add_perspective(fitting_plug) … … 145 145 logging.error(traceback.format_exc()) 146 146 147 #Calculator perspective 147 #Calculator perspective 148 148 try: 149 149 import sas.sasgui.perspectives.calculator as module … … 152 152 except: 153 153 logging.error("%s: could not find Calculator plug-in module"% \ 154 APP_NAME) 155 logging.error(traceback.format_exc()) 156 157 # File converter tool 158 try: 159 import sas.sasgui.perspectives.file_converter as module 160 converter_plug = module.Plugin() 161 self.gui.add_perspective(converter_plug) 162 except: 163 logging.error("%s: could not find File Converter plug-in module"% \ 154 164 APP_NAME) 155 165 logging.error(traceback.format_exc()) … … 191 201 if __name__ == "__main__": 192 202 run() 193 -
src/sas/sascalc/dataloader/readers/cansas_reader.py
r0f1e140 r8976865 942 942 written = written | self.write_node(pix, "z", item.pixel_size.z, 943 943 {"unit": item.pixel_size_unit}) 944 written = written | self.write_node(det, "slit_length",945 item.slit_length,946 {"unit": item.slit_length_unit})947 944 if written == True: 948 945 self.append(pix, det) 946 self.write_node(det, "slit_length", item.slit_length, 947 {"unit": item.slit_length_unit}) 948 949 949 950 950 def _write_process_notes(self, datainfo, entry_node):
Note: See TracChangeset
for help on using the changeset viewer.