Nodes of different colours represent the following:
Solid arrows point from a submodule to the (sub)module which it is
descended from. Dashed arrows point from a module or program unit to
modules which it uses.
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.
Source Code
subroutine w90_readwrite_read_lattice(settings,real_lattice,bohr,error,comm)use w90_error,only:w90_error_type,set_error_inputimplicit nonereal(kind=dp),intent(out)::real_lattice(3,3)real(kind=dp)::real_lattice_tmp(3,3)real(kind=dp),intent(in)::bohrtype(w90_error_type),allocatable,intent(out)::errortype(w90_comm_type),intent(in)::commtype(settings_type),intent(inout)::settingslogical::foundcall w90_readwrite_get_keyword_block(settings,'unit_cell_cart',found,3,3,bohr,error,&comm,r_value=real_lattice_tmp)if(allocated(error))returnreal_lattice=transpose(real_lattice_tmp)if(.not.found)then call set_error_input(error,'Error: Did not find the cell information in the input file',comm)return end if end subroutine w90_readwrite_read_lattice