Index: doc/theses/colby_parsons_MMAth/benchmarks/channels/plotData.py
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/channels/plotData.py	(revision 6e1e2d0299e4210d269f7a30ec3864a8bddceabb)
+++ doc/theses/colby_parsons_MMAth/benchmarks/channels/plotData.py	(revision 49125205b9cfab79a2620431f4daef8af59715e4)
@@ -2,4 +2,5 @@
 import sys
 import time
+import itertools
 import matplotlib.pyplot as plt
 import matplotlib.ticker as ticks
@@ -17,5 +18,7 @@
     'text.usetex': True,
     'pgf.rcfonts': False,
+    'font.size': 16
 })
+marker = itertools.cycle(('o', 's', 'D', 'x', 'p', '^', 'h', '*', 'v' )) 
 
 readfile = open(sys.argv[1], "r")
@@ -126,5 +129,5 @@
                 plt.xlabel("Cores")
                 for idx, arr in enumerate(data):
-                    plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker='o' )
+                    plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker=next(marker) )
                 
                 plt.yscale("log")
