Import Geant4 10.4.0 source tree

This commit is contained in:
Gabriele Cosmo
2017-12-08 12:52:30 +01:00
parent 98e455a940
commit fc6af9e721
2166 changed files with 276760 additions and 100873 deletions
@@ -84,11 +84,13 @@ G4DecayProducts* G4ECDecay::DecayIt(G4double)
case KshellEC:
shellIndex = 0;
break;
case LshellEC:
shellIndex = G4int(G4UniformRand()*3) + 1;
case LshellEC: //default PL1/PL=0.995 PL2/PL=0.005 from Fe55 Allowed transition
if (G4UniformRand() < 0.995) shellIndex =1;
else shellIndex =2;
break;
case MshellEC:
shellIndex = G4int(G4UniformRand()*3) + 4;
case MshellEC: //default PM1/PM=0.995 PM2/PM=0.005 from Fe55 Allowed transition
if (G4UniformRand() < 0.995) shellIndex =4;
else shellIndex =5;
break;
default:
G4Exception("G4ECDecay::DecayIt()", "HAD_RDM_009",