Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
allpix-squared
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
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
Code review analytics
Issue 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
Benoit, Mathieu
allpix-squared
Commits
a04f41dc
Commit
a04f41dc
authored
1 year ago
by
Simon Spannagel
Browse files
Options
Downloads
Patches
Plain Diff
ROOTObjectWriter: fix copy-paste error
parent
a01a2685
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/modules/ROOTObjectWriter/ROOTObjectWriterModule.cpp
+2
-2
2 additions, 2 deletions
src/modules/ROOTObjectWriter/ROOTObjectWriterModule.cpp
with
2 additions
and
2 deletions
src/modules/ROOTObjectWriter/ROOTObjectWriterModule.cpp
+
2
−
2
View file @
a04f41dc
...
...
@@ -75,8 +75,8 @@ void ROOTObjectWriterModule::initialize() {
auto
inc_arr
=
config_
.
getArray
<
std
::
string
>
(
"include"
);
include_
.
insert
(
inc_arr
.
begin
(),
inc_arr
.
end
());
check_objects
(
ex
clude_
,
"DepositedCharge"
,
true
);
check_objects
(
ex
clude_
,
"PropagatedCharge"
,
true
);
check_objects
(
in
clude_
,
"DepositedCharge"
,
true
);
check_objects
(
in
clude_
,
"PropagatedCharge"
,
true
);
}
else
if
(
config_
.
has
(
"exclude"
))
{
auto
exc_arr
=
config_
.
getArray
<
std
::
string
>
(
"exclude"
);
exclude_
.
insert
(
exc_arr
.
begin
(),
exc_arr
.
end
());
...
...
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