]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MINICERN/packlib/kernlib/kerngen/tcgens/lnxgs/ubunch.F
Merging the VirtualMC branch to the main development branch (HEAD)
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / tcgens / lnxgs / ubunch.F
diff --git a/MINICERN/packlib/kernlib/kerngen/tcgens/lnxgs/ubunch.F b/MINICERN/packlib/kernlib/kerngen/tcgens/lnxgs/ubunch.F
deleted file mode 100644 (file)
index a49f605..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-*
-* $Id$
-*
-* $Log$
-* Revision 1.1.1.1  1996/02/15 17:50:20  mclareni
-* Kernlib
-*
-*
-      SUBROUTINE UBUNCH (MS,MT,NCHP)
-C
-C CERN PROGLIB# M409    UBUNCH          .VERSION KERNLNX  1.02  940511
-C ORIG. 03/02/89 K.M.STORR
-C
-
-      DIMENSION    MS(99), MT(99), NCHP(9)
-      data iblan1/x'20202020'/
-      data mask1/x'000000ff'/
-
-      NCH = NCHP(1)
-      IF   (NCH)             91,39,11
-   11 NWT    = ishftr (NCH,2)
-      NTRAIL = AND (NCH,3)
-      JS     = 0
-      IF (NWT.EQ.0)          GO TO 31
-
-C--                Pack the initial complete words
-
-      DO 24  JT=1,NWT
-      MT(JT) = OR (OR (OR (
-     +                  AND(MS(JS+1),MASK1),
-     +          LSHIFT (AND(MS(JS+2),MASK1), 8)),
-     +          LSHIFT (IAND(MS(JS+3),MASK1),16)),
-     +          LSHIFT      (MS(JS+4),       24) )
-   24 JS = JS + 4
-
-      IF (NTRAIL.EQ.0)       RETURN
-
-C--                Pack the trailing word
-
-   31 MWD = IBLAN1
-      JS  = NCH
-
-      DO 34 JT=1,NTRAIL
-      MWD = OR (LSHIFT(MWD,8), AND(MS(JS),MASK1))
-   34 JS  = JS - 1
-      MT(NWT+1) = MWD
-   39 RETURN
-
-   91 CALL ABEND
-      END