aboutsummaryrefslogtreecommitdiff
path: root/scripts/histogram
blob: 329b775e1924bc5f0a0e547dcadecea2c414c384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

./frequency.pl 103.hist > hist.dat

gnuplot << EOF
set term postscript enhanced font "Helvetica,20"
set output "histo.ps"

plot [-2000:60000] "hist.dat" u 1:2 w l t "103 reflection"
EOF

ps2pdf histo.ps
rm -f histo.ps hist.dat

evince histo.pdf