#!/usr/bin/gnuplot --persist # Compare sweeps from 2012-09-12 and 2012-09-13 set title "Changing Sweeps over 16 hours\n(NOTE: Middle sweeps were not done due to error)" set xlabel "Initial Energy (DAC Counts)" set ylabel "Sample Current (ADC Counts)" set key outside right plot "../2012-09-12/182434.dat" u 2:3 w lp title "(1) 2012-09-12/182434.dat" replot "../2012-09-12/182541.dat" u 2:3 w lp title "(2) 2012-09-12/182541.dat" replot "../2012-09-12/182647.dat" u 2:3 w lp title "(3) 2012-09-12/182647.dat" replot "../2012-09-12/182859.dat" u 2:3 w lp title "(4) 2012-09-12/182859.dat" replot "../2012-09-13/101038.dat" u 2:3 w lp title "(+16h 1) 2012-09-13/101038.dat" replot "../2012-09-13/101143.dat" u 2:3 w lp title "(+16h 2) 2012-09-13/101143.dat" replot "../2012-09-13/101248.dat" u 2:3 w lp title "(+16h 3) 2012-09-13/101248.dat" replot "../2012-09-13/101354.dat" u 2:3 w lp title "(+16h 4) 2012-09-13/101354.dat"