Maximum energy lost per step

hi

is it possible to set maximum energy lost per step for electrons?

for instance, the maximum energy lost per step for electrons (primary or secondary generated by photon interactions) set as a fraction of its kinetic energy.

thanks,
Keyvan

G4EmParameters* param = G4EmParameters::Instance();
param->SetDefaults();
param->SetStepFunction(0.2, 1* mm); //default= 0.1, 100 * um
param->SetStepFunctionMuHad(0.2, 1* mm);
param->SetStepFunctionLightIons(0.2, 100* um);
param->SetStepFunctionIons(0.2, 50* um);

or : /process/eLoss/StepFunction ratio finalRange unit

1 Like

hi maire,
thank you for your reply,

could you please introduce a reference for more info and explanation of these Em options?

https://lappweb.in2p3.fr/~maire/tutorials/index.html
see energy-range relation

Maybe, there is also few explanations in Geant4 tutorials, but I am not sure …
https://geant4.web.cern.ch/support/training_courses

1 Like