Changeset 35be99c in sasview for sansview/perspectives


Ignore:
Timestamp:
Feb 28, 2009 12:03:25 PM (15 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:
f0ffb873
Parents:
98be89f
Message:

import added

File:
1 edited

Legend:

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

    red2ea6a r35be99c  
    44 
    55from copy import deepcopy  
    6 from danse.common.plottools.plottables import  Theory1D,Data2D 
     6from danse.common.plottools.plottables import Data1D, Theory1D,Data2D 
     7from danse.common.plottools.PlotPanel import PlotPanel 
    78from sans.guicomm.events import NewPlotEvent, StatusEvent   
    8 from sans.guicomm.events import EVT_SLICER_PANEL,ERR_DATA 
    9  
    10 from sans.fit.AbstractFitEngine import Model 
     9from sans.guicomm.events import EVT_SLICER_PANEL,EVT_MODEL2D_PANEL,ERR_DATA 
     10 
     11from sans.fit.AbstractFitEngine import Model,FitData1D,FitData2D#,Data, 
    1112from fitproblem import FitProblem 
    1213from fitpanel import FitPanel 
     
    1920DEFAULT_QMAX = 0.1 
    2021DEFAULT_NPTS = 50 
     22import time 
     23import thread 
    2124 
    2225class Plugin: 
Note: See TracChangeset for help on using the changeset viewer.