Changeset e07f9f4 in sasview
- 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
- Files:
-
- 2 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": -
theoryview/perspectives/theory/model_panel.py
rb9405cd re07f9f4 196 196 Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 197 197 style=wx.TE_PROCESS_ENTER) 198 Tctl1.SetToolTipString("N pts for averaging over the distribution function.")198 Tctl1.SetToolTipString("Number of points for weighting.") 199 199 Tctl1.SetValue(str (format_number(value))) 200 200 self.sizer4_4.Add(Tctl1, (iy,ix),(1,1), … … 207 207 Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 208 208 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.") 210 210 Tctl2.SetValue(str (format_number(value))) 211 211 self.sizer4_4.Add(Tctl2, (iy,ix),(1,1), … … 255 255 Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 256 256 style=wx.TE_PROCESS_ENTER) 257 Tctl1.SetToolTipString("N pts for averaging over the distribution function.")257 Tctl1.SetToolTipString("Number of points for weighting.") 258 258 Tctl1.SetValue(str (format_number(value))) 259 259 if not self.enable2D: … … 274 274 Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 275 275 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.") 277 277 Tctl2.SetValue(str (format_number(value))) 278 278 if not self.enable2D:
Note: See TracChangeset
for help on using the changeset viewer.