]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MINICERN/mathlib/gen/e/prod1.F
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / MINICERN / mathlib / gen / e / prod1.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1996/04/01 15:02:27 mclareni
6* Mathlib gen
7*
8*
9#include "gen/pilot.h"
10 FUNCTION PROD1(A,B,M,N)
11 DIMENSION A(1),B(1)
12 DOUBLE PRECISION SUM
13C
14 SUM=0.
15 DO 5 I=M,N
16 5 SUM=SUM+DBLE(A(I))*DBLE(B(I))
17 PROD1=SUM
18 RETURN
19 END