Skip to content
Snippets Groups Projects
Commit f24f32fd authored by Zhou, Wenduo's avatar Zhou, Wenduo
Browse files

Refs #12122. Added reduction controlling class.

parent 720a242a
No related branches found
No related tags found
No related merge requests found
#pylint: disable=invalid-name
from HFIR_4Circle_Reduction import reduce4circleGUI
from PyQt4 import QtGui
import sys
def qapp():
if QtGui.QApplication.instance():
_app = QtGui.QApplication.instance()
else:
_app = QtGui.QApplication(sys.argv)
return _app
app = qapp()
reducer = reduce4circleGUI.MainWindow() #the main ui class in this file is called MainWindow
reducer.show()
app.exec_()
This diff is collapsed.
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