Changeset 35be99c in sasview
- Timestamp:
- Feb 28, 2009 10:03:25 AM (16 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:
- f0ffb873
- Parents:
- 98be89f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/perspectives/fitting/fitting.py
red2ea6a r35be99c 4 4 5 5 from copy import deepcopy 6 from danse.common.plottools.plottables import Theory1D,Data2D 6 from danse.common.plottools.plottables import Data1D, Theory1D,Data2D 7 from danse.common.plottools.PlotPanel import PlotPanel 7 8 from sans.guicomm.events import NewPlotEvent, StatusEvent 8 from sans.guicomm.events import EVT_SLICER_PANEL,E RR_DATA9 10 from sans.fit.AbstractFitEngine import Model 9 from sans.guicomm.events import EVT_SLICER_PANEL,EVT_MODEL2D_PANEL,ERR_DATA 10 11 from sans.fit.AbstractFitEngine import Model,FitData1D,FitData2D#,Data, 11 12 from fitproblem import FitProblem 12 13 from fitpanel import FitPanel … … 19 20 DEFAULT_QMAX = 0.1 20 21 DEFAULT_NPTS = 50 22 import time 23 import thread 21 24 22 25 class Plugin:
Note: See TracChangeset
for help on using the changeset viewer.