]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ISAJET/isasusy/sshibf.F
Adding MUON HLT code to the repository.
[u/mrichter/AliRoot.git] / ISAJET / isasusy / sshibf.F
CommitLineData
0795afa3 1#include "isajet/pilot.h"
2 SUBROUTINE SSHIBF
3C-----------------------------------------------------------------------
4C
5C This subroutine calculates the decay widths for decays of the
6C Higgs scalars present in the minimal SUSY model.
7C
8C NOTE: Decays into sfermions are not yet incorporated.
9C
10C Standard model parameters are hard wired in SSMSSM. To get
11C the 1987-8 values corresponding to the Gunion et al. papers
12C (Intl. J. Mod. Phys. 2(4):1035; Nucl. Phys. B307:445) you must
13C change
14C ALFA3 = 0.12 --> 0.136
15C AMW = 80.0 --> 81.3
16C AMZ = 91.17 --> 92.7
17C
18C 2/9/91:
19C I've modified the program slightly. The ALPHA3 = 0.12 value
20C above is the recent empirical value from LEP. Using the equation
21C from page 220 in Barger and Phillips yields ALPHA3 = 0.136.
22C
23C 10/1/92:
24C Now includes vertex corrections for triple Higgs couplings.
25C (See Kunszt and Zwirner, CERN-TH.6150/91 for all but HH-HC-HC
26C correction which is in our Higgs --> SUSY paper: Baer et al.
27C FSU-HEP-920630 or UH-511-749-92)
28C
29C Bisset's HIGSBF
30C-----------------------------------------------------------------------
31#if defined(CERNLIB_IMPNONE)
32 IMPLICIT NONE
33#endif
34#include "isajet/sstype.inc"
35C
36C Decays into fermions
37 CALL SSHFF
38C Loop decays into photons and gluons
39 CALL SSHGM
40 CALL SSHGL
41C Decays into WW(*), ZZ(*)
42 CALL SSHWW
43C Decays into neutralinos and charginos
44 CALL SSHNN
45 CALL SSHCC
46C Decays into other Higgs bosons
47 CALL SSHHX
48C Decays to sfermions
49 CALL SSHSF
50C Normalize branching ratios
51C
52 CALL SSNORM(ISHL)
53 CALL SSNORM(ISHH)
54 CALL SSNORM(ISHA)
55 CALL SSNORM(ISHC)
56C
57 RETURN
58 END