Changeset f468791 in sasview for src/sans/guiframe
- 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/guiframe
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sans/guiframe/dataFitting.py
r5777106 rf468791 6 6 import math 7 7 from data_util.uncertainty import Uncertainty 8 from danse.common.plottools.plottables import Data1D as PlotData1D9 from danse.common.plottools.plottables import Data2D as PlotData2D10 from danse.common.plottools.plottables import Theory1D as PlotTheory1D8 from sans.plottools.plottables import Data1D as PlotData1D 9 from sans.plottools.plottables import Data2D as PlotData2D 10 from sans.plottools.plottables import Theory1D as PlotTheory1D 11 11 12 12 from sans.dataloader.data_info import Data1D as LoadData1D -
src/sans/guiframe/data_processor.py
r5777106 rf468791 5 5 import numpy 6 6 import math 7 import time8 7 import re 9 8 import os … … 16 15 import wx.lib.sheet as sheet 17 16 from sans.guiframe.panel_base import PanelBase 18 from sans.guiframe.utils import format_number19 17 from sans.guiframe.events import NewPlotEvent 20 18 from sans.guiframe.events import StatusEvent 21 from danse.common.plottools import plottables19 from sans.plottools import plottables 22 20 from sans.guiframe.dataFitting import Data1D 23 21 … … 1051 1049 StatusEvent(status=msg, 1052 1050 info="error")) 1053 #time.sleep(0.5)1054 1051 return 1055 1052 … … 1066 1063 msg += "Column %s is NOT " % str(label) 1067 1064 msg += "the results of fits to view..." 1068 #raise ValueError, msg1069 1065 wx.PostEvent(self.parent.parent, 1070 1066 StatusEvent(status=msg, info="error")) 1071 #time.sleep(0.5)1072 1067 return 1073 #continue1074 1068 1075 1069 def on_plot(self, event): -
src/sans/guiframe/local_perspectives/plotting/Plotter1D.py
r5777106 rf468791 13 13 import wx 14 14 import sys 15 import os16 import pylab17 15 import math 18 16 import numpy 19 import time 20 21 from danse.common.plottools.PlotPanel import PlotPanel 22 from danse.common.plottools.SizeDialog import SizeDialog 23 from danse.common.plottools.LabelDialog import LabelDialog 24 #from danse.common.plottools.plottables import Graph 25 from sans.guiframe import dataFitting 26 from sans.guiframe.events import EVT_NEW_PLOT 17 18 from sans.plottools.PlotPanel import PlotPanel 27 19 from sans.guiframe.events import StatusEvent 28 from sans.guiframe.events import NewPlotEvent29 from sans.guiframe.events import NewColorEvent30 from sans.guiframe.events import SlicerEvent31 20 from sans.guiframe.events import PanelOnFocusEvent 32 from sans.guiframe.events import EVT_NEW_LOADED_DATA33 21 from sans.guiframe.utils import PanelMenu 34 from sans.guiframe.dataFitting import Data1D35 22 from sans.guiframe.panel_base import PanelBase 36 23 from sans.guiframe.gui_style import GUIFRAME_ICON 37 from danse.common.plottools.binder import BindArtist38 24 from appearanceDialog import appearanceDialog 39 25 from graphAppearance import graphAppearance -
src/sans/guiframe/local_perspectives/plotting/Plotter2D.py
r5777106 rf468791 13 13 import wx 14 14 import sys 15 import os16 15 import math 17 16 import numpy 18 import pylab 19 import danse.common.plottools 20 from danse.common.plottools.PlotPanel import PlotPanel 21 from danse.common.plottools.plottables import Graph 22 from danse.common.plottools.TextDialog import TextDialog 23 from sans.guiframe.events import EVT_NEW_PLOT 24 from sans.guiframe.events import EVT_SLICER_PARS 17 from sans.plottools.PlotPanel import PlotPanel 18 from sans.plottools.plottables import Graph 19 from sans.plottools.TextDialog import TextDialog 25 20 from sans.guiframe.events import StatusEvent 26 21 from sans.guiframe.events import NewPlotEvent … … 30 25 from sans.guiframe.local_perspectives.plotting.binder import BindArtist 31 26 from Plotter1D import ModelPanel1D 32 from danse.common.plottools.toolbar import NavigationToolBar 33 from sans.guiframe.dataFitting import Data1D 27 from sans.plottools.toolbar import NavigationToolBar 34 28 from matplotlib.font_manager import FontProperties 35 29 from graphAppearance import graphAppearance -
src/sans/guiframe/local_perspectives/plotting/SimplePlot.py
r5777106 rf468791 5 5 from sans.guiframe.local_perspectives.plotting.Plotter2D import ModelPanel2D \ 6 6 as PlotPanel 7 from danse.common.plottools.toolbar import NavigationToolBar 8 #from danse.common.plottools.PlotPanel import PlotPanel 9 from danse.common.plottools.plottables import Graph 7 from sans.plottools.toolbar import NavigationToolBar 8 from sans.plottools.plottables import Graph 10 9 from sans.guiframe.utils import PanelMenu 11 10 -
src/sans/guiframe/local_perspectives/plotting/graphAppearance.py
r5777106 rf468791 18 18 19 19 import wx 20 from danse.common.plottools.SimpleFont import SimpleFont20 from sans.plottools.SimpleFont import SimpleFont 21 21 22 22 COLOR = ['black', 'blue', 'green', 'red', 'cyan', 'magenta', 'yellow'] -
src/sans/guiframe/local_perspectives/plotting/masking.py
r5777106 rf468791 25 25 import copy 26 26 import numpy 27 from danse.common.plottools.PlotPanel import PlotPanel28 from danse.common.plottools.plottables import Graph27 from sans.plottools.PlotPanel import PlotPanel 28 from sans.plottools.plottables import Graph 29 29 from binder import BindArtist 30 30 from sans.guiframe.dataFitting import Data1D, Data2D -
src/sans/guiframe/local_perspectives/plotting/profile_dialog.py
r5777106 rf468791 6 6 import sys 7 7 from copy import deepcopy 8 from danse.common.plottools.plottables import Graph8 from sans.plottools.plottables import Graph 9 9 from Plotter1D import ModelPanel1D as PlotPanel 10 10 from sans.guiframe.dataFitting import Data1D
Note: See TracChangeset
for help on using the changeset viewer.