Changeset e07f9f4 in sasview


Ignore:
Timestamp:
Apr 23, 2010 1: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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sansview/perspectives/fitting/fitpage.py

    rb9405cd re07f9f4  
    563563                            Tctl = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    564564                                                style=wx.TE_PROCESS_ENTER) 
    565                             Tctl.SetToolTipString("Npts for averaging over the distribution function.") 
     565                            Tctl.SetToolTipString("Number of points for weighting.") 
    566566                            Tctl.SetValue(str (format_number(value))) 
    567567                            self.sizer4_4.Add(Tctl, (iy,ix),(1,1), 
     
    574574                            Tct2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    575575                                                style=wx.TE_PROCESS_ENTER) 
    576                             Tct2.SetToolTipString("Only the range between +-(Nsigmas times Sigma) of the distribution function will be weighted for the calculation.") 
     576                            Tct2.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.") 
    577577                            Tct2.SetValue(str (format_number(value))) 
    578578                            self.sizer4_4.Add(Tct2, (iy,ix),(1,1), 
     
    671671                            Tctl = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    672672                                                style=wx.TE_PROCESS_ENTER) 
    673                             Tctl.SetToolTipString("Npts for averaging over the distribution function.") 
     673                            Tctl.SetToolTipString("Number of points for weighting.") 
    674674                            Tctl.SetValue(str (format_number(value))) 
    675675                            if self.data.__class__.__name__ =="Data2D": 
     
    688688                            Tct2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    689689                                                style=wx.TE_PROCESS_ENTER) 
    690                             Tct2.SetToolTipString("Only the range between +-(Nsigmas times Sigma) of the distribution function will be weighted for the calculation.") 
     690                            Tct2.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.") 
    691691                            Tct2.SetValue(str (format_number(value))) 
    692692                            if self.data.__class__.__name__ =="Data2D": 
  • 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.