https://github.com/root-project/root
Raw File
Tip revision: 98f2e0558ddd5d1759d123a86fc6939391301164 authored by Fons Rademakers on 29 February 2012, 15:45:49 UTC
tag patch release v5-32-01.
Tip revision: 98f2e05
fit1_py.py

   gROOT.Reset()
   c1 = TCanvas( 'c1', 'The Fit Canvas' )
   c1.SetGridx()
   c1.SetGridy()

   fill = TFile( 'fillrandom.root' )
   fill.ls()
   sqroot.Print()

   h1f.Fit( 'sqroot' )

   fitlabel = TPaveText( 0.6, 0.3, 0.9, 0.80, 'NDC' )
   fitlabel.SetTextAlign( 12 )
   fitlabel.SetFillColor( 42 )
   fitlabel.ReadFile( 'fit1_py.py' )
   fitlabel.Draw()

back to top