https://github.com/root-project/root
Raw File
Tip revision: 912e4f28ed00a77ba0c57f383375ac9a2681dbd9 authored by Fons Rademakers on 30 May 2014, 16:02:29 UTC
make version v6-00-00.
Tip revision: 912e4f2
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