Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
Miguel Valdez
- Thu, 28 Apr 2016 08:20:15
Show More
0
schainpy/scripts/schain
schainpy/scripts/schain
created
644
+49
0
@@
-0,0
+1,49
1
#!/usr/bin/env python
2
'''
3
Created on Jul 7, 2014
4
5
@author: roj-idl71
6
'''
7
import os, sys
8
9
from schainpy import controller_api
10
from optparse import OptionParser
11
12
USAGE = """This script executes Signal Chain using parameters stored in [filename].
13
14
$ schain --file=[filename]
15
"""
16
17
def main(filename):
18
19
controllerObj = controller_api.ControllerThread()
20
if not controllerObj.readXml(filename):
21
return
22
23
#Configure use of external plotter before start
24
plotterObj = controllerObj.useExternalPlotter()
25
########################################
26
27
controllerObj.start()
28
plotterObj.start()
29
30
print "Finishing all processes ..."
31
32
controllerObj.join(5)
33
34
print "End of script"
35
36
if __name__ == '__main__':
37
38
parser = OptionParser(usage=USAGE)
39
40
parser.add_option("-f", "--file", type="string", default="",
41
help="File containing schain parameters")
42
43
(op, args) = parser.parse_args()
44
45
if not op.file:
46
parser.print_help()
47
sys.exit(0)
48
49
main(op.file)
No newline at end of file
0
schainpy/VERSION
schainpy/VERSION
+2
-1
@@
-81,4
+81,5
properly but the next days did not.
81
81
2.2.5:
82
82
-splitProfiles and combineProfiles modules were added to VoltageProc and Signal Chain GUI.
83
83
-nProfiles of USRP data (hdf5) is the number of profiles thera are in one second.
84
-jroPlotter works directly with data objects instead of dictionaries
No newline at end of file
84
-jroPlotter works directly with data objects instead of dictionaries
85
-script "schain" was added to Signal Chain installer
No newline at end of file
0
schainpy/controller.py
schainpy/controller.py
+6
-2
0
setup.py
setup.py
+2
-3
@@
-31,11
+31,10
setup(name="schainpy",
31
31
'schainpy.gui.figures' : [ '*.png' , '*.jpg' ],
32
32
},
33
33
include_package_data = False ,
34
scripts = [ 'schainpy/gui/schainGUI' ],
34
scripts = [ 'schainpy/gui/schainGUI' ,
35
'schainpy/scripts/schain' ],
35
36
install_requires = [ "numpy >= 1.6.0" ,
36
37
"scipy >= 0.9.0" ,
37
"h5py >= 2.0.1" ,
38
38
"matplotlib >= 1.0.0" ,
39
# "pyfits >= 2.0.0",
40
39
],
41
40
)
No newline at end of file
0
schainpy/scripts/readSchainFile.py
schainpy/scripts/readSchainFile.py
removed
0
-34
1
NO CONTENT: file was removed
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages