]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MINICERN/packlib/kernlib/kerngen/tcgens/vdot.F
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / tcgens / vdot.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1996/02/15 17:50:16 mclareni
6* Kernlib
7*
8*
9#include "kerngen/pilot.h"
10 FUNCTION VDOT (X,Y,N)
11C
12C CERN PROGLIB# F121 VDOT .VERSION KERNFOR 1.0 710701
13C ORIG. 01/07/71
14C
15 DIMENSION X(*),Y(*)
16C
17 XX= 0.
18 IF (N.LE.0) GO TO 100
19 DO 9 I= 1,N
20 9 XX= XX + X(I)*Y(I)
21C
22 100 VDOT= XX
23 RETURN
24 END