Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
29b8806a
Commit
29b8806a
authored
6 years ago
by
Stefan Wunsch
Committed by
Enric Tejedor
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[PyROOT exp] Add test for passing Python callables to ROOT.TF
parent
dc7b1a73
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bindings/pyroot_experimental/PyROOT/test/CMakeLists.txt
+3
-0
3 additions, 0 deletions
bindings/pyroot_experimental/PyROOT/test/CMakeLists.txt
bindings/pyroot_experimental/PyROOT/test/tf_pycallables.py
+152
-0
152 additions, 0 deletions
bindings/pyroot_experimental/PyROOT/test/tf_pycallables.py
with
155 additions
and
0 deletions
bindings/pyroot_experimental/PyROOT/test/CMakeLists.txt
+
3
−
0
View file @
29b8806a
...
...
@@ -71,6 +71,9 @@ ROOT_ADD_PYUNITTEST(pyroot_pyz_rvec_asrvec rvec_asrvec.py)
# RDataFrame and subclasses pythonizations
ROOT_ADD_PYUNITTEST
(
pyroot_pyz_rdataframe_asnumpy rdataframe_asnumpy.py
)
# Passing Python callables to ROOT.TF
ROOT_ADD_PYUNITTEST
(
pyroot_pyz_tf_pycallables tf_pycallables.py
)
if
(
roofit
)
# RooAbsCollection and subclasses pythonizations
ROOT_ADD_PYUNITTEST
(
pyroot_pyz_rooabscollection_len rooabscollection_len.py
)
...
...
This diff is collapsed.
Click to expand it.
bindings/pyroot_experimental/PyROOT/test/tf_pycallables.py
0 → 100644
+
152
−
0
View file @
29b8806a
"""
Tests for passing Python callables when constructing TFX classes.
This feature is not implemented by a PyROOT pythonization, but by a converter of
Cppyy that creates a C++ wrapper to invoke the Python callable.
"""
import
unittest
import
math
import
ROOT
def
pyf_tf1_identity
(
x
,
p
):
return
x
[
0
]
def
pyf_tf1_params
(
x
,
p
):
return
p
[
0
]
*
x
[
0
]
+
p
[
1
]
class
pyf_tf1_callable
:
def
__call__
(
self
,
x
,
p
):
return
p
[
0
]
*
x
[
0
]
+
p
[
1
]
def
pyf_tf1_gauss
(
x
,
p
):
return
p
[
0
]
*
1.0
/
math
.
sqrt
(
2.0
*
math
.
pi
*
p
[
2
]
**
2
)
*
math
.
exp
(
-
(
x
[
0
]
-
p
[
1
])
**
2
/
2.0
/
p
[
2
]
**
2
)
class
TF1
(
unittest
.
TestCase
):
"""
Test passing Python callables to ROOT::TF1
"""
def
test_identity
(
self
):
"""
Test simple function without parameters
"""
f
=
ROOT
.
TF1
(
"
tf1_identity
"
,
pyf_tf1_identity
,
0.0
,
1.0
)
for
x
in
[
0.0
,
-
1.0
,
42.0
]:
self
.
assertEqual
(
f
.
Eval
(
x
),
x
)
def
test_params
(
self
):
"""
Test function with parameters
"""
npars
=
2
f
=
ROOT
.
TF1
(
"
tf1_params
"
,
pyf_tf1_params
,
0.0
,
1.0
,
npars
)
par1
=
2.0
par2
=
-
1.0
f
.
SetParameter
(
0
,
par1
)
f
.
SetParameter
(
1
,
par2
)
for
x
in
[
0.0
,
-
1.0
,
42.0
]:
self
.
assertEqual
(
f
.
Eval
(
x
),
pyf_tf1_params
([
x
],
[
par1
,
par2
]))
def
test_callable
(
self
):
"""
Test function provided as callable
"""
npars
=
2
pycallable
=
pyf_tf1_callable
()
f
=
ROOT
.
TF1
(
"
tf1_callable
"
,
pycallable
,
0.0
,
1.0
,
npars
)
par1
=
2.0
par2
=
-
1.0
f
.
SetParameter
(
0
,
par1
)
f
.
SetParameter
(
1
,
par2
)
for
x
in
[
0.0
,
-
1.0
,
42.0
]:
self
.
assertEqual
(
f
.
Eval
(
x
),
pycallable
([
x
],
[
par1
,
par2
]))
def
test_fitgauss
(
self
):
"""
Test fitting a histogram to a Python function
"""
# Gaus function
f
=
ROOT
.
TF1
(
"
tf1_fitgauss
"
,
pyf_tf1_gauss
,
-
4
,
4
,
3
)
f
.
SetParameter
(
0
,
10.0
)
# scale
f
.
SetParameter
(
1
,
-
1.0
)
# mean
f
.
SetParameter
(
2
,
2.0
)
# standard deviation
# Sample gauss in histogram
h
=
ROOT
.
TH1F
(
"
h
"
,
"
test
"
,
100
,
-
4
,
4
)
h
.
FillRandom
(
"
gaus
"
,
100000
)
h
.
Scale
(
1.0
/
100000.0
*
100.0
/
8.0
)
# Normalize as density
# Fit to histogram and get parameters
h
.
Fit
(
f
,
"
0Q
"
)
scale
=
f
.
GetParameter
(
0
)
mean
=
f
.
GetParameter
(
1
)
std
=
f
.
GetParameter
(
2
)
self
.
assertAlmostEqual
(
scale
,
1.0
,
2
)
self
.
assertAlmostEqual
(
mean
,
0.0
,
2
)
self
.
assertAlmostEqual
(
abs
(
std
),
1.0
,
2
)
def
pyf_tf2_params
(
x
,
p
):
return
p
[
0
]
*
x
[
0
]
+
p
[
1
]
*
x
[
1
]
+
p
[
2
]
class
TF2
(
unittest
.
TestCase
):
"""
Test passing Python callables to ROOT::TF2
"""
def
test_params
(
self
):
"""
Test function with parameters
"""
npars
=
3
f
=
ROOT
.
TF1
(
"
tf2_params
"
,
pyf_tf2_params
,
0.0
,
1.0
,
npars
)
par1
=
2.0
par2
=
-
1.0
par3
=
1.0
f
.
SetParameter
(
0
,
par1
)
f
.
SetParameter
(
1
,
par2
)
f
.
SetParameter
(
2
,
par3
)
for
x
in
[(
0.0
,
0.0
),
(
-
1.0
,
1.0
),
(
42.0
,
0.0
)]:
self
.
assertEqual
(
f
.
Eval
(
*
x
),
pyf_tf2_params
(
x
,
[
par1
,
par2
,
par3
]))
def
pyf_tf3_params
(
x
,
p
):
return
p
[
0
]
*
x
[
0
]
+
p
[
1
]
*
x
[
1
]
+
p
[
2
]
*
x
[
2
]
+
p
[
3
]
class
TF3
(
unittest
.
TestCase
):
"""
Test passing Python callables to ROOT::TF3
"""
def
test_params
(
self
):
"""
Test function with parameters
"""
npars
=
4
f
=
ROOT
.
TF1
(
"
tf2_params
"
,
pyf_tf2_params
,
0.0
,
1.0
,
npars
)
par1
=
2.0
par2
=
-
1.0
par3
=
1.0
par4
=
3.0
f
.
SetParameter
(
0
,
par1
)
f
.
SetParameter
(
1
,
par2
)
f
.
SetParameter
(
2
,
par3
)
f
.
SetParameter
(
3
,
par4
)
for
x
in
[(
0.0
,
0.0
,
0.0
),
(
-
1.0
,
1.0
,
2.0
),
(
42.0
,
0.0
,
-
10.0
)]:
self
.
assertEqual
(
f
.
Eval
(
*
x
),
pyf_tf2_params
(
x
,
[
par1
,
par2
,
par3
,
par4
]))
if
__name__
==
'
__main__
'
:
unittest
.
main
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment