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:
520 bytes
|
Line | |
---|
1 | SUBROUTINE UCOPY (A,B,N)
|
---|
2 |
|
---|
3 | C-----------------------------------------------------------------------
|
---|
4 | C CERN PROGLIB# V301 UCOPY .VERSION KERNFOR 1.0 710701
|
---|
5 | C ORIG. 01/01/65 JZ
|
---|
6 | C-----------------------------------------------------------------------
|
---|
7 |
|
---|
8 | DIMENSION A(*),B(*)
|
---|
9 | C-----------------------------------------------------------------------
|
---|
10 |
|
---|
11 | C NO OVERLAP OR BEGINNING OF A ON END OF B
|
---|
12 | IF (N.EQ.0) RETURN
|
---|
13 | DO 21 I=1,N
|
---|
14 | 21 B(I)=A(I)
|
---|
15 | RETURN
|
---|
16 | END
|
---|
Note:
See
TracBrowser
for help on using the repository browser.