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
376acc19
Commit
376acc19
authored
7 years ago
by
Danilo Piparo
Browse files
Options
Downloads
Patches
Plain Diff
[TDF] Give more visibility to jitted Filters, Defines in the doc
parent
7baf1b94
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tree/treeplayer/src/TDataFrame.cxx
+18
-0
18 additions, 0 deletions
tree/treeplayer/src/TDataFrame.cxx
with
18 additions
and
0 deletions
tree/treeplayer/src/TDataFrame.cxx
+
18
−
0
View file @
376acc19
...
...
@@ -156,6 +156,14 @@ list of branch names. The filter function is applied to the specified branches f
a `bool` which signals whether the event passes the filter (`true`) or not (`false`). You can think of your data as
"flowing" through the chain of calls, being transformed, filtered and finally used to perform actions. Multiple `Filter`
calls can be chained one after another.
It is possible to specify filters as strings too. This snippet is analogous to the one above:
~~~{.cpp}
ROOT::Experimental::TDataFrame d("myTree", filePtr);
auto c = d.Filter("MET > 4.").Count();
std::cout << *c << std::endl;
~~~
Here the names of the branches used in the expression and their types are inferred automatically. The string must be
standard C++ and is just in time compiled by the ROOT interpreter, Cling.
### Running on a range of entries
It is sometimes necessary to limit the processing of the dataset to a range of entries. For this reason, the TDataFrame
...
...
@@ -191,6 +199,16 @@ std::cout << *zMean << std::endl;
variables created with `Define` as if they were actual tree branches, but they are evaluated on the fly, once per
event. As with filters, `Define` calls can be chained with other transformations to create multiple temporary
columns.
As with filters, it is possible to specify new columns as strings too. This snippet is analogous to the one above:
~~~{.cpp}
ROOT::Experimental::TDataFrame d(treeName, filePtr);
auto zMean = d.Define("z", "sqrt(x*x + y*y)")
.Filter("z > 0.")
.Mean("z");
std::cout << *zMean << std::endl;
~~~
Again the names of the branches used in the expression and their types are inferred automatically. The string must be
standard C++ and is just in time compiled by the ROOT interpreter, Cling.
### Executing multiple actions
As a final example let us apply two different cuts on branch "MET" and fill two different histograms with the "pt\_v" of
...
...
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