Changeset e07f9f4 in sasview for theoryview/perspectives/theory


Ignore:
Timestamp:
Apr 23, 2010 3:19:50 PM (14 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:
1a94c36
Parents:
b9405cd
Message:

better description in tip

File:
1 edited

Legend:

Unmodified
Added
Removed
  • theoryview/perspectives/theory/model_panel.py

    rb9405cd re07f9f4  
    196196                            Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    197197                                                style=wx.TE_PROCESS_ENTER) 
    198                             Tctl1.SetToolTipString("Npts for averaging over the distribution function.") 
     198                            Tctl1.SetToolTipString("Number of points for weighting.") 
    199199                            Tctl1.SetValue(str (format_number(value))) 
    200200                            self.sizer4_4.Add(Tctl1, (iy,ix),(1,1), 
     
    207207                            Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    208208                                                style=wx.TE_PROCESS_ENTER) 
    209                             Tctl2.SetToolTipString("Only the range between +-(Nsigmas times Sigma) of the distribution function will be weighted for the calculation.") 
     209                            Tctl2.SetToolTipString("Number of sigmas between which the range of the distribution function will be used for weighting. The value '3' covers 99.5% for Gaussian distribution function.") 
    210210                            Tctl2.SetValue(str (format_number(value))) 
    211211                            self.sizer4_4.Add(Tctl2, (iy,ix),(1,1), 
     
    255255                            Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    256256                                                style=wx.TE_PROCESS_ENTER) 
    257                             Tctl1.SetToolTipString("Npts for averaging over the distribution function.") 
     257                            Tctl1.SetToolTipString("Number of points for weighting.") 
    258258                            Tctl1.SetValue(str (format_number(value))) 
    259259                            if not self.enable2D: 
     
    274274                            Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    275275                                                style=wx.TE_PROCESS_ENTER) 
    276                             Tctl2.SetToolTipString("Only the range between +-(Nsigmas times Sigma) of the distribution function will be weighted for the calculation.") 
     276                            Tctl2.SetToolTipString("Number of sigmas between which the range of the distribution function will be used for weighting. The value '3' covers 99.5% for Gaussian distribution function.") 
    277277                            Tctl2.SetValue(str (format_number(value))) 
    278278                            if not self.enable2D: 
Note: See TracChangeset for help on using the changeset viewer.