]> git.uio.no Git - u/mrichter/AliRoot.git/blob - GEANT321/erdecks/eufilv.F
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / GEANT321 / erdecks / eufilv.F
1 *
2 * $Id$
3 *
4 * $Log$
5 * Revision 1.1.1.1  1996/03/06 15:37:35  mclareni
6 * Add geane321 source directories
7 *
8 *
9 #include "geant321/pilot.h"
10 *CMZ :  3.21/02 29/03/94  15.41.49  by  S.Giani
11 *-- Author :
12       SUBROUTINE EUFILV (N, EIN, CNAMV, NUMV, IOVL)
13 *
14 C.    ******************************************************************
15 C.    *                                                                *
16 C.    *    User routine to fill the input values of the commons :      *
17 C.    *               /EROPTS/, /EROPTC/ and /ERTRIO/ for CHOPT = 'V'  *
18 C.    *         N     Number of predictions where to store results     *
19 C.    *         EIN   Input error matrix                               *
20 C.    *        CNAMV  Volume name of the prediction                    *
21 C.    *        NUMV   Volume number (if 0 = all volumes)               *
22 C.    *        IOVL   = 1  prediction when entering in the volume      *
23 C.    *               = 2  prediction when leaving the volume          *
24 C.    *                                                                *
25 C.    *    ==>Called by : USER (before calling ERTRAK)                 *
26 C.    *       Author    M.Maire, E.Nagy  *********                     *
27 C.    *                                                                *
28 C.    ******************************************************************
29 C.
30 #include "geant321/ertrio.inc"
31       DIMENSION EIN(15), NUMV(N), IOVL(N)
32       CHARACTER * 4 CNAMV(N)
33 *
34       NEPRED = MIN0 (N, MXPRED)
35 *
36       CALL UCOPY (EIN(1), ERRIN(1),  15)
37       DO I=1,NEPRED
38         CALL UCTOH (CNAMV(I),NAMEER(I),4,4)
39       ENDDO
40       CALL UCOPY (NUMV(1),NUMVER(1),NEPRED)
41       CALL UCOPY (IOVL(1),IOVLER(1),NEPRED)
42 *
43 *                                                           END EUFILV
44   99  END