Problem 1287 - the parameters for defining elements in DicomDetectorConstruction.cc are not correct
Summary: the parameters for defining elements in DicomDetectorConstruction.cc are not ...
Status: RESOLVED FIXED
Alias: None
Product: Examples/Extended
Classification: Unclassified
Component: medical/DICOM (show other problems)
Version: 9.5
Hardware: All All
: P5 trivial
Assignee: Pedro.Arce
URL:
Depends on:
Blocks:
 
Reported: 2012-02-19 06:31 CET by Fada Guan
Modified: 2012-03-28 10:24 CEST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this problem.
Description Fada Guan 2012-02-19 06:31:37 CET
G4Element* elK = new G4Element( name = "Potassium",
                                  symbol = "P",
                                  z = 19.0, a = 30.0983* g/mole );
  G4Element* elP = new G4Element( name = "Phosphorus",
                                  symbol = "P",
                                  z = 30.0, a = 30.973976* g/mole );
  G4Element* elFe = new G4Element( name = "Iron",
                                   symbol = "Fe",
                                   z = 26, a = 56.845* g/mole );

the parameters for defining elements in DicomDetectorConstruction.cc are not correct, and they should be

  G4Element* elK = new G4Element(name="Potassium",
                                 symbol="P",
                                 z=19.0, a=39.0983*g/mole );//old a is wrong with 30.0983,2012-02-18
  G4Element* elP = new G4Element(name="Phosphorus",
                                 symbol="P",
                                 z=15.0, a=30.973762*g/mole );//old z is wrong with 30,2012-02-18
  G4Element* elFe = new G4Element(name="Iron",
                                  symbol="Fe",
                                  z=26, a=55.845*g/mole );//old a is wrong with 56.845,2012-02-18