Changeset a07e72f in sasview for guiframe/data_manager.py
- Timestamp:
- Feb 28, 2011 4:07:14 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:
- 243a8d4
- Parents:
- 6bbeacd4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/data_manager.py
r0348245 ra07e72f 23 23 from sans.guiframe.dataFitting import Data2D 24 24 25 import wx 26 25 27 class DataManager(object): 26 28 """ … … 77 79 new_plot.interactive = True 78 80 ## when 2 data have the same id override the 1 st plotted 79 new_plot.id = name81 new_plot.id = wx.NewId() 80 82 ##group_id specify on which panel to plot this data 81 new_plot.group_id = name83 new_plot.group_id = [wx.NewId()] 82 84 new_plot.is_data = True 83 85 new_plot.path = path … … 151 153 """ 152 154 """ 153 print "append theory", self.stored_data, data_id154 155 if data_id in self.stored_data: 155 156 data_state = self.stored_data[data_id]
Note: See TracChangeset
for help on using the changeset viewer.