Problem 1506 - typo in method G4ParticlePropertyTable::SetParticleProperty << instead of <
Summary: typo in method G4ParticlePropertyTable::SetParticleProperty << instead of <
Status: RESOLVED FIXED
Alias: None
Product: Geant4
Classification: Unclassified
Component: particles (show other problems)
Version: 9.6
Hardware: All All
: P5 major
Assignee: kurasige
URL:
Depends on:
Blocks:
 
Reported: 2013-07-26 22:07 CEST by a.ramazani
Modified: 2013-07-28 03:17 CEST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this problem.
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.