]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ISAJET/isajet/dkyss3.inc
Coding rule violations fixed.
[u/mrichter/AliRoot.git] / ISAJET / isajet / dkyss3.inc
CommitLineData
0795afa3 1#ifndef CERNLIB_ISAJET_DKYSS3_INC
2#define CERNLIB_ISAJET_DKYSS3_INC
3*
4*
5* dkyss3.inc
6*
7C
8C Data for SUSY 3-body matrix elements. There is a double
9C pointer structure, first to modes, and then to poles that
10C make up the matrix element for that mode:
11C MELEM=-I in /DKYTAB/ points to the mode information:
12C J1SS3(I) = start of pole list for this mode
13C J2SS3(I) = end of pole list for this mode
14C WTSS3(I) = maximum weight for this mode
15C J1SS3<J<J2SS3 points to the corresponding poles:
16C KSS3(J) = pole type
17C AMSS3(J) = pole mass
18C ZISS3(2,J) = initial couplings
19C ZFSS3(2,J) = final couplings
20C For gaugino -> gaugino f fbar, the pole types are
21C KSS3=1: spin-1 pole in f-fbar channel
22C KSS3=2: spin-0 pole in gaugino-f channel
23C KSS3=3: spin-0 pole in gaugino-fbar channel
24C KSS3=4: spin-0 pole in f-fbar channel
25C The two couplings are the coefficients of 1,gamma_5 or of
26C gamma_mu,gamma_mu*gamma_5.
27C
28 INTEGER MXMSS3,MXPSS3
29 PARAMETER (MXMSS3=1000)
30 PARAMETER (MXPSS3=2000)
31 COMMON/DKYSS3/NMSS3,NPSS3,
32 $J1SS3(MXMSS3),J2SS3(MXMSS3),WTSS3(MXMSS3),
33 $KSS3(MXPSS3),AMSS3(MXPSS3),ZISS3(2,MXPSS3),ZFSS3(2,MXPSS3)
34 INTEGER NMSS3,NPSS3,KSS3,J1SS3,J2SS3
35 REAL WTSS3,AMSS3
36 COMPLEX ZISS3,ZFSS3
37
38#endif