Changeset 6066a3f in sasview for src/sas/qtgui/Perspectives/Fitting/FitPage.py
- Timestamp:
- May 18, 2017 5:54:29 AM (8 years ago)
- Branches:
- 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
- Children:
- fd1ae6d1
- Parents:
- dc5ef15
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FitPage.py
r1bc27f1 r6066a3f 6 6 Container for all data related to the current fit page 7 7 """ 8 MIN_RANGE =09 MAX_RANGE =110 NPTS =211 NPTS_FIT =312 LOG_POINTS =413 WEIGHTING =514 SMEARING_OPTION =615 SMEARING_ACCURACY =716 SMEARING_MIN =817 SMEARING_MAX =918 def __init__(self , parent=None):8 MIN_RANGE = 0 9 MAX_RANGE = 1 10 NPTS = 2 11 NPTS_FIT = 3 12 LOG_POINTS = 4 13 WEIGHTING = 5 14 SMEARING_OPTION = 6 15 SMEARING_ACCURACY = 7 16 SMEARING_MIN = 8 17 SMEARING_MAX = 9 18 def __init__(self): 19 19 """ 20 20 Define the dictionary … … 30 30 self.data = None 31 31 self.parameters_to_fit = [] 32 32 33 33 # QModels 34 34 self.param_model = None
Note: See TracChangeset
for help on using the changeset viewer.