Exemplo n.º 1
0
def check_multi_hist():
    stack = rootplotlib.hist_stack([hist1,hist2,hist3],
                                   data=hist5,ratio=hist4,
                                   colors=['blue','orange','green'],
                                   labels=['a','b','c'])

    fig, ax0, ax1 = rootplotlib.canvas_with_ratio()
    stack.draw(ax0,ratio_axis=ax1)
    ax1.set_xlabel('lol')
    ax1.set_ylabel('ratio')
    ax0.set_ylabel('alright')

    fig.savefig('test.eps')
Exemplo n.º 2
0
def check_profile():
    profstuff = rootplotlib.profile_set([hist1,hist2,hist3],
                                        colors=['blue','orange','green'],
                                        labels=['a','b','c'],
                                        ratio=hist4)
    fig, ax0, ax1 = rootplotlib.canvas_with_ratio()
    profstuff.draw(ax0,ratio_axis=ax1)
    fig.savefig('prof.eps')

    p2 = rootplotlib.profile_set([hist1,hist2],
                                 colors=['black','green'],
                                 labels=['z','w'])
    fig, ax0 = rootplotlib.canvas(xtitle='ok')
    p2.draw(ax0)
    fig.savefig('prof2.eps')