]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ISAJET/code/logmgm.F
Bug in V0A fixed (Guillermo)
[u/mrichter/AliRoot.git] / ISAJET / code / logmgm.F
CommitLineData
0795afa3 1#include "isajet/pilot.h"
2 LOGICAL FUNCTION LOGMGM(IERR)
3C
4C Set and check limits for multijet mass
5C
6C Note we use the convention that not setting an upper limit
7C gives a fixed variable, even though that currently is not
8C implemented in N-jet phase space.
9C
10#if defined(CERNLIB_IMPNONE)
11 IMPLICIT NONE
12#endif
13#include "isajet/itapes.inc"
14#include "isajet/jetlim.inc"
15#include "isajet/primar.inc"
16#include "isajet/jetpar.inc"
17#include "isajet/const.inc"
18#include "isajet/dylim.inc"
19#include "isajet/keys.inc"
20#include "isajet/q1q2.inc"
21#include "isajet/mglims.inc"
22C
23 REAL UNDEF
24 INTEGER IERR
25 DATA UNDEF/-.9E9/
26C
27 LOGMGM=.TRUE.
28C
29 IF(EHMGMN.LT.UNDEF.OR.EHMGMX.LT.UNDEF) THEN
30 LOGMGM=.FALSE.
31 ENDIF
32C
33 RETURN
34 END