aboutsummaryrefslogtreecommitdiff
path: root/scripts/plot-detector-shift
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/plot-detector-shift')
-rwxr-xr-xscripts/plot-detector-shift15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/plot-detector-shift b/scripts/plot-detector-shift
deleted file mode 100755
index a456b18c..00000000
--- a/scripts/plot-detector-shift
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-INFILE=$1
-
-grep "predict_refine/det_shift" $INFILE > plotme.dat
-echo "0 0" > plotme2.dat
-gnuplot -persist << EOF
-set xlabel "x shift / mm"
-set ylabel "y shift / mm"
-set size square
-set grid
-plot [-2:2] [-2:2] "plotme.dat" using 4:7 title "Detector shifts"
-replot "plotme2.dat" using 1:2 w p ps 4 pt 6 title "0,0"
-EOF
-rm -f plotme.dat plotme2.dat