Problem 1763

Summary: G4IonCoulombScatteringModel and test58
Product: Geant4 Reporter: Mauro Tacconi <mauro.tacconi>
Component: processes/electromagneticAssignee: Vladimir.Ivantchenko
Status: RESOLVED FIXED    
Severity: trivial    
Priority: P5    
Version: 10.1   
Hardware: All   
OS: All   

Description Mauro Tacconi 2015-06-30 11:36:56 CEST
G4IonCoulombScatteringModel.cc

line 203: G4double ptot = v0.mag();
proposed fix: G4double ptot = v0.vect().mag();

line 228: G4double trec = v0.e() - mass2;
proposed fix: G4double trec = v0.e();

----------------------------

also in test58 (src/StackingAction.cc)

line 68: G4double M2= A*mole/g;
proposed fix: G4double M2= A;
Comment 1 Vladimir.Ivantchenko 2015-07-01 10:23:11 CEST
Hello Mauro,

thank you for this bug report. It is clear and will be implemented soon.

VI