Commit a53238f4 authored by Heller, William T.'s avatar Heller, William T.
Browse files

Replace output.py

parent 76ade281
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -287,7 +287,8 @@ def outputFitCurve(conf, d, m, mnum, chisq):
    
    # plot the data and the fit curve.
    ax.errorbar(d.x, d.y, yerr=d.dy, marker='o')
    ax.errorbar(m.x, m.y, yerr=NULL, 'r')
    local_dy = np.zeros(len(m.x)
    ax.errorbar(m.x, m.y, yerr=local_dy, 'r')
    
    oname = str(conf.output)+"%02d.png" %(mnum)
    fig.savefig(oname,format='png')