Problem 1386 - No Auger electron or Xray emitted after inverse beta decay of K40
Summary: No Auger electron or Xray emitted after inverse beta decay of K40
Status: RESOLVED FIXED
Alias: None
Product: Geant4
Classification: Unclassified
Component: processes/electromagnetic (show other problems)
Version: 9.5
Hardware: All All
: P5 major
Assignee: alexander.howard
URL:
Depends on:
Blocks:
 
Reported: 2012-11-13 23:20 CET by Jingke
Modified: 2012-12-17 23:22 CET (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this problem.
Description Jingke 2012-11-13 23:20:56 CET
Auger electron and X-rays used to be produced after inverse beta decay of 40K in G4.9.0, but they don't seem to be there in G4.9.5. I am using the DMXPhysicsList.cc in the underground physics advanced example. Thank you!
Comment 1 kurasige 2012-11-14 00:40:56 CET
Auger electron and X-rays are covered by electromagnetic processes.
Comment 2 Vladimir.Ivantchenko 2012-11-17 12:39:34 CET
DMX advanced example PhysicsList was not modified for along time. Due to this new features introduced in recent releases of Geant4 are not available. To have Auger electron production after radioactive decay can be activate as it is shown in examples/extended/radioactive_decay.

VI
Comment 3 alexander.howard 2012-12-17 23:22:04 CET
Adding the following three lines:

  // switch on fluorescence, PIXE and Auger:
  opt.SetFluo(true);
  opt.SetPIXE(true);
  opt.SetAuger(true);


To the DMXPhysicsList.cc at the end of ConstructEM() method should fix the problem.

Auger electron and X-rays were switched off by default since Geant4 version 9.3 (I think).

As an Auger macro is not included in the example is difficult to verify if the functionality has now returned in a user's own application, albeit with a physics list from the advanced example.