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)::AA=(2.0_rp*pdf_params%E/(pdf_params%Zeff+1.0_rp))*(p**2/SQRT(p**2.0_rp+1.0_rp))fRE=0.5_rp*A*EXP(A*COS(deg2rad(eta)))/SINH(A)! fRE = fRE*PR(eta,p,pdf_params%Bo,pdf_params%lambda)END FUNCTION fRE