Changes between Version 4 and Version 5 of HelpSyntax


Ignore:
Timestamp:
Jul 26, 2010, 3:23:46 PM (14 years ago)
Author:
Johan Alwall
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HelpSyntax

    v4 v5  
    1 == !MadGraph5 Syntax For generate events ==
     1== !MadGraph5 Syntax for process generation ==
    22
    3 Compared to [http://madgraph.phys.ucl.ac.be/EXAMPLES/example.html MG4 the syntax] is basically the same
    4 but
     3Most of the [http://madgraph.phys.ucl.ac.be/EXAMPLES/example.html MG4 syntax] is kept unchanged, but in MG5,
    54   1. All particles should be separated with a spaces
    65{{{
     
    109   w+>vee+
    1110}}}
    12    2. The coupling is specify after the process in the same line.
     11   2. The coupling order is specified after the process, on the same line.
    1312      Please note that:
    14         a. Note that contrary to !MG4 the default for the coupling is to infinity
     13        a. Note that contrary to MG4 the default coupling order is infinity
    1514        b. couplings are case sensitive
    1615{{{
    1716write this:
    18    w+ > ve e+ QED=2
     17   p p > ve e+ j j QED=2
    1918and not:
    20    w+>ve e+ qed=2
     19   p p > ve e+ j j qed=2 qcd=99
    2120}}}
    22    3. you can still use the special tag at the end of the process
    23       a. "/" fordids the following particles to appear in the process
    24       b. "$"  fordids the following particles to appear in a S-Channel
     21   3. Other special process definition tags are the same:
     22      a. "p p > w+ > j j j" allows only diagrams with a W+ as an s-channel propagator
     23      b. "e+ e- > e+ e- / z" forbids Z to appear in any internal line in the process
     24      c. "p p > ul ul~ j $ go"  forbids go to appear in any s-channel propagator
    2525
    26    4. The syntax for decay chain is different.
    27       a. In !MG5 the production process is separated from the decay by a coma.
    28       b. Each part can be restricted by couplings/ special tag restrictions
     26   4. *The syntax for decay chain is different.*
     27      a. In MG5 the production process is separated from the decays by a comma.
     28      b. Each subprocess (core process or decay) can have coupling orders/special tag restrictions
    2929{{{
    3030write this:
    31    g g > t t~ QED=0 /a, (t > b W+, W+ > l+ vl), t~ >j j j QCD=0
     31   g g > t t~ / a QED=0, (t > b W+, W+ > l+ vl), t~ >j j j QCD=0
    3232and not:
    33    g g > (t >b (W+ >l+vl))(t~> j j j)     
     33   g g > (t > b (W+ > l+vl))(t~ > j j j)     
    3434}}}
    35    Note that If you run MG5 on MG4 proc_card. for a decay chains, then the couplings restriction will be applied only on the core process.
     35   Note that if you run MG5 using an MG4 proc_card, then the coupling orders will act as in MG4.