whizard is hosted by Hepforge, IPPP Durham
close Warning: Error with navigation contributor "BrowserModule"

Changes between Version 1 and Version 2 of ExampleWendpoint


Ignore:
Timestamp:
Apr 12, 2010, 11:09:30 AM (15 years ago)
Author:
ohl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ExampleWendpoint

    v1 v2  
     1We're in the standard model
    12{{{
    23model = SM
    34}}}
    4 Set up the process
     5Set up the process, restricting ourselves to up- and downquarks in the proton, together with gluons
    56{{{
    67alias parton = u:U:d:D:g
    78alias jet = parton
    89}}}
    9 We could have added strange and charm jets:
     10We could have added strange and charm jets (but we chose not to)
    1011{{{
    1112# alias jet = parton:s:S:c:C
    1213}}}
     14Allow muons as well as electrons, but assume that we can identify charges and ignore antimuons and positrons
    1315{{{
    1416alias lepton = e1:e2
    1517alias neutrino = n1:N1:n2:N2
    1618}}}
     19Define the process, call O'Mega and compile the matrix element
    1720{{{
    1821process enj = parton, parton => lepton, neutrino, jet
     
    6366       and record e_jet (eval E [extract index 1 [sort by Pt [jet]]])
    6467}}}
     68Generate 1000 events
    6569{{{
    6670simulate (enj) { n_events = 1000 }
    6771}}}
     72and write the events to file
    6873{{{
    6974$analysis_filename = "W-endpoint"