FillVectorInt.F


c**********************************************************************
#include "author.inc"
c*    $Id: FillVectorInt.F,v 1.5 1995/07/30 17:49:27 turner Exp $
c*
c*    Fills an integer vector with an integer scalar.
c*
c*    <PARAMETER LIST>
c*
c*     Input:
c*      n - number of elements
c*      is - integer scalar
c*
c*     Output:
c*      ix - destination integer vector
c*      status - return status
c*
#include "copyright.inc"
c**********************************************************************
      subroutine JT_FillVectorInt (n, is, ix, status)
      implicit none
c
c ... Input:
      integer is, n
c
c ... Output:
      integer status, ix(n)
c
c ... Local:
      integer i
c
      do i=1,n
       ix(i) = is
      enddo
c
      status = 0
      return
      end