Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Show more breadcrumbs
Computing
cbmroot
Commits
a332b518
Commit
a332b518
authored
4 years ago
by
Oleksii Lubynets
Browse files
Options
Downloads
Patches
Plain Diff
add macro
parent
fca76950
No related branches found
No related tags found
1 merge request
!85
Analysis tree kfpf interface
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
macro/analysis/common/at_kfpf_interface/run_at_kfpf.C
+18
-0
18 additions, 0 deletions
macro/analysis/common/at_kfpf_interface/run_at_kfpf.C
with
18 additions
and
0 deletions
macro/analysis/common/at_kfpf_interface/run_at_kfpf.C
0 → 100644
+
18
−
0
View file @
a332b518
void
run_at_kfpf
(
const
std
::
string
&
ATFile
,
int
nEntries
=
-
1
,
const
std
::
string
&
ATTree
=
"aTree"
)
{
ATKFParticleFinder
man
;
man
.
InitInput
(
ATFile
.
c_str
(),
ATTree
.
c_str
());
man
.
InitOutput
(
"KFPF.pwgc2f.root"
);
man
.
SetPIDMode
(
1
);
CutsContainer
cuts
;
cuts
.
SetCutChi2Prim
(
18
.
4207
);
cuts
.
SetCutDistance
(
1
.);
cuts
.
SetCutChi2Geo
(
3
.);
cuts
.
SetCutLdL
(
5
.);
man
.
SetCuts
(
cuts
);
man
.
Run
(
nEntries
);
}
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