Problem 1506

Summary: typo in method G4ParticlePropertyTable::SetParticleProperty << instead of <
Product: Geant4 Reporter: a.ramazani
Component: particlesAssignee: kurasige
Status: RESOLVED FIXED    
Severity: major CC: kurasige
Priority: P5    
Version: 9.6   
Hardware: All   
OS: All   

Description a.ramazani 2013-07-26 22:07:06 CEST
\particles\management\G4ParticlePropertyTable.cc
at the end of :
G4bool G4ParticlePropertyTable::SetParticleProperty(const G4ParticlePropertyData& pData)


Err:
  for (size_t flv=0; flv<<G4ParticlePropertyData::NumberOfQuarkFlavor; ++flv) {

Correct:
  for (size_t flv=0; flv < G4ParticlePropertyData::NumberOfQuarkFlavor; ++flv) {
Comment 1 kurasige 2013-07-28 03:17:17 CEST
Thank you for reporing the problem.

The bug will be fixed in the release.