##// END OF EJS Templates
Affected:...
Affected: jrodata.py: JROData class: profileIndex attribute was added JROVoltage class: jroIO_base.py: JROReader class: nTxs and txIndex attributes were added jroIO_voltage.py: JROVoltageReader class: nTxs and txIndex attributes were added in order to divide one profile in sub-profiles jroproc_voltage.py: JROVoltageProc class: Decoder: Decoded data has the same dimension as profile ProfileSelector : This method use the profileIndex attribute of Voltage object Reshaper:

File last commit:

r385:cd998dfc7f21
r534:e42d2b934f89
Show More
testSignalChainGUI.py
29 lines | 760 B | text/x-python | PythonLexer
/ schainpy / gui / testSignalChainGUI.py
#!/usr/bin/python
# -*- coding: utf-8 -*-'
import sys
from PyQt4 import QtCore, QtGui
from PyQt4.QtGui import QApplication
#from PyQt4.QtCore import pyqtSignature
from viewcontroller.initwindow import InitWindow
from viewcontroller.basicwindow import BasicWindow
from viewcontroller.workspace import Workspace
def main():
import sys
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()