Skip to content
Snippets Groups Projects
Commit 01ac2631 authored by Doucet, Mathieu's avatar Doucet, Mathieu
Browse files

Fixed data proxy for displaying instrument. Re #3311

parent de86dcdd
No related branches found
No related tags found
No related merge requests found
......@@ -19,13 +19,17 @@ class DataProxy(object):
def __init__(self, data_file, workspace_name=None):
self.errors = []
if HAS_MANTID:
print "loading", data_file
try:
if workspace_name is None:
self.data_ws = "__raw_data_file"
else:
self.data_ws = str(workspace_name)
LoadEventNexus(Filename=data_file, OutputWorkspace=workspace_name)
try:
LoadEventNexus(Filename=data_file, OutputWorkspace=workspace_name)
except:
self.errors.append("Error loading data file as Nexus event file:\n%s" % sys.exc_value)
LoadNexus(Filename=data_file, OutputWorkspace=workspace_name)
self.errors = []
except:
self.data_ws = None
self.errors.append("Error loading data file:\n%s" % sys.exc_value)
......@@ -160,7 +160,7 @@ class BaseWidget(QtGui.QWidget):
# Check that the file exists.
if not os.path.exists(file_name):
QtGui.QMessageBox.warning(self.widgets[0], "File Not Found", "The supplied mask file can't be found on the file system")
QtGui.QMessageBox.warning(self, "File Not Found", "The supplied mask file can't be found on the file system")
if self._data_proxy is not None:
proxy = self._data_proxy(file_name, workspace)
......@@ -169,8 +169,8 @@ class BaseWidget(QtGui.QWidget):
MaskDetectors(proxy.data_ws, DetectorList=mask)
_show_ws_instrument(proxy.data_ws)
else:
QtGui.QMessageBox.warning(self.widgets[0], "Mask Error", "Mantid doesn't know how to load this file")
QtGui.QMessageBox.warning(self, "Mask Error", "Mantid doesn't know how to load this file")
else:
QtGui.QMessageBox.warning(self.widgets[0], "Mask Error", "Mantid doesn't know how to load this file")
QtGui.QMessageBox.warning(self, "Mask Error", "Mantid doesn't know how to load this file")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment