]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HERWIG/src/hwumas.f
Private copy constructors and assignment operators without implementation (Effective...
[u/mrichter/AliRoot.git] / HERWIG / src / hwumas.f
CommitLineData
3820ca8e 1
2CDECK ID>, HWUMAS.
3
4*CMZ :- -26/04/91 11.11.56 by Bryan Webber
5
6*-- Author : Bryan Webber
7
8C-----------------------------------------------------------------------
9
10 SUBROUTINE HWUMAS(P)
11
12C-----------------------------------------------------------------------
13
14C PUTS INVARIANT MASS IN 5TH COMPONENT OF VECTOR
15
16C (NEGATIVE SIGN IF SPACELIKE)
17
18C-----------------------------------------------------------------------
19
20 DOUBLE PRECISION HWUSQR,P(5)
21
22 EXTERNAL HWUSQR
23
24 P(5)=HWUSQR((P(4)+P(3))*(P(4)-P(3))-P(1)**2-P(2)**2)
25
26 END