From: W. Trevor King Date: Wed, 20 Oct 2010 07:06:05 +0000 (-0400) Subject: Add bin/vel_dep_scan.py calling pysawsim.velocity_dependant_scan.main(). X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a2aa760df9ca43f8d3d5aa39ac8e66479601a171;p=sawsim.git Add bin/vel_dep_scan.py calling pysawsim.velocity_dependant_scan.main(). --- diff --git a/.gitignore b/.gitignore index 24f504a..4f7e86d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,10 @@ # ignore the following autogenerated files: *.pyc -bin/ +bin/check_* +bin/*_utils +bin/sawsim +bin/sawsim_profile build/ doc/ Makefile diff --git a/bin/vel_dep_scan.py b/bin/vel_dep_scan.py new file mode 100755 index 0000000..f6a66a6 --- /dev/null +++ b/bin/vel_dep_scan.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python + +from pysawsim import velocity_dependant_scan as vds + + +vds.main()