]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/utils/vzero.f
This commit was generated by cvs2svn to compensate for changes in r2,
[u/mrichter/AliRoot.git] / PHOS / utils / vzero.f
CommitLineData
fe4da5cc 1 SUBROUTINE VZERO (A,N)
2 DIMENSION A(*)
3 IF (N.LE.0) RETURN
4 DO 9 I= 1,N
5 9 A(I)= 0.
6 RETURN
7 END