#!/usr/bin/gnuplot set terminal postscript eps color enhanced solid font "Helvetica,18" size 10cm,7cm set output "../figure5.eps" set border linewidth 1.5 set border 15 f1 = 'dat/T_atom' f2 = 'dat/fit_T_atom' f3 = 'dat/T_woatom' f4 = 'dat/fit_T_woatom' set ytics 10 nomirror format "%g" set xtics 50 nomirror set xrange [-70:120] set yrange [0:35] set xlabel 'detuning (MHz)' set ylabel 'transmission (cts/ms)' unset title unset grid unset key plot f3 using 1:2:3 w yerr pt 7 lc rgb "blue",f4 using 1:2 with l lw 3 lc rgb "blue", f1 using 1:2:3 w yerr pt 7 ps 1.0 lc rgb "red", f2 using 1:2 with l lw 3 lc rgb "red" #unset output #pause -1