broadcast_dist_fn_species_config Subroutine

private subroutine broadcast_dist_fn_species_config(self)

Uses

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

Type Bound

dist_fn_species_config_type

Arguments

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

Contents


Source Code

  subroutine broadcast_dist_fn_species_config(self)
    use mp, only: broadcast
    implicit none
    class(dist_fn_species_config_type), intent(in out) :: self
    call broadcast(self%bakdif)
    call broadcast(self%fexpi)
    call broadcast(self%fexpr)

    call broadcast(self%exist)
  end subroutine broadcast_dist_fn_species_config