Changeset f53444be in sasview for theoryview/perspectives/theory
- Timestamp:
- Jan 21, 2011 12:53:19 PM (14 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:
- b5181f6
- Parents:
- f444b20
- Location:
- theoryview/perspectives/theory
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
theoryview/perspectives/theory/basepage.py
r9299455 rf53444be 11 11 from sans.guiframe.utils import format_number 12 12 from sans.guiframe.utils import check_float 13 from sans.gui comm.events import StatusEvent13 from sans.guiframe.events import StatusEvent 14 14 import pagestate 15 15 from pagestate import PageState -
theoryview/perspectives/theory/model_panel.py
rfc292d3 rf53444be 8 8 from sans.models.dispersion_models import ArrayDispersion 9 9 from sans.models.dispersion_models import GaussianDispersion 10 from sans.gui comm.events import StatusEvent10 from sans.guiframe.events import StatusEvent 11 11 from sans.guiframe.utils import format_number 12 12 import basepage -
theoryview/perspectives/theory/model_thread.py
r74755ff rf53444be 1 1 2 import time 3 import sys 4 import numpy 5 import math 2 6 from data_util.calcthread import CalcThread 3 import sys4 import numpy,math5 7 6 8 class Calc2D(CalcThread): -
theoryview/perspectives/theory/models.py
r1cc23fd rf53444be 5 5 6 6 """ 7 8 import imp 9 import os 10 import sys 11 import math 12 # Time is needed by the log method 13 import time 14 import os.path 7 15 import wx 8 16 import wx.lib.newevent 9 import imp 10 import os,sys,math 11 import os.path 12 13 (ModelEvent, EVT_MODEL) = wx.lib.newevent.NewEvent() 14 from sans.guicomm.events import StatusEvent 15 # Time is needed by the log method 16 import time 17 17 from sans.guiframe.events import StatusEvent 18 18 # Explicitly import from the pluginmodel module so that py2exe 19 19 # places it in the distribution. The Model1DPlugin class is used 20 20 # as the base class of plug-in models. 21 21 from sans.models.pluginmodel import Model1DPlugin 22 22 23 (ModelEvent, EVT_MODEL) = wx.lib.newevent.NewEvent() 24 25 23 26 def log(message): 24 27 """ -
theoryview/perspectives/theory/profile_dialog.py
rfb59ed9 rf53444be 1 2 3 1 4 import wx 2 5 import sys 3 6 import pylab 4 7 from copy import deepcopy 5 8 from danse.common.plottools.PlotPanel import PlotPanel 6 9 from danse.common.plottools.plottables import Graph 7 10 from sans.guiframe.dataFitting import Theory1D 8 import pylab9 11 10 DEFAULT_CMAP= pylab.cm.jet 12 13 DEFAULT_CMAP = pylab.cm.jet 11 14 12 15 _BOX_WIDTH = 76 … … 15 18 16 19 #SLD panel size 17 if sys.platform.count("win32") >0:20 if sys.platform.count("win32") > 0: 18 21 _STATICBOX_WIDTH = 380 19 22 PANEL_SIZE = 475 -
theoryview/perspectives/theory/theory.py
r2f60121 rf53444be 9 9 import model_panel 10 10 from model_panel import ModelPanel 11 from sans.gui comm.events import NewPlotEvent12 from sans.gui comm.events import StatusEvent11 from sans.guiframe.events import NewPlotEvent 12 from sans.guiframe.events import StatusEvent 13 13 from sans.guiframe.dataFitting import Data2D 14 14 from sans.guiframe.dataFitting import Theory1D
Note: See TracChangeset
for help on using the changeset viewer.