]> git.uio.no Git - u/mrichter/AliRoot.git/blame - GEANT321/matx55/dcross.F
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / GEANT321 / matx55 / dcross.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 SUBROUTINE DCROSS(X,Y,Z)
13* ========================
14*
15* Double Precision Vector 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),Z(3)
23*
24 Z(1) = X(2)*Y(3)-X(3)*Y(2)
25 Z(2) = X(3)*Y(1)-X(1)*Y(3)
26 Z(3) = X(1)*Y(2)-X(2)*Y(1)
27*
28 END