]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MINICERN/packlib/kernlib/kerngen/tcgen/trsa.F
Merging the VirtualMC branch to the main development branch (HEAD)
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / tcgen / trsa.F
diff --git a/MINICERN/packlib/kernlib/kerngen/tcgen/trsa.F b/MINICERN/packlib/kernlib/kerngen/tcgen/trsa.F
deleted file mode 100644 (file)
index 9cd7b7d..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-*
-* $Id$
-*
-* $Log$
-* Revision 1.1.1.1  1996/02/15 17:49:55  mclareni
-* Kernlib
-*
-*
-#include "kerngen/pilot.h"
-      SUBROUTINE TRSA (S,A,B,M,N)
-C
-C CERN PROGLIB# F112    TRSA            .VERSION KERNFOR  4.15  861204
-C ORIG. 18/12/74 WH
-C
-#if defined(CERNLIB_INTDOUBL)
-      DOUBLE PRECISION SUM
-#endif
-      DIMENSION S(*),A(*),B(*)
-C
-      INDS = 0
-      IB = 0
-      I = 0
-C
-    5 INDS = INDS + I
-C
-      DO 40 J=1,N
-      IA = J
-      IS = INDS
-      SUM = 0.
-      K = 0
-C
-   10 IF (K.GT.I)             GO TO 20
-      IS = IS + 1
-        GO  TO                30
-   20 IS = IS + K
-   30 SUM = SUM + S(IS)*A(IA)
-      IA = IA + N
-      K = K + 1
-      IF (K.LT.M)             GO TO 10
-      IB = IB + 1
-   40 B(IB) = SUM
-      I = I + 1
-      IF (I.LT.M)             GO TO 5
-C
-      RETURN
-      END