Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Project Juggler
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
Container registry
Model registry
Operate
Environments
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
Show more breadcrumbs
EIC
Project Juggler
Commits
60b648d2
Commit
60b648d2
authored
3 years ago
by
Wouter Deconinck
Browse files
Options
Downloads
Patches
Plain Diff
Ignore particles with p.genStatus() > 1 in MC2DummyParticle
parent
263b0a02
No related branches found
No related tags found
1 merge request
!258
Accept particles with p.genStatus() == 0 in MC2DummyParticle and TrackParamTruthInit
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
JugBase/src/components/MC2DummyParticle.cpp
+2
-1
2 additions, 1 deletion
JugBase/src/components/MC2DummyParticle.cpp
with
2 additions
and
1 deletion
JugBase/src/components/MC2DummyParticle.cpp
+
2
−
1
View file @
60b648d2
...
@@ -57,7 +57,8 @@ namespace Jug::Base {
...
@@ -57,7 +57,8 @@ namespace Jug::Base {
auto
relations
=
m_outputRelCollection
.
createAndPut
();
auto
relations
=
m_outputRelCollection
.
createAndPut
();
int
ID
=
0
;
int
ID
=
0
;
for
(
const
auto
&
p
:
*
parts
)
{
for
(
const
auto
&
p
:
*
parts
)
{
if
(
p
.
genStatus
()
!=
1
)
{
if
(
p
.
genStatus
()
>
1
)
{
debug
()
<<
"ignoring particle with genStatus = "
<<
p
.
genStatus
()
<<
endmsg
;
continue
;
continue
;
}
}
...
...
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