Changeset f468791 in sasview for src/sans/perspectives
- Timestamp:
- Oct 24, 2013 10:40:22 AM (11 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:
- 1f8eecb
- Parents:
- a9d5684
- Location:
- src/sans/perspectives
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sans/perspectives/calculator/data_operator.py
r5777106 rf468791 6 6 import time 7 7 import numpy 8 from sans.dataloader.data_info import Data2D9 8 from sans.dataloader.data_info import Data1D 10 from danse.common.plottools.PlotPanel import PlotPanel 11 from danse.common.plottools.plottables import Graph 12 from danse.common.plottools.canvas import FigureCanvas 13 from danse.common.plottools import transform 9 from sans.plottools.PlotPanel import PlotPanel 10 from sans.plottools.plottables import Graph 11 from sans.plottools import transform 14 12 from matplotlib.font_manager import FontProperties 15 from matplotlib.figure import Figure16 13 from sans.guiframe.events import StatusEvent 17 14 from sans.perspectives.calculator import calculator_widgets as widget … … 865 862 first_item = list.keys()[0] 866 863 if first_item.x != []: 867 from danse.common.plottools.PropertyDialog import Properties864 from sans.plottools.PropertyDialog import Properties 868 865 dial = Properties(self, -1, 'Change Scale') 869 866 # type of view or model used -
src/sans/perspectives/calculator/gen_scatter_panel.py
r5777106 rf468791 34 34 from wx.lib.scrolledpanel import ScrolledPanel 35 35 from sans.perspectives.calculator.load_thread import GenReader 36 from danse.common.plottools.arrow3d import Arrow3D36 from sans.plottools.arrow3d import Arrow3D 37 37 from sans.perspectives.calculator import calculator_widgets as widget 38 38 from sans.guiframe.events import NewPlotEvent -
src/sans/perspectives/fitting/basepage.py
r5777106 rf468791 2005 2005 x, y = self.model.getProfile() 2006 2006 2007 from danse.common.plottools import Data1D as pf_data1d2007 from sans.plottools import Data1D as pf_data1d 2008 2008 #from sans.perspectives.theory.profile_dialog import SLDPanel 2009 2009 from sans.guiframe.local_perspectives.plotting.profile_dialog \ -
src/sans/perspectives/pr/explore_dialog.py
r5777106 rf468791 29 29 30 30 # Import plotting classes 31 from danse.common.plottools.PlotPanel import PlotPanel32 from danse.common.plottools import Data1D as Model1D31 from sans.plottools.PlotPanel import PlotPanel 32 from sans.plottools import Data1D as Model1D 33 33 from sans.guiframe.gui_style import GUIFRAME_ID 34 from danse.common.plottools.plottables import Graph34 from sans.plottools.plottables import Graph 35 35 36 36 from pr_widgets import PrTextCtrl
Note: See TracChangeset
for help on using the changeset viewer.