Changeset 3ae9179 in sasview for src/sas/qtgui/MainWindow/DataExplorer.py
- Timestamp:
- Aug 10, 2018 6:17:13 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 44777ee
- Parents:
- a2cc8b97
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/DataExplorer.py
rebfe223 r3ae9179 4 4 import time 5 5 import logging 6 import re 6 7 7 8 from PyQt5 import QtCore … … 36 37 # The controller which is responsible for managing signal slots connections 37 38 # for the gui and providing an interface to the data model. 39 theory_plot_ID_pattern = re.compile(r"^([0-9]+)\s+(\[(.*)\]\s+)?(.*)$") 38 40 39 41 def __init__(self, parent=None, guimanager=None, manager=None): … … 504 506 self.active_plots[plot_id].replacePlot(plot_id, plot) 505 507 else: 508 # Don't plot intermediate data e.g. P(Q), S(Q) 509 match = self.theory_plot_ID_pattern.match(plot_id) 510 if match and match.groups()[1] != None: 511 continue 506 512 # 'sophisticated' test to generate standalone plot for residuals 507 513 if 'esiduals' in plot.title:
Note: See TracChangeset
for help on using the changeset viewer.