Skip to content
Snippets Groups Projects
Commit 0e7afbc4 authored by Rene Brun's avatar Rene Brun
Browse files

In the previous fix another case where to replace IsFinal() by status() was missed. Now fixed.

git-svn-id: http://root.cern.ch/svn/root/trunk@34928 27541ba8-7e3a-0410-8455-c3a389f83636
parent 7d826ca9
Branches
Tags
No related merge requests found
......@@ -218,7 +218,7 @@ TObjArray* TPythia8::ImportParticles(Option_t* /* option */)
for (Int_t i = 1; i <= numpart; i++) {
new(a[i]) TParticle(
fPythia->event[i].id(),
fPythia->event[i].isFinal(),
fPythia->event[i].status(),
fPythia->event[i].mother1() - 1,
fPythia->event[i].mother2() - 1,
fPythia->event[i].daughter1() - 1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment