##// END OF EJS Templates
Changes to meteor detection and phase correction because of relocation of antenna
Changes to meteor detection and phase correction because of relocation of antenna

File last commit:

r583:e5ed8fbe1d1e
r819:c63b6bff3798
Show More
schainGUI
28 lines | 716 B | text/plain | TextLexer
#!/usr/bin/env python
import os, sys
from PyQt4 import QtCore, QtGui
from PyQt4.QtGui import QApplication
from schainpy.gui.viewcontroller.initwindow import InitWindow
from schainpy.gui.viewcontroller.basicwindow import BasicWindow
from schainpy.gui.viewcontroller.workspace import Workspace
def main():
app = QtGui.QApplication(sys.argv)
Welcome=InitWindow()
if not Welcome.exec_():
sys.exit(-1)
WorkPathspace=Workspace()
if not WorkPathspace.exec_():
sys.exit(-1)
MainGUI=BasicWindow()
MainGUI.setWorkSpaceGUI(WorkPathspace.dirComBox.currentText())
MainGUI.show()
sys.exit(app.exec_())
if __name__ == "__main__":
main()