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

Fix to take into account the change from IsFinal() to status().

Now final particles have a status >0


git-svn-id: http://root.cern.ch/svn/root/trunk@36383 27541ba8-7e3a-0410-8455-c3a389f83636
parent 07ee7b8c
No related branches found
No related tags found
No related merge requests found
......@@ -50,8 +50,9 @@ void pythia8(Int_t nev = 100, Int_t ndeb = 1) {
for (Int_t ip = 0; ip < np; ip++) {
TParticle* part = (TParticle*) particles->At(ip);
Int_t ist = part->GetStatusCode();
// Positive codes are final particles.
if (ist <= 0) continue;
Int_t pdg = part->GetPdgCode();
if (ist != 1) continue;
Float_t charge = TDatabasePDG::Instance()->GetParticle(pdg)->Charge();
if (charge == 0.) continue;
Float_t eta = part->Eta();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment