1 | # Vector boson scattering with WHIZARD |
---|
2 | ######################################################## |
---|
3 | # ulrike.schnoor@physik.tu-dresden.de |
---|
4 | # anomalous couplings a4, a5 in SM_km.mdl |
---|
5 | # alpha_s = 0: EW |
---|
6 | ######################################################## |
---|
7 | model = SM #_km |
---|
8 | |
---|
9 | #set alpha_s EW |
---|
10 | alphas = 0 |
---|
11 | |
---|
12 | # Set up the process |
---|
13 | alias nu = n1:n2:n3 |
---|
14 | alias NU = N1:N2:N3 |
---|
15 | alias neutrino = n1:n2:n3:N1:N2:N3 |
---|
16 | alias lep = e1:e2#:e3 |
---|
17 | alias LEP = E1:E2#:E3 |
---|
18 | alias lepton = e1:E1:e2:E2:e3:E3 |
---|
19 | alias qf = u:d:s:c:U:D:S:C:g |
---|
20 | alias allleptons = lepton:neutrino |
---|
21 | |
---|
22 | process vbslplp = qf, qf => qf, qf, LEP, LEP, nu, nu |
---|
23 | process vbslmlm = qf, qf => qf, qf, lep, lep, NU, NU |
---|
24 | #process vbstplp = qf, qf => qf, qf, E3, LEP, n3, nu |
---|
25 | #process vbstmlm = qf, qf => qf, qf, e3, lep, N3, NU |
---|
26 | #process vbstauptaup = qf, qf => qf, qf, E3, E3, n3, n3 |
---|
27 | #process vbstaumtaum = qf, qf => qf, qf, e3, e3, N3, N3 |
---|
28 | |
---|
29 | #=============================================================================== |
---|
30 | |
---|
31 | #ATLAS settings |
---|
32 | mtop = 172.5 |
---|
33 | mW = 80.399 |
---|
34 | mZ = 91.1876 |
---|
35 | wZ = 2.4952 |
---|
36 | wW = 2.085 |
---|
37 | |
---|
38 | # Set up parameters |
---|
39 | scale = eval M [collect [allleptons]] |
---|
40 | ms = 0 mtau = 1.77705 |
---|
41 | mH = 126 GeV |
---|
42 | wH = 0.00418 GeV |
---|
43 | me = 0 mmu = 0 |
---|
44 | mc = 0 |
---|
45 | |
---|
46 | ?phs_keep_nonresonant = true |
---|
47 | |
---|
48 | # Model parameters ============================================================= |
---|
49 | #a4 = 0 |
---|
50 | #a5 = 0 |
---|
51 | |
---|
52 | #VBS cuts fiducial volume ====================================================== |
---|
53 | cuts = all Dist > 0.4 [qf,qf] and all -5.0 < Eta < 5.0 [qf] and all Pt > 10 |
---|
54 | GeV [qf] and all -5.0 < Eta < 5.0 [lepton] and all Pt > 8 GeV [lepton] |
---|
55 | |
---|
56 | compile |
---|
57 | |
---|
58 | # LHC energy=================================================================== |
---|
59 | sqrts = 14 TeV |
---|
60 | $lhapdf_file = "cteq6ll.LHpdf" |
---|
61 | beams = p, p => lhapdf |
---|
62 | #================================================================================ |
---|
63 | integrate (vbslplp,vbslmlm) {iterations= 24:80000, 20:100000} |
---|
64 | show(results) |
---|
65 | |
---|
66 | #================================================================================ |
---|
67 | n_events = 50000 |
---|
68 | #sample_format = hepmc |
---|
69 | sample_format = lhef |
---|
70 | ?unweighted = true |
---|
71 | simulate (vbslplp,vbslmlm) {checkpoint = 500 ?keep_beams = false} |
---|