# $CVSHeader: pal8e/dat/stat/plot-Ebrk,v 1.2 2005/02/15 01:10:24 indraneel Rel $

## Run using GNUPlot

set data style lines
set mxtics 5
show mxtics
set mytics 5
show mytics
set key below box

#set xrange [7:90]
#set yrange [0:0.2]
set xlabel "Angle ({/Symbol \260})"
set ylabel "Normalised count"
set title "Angles used for Strand Breaking (calculated from Strands defined by our Algorithm)"

#f(x) = m*x + c

#m = 0.0118
#c = 2.1756

set arrow from 45,graph 0 to 45,graph 1 nohead lt 1 lw 4
set label "c1" at 39,graph 0.96
set arrow from 70,graph 0 to 70,graph 1 nohead lt 1 lw 4
set label "c2" at 71,graph 0.96

set terminal x11
plot "ei2" with lines lt 2 lw 4 title \
		"C{/Symbol a} (i-2,i,i+2) Angle", \
	'ei4' with lines lt 3 lw 4 title \
		"C{/Symbol a} i-1,(i+(i+1)+(i+2)+(i+3))/4,i+4 Angle"

#set terminal postscript enhanced color blacktext solid "Times-Roman" 12
set terminal postscript eps enhanced "Times-Roman" 18
set output "Ei2i4.eps"
replot


