whizard is hosted by Hepforge, IPPP Durham

Ticket #464: hw.sin

File hw.sin, 1.4 KB (added by kilian, 12 years ago)

Sindarin input (off-shell Higgs at LHC)

Line 
1########################################################
2# Vector boson scattering
3# higgs width dependence study
4# ulrike.schnoor@physik.tu-dresden.de
5# alpha_s = 0: EW, alpha_s = a(mZ) from pdf: EWQCD
6#########################################################
7model = SM
8
9# Set variables
10real HiggsMass = 120 GeV
11real HiggsWidth = 3 MeV
12
13#set alpha_s (EW: 0; EWQCD: alpha_s from pdf @ 91.188)
14scale = 91.188
15alphas = 0
16
17#?vis_channels = true
18?phs_keep_nonresonant = true
19
20# Set up the process
21alias lepton = e1:E1:e2:E2
22alias qf = u:d
23process vbs1 = u:d, u:d => u, d, E1, e2, nue, numubar
24process vbs2 = u:d, u:d => u, d, E1, e2, nue, numubar
25process vbs3 = u:d, u:d => u, d, E1, e2, nue, numubar
26
27# Set up parameters
28ms = 0   mtau = 0
29mH = HiggsMass wH = HiggsWidth
30me = 0  mmu = 0
31mc = 0
32
33# specify cuts
34cuts = all Pt > 15 GeV [lepton] and all Pt > 15 GeV [qf] and all Dist > 1.0 [qf,qf] and all M > 20 GeV [lepton,lepton]
35
36compile
37
38# LHC energy
39sqrts = 14 TeV
40beams = p, p => pdf_builtin
41
42#?phs_only = true
43?phs_step_mapping = false
44integrate (vbs1) { iterations = 10:1000000, 5:1000000  }
45
46?phs_step_mapping = true
47?phs_step_mapping_exp = true
48integrate (vbs2) { iterations = 10:1000000, 5:1000000  }
49
50?phs_step_mapping = true
51?phs_step_mapping_exp = false
52integrate (vbs3) { iterations = 10:1000000, 5:1000000  }
53
54
55#n_events = 1000
56#sample_format = hepmc
57#?unweighted = false
58#simulate (vbs) { checkpoint = 100 }
59show(results)