Skip to content
Snippets Groups Projects
Commit 2a62fc59 authored by Andreas Freise's avatar Andreas Freise
Browse files

renaming run to out so not to overwrite the run command.

parent db500256
Branches
No related tags found
No related merge requests found
......@@ -16,6 +16,7 @@ m m2 0.5 0.5 0 n4 n5
s s3 10 1 n5 n6
"""
#kat = finesse.kat(katexe='/Users/adf/work/bin/kat')
kat = finesse.kat()
kat.parseCommands(code)
......@@ -35,11 +36,11 @@ kat.m2.Rcy = 1000.0
kat.maxtem = 0
run = kat.run(printout=0,printerr=0)
out = kat.run(printout=0,printerr=0)
pl.figure()
pl.plot(run.x,run.y)
pl.xlabel(run.xlabel)
pl.plot(out.x,out.y)
pl.xlabel(out.xlabel)
pl.ylabel("Intensity [W]")
pl.legend(run.ylabels)
pl.legend(out.ylabels)
pl.show()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment