Quartic coupling diagram

Asked by Duong Nguyen

Dear MadGraph Authors,

I am working on the Wgammagamma cross section measurement at LHC. We would like to design our measurement so that it is mostly sensitive to the quartic coupling WWgammagamma. I enter the input process "p p > w+ a a" in the Madgraph webpage and look at the diagrams. The quartic WWgammagamma diagram is diagram 3 if you look at the diagram plot. In order to study the effect of this quartic diagram, I though about some strategies:
1. Isolate the quartic diagram only
2. Exclude the quartic diagram so I will have two scenarios with and without quartic diagram.
3. Disable the quartic diagram by setting the quartic coupling = 0.
Can any of the above be possible in Madgraph? Could you instruct me how?

Thank you very much,
Duong

Question information

Language:
English Edit question
Status:
Solved
For:
MadGraph5_aMC@NLO Edit question
Assignee:
No assignee Edit question
Solved by:
Johan Alwall
Solved:
Last query:
Last reply:
Revision history for this message
Best Johan Alwall (johan-alwall) said :
#1

Daer Doung,

You can easily do what you ask for, e.g. by simply adding an additional parameter to the SM model files, and let this parameter regulate the strength of the vertex in question. Copy the models/sm directory to models/sm_4v, and add in the sm_4v/parameters.py file:

fwwaa = Parameter(name = 'fwwaa',
                  nature = 'external',
                  type = 'real',
                  value = 1,
                  texname = '\\text{fwwaa}',
                  lhablock = 'MYPARAMS',
                  lhacode = [ 1 ])

then modify the relevant coupling (GC_28, as you can see from interaction V_9 in the vertices.py file) to

GC_28 = Coupling(name = 'GC_28',
                 value = 'fwwaa*complex(0,1)*gw**2*sw**2',
                 order = {'QED':2})

in couplings.py. You can then set the strength of the coupling relative to the SM directly in the param_card.dat (in the myparams block) after creating your process.

Note that you need to import the new model using
import model sm_mod-full
to avoid applying the default restriction card restrict_default.dat, which doesn't have the new myparams block (you can read about restriction cards in the MG5 release paper).

You can now set the strength of the new fwwaa parameter to 1000 or to 0, to get 4-vertex dominance or completely remove the 4-vertex.

Caveat: Note that the process will no longer be (QED) gauge invariant when you modify the relative strength of this vertex, which also means that we can't guarantee that the result will be Lorentz invariant. So you might want to think of some gauge-invariant way to modify the vertex instead, e.g. using a new heavy particle effective couplings to W and photon. You can test that your model is Lorentz invariant by using the "check" functionality inside MG5, as described in the MG5 release paper. The parameters used in the "check" are the default parameters set in the UFO parameters.py file.

All the best,
Johan

Revision history for this message
Duong Nguyen (nhduongvn1) said :
#2

Thanks Johan Alwall, that solved my question.