Add bin/vel_dep_scan.py calling pysawsim.velocity_dependant_scan.main().
authorW. Trevor King <wking@drexel.edu>
Wed, 20 Oct 2010 07:06:05 +0000 (03:06 -0400)
committerW. Trevor King <wking@drexel.edu>
Wed, 20 Oct 2010 07:06:05 +0000 (03:06 -0400)
.gitignore
bin/vel_dep_scan.py [new file with mode: 0755]

index 24f504a4cb66015e7082007a7ac1fdd144a4267d..4f7e86d8592d9b425ba9faf1b1f2ba789d528bcd 100644 (file)
@@ -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 (executable)
index 0000000..f6a66a6
--- /dev/null
@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+
+from pysawsim import velocity_dependant_scan as vds
+
+
+vds.main()