]> git.uio.no Git - u/mrichter/AliRoot.git/blame - GEANT321/neutron/clear.F
updated to introduction of new TG4SDServices class; added comment lines separating...
[u/mrichter/AliRoot.git] / GEANT321 / neutron / clear.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1995/10/24 10:21:55 cernlib
6* Geant
7*
8*
9#include "geant321/pilot.h"
10*CMZ : 3.21/02 29/03/94 15.41.48 by S.Giani
11*-- Author :
12 SUBROUTINE CLEAR(L,L1,L2)
13C THIS ROUTINE ZEROS ARRAY L FROM
14C STARTING POINT L1 TO ENDING POINT L2
15 DIMENSION L(*)
16 IF(L2-L1.LT.0)GO TO 20
17 DO 10 I=L1,L2
18 10 L(I)=0
19 20 RETURN
20 END