Changeset 5cc393b8 in sasview for calculatorview/perspectives/calculator
- Timestamp:
- Dec 13, 2010 12:29:04 PM (14 years ago)
- Branches:
- master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- a0288ff
- Parents:
- e223052
- Location:
- calculatorview/perspectives/calculator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
calculatorview/perspectives/calculator/calculator.py
r3be3a80 r5cc393b8 115 115 Returns a set of menu entries for tools 116 116 """ 117 kiessig_help = " This tool is to approximatly computethe "117 kiessig_help = "Approximately computes the " 118 118 kiessig_help += "thickness of a shell or the size of " 119 119 kiessig_help += "particles \n from the width of a Kiessig fringe." 120 sld_help = "Provides computation related to Scattering Length Density" 121 slit_length_help = "Provides computation related to Slit Length Density" 120 sld_help = "Computes the Scattering Length Density." 121 slit_length_help = "Computes the slit length from the beam profile." 122 resolution_help = "Approximately estimates the " 123 resolution_help += "resolution of Q in 2D based on the SANS " 124 resolution_help += "instrumental parameter values." 122 125 #data_editor_help = "Meta Data Editor" 123 126 return [("SLD Calculator", sld_help, self.on_calculate_sld), … … 127 130 kiessig_help, self.on_calculate_kiessig), 128 131 ("SANS Resolution Estimator", 129 kiessig_help, self.on_calculate_resoltuion)]#,132 resolution_help, self.on_calculate_resoltuion)]#, 130 133 #("Data Editor", data_editor_help, self.on_edit_data)] 131 134 -
calculatorview/perspectives/calculator/resolution_calculator_panel.py
re223052 r5cc393b8 616 616 self.parent.Close() 617 617 # reset image 618 self.image = None618 self.image = None 619 619 620 620 def on_compute(self, event = None):
Note: See TracChangeset
for help on using the changeset viewer.