https://github.com/root-project/root
Raw File
Tip revision: 729005709a50b1e2e8b5400a8a20c209af5c7cbe authored by Axel Naumann on 29 September 2022, 13:03:06 UTC
"Update ROOT version files to v6.24/08."
Tip revision: 7290057
fit1_py.py

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