ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
multifit.py
Go to the documentation of this file.
1 # To see the output of this macro, click begin_html <a href="gif/multifit.gif" >here</a> end_html
2 # Example showing how to fit in a sub-range of an histogram
3 # An histogram is created and filled with the bin contents and errors
4 # defined in the table below.
5 # 3 gaussians are fitted in sub-ranges of this histogram.
6 # A new function (a sum of 3 gaussians) is fitted on another subrange
7 # Note that when fitting simple functions, such as gaussians, the initial
8 # values of parameters are automatically computed by ROOT.
9 # In the more complicated case of the sum of 3 gaussians, the initial values
10 # of parameters must be given. In this particular case, the initial values
11 # are taken from the result of the individual fits.
12 
13 from ROOT import TH1F, TF1
14 from ROOT import gROOT
15 from array import array
16 
17 
18 
19 x = ( 1.913521, 1.953769, 2.347435, 2.883654, 3.493567,
20  4.047560, 4.337210, 4.364347, 4.563004, 5.054247,
21  5.194183, 5.380521, 5.303213, 5.384578, 5.563983,
22  5.728500, 5.685752, 5.080029, 4.251809, 3.372246,
23  2.207432, 1.227541, 0.8597788,0.8220503,0.8046592,
24  0.7684097,0.7469761,0.8019787,0.8362375,0.8744895,
25  0.9143721,0.9462768,0.9285364,0.8954604,0.8410891,
26  0.7853871,0.7100883,0.6938808,0.7363682,0.7032954,
27  0.6029015,0.5600163,0.7477068,1.188785, 1.938228,
28  2.602717, 3.472962, 4.465014, 5.177035 )
29 
30 np = len(x)
31 h = TH1F( 'h', 'Example of several fits in subranges', np, 85, 134 )
32 h.SetMaximum( 7 )
33 
34 for i in xrange(np):
35  h.SetBinContent( i+1, x[i] )
36 
37 par = array( 'd', 9*[0.] )
38 g1 = TF1( 'g1', 'gaus', 85, 95 )
39 g2 = TF1( 'g2', 'gaus', 98, 108 )
40 g3 = TF1( 'g3', 'gaus', 110, 121 )
41 
42 total = TF1( 'total', 'gaus(0)+gaus(3)+gaus(6)', 85, 125 )
43 total.SetLineColor( 2 )
44 h.Fit( g1, 'R' )
45 h.Fit( g2, 'R+' )
46 h.Fit( g3, 'R+' )
47 
48 par1 = g1.GetParameters()
49 par2 = g2.GetParameters()
50 par3 = g3.GetParameters()
51 
52 par[0], par[1], par[2] = par1[0], par1[1], par1[2]
53 par[3], par[4], par[5] = par2[0], par2[1], par2[2]
54 par[6], par[7], par[8] = par3[0], par3[1], par3[2]
55 
56 total.SetParameters( par )
57 h.Fit( total, 'R+' )