parse_structure_section Module Subroutine

module subroutine parse_structure_section(unit, config, error)

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: unit
type(mqc_config_t), intent(inout) :: config
type(error_t), intent(out) :: error

Calls

proc~~parse_structure_section~~CallsGraph proc~parse_structure_section parse_structure_section interface~parse_structure_generic parse_structure_generic proc~parse_structure_section->interface~parse_structure_generic proc~parse_structure_generic parse_structure_generic interface~parse_structure_generic->proc~parse_structure_generic proc~error_set error_t%error_set proc~parse_structure_generic->proc~error_set proc~strip_comment strip_comment proc~parse_structure_generic->proc~strip_comment

Called by

proc~~parse_structure_section~~CalledByGraph proc~parse_structure_section parse_structure_section interface~parse_structure_section parse_structure_section interface~parse_structure_section->proc~parse_structure_section proc~read_mqc_file read_mqc_file proc~read_mqc_file->interface~parse_structure_section program~main main program~main->proc~read_mqc_file

Source Code

   module subroutine parse_structure_section(unit, config, error)
      integer, intent(in) :: unit
      type(mqc_config_t), intent(inout) :: config
      type(error_t), intent(out) :: error

      call parse_structure_generic(unit, config%charge, config%multiplicity, error)

   end subroutine parse_structure_section