#! /usr/env python #-------------------------------------------------------------------------------- """ This is a simple small script to invoke the main script DAQ_96_Gui so that python will generate and re-use the .pyc parsed code for the main appl """ #-------------------------------------------------------------------------------- import sys import string from DAQ_96_Gui import DAQ_96_Gui_App #-------------------------------------------------------------------------------- # default target node is local node #-------------------- TccNode = "localhost" # accept override(s) from the command line #-------------------- if ( len (sys.argv) > 1 ) : TccNode = string.lower( sys.argv[1] ) # run the application #-------------------- DAQ_96_Gui_App( TccNode = TccNode ).run()