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

Replace output.py

parent 70f8b22e
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -287,8 +287,9 @@ 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')
    local_dy = np.zeros(len(m.x))
    ax.errorbar(m.x, m.y, yerr=local_dy, color='r')
    # local_dy = np.zeros(len(m.x))
    # ax.errorbar(m.x, m.y, yerr=local_dy, color='r')
    ax.plot(m.x,m.y,color='r')
    
    oname = str(conf.output)+"%02d.png" %(mnum)
    fig.savefig(oname,format='png')