broadcast_theta_grid_salpha_config Subroutine

private subroutine broadcast_theta_grid_salpha_config(self)

Uses

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

Type Bound

theta_grid_salpha_config_type

Arguments

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

Contents


Source Code

  subroutine broadcast_theta_grid_salpha_config(self)
    use mp, only: broadcast
    implicit none
    class(theta_grid_salpha_config_type), intent(in out) :: self
    call broadcast(self%alpha1)
    call broadcast(self%alpmhdfac)
    call broadcast(self%model_option)

    call broadcast(self%exist)
  end subroutine broadcast_theta_grid_salpha_config