Changeset 5cc393b8 in sasview


Ignore:
Timestamp:
Dec 13, 2010 12:29:04 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
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
Message:

added resolution estimator help

Location:
calculatorview/perspectives/calculator
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • calculatorview/perspectives/calculator/calculator.py

    r3be3a80 r5cc393b8  
    115115        Returns a set of menu entries for tools 
    116116        """ 
    117         kiessig_help = "This tool is to approximatly compute the " 
     117        kiessig_help = "Approximately computes the " 
    118118        kiessig_help += "thickness of a shell or the size of " 
    119119        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." 
    122125        #data_editor_help = "Meta Data Editor" 
    123126        return [("SLD Calculator", sld_help, self.on_calculate_sld), 
     
    127130                        kiessig_help, self.on_calculate_kiessig), 
    128131                          ("SANS Resolution Estimator",  
    129                         kiessig_help, self.on_calculate_resoltuion)]#, 
     132                        resolution_help, self.on_calculate_resoltuion)]#, 
    130133                #("Data Editor", data_editor_help, self.on_edit_data)] 
    131134               
  • calculatorview/perspectives/calculator/resolution_calculator_panel.py

    re223052 r5cc393b8  
    616616        self.parent.Close() 
    617617        # reset image 
    618         self.image =None 
     618        self.image = None 
    619619        
    620620    def on_compute(self, event = None): 
Note: See TracChangeset for help on using the changeset viewer.