Changes between Version 1 and Version 2 of DMsimp_alpha


Ignore:
Timestamp:
Aug 20, 2015, 10:37:25 AM (9 years ago)
Author:
Antony Martini
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DMsimp_alpha

    v1 v2  
    1 blalba
     1= '''DMsimp - Alpha version''' =
     2== Model files ==
     3
     4*  [http://feynrules.irmp.ucl.ac.be/raw-attachment/wiki/DMsimp/DMsimp_UFO.2.zip DMsimp_UFO.zip]: the s-channel model files in UFO format
     5* TO BE DONE: include  the s-channel+EW model files in UFO format
     6
     7== NLO process samples for s-channel mediators==
     8
     9Remember that "scalar" below means scalar/pseudoscalar and "vector" means vector/axial-vector.
     10
     11* NLO vector mediator + jets [[BR]]
     12
     13
     14{{{
     15import model DMsimp_UFO
     16generate p p > xd xd~ j DMV=2 DMS=0 QCD=1 QED=0 [QCD]
     17generate p p > xd xd~ j j  DMV=2 DMS=0 QCD=2 QED=0 [QCD]
     18}}}
     19
     20* NLO scalar mediator + jets (the scalar coupling to light quarks with Yukawa's proportional to the SM ones (MFV))[[BR]]
     21
     22
     23{{{
     24import model DMsimp_UFO-full
     25generate p p > xd xd~ j DMV=0 DMS=2 QCD=1 QED=0 [QCD]
     26generate p p > xd xd~ j j  DMV=0 DMS=2 QCD=2 QED=0 [QCD]
     27}}}
     28
     29
     30
     31
     32
     33* NLO ttbar associated production (for vector coupling to both top and light quarks) at NLO [[BR]]
     34
     35
     36{{{
     37import model DMsimp_UFO
     38generate p p > xd xd~ t t~ / y0 [QCD]
     39}}}
     40
     41
     42* NLO ttbar associated production with a vector mediator coupling only to tops[[BR]]
     43
     44
     45{{{
     46import model DMsimp_UFO-onlytops
     47define p = p b b~
     48define j = p
     49generate p p > xd xd~ t t~ / y0 [QCD]
     50}}}
     51
     52* NLO ttbar associated production with a scalar mediator coupling only to tops[[BR]]
     53
     54
     55{{{
     56import model DMsimp_UFO-onlytops
     57define p = p b b~
     58define j = p
     59generate p p > xd xd~ t t~ / y1 [QCD]
     60}}}
     61
     62* NLO associated production with a Z with a vector mediator Y1 coupling to light quarks (no coupling of a Z with Y1) [[BR]]
     63
     64
     65{{{
     66import model DMsimp_UFO
     67generate p p > xd xd~ z / y0 [QCD]
     68}}}
     69 
     70* NLO associated production with a W with a vector mediator Y1 coupling to light quarks (no coupling of a W with Y1) [[BR]]
     71
     72{{{
     73import model DMsimp_UFO
     74define wpm = w+ w-
     75generate p p > xd xd~ wpm / y0 [QCD]
     76}}}
     77
     78* NLO associated production with a gamma with a vector mediator Y1 coupling to light quarks (no coupling of a gamma with Y1) [[BR]]
     79
     80
     81{{{
     82import model DMsimp_UFO
     83generate p p > xd xd~ a / y0 [QCD]
     84}}}
     85
     86
     87 
     88
     89=== LO processes loop (top-quark) induced  ===
     90
     91* LO mono jet loop-induced with a scalar mediator
     92
     93
     94{{{
     95import model DMsimp_UFO-onlytops 
     96generate p p > xd xd~ j DMV=0 [QCD]
     97}}}
     98
     99
     100* LO monojet loop-induced with a vector mediator[[BR]]
     101
     102
     103{{{
     104import model DMsimp_UFO-onlytops
     105generate p p > xd xd~ j DMS=0 [QCD]
     106}}}
     107
     108
     109
     110
     111* LO mono-Higgs loop-induced with scalar mediator (no interaction between the h and the mediator)[[BR]]
     112
     113
     114{{{
     115import model DMsimp_UFO-onlytops
     116generate p p > xd xd~ h DMS=2 DMV=0 [QCD]
     117}}}
     118
     119
     120* LO mono-Higgs loop-induced with vector mediator (no interaction between the h and the mediator)[[BR]]
     121
     122
     123{{{
     124import model DMsimp_UFO-onlytops
     125generate p p > xd xd~ h DMV=2 DMS=0 [QCD]
     126}}}
     127
     128
     129* LO mono-Z loop-induced with scalar mediator (no interaction between the Z and the scalar mediator)[[BR]]
     130
     131
     132{{{
     133import model DMsimp_UFO-onlytops
     134generate p p > xd xd~ z DMS=2 DMV=0 [QCD]
     135}}}
     136
     137
     138
     139* LO mono-Z loop-induced with vector mediator (no interaction between the Z and the vector mediator)[[BR]]
     140
     141
     142{{{
     143import model DMsimp_UFO-onlytops
     144generate p p > xd xd~ z DMV=2 DMS=0 [QCD]
     145}}}
     146
     147* LO mono-photon loop-induced with scalar mediator (no interaction between the gamma and the scalar mediator) [[BR]]
     148
     149{{{
     150import model DMsimp_UFO-onlytops
     151generate p p > xd xd~ a DMS=2 DMV=0 [QCD]
     152}}}
     153
     154NOTE: this process gives zero because of C parity for both scalar and pseudoscalar mediators. It is here for reference.
     155
     156* LO mono-photon loop-induced with vector mediator (no interaction between the gamma and the vector mediator) [[BR]]
     157
     158{{{
     159import model DMsimp_UFO-onlytops
     160generate p p > xd xd~ a DMV=2 DMS=0 [QCD]
     161}}}
     162
     163=== Version updates ===
     164
     165*2015.06.11 - v0.1_alpha: alpha version. [[BR]]
     166*2015.06.16 - v0.2_alpha: alpha version : deleted “DMT” coupling (for spin-2 mediator model) from couplings_order.py. Added onlytops restriction to only allow vector and scalar mediators coupling to tops. (Thanks to Uli Haisch for testing).