Last change
on this file was 286, checked in by harald, 25 years ago |
This is the start point for further developments of the Magic Monte Carlo
Simulation written by Jose Carlos Gonzales. Now it is under control of
one CVS repository for the whole collaboration. Everyone should use this
CVS repository for further developments.
|
File size:
486 bytes
|
Line | |
---|
1 | SUBROUTINE VZERO (IA,N)
|
---|
2 |
|
---|
3 | C-----------------------------------------------------------------------
|
---|
4 | C CERN PROGLIB# F121 VZERO .VERSION KERNFOR 4.16 870601
|
---|
5 | C ORIG. 01/07/71, MODIF. 24/05/87 TO SET INTEGER ZERO
|
---|
6 | C-----------------------------------------------------------------------
|
---|
7 |
|
---|
8 | DIMENSION IA(*)
|
---|
9 | C-----------------------------------------------------------------------
|
---|
10 |
|
---|
11 | IF (N.LE.0) RETURN
|
---|
12 | DO 9 I= 1,N
|
---|
13 | 9 IA(I)= 0
|
---|
14 |
|
---|
15 | RETURN
|
---|
16 | END
|
---|
Note:
See
TracBrowser
for help on using the repository browser.