Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
EIC
Project Juggler
Commits
60b648d2
Commit
60b648d2
authored
Sep 16, 2021
by
Wouter Deconinck
Browse files
Ignore particles with p.genStatus() > 1 in MC2DummyParticle
parent
263b0a02
Changes
1
Hide whitespace changes
Inline
Side-by-side
JugBase/src/components/MC2DummyParticle.cpp
View file @
60b648d2
...
...
@@ -57,7 +57,8 @@ namespace Jug::Base {
auto
relations
=
m_outputRelCollection
.
createAndPut
();
int
ID
=
0
;
for
(
const
auto
&
p
:
*
parts
)
{
if
(
p
.
genStatus
()
!=
1
)
{
if
(
p
.
genStatus
()
>
1
)
{
debug
()
<<
"ignoring particle with genStatus = "
<<
p
.
genStatus
()
<<
endmsg
;
continue
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment