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
cd4bc5bd
Commit
cd4bc5bd
authored
6 years ago
by
Danilo Piparo
Committed by
Enric Tejedor Saavedra
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[Exp PyROOT] Add tests for TDirectory pythonizations
parent
19a73fa9
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
+1
-0
1 addition, 0 deletions
bindings/pyroot_experimental/PyROOT/test/CMakeLists.txt
bindings/pyroot_experimental/PyROOT/test/tdirectory_read_write.py
+48
-0
48 additions, 0 deletions
.../pyroot_experimental/PyROOT/test/tdirectory_read_write.py
with
49 additions
and
0 deletions
bindings/pyroot_experimental/PyROOT/test/CMakeLists.txt
+
1
−
0
View file @
cd4bc5bd
...
...
@@ -3,6 +3,7 @@ ROOT_ADD_PYUNITTEST(pyroot_pyz_pretty_printing pretty_printing.py)
ROOT_ADD_PYUNITTEST
(
pyroot_pyz_array_interface array_interface.py
)
# TFile, TDirectory, TDirectoryFile pythonizations
ROOT_ADD_PYUNITTEST
(
pyroot_pyz_tdirectory_read_write tdirectoryfile_read_write.py
)
ROOT_ADD_PYUNITTEST
(
pyroot_pyz_tdirectoryfile_read_write tdirectoryfile_read_write.py
)
ROOT_ADD_PYUNITTEST
(
pyroot_pyz_tfile_open_read_write tfile_open_read_write.py
)
...
...
This diff is collapsed.
Click to expand it.
bindings/pyroot_experimental/PyROOT/test/tdirectory_read_write.py
0 → 100644
+
48
−
0
View file @
cd4bc5bd
import
unittest
import
ROOT
from
libcppyy
import
SetOwnership
class
TDirectoryReadWrite
(
unittest
.
TestCase
):
"""
Test for the attr syntax and Get method of TDirectory.
"""
nbins
=
8
xmin
=
0
xmax
=
4
# Setup
@classmethod
def
setUpClass
(
cls
):
cls
.
dir0
=
ROOT
.
TDirectory
(
"
dir0
"
,
"
dir0
"
)
h
=
ROOT
.
TH1F
(
"
h
"
,
"
h
"
,
cls
.
nbins
,
cls
.
xmin
,
cls
.
xmax
)
SetOwnership
(
h
,
False
)
# this must be there otherwise the histogram is not attached to dir0
h
.
SetDirectory
(
cls
.
dir0
)
dir1
=
cls
.
dir0
.
mkdir
(
"
dir1
"
)
dir1
.
cd
()
h1
=
ROOT
.
TH1F
(
"
h1
"
,
"
h1
"
,
cls
.
nbins
,
cls
.
xmin
,
cls
.
xmax
)
SetOwnership
(
h1
,
False
)
dir2
=
dir1
.
mkdir
(
"
dir2
"
)
dir2
.
cd
()
h2
=
ROOT
.
TH1F
(
"
h2
"
,
"
h2
"
,
cls
.
nbins
,
cls
.
xmin
,
cls
.
xmax
)
SetOwnership
(
h2
,
False
)
def
checkHisto
(
self
,
h
):
xaxis
=
h
.
GetXaxis
()
self
.
assertEqual
(
self
.
nbins
,
h
.
GetNbinsX
())
self
.
assertEqual
(
self
.
xmin
,
xaxis
.
GetXmin
())
self
.
assertEqual
(
self
.
xmax
,
xaxis
.
GetXmax
())
# Tests
def
test_readHisto_attrsyntax
(
self
):
self
.
checkHisto
(
self
.
dir0
.
h
)
self
.
checkHisto
(
self
.
dir0
.
dir1
.
h1
)
self
.
checkHisto
(
self
.
dir0
.
dir1
.
dir2
.
h2
)
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