Skip to content
Snippets Groups Projects
Commit 64d3f214 authored by Wolf Widdra's avatar Wolf Widdra
Browse files

Version 2.3, compatible with Python 3.12

parent a56d19c9
No related branches found
No related tags found
No related merge requests found
......@@ -12,13 +12,14 @@ d1 = hh.HREELS('c1a03', datapath=datapath)
d1.figure()
d1.plot(xmin=40, normalized=True, color='red', factor = 10, label=d1.fname)
d2.plot(xmin=40, normalized=True, color='black', factor = 10, label=d2.fname)
d2.plot(normalized=True, color='gray', factor = 1, label=None)
d1.plot(xmin=37, normalized=True, color='red', factor = 10, label=d1.fname)
d2.plot(xmin=37, normalized=True, color='black', factor = 10, label=d2.fname)
d2.plot( normalized=True, color='gray', factor = 1, label=None)
d1.ax.set_ylim(bottom=0)
d1.ax.set_xlim(left=-200,right=1300)
plt.axvline(x=69,ymax=0.4, linestyle='dashed')
plt.axvline(x= 70,ymax=0.4, linestyle='dashed')
plt.axvline(x=-70,ymax=0.1, linestyle='dashed')
plt.text(0.99, 0.01,os.path.basename(__file__), fontsize=10, ha='right', va='bottom', transform=plt.gcf().transFigure)
output_filename = os.path.splitext(__file__)[0] + '.png'
......
File added
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment