source: trunk/MagicSoft/Simulation/Corsika/Mmcs/ucopy.f@ 286

Last change on this file since 286 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
3C-----------------------------------------------------------------------
4C CERN PROGLIB# V301 UCOPY .VERSION KERNFOR 1.0 710701
5C ORIG. 01/01/65 JZ
6C-----------------------------------------------------------------------
7
8 DIMENSION A(*),B(*)
9C-----------------------------------------------------------------------
10
11C 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.