diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/plot-detector-shift | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/plot-detector-shift b/scripts/plot-detector-shift index ad649c99..a456b18c 100755 --- a/scripts/plot-detector-shift +++ b/scripts/plot-detector-shift @@ -8,7 +8,8 @@ gnuplot -persist << EOF set xlabel "x shift / mm" set ylabel "y shift / mm" set size square -plot [-1:1] [-1:1] "plotme.dat" using 4:7 title "Detector shifts" +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 |