Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
FUNCTION fRE(eta,p)REAL(rp),INTENT(IN)::eta! pitch angle in degreesREAL(rp),INTENT(IN)::p! momentum in units of mcREAL(rp)::fREREAL(rp)::fEREAL(rp)::fetaREAL(rp)::AREAL(rp)::EoEo=SQRT(p**2.0_rp+1.0_rp)A=(2.0_rp*pdf_params%E/(pdf_params%Zeff+1.0_rp))*(p**2/SQRT(p**2.0_rp+1.0_rp))A=A*pdf_params%A_factfeta=0.5_rp*A*EXP(A*COS(deg2rad(eta)))/SINH(A)fE=fGamma(Eo,pdf_params%k,pdf_params%t/xo)/pdf_params%fGofRE=fE*fetaEND FUNCTION fRE