gather_angle_count Subroutine

public subroutine gather_angle_count(this, angles_pcode)

gather angle count from all clients

Arguments

TypeIntentOptionalAttributesName
class(mimic_communicator), intent(inout) :: this
integer, intent(out), dimension(:), target:: angles_pcode

Integer data to gather


Contents

Source Code


Source Code

subroutine gather_angle_count(this, angles_pcode)

    class(mimic_communicator), intent(inout) :: this
    !> Integer data to gather
    integer, dimension(:), target, intent(out) :: angles_pcode

    call this%gather_int(angles_pcode, MCL_SEND_NUM_ANGLES)

end subroutine gather_angle_count