diff options
author | Volker Hoffmann <volker@cheleb.net> | 2013-05-14 09:41:44 +0200 |
---|---|---|
committer | Volker Hoffmann <volker@cheleb.net> | 2013-05-14 09:41:44 +0200 |
commit | 4ba768ab885a5f9653e1c5be950e1102a9cbdfb1 (patch) | |
tree | 1700a50a859e5b4ebaa3e1a738c14a160423fd4b | |
parent | 14c2946559a9f73ba85f23ad97d2712f854e498c (diff) |
removed stale arguments
-rw-r--r-- | plot_quad.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plot_quad.py b/plot_quad.py index f87a53f..77fa2fa 100644 --- a/plot_quad.py +++ b/plot_quad.py @@ -105,9 +105,9 @@ for iout in iouts: # mdotr fluff # copied from plot_dotr_r.py ax3.hold(True) - h0 = disk_abs.plot_mdotr_r(ax_in=ax3, ylog=True, soften=False) - h1 = disk_pos.plot_mdotr_r(ax_in=ax3, ylog=True, soften=False) - h2 = disk_neg.plot_mdotr_r(ax_in=ax3, ylog=True, soften=False) + h0 = disk_abs.plot_mdotr_r(ax_in=ax3, ylog=True) + h1 = disk_pos.plot_mdotr_r(ax_in=ax3, ylog=True) + h2 = disk_neg.plot_mdotr_r(ax_in=ax3, ylog=True) ax3.hold(False) ax3.set_title('Radial Mass Flux') ax3.grid(True) |