whizard is hosted by Hepforge, IPPP Durham

Changes between Initial Version and Version 1 of ExampleLEPHiggs


Ignore:
Timestamp:
May 20, 2010, 4:44:19 PM (15 years ago)
Author:
Juergen Reuter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ExampleLEPHiggs

    v1 v1  
     1Model definition:
     2
     3{{{
     4model = SM
     5}}}
     6
     7Neutrino and quark containers:
     8
     9{{{
     10alias n = n1:n2:n3
     11alias N = N1:N2:N3
     12alias q = u:d:s:c
     13alias Q = U:D:S:C
     14}}}
     15
     16The Higgsstrahlung process
     17
     18{{{
     19process zh = e1, E1 => Z, h
     20}}}
     21
     22The missing-energy channel
     23
     24{{{
     25process nnbb = e1, E1 => n, N, b, B
     26}}}
     27
     28Other channels (for the 4-jet channels
     29we combine EW and QCD contributions)
     30
     31{{{
     32process qqbb = e1, E1 => q, Q, b, B
     33process bbbb = e1, E1 => b, B, b, B
     34process eebb = e1, E1 => e1, E1, b, B
     35process qqtt = e1, E1 => q, Q, e3, E3
     36process bbtt = e1, E1 => b, B, e3, E3
     37}}}
     38
     39Compilation (optional)
     40
     41{{{
     42compile
     43}}}
     44
     45The final LEP energy:
     46
     47{{{
     48sqrts = 209 GeV
     49}}}
     50
     51Set the input parameters
     52
     53{{{
     54mH = 115 GeV
     55wH = 3.228 MeV
     56# Running b mass
     57mb = 2.9 GeV
     58me = 0
     59ms = 0
     60mc = 0
     61}}}
     62
     63
     64Soft-collinear cuts for the jets
     65
     66{{{
     67cuts = all M >= 10 GeV [q,Q]
     68}}}
     69
     70Integrate the processes:
     71
     72{{{
     73integrate (zh) { iterations = 5:5000}
     74
     75integrate(nnbb,qqbb,bbbb,eebb,
     76          qqtt,bbtt) { iterations = 12:20000 }
     77}}}
     78
     79Define title etc. as global variables, that will be used by PLOT
     80
     81{{{
     82$description =
     83  "A WHIZARD 2.0 Example. Using weighted events to speed things up."
     84$ylabel = "$N_{\textrm{events}}$"
     85}}}
     86
     87Allocate plots
     88
     89{{{
     90$title = "Invisible mass distribution in $e^+e^- \to \nu\bar\nu b \bar b$"
     91$xlabel = "$M_{\nu\nu}$/GeV"
     92histogram m_invisible (70 GeV, 130 GeV, 0.5 GeV)
     93
     94$title = "$bb$ invariant mass distribution in $e^+e^- \to \nu\bar\nu b \bar b$"
     95$xlabel = "$M_{b\bar b}$/GeV"
     96histogram m_bb (70 GeV, 130 GeV, 0.5 GeV)
     97}}}
     98
     99Define the analysis set-up:
     100
     101{{{
     102analysis = record m_invisible (eval M [n,N]);
     103           record m_bb (eval M [b,B])
     104}}}
     105
     106To speed things up we use weighted events for demonstration purposes.
     107
     108{{{
     109?unweighted = false
     110}}}
     111
     112Luminosity and simulation:
     113
     114{{{
     115luminosity = 100
     116
     117simulate (nnbb)
     118}}}
     119
     120Some more plots and simulations:
     121
     122{{{
     123$title = "Dijet invariant mass distribution in $e^+e^- \to q \bar q b \bar b$"
     124$xlabel = "$M_{q\bar q}$/GeV"
     125histogram m_jj (70 GeV, 130 GeV, 0.5 GeV)
     126
     127simulate (qqbb) { analysis = record m_jj (eval M / 1 GeV [combine [q,Q]]) }
     128}}}
     129
     130Perform the analysis:
     131
     132{{{
     133$analysis_filename = "lep_higgs"
     134write_analysis
     135}}}