aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/wibbletron21
1 files changed, 0 insertions, 21 deletions
diff --git a/scripts/wibbletron b/scripts/wibbletron
deleted file mode 100755
index 79ba00e9..00000000
--- a/scripts/wibbletron
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-for FILENAME in `cat $1`; do
-
- echo $FILENAME | indexamajig --indexing=dirax \
- --near-bragg \
- --filter-noise \
- > out.stream
-
- if [ $? -ne 0 ]; then exit 0; fi
-
- if [ `stat -c '%s' out.stream` -gt 300 ]; then
-
- ~/crystfel/src/hdfsee $FILENAME --binning=1 \
- --int-boost=8 --filter-noise \
- --peak-overlay=indexed.lst
- fi
-
- rm -f indexed.lst
-
-done