ROOT
Version v6.32
master
v6.34
v6.30
v6.28
v6.26
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
Reference Guide
►
ROOT
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
rf505_asciicfg.py
Go to the documentation of this file.
1
## \file rf505_asciicfg.py
2
## \ingroup tutorial_roofit
3
## \notebook -nodraw
4
## Organization and simultaneous fits: reading and writing ASCII configuration files
5
##
6
## \macro_code
7
## \macro_output
8
##
9
## \date February 2018
10
## \authors Clemens Lange, Wouter Verkerke (C++ version)
11
12
from
__future__
import
print_function
13
import
ROOT
14
15
16
# Create pdf
17
# ------------------
18
19
# Construct gauss(x,m,s)
20
x =
ROOT.RooRealVar
(
"x"
,
"x"
, -10, 10)
21
m =
ROOT.RooRealVar
(
"m"
,
"m"
, 0, -10, 10)
22
s =
ROOT.RooRealVar
(
"s"
,
"s"
, 1, -10, 10)
23
gauss =
ROOT.RooGaussian
(
"g"
,
"g"
, x, m, s)
24
25
# Construct poly(x,p0)
26
p0 =
ROOT.RooRealVar
(
"p0"
,
"p0"
, 0.01, 0.0, 1.0)
27
poly =
ROOT.RooPolynomial
(
"p"
,
"p"
, x, [p0])
28
29
# model = f*gauss(x) + (1-f)*poly(x)
30
f =
ROOT.RooRealVar
(
"f"
,
"f"
, 0.5, 0.0, 1.0)
31
model =
ROOT.RooAddPdf
(
"model"
,
"model"
, [gauss, poly], [f])
32
33
# Fit model to toy data
34
# -----------------------------------------
35
36
d =
model.generate
({x}, 1000)
37
model.fitTo
(d, PrintLevel=-1)
38
39
# Write parameters to ASCII file
40
# -----------------------------------------------------------
41
42
# Obtain set of parameters
43
params =
model.getParameters
({x})
44
45
# Write parameters to file
46
params.writeToFile
(
"rf505_asciicfg_example.txt"
)
47
48
# Read parameters from ASCII file
49
# ----------------------------------------------------------------
50
51
# Read parameters from file
52
params.readFromFile
(
"rf505_asciicfg_example.txt"
)
53
params.Print
(
"v"
)
54
55
configFile =
ROOT.gROOT.GetTutorialDir
().Data() +
"/roofit/rf505_asciicfg.txt"
56
57
# Read parameters from section 'Section2' of file
58
params.readFromFile
(configFile,
""
,
"Section2"
)
59
params.Print
(
"v"
)
60
61
# Read parameters from section 'Section3' of file. Mark all
62
# variables that were processed with the "READ" attribute
63
params.readFromFile
(configFile,
"READ"
,
"Section3"
)
64
65
# Print the list of parameters that were not read from Section3
66
print(
"The following parameters of the were _not_ read from Section3: "
,
params.selectByAttrib
(
"READ"
,
False
))
67
68
# Read parameters from section 'Section4' of file, contains
69
# 'include file' statement of rf505_asciicfg_example.txt
70
# so that we effective read the same
71
params.readFromFile
(configFile,
""
,
"Section4"
)
72
params.Print
(
"v"
)
TRangeDynCast
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Definition
TCollection.h:358
tutorials
roofit
rf505_asciicfg.py
ROOT v6-32 - Reference Guide Generated on Wed Apr 2 2025 08:24:49 (GVA Time) using Doxygen 1.10.0