]> git.uio.no Git - u/mrichter/AliRoot.git/blame - GEANT321/matx55/ddot.F
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / GEANT321 / matx55 / ddot.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1996/03/06 15:37:36 mclareni
6* Add geane321 source directories
7*
8*
9#include "geant321/pilot.h"
10*CMZ : 3.21/02 29/03/94 15.41.50 by S.Giani
11*-- Author :
12 DOUBLE PRECISION FUNCTION DDOT(X,Y)
13* ===================================
14*
15* Double Precision Scalar Product
16*
17* Author: V.Innocente (Naples)
18*
19#if !defined(CERNLIB_SINGLE)
20 IMPLICIT DOUBLE PRECISION ( A-H, O-Z )
21#endif
22 DIMENSION X(3),Y(3)
23*
24 DDOT = X(1)*Y(1)+X(2)*Y(2)+X(3)*Y(3)
25*
26 END