- Timestamp:
- Apr 23, 2010 3:19:50 PM (15 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:
- 1a94c36
- Parents:
- b9405cd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/perspectives/fitting/fitpage.py
rb9405cd re07f9f4 563 563 Tctl = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 564 564 style=wx.TE_PROCESS_ENTER) 565 Tctl.SetToolTipString("N pts for averaging over the distribution function.")565 Tctl.SetToolTipString("Number of points for weighting.") 566 566 Tctl.SetValue(str (format_number(value))) 567 567 self.sizer4_4.Add(Tctl, (iy,ix),(1,1), … … 574 574 Tct2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 575 575 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.") 577 577 Tct2.SetValue(str (format_number(value))) 578 578 self.sizer4_4.Add(Tct2, (iy,ix),(1,1), … … 671 671 Tctl = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 672 672 style=wx.TE_PROCESS_ENTER) 673 Tctl.SetToolTipString("N pts for averaging over the distribution function.")673 Tctl.SetToolTipString("Number of points for weighting.") 674 674 Tctl.SetValue(str (format_number(value))) 675 675 if self.data.__class__.__name__ =="Data2D": … … 688 688 Tct2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 689 689 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.") 691 691 Tct2.SetValue(str (format_number(value))) 692 692 if self.data.__class__.__name__ =="Data2D":
Note: See TracChangeset
for help on using the changeset viewer.