broadcast_ingen_config Subroutine

public subroutine broadcast_ingen_config(self)

Uses

Broadcasts all config parameters so object is populated identically on all processors

Type Bound

ingen_config_type

Arguments

Type IntentOptional Attributes Name
class(ingen_config_type), intent(inout) :: self

Contents


Source Code

  subroutine broadcast_ingen_config(self)
    use mp, only: broadcast
    implicit none
    class(ingen_config_type), intent(in out) :: self
    call broadcast(self%ncut)
    call broadcast(self%npmax)
    call broadcast(self%scan)
    call broadcast(self%stdin)

    call broadcast(self%exist)
  end subroutine broadcast_ingen_config