Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML #!/usr/bin/env python # -*- coding: utf-8 -*- version = '0.0.1' version_name = 'gamma' modify_date = '2009-12-26' from optparse import OptionParser import matplotlib import numpy as np import scipy.stats as stats import warnings warnings .filterwarnings( 'ignore' , '' , DeprecationWarning) # turning off deprecation warning in python 2.6 kB = 8 .31441e- 3 / 4 . 184 def readin_monitor (monitor): '''Read in monitor file. Ignoring all strings starting with # symbol. <br/> Function returns all stored data from the strings as list of lists of <br/> floats.''' num = 0 data = [] for line in open (monitor, 'r' ): try : if line[ 0 ] != '#' : data.append([ float (i) for i in line.split()]) num = num + 1 except : pass if options.verbose: print ( 'Read in %i data points from monitor file %s' % (num, monitor)) return data def main (): return 0 global options global args parser = OptionParser( "usage: %prog [options] [monitors]" , version= '%prog ' +version+ ' from ' +modify_date) parser .add_option( "-v" , "--verbose" , action= "store_true" , dest= "verbose" , default=False, help= "Print status messages to stdout" ) parser .add_option( "-C" , "--combine" , dest= "combine" , action= "store" , default= "" , help= 'Combine all monitor files passed as arguments \ <br/> to the UC.py script to one COMBINE file' ) parser .add_option( '-D' , '--dimentions' , dest= 'dimentions' , default = '1:2' , help= 'String of DIMENTIONS for monitor files to be \ <br/> read in. (defaut = %default)' ) (options, args) = parser .parse_args() if __name__ == '__main__' : main ()
Copy Source | Copy HTML
- Usage: UC.py [options] [monitors]
- Options:
- --version show program version number and exit
- -h, - help show this help message and exit
- -v, --verbose Print status messages to stdout
- -C COMBINE, --combine = COMBINE
- Combine all monitor files passed as arguments
- to the UC.py script to one COMBINE file.
- (defaut = out)
- -D DIMENTIONS, --dimentions = DIMENTIONS
- String of DIMENTIONS for monitor files to be
- read in . (defaut = 0 : 1 : 2 )
Copy Source | Copy HTML
- #! / usr / bin / env python
- # - * - coding: utf-8 - * -
- '' 'Unit tests for UC.py module.' ''
- import UC
- import unittest
- global monitor
- MD = time (ps), CV # 1, CV # 2 <br/> 0.9990 <br/> 3 br /> 10.9990 9.5761421491 8.3053224696 <br/> 11.9990 9.5178829977 8.1660258902 '' '
- class Combine_monitors ( unittest .TestCase):
- def test_readin_monitor (self):
- with open ( 'test_mon' , 'w' ) as MON:
- MON.write (monitor)
- UC.options.verbose = False
- self .assertEqual ([[ 0. 999 , 9. 2349535263 , 7. 7537518210999998 ],
- [ 1 . 99900000000001 , 9 . 4331321327000008 , 7 . 9555258176999999 ],
- [ 2 . 99900000000001 , 9 . 5368308183000003 , 8 . 1341402536 ]
- [ 3 . 99900000000001 , 9 . 4468066031000006 , 7 . 9086253192999996 ],
- [ 4 . 9989999999999997 , 9 . 1565151681000003 , 8 . 0027457961999993 ],
- [ 5 . 9989999999999997 , 9 . 2310306859000004 , 7 . 9872398398 ]
- [ 6 . 9989999999999997 , 9 . 1540695183 , 7 . 5236796623000002 ],
- [ 7 . 9989999999999997 , 9 . 0727576308 , 7 . 8499035889000002 ],
- [ 8 . 99900000000006 , 9 . 3113419250000007 , 8 . 1227557439000009 ],
- [ 9 . 99900000000006 , 8 . 9597834512999999 , 8 . 3754973753000002 ]
- [ 10 . 9990000000001 , 9 . 5761421491000007 , 8 . 3053224696000001 ],
- [ 11 . 9990000000001 , 9 . 5178829976999992 , 8 . 1,660258902000002 ]],
- UC.readin_monitor ( 'test_mon' ))
- def main ():
- unittest . main ()
- return 0
- if __name__ == '__main__' :
- main ()
$ ./test-UC.py
.
----------------------------------------------------------------------
Ran 1 test in 0.000s
OK
Source: https://habr.com/ru/post/79435/
All Articles