diff options
author | Thomas White <taw@physics.org> | 2013-07-18 13:22:42 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-07-18 13:22:42 +0200 |
commit | 2fb78b43beb8319765eab3fe93b8b0747e287037 (patch) | |
tree | 80cc3127a9dd61f8eb5475eb9bf6aa8aeeb4eeb1 /scripts/wibbletron | |
parent | a58cb7b23c7a024572e0e6a166adee3be91a2f64 (diff) |
Get rid of scripts/wibbletron
It's way out of date
Diffstat (limited to 'scripts/wibbletron')
-rwxr-xr-x | scripts/wibbletron | 21 |
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 |