Skip to content
Snippets Groups Projects
Commit e0794e1f authored by Alexis GAMELIN's avatar Alexis GAMELIN
Browse files

Fix plot_fir

parent fc48bffa
No related branches found
No related tags found
No related merge requests found
...@@ -208,13 +208,13 @@ class FIRDamper(Element) : ...@@ -208,13 +208,13 @@ class FIRDamper(Element) :
fig, [ax1, ax2] = plt.subplots(1,2) fig, [ax1, ax2] = plt.subplots(1,2)
ax1.plot(tune, gain) ax1.plot(tune, gain)
ax1.title("Gain") ax1.set_title("Gain")
ax1.xlabel("Tune") ax1.set_xlabel("Tune")
ax2.plot(tune, phase) ax2.plot(tune, phase)
ax2.title("Phase in degree") ax2.set_title("Phase in degree")
ax2.xlabel("Tune") ax2.set_xlabel("Tune")
ax2.ylabel("Degree") ax2.set_ylabel("Degree")
def track(self, beam_or_bunch): def track(self, beam_or_bunch):
""" """
......
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