5 lib_path = os.path.abspath('../../')
6 sys.path.append(lib_path)
9 dirs = process.GetDataSets(".", process.Derivative)
12 process.gnuplot("set title \"Vary Focus Voltage\"")
13 process.gnuplot("set xlabel \"Vf (Volts)\"")
14 #process.gnuplot("set ylabel \"Normalised S(E)\"")
15 process.gnuplot("set key outside right")
19 #include_range=[-7.00,-5.00]
20 include_range=[-400,400]
22 for p in sorted(dirs.items(), key = lambda e : float(e[0].split("=")[1])):
23 value = float(p[0].split("=")[1])
24 if (value >= include_range[0] and value <= include_range[1]):
26 maxval = max(p[1], key = lambda e : e[1])
27 max_curve.append([float(p[0].split("=")[1]), maxval[1], maxval[0]])
28 #process.gnuplot.replot(process.Gnuplot.Data(p[1], title=str(p[0])+"", with_="lp"))
31 process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:2", title="Max"))
32 process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:3", title="Max position"))