typo in G4double G4BinaryCascade::CorrectShortlivedPrimaryForFermi( G4KineticTrack* primary,G4KineticTrackVector target_collection) abs(PDGcode )> 1000 : Error: if ( std::abs(PDGcode > 1000) && PDGcode != 2112 && PDGcode != 2212 ) Correct: if ( std::abs(PDGcode )> 1000 && PDGcode != 2112 && PDGcode != 2212 )
Thanks for this fix, I have modified the source code. Gunter