- Timestamp:
- Feb 22, 2016 3:06:35 AM (9 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:
- d85c194
- Parents:
- b699768
- Location:
- src
- Files:
-
- 1 added
- 18 edited
- 20 moved
Legend:
- Unmodified
- Added
- Removed
-
src/examples/test_chisq_panel.py
r3a39c2e rd7bb526 27 27 28 28 import wx 29 from sas. plottools.PlotPanel import PlotPanel30 from sas. plottools.plottables import Plottable, Graph, Data1D, Theory1D29 from sas.sasgui.plottools.PlotPanel import PlotPanel 30 from sas.sasgui.plottools.plottables import Plottable, Graph, Data1D, Theory1D 31 31 import sys 32 32 import numpy -
src/examples/test_copy_print.py
r3a39c2e rd7bb526 26 26 27 27 import wx 28 from sas. plottools.PlotPanel import PlotPanel29 from sas. plottools.plottables import Graph, Data1D, Theory1D28 from sas.sasgui.plottools.PlotPanel import PlotPanel 29 from sas.sasgui.plottools.plottables import Graph, Data1D, Theory1D 30 30 import sys 31 31 sys.platform = 'win95' -
src/examples/test_panel.py
r3a39c2e rd7bb526 37 37 """ 38 38 import wx 39 from sas. plottools.PlotPanel import PlotPanel40 from sas. plottools.plottables import Data1D39 from sas.sasgui.plottools.PlotPanel import PlotPanel 40 from sas.sasgui.plottools.plottables import Data1D 41 41 import sys 42 42 import numpy -
src/examples/test_panel2D.py
rb699768 rd7bb526 37 37 """ 38 38 import wx 39 from sas. plottools.PlotPanel import PlotPanel40 from sas. plottools.plottables import Data1D, Theory1D, Data2D39 from sas.sasgui.plottools.PlotPanel import PlotPanel 40 from sas.sasgui.plottools.plottables import Data1D, Theory1D, Data2D 41 41 import sys,os 42 42 import numpy -
src/examples/test_text_panel.py
r3a39c2e rd7bb526 27 27 28 28 import wx 29 from sas. plottools.PlotPanel import PlotPanel30 from sas. plottools.plottables import Text, Graph29 from sas.sasgui.plottools.PlotPanel import PlotPanel 30 from sas.sasgui.plottools.plottables import Text, Graph 31 31 32 32 class TestPlotPanel(PlotPanel): -
src/sas/guiframe/dataFitting.py
rb699768 rd7bb526 6 6 import math 7 7 from sas.sascalc.data_util.uncertainty import Uncertainty 8 from sas. plottools.plottables import Data1D as PlotData1D9 from sas. plottools.plottables import Data2D as PlotData2D10 from sas. plottools.plottables import Theory1D as PlotTheory1D8 from sas.sasgui.plottools.plottables import Data1D as PlotData1D 9 from sas.sasgui.plottools.plottables import Data2D as PlotData2D 10 from sas.sasgui.plottools.plottables import Theory1D as PlotTheory1D 11 11 12 12 from sas.sascalc.dataloader.data_info import Data1D as LoadData1D -
src/sas/guiframe/data_processor.py
r44d20af rd7bb526 28 28 from sas.guiframe.events import NewPlotEvent 29 29 from sas.guiframe.events import StatusEvent 30 from sas. plottools import plottables30 from sas.sasgui.plottools import plottables 31 31 from sas.guiframe.dataFitting import Data1D 32 32 -
src/sas/guiframe/local_perspectives/plotting/Plotter1D.py
r6f16e25 rd7bb526 16 16 import numpy 17 17 import logging 18 from sas. plottools.PlotPanel import PlotPanel18 from sas.sasgui.plottools.PlotPanel import PlotPanel 19 19 from sas.guiframe.events import StatusEvent 20 20 from sas.guiframe.events import PanelOnFocusEvent -
src/sas/guiframe/local_perspectives/plotting/Plotter2D.py
rb699768 rd7bb526 16 16 import numpy 17 17 import logging 18 from sas. plottools.PlotPanel import PlotPanel19 from sas. plottools.plottables import Graph20 from sas. plottools.TextDialog import TextDialog18 from sas.sasgui.plottools.PlotPanel import PlotPanel 19 from sas.sasgui.plottools.plottables import Graph 20 from sas.sasgui.plottools.TextDialog import TextDialog 21 21 from sas.guiframe.events import StatusEvent 22 22 from sas.guiframe.events import NewPlotEvent … … 26 26 from sas.guiframe.local_perspectives.plotting.binder import BindArtist 27 27 from Plotter1D import ModelPanel1D 28 from sas. plottools.toolbar import NavigationToolBar28 from sas.sasgui.plottools.toolbar import NavigationToolBar 29 29 from matplotlib.font_manager import FontProperties 30 30 from graphAppearance import graphAppearance -
src/sas/guiframe/local_perspectives/plotting/SimplePlot.py
r098f3d2 rd7bb526 4 4 import wx 5 5 from sas.guiframe.local_perspectives.plotting.Plotter2D import ModelPanel2D as PlotPanel 6 from sas. plottools.toolbar import NavigationToolBar7 from sas. plottools.plottables import Graph6 from sas.sasgui.plottools.toolbar import NavigationToolBar 7 from sas.sasgui.plottools.plottables import Graph 8 8 from sas.guiframe.utils import PanelMenu 9 9 from sas.guiframe.events import StatusEvent -
src/sas/guiframe/local_perspectives/plotting/graphAppearance.py
rac7be54 rd7bb526 12 12 13 13 import wx 14 from sas. plottools.SimpleFont import SimpleFont14 from sas.sasgui.plottools.SimpleFont import SimpleFont 15 15 16 16 COLOR = ['black', 'blue', 'green', 'red', 'cyan', 'magenta', 'yellow'] -
src/sas/guiframe/local_perspectives/plotting/masking.py
rb699768 rd7bb526 25 25 import copy 26 26 import numpy 27 from sas. plottools.PlotPanel import PlotPanel28 from sas. plottools.plottables import Graph27 from sas.sasgui.plottools.PlotPanel import PlotPanel 28 from sas.sasgui.plottools.plottables import Graph 29 29 from binder import BindArtist 30 30 from sas.guiframe.dataFitting import Data1D, Data2D -
src/sas/guiframe/local_perspectives/plotting/profile_dialog.py
rc039589 rd7bb526 5 5 import sys 6 6 from copy import deepcopy 7 from sas. plottools.plottables import Graph7 from sas.sasgui.plottools.plottables import Graph 8 8 from Plotter1D import ModelPanel1D as PlotPanel 9 9 from sas.guiframe.dataFitting import Data1D -
src/sas/perspectives/calculator/data_operator.py
rb699768 rd7bb526 7 7 import numpy 8 8 from sas.sascalc.dataloader.data_info import Data1D 9 from sas. plottools.PlotPanel import PlotPanel10 from sas. plottools.plottables import Graph11 from sas. plottools import transform9 from sas.sasgui.plottools.PlotPanel import PlotPanel 10 from sas.sasgui.plottools.plottables import Graph 11 from sas.sasgui.plottools import transform 12 12 from matplotlib.font_manager import FontProperties 13 13 from sas.guiframe.events import StatusEvent … … 888 888 first_item = list.keys()[0] 889 889 if first_item.x != []: 890 from sas. plottools.PropertyDialog import Properties890 from sas.sasgui.plottools.PropertyDialog import Properties 891 891 dial = Properties(self, -1, 'Change Scale') 892 892 # type of view or model used -
src/sas/perspectives/calculator/gen_scatter_panel.py
rb699768 rd7bb526 34 34 from wx.lib.scrolledpanel import ScrolledPanel 35 35 from sas.perspectives.calculator.load_thread import GenReader 36 from sas. plottools.arrow3d import Arrow3D36 from sas.sasgui.plottools.arrow3d import Arrow3D 37 37 from sas.perspectives.calculator import calculator_widgets as widget 38 38 from sas.guiframe.events import NewPlotEvent -
src/sas/perspectives/fitting/basepage.py
rb699768 rd7bb526 1832 1832 x, y = self.model.getProfile() 1833 1833 1834 from sas. plottools import Data1D as pf_data1d1834 from sas.sasgui.plottools import Data1D as pf_data1d 1835 1835 #from sas.perspectives.theory.profile_dialog import SLDPanel 1836 1836 from sas.guiframe.local_perspectives.plotting.profile_dialog \ -
src/sas/perspectives/pr/explore_dialog.py
rb699768 rd7bb526 28 28 29 29 # Import plotting classes 30 from sas. plottools.PlotPanel import PlotPanel31 from sas. plottools import Data1D as Model1D30 from sas.sasgui.plottools.PlotPanel import PlotPanel 31 from sas.sasgui.plottools import Data1D as Model1D 32 32 from sas.guiframe.gui_style import GUIFRAME_ID 33 from sas. plottools.plottables import Graph33 from sas.sasgui.plottools.plottables import Graph 34 34 35 35 from pr_widgets import PrTextCtrl -
src/sas/sascalc/calculator/sas_gen.py
rb699768 rd7bb526 1040 1040 Test code 1041 1041 """ 1042 from sas. plottools.arrow3d import Arrow3D1042 from sas.sasgui.plottools.arrow3d import Arrow3D 1043 1043 current_dir = os.path.abspath(os.path.curdir) 1044 1044 print current_dir -
src/sas/sasgui/plottools/PlotPanel.py
rd3d67f0 rd7bb526 32 32 import numpy 33 33 34 from ..guiframe.events import StatusEvent34 from sas.guiframe.events import StatusEvent 35 35 from .toolbar import NavigationToolBar, PlotPrintout, bind 36 36 -
src/sas/sasgui/plottools/config.py
rd3d67f0 rd7bb526 9 9 10 10 # Select matplotlib version and backend 11 import sas. plottools.config11 import sas.sasgui.plottools.config 12 12 13 13 Note that plottools requires particular versions of matplotlib
Note: See TracChangeset
for help on using the changeset viewer.