VERB_code_2.3
Kfunc.m
1 function y=Kfunc(pc)
2 mc2 = 0.511;
3 y = ( sqrt( 1.0 + ( pc ./ mc2).^2 ) - 1) .* mc2;
4 return;
double Kfunc(double pc)
Computation of Kinetic energy from given momentum .