Skip to content

Commit

Permalink
Updated deacyer configs for Eta Prime MC generator
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Kellerer authored and ktf committed Aug 20, 2019
1 parent 80aa991 commit 9d97354
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion PYTHIA6/AliPythia6/AliDecayerPythia.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,17 @@ void AliDecayerPythia::ForceDecay()
ForceHadronicD(0,0,4);
break;
case kEtaPrime:
ForceParticleDecay(331,22,2);
if(gRandom->Rndm()<0.5) {
products1[0]=211;
products1[1]=-211;
products1[2]=221;
mult1[0]=1;
mult1[1]=1;
mult1[2]=1;
ForceParticleDecay(331,products1,mult1,1);
} else {
ForceParticleDecay(331,22,2);
}
break;
}
}
Expand Down

0 comments on commit 9d97354

Please sign in to comment.