]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HERWIG/src/hwulof.f
splitting of simulation and reconstruction code (T.Kuhr)
[u/mrichter/AliRoot.git] / HERWIG / src / hwulof.f
CommitLineData
3820ca8e 1
2CDECK ID>, HWULOF.
3
4*CMZ :- -05/11/95 19.33.42 by Mike Seymour
5
6*-- Author : Adapted by Bryan Webber
7
8C-----------------------------------------------------------------------
9
10 SUBROUTINE HWULOF(PS,PI,PF)
11
12C-----------------------------------------------------------------------
13
14C TRANSFORMS PI (GIVEN IN LAB) INTO PF (IN REST FRAME OF PS)
15
16C N.B. P(1,2,3,4,5) = (PX,PY,PZ,E,M)
17
18C-----------------------------------------------------------------------
19
20 DOUBLE PRECISION PS(5),PI(5),PF(5)
21
22 CALL HWULF4(PS,PI,PF)
23
24 PF(5)= PI(5)
25
26 END