Skip to content
Snippets Groups Projects
Powder_Diffraction_Reduction.py 266 B
Newer Older
"""
    Script used to start the DGS reduction GUI from MantidPlot
"""
from reduction_application import ReductionGUI
from PyQt4 import QtCore, uic

reducer = ReductionGUI(instrument_list=["PG3", "NOM", "VULCAN"])
reducer.setup_layout(load_last=True)
reducer.show()