Problem 971 - Probable bug in Geant4 error propagation
Summary: Probable bug in Geant4 error propagation
Status: RESOLVED FIXED
Alias: None
Product: Geant4
Classification: Unclassified
Component: error_propagation (show other problems)
Version: 9.0
Hardware: All All
: P5 trivial
Assignee: Pedro.Arce
URL:
Depends on:
Blocks:
 
Reported: 2007-09-21 09:43 CEST by Esben Lund
Modified: 2007-09-26 11:51 CEST (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this problem.
Description Esben Lund 2007-09-21 09:43:49 CEST
There seems to be a bug in line 443 of error_propagation/src/G4ErrorFreeTrajState.cc

Line 443:
transf[1][2] = sinpPre*transf[1][3];

Should probably be:
transf[1][2] = sinpPre*transf[1][2];
Comment 1 Pedro.Arce 2007-09-24 12:16:12 CEST
This is indeed a bug. Thanks for spoting it (unluckyly in all my tests this variable was 0 or very close, so I have never realized of it)