set terminal png set output "adc-all.png" set xrange [0:75] #set data style steps set data style linespoints set xlabel "timebins" set ylabel "ADC" set title "odd channels" plot "adc.dat" using 1:3 title "01" , \ "adc.dat" using 1:5 title "03" , \ "adc.dat" using 1:7 title "05" , \ "adc.dat" using 1:9 title "07" , \ "adc.dat" using 1:11 title "09" , \ "adc.dat" using 1:13 title "11" , \ "adc.dat" using 1:15 title "13" , \ "adc.dat" using 1:17 title "15" , \ "adc.dat" using 1:19 title "17" , \ "adc.dat" using 1:21 title "19" set output #pause -1