Trying to get two Z bosons to decay differently

Asked by Alex Emerman

Hi!
I'm trying to generate a ZZ final state in the RS model where one Z decays into two leptons and the other into two jets. The decay chain should look like this: p p > y > z z > l+ l- j j
To do this I was using the code
generate p p > y > z z, (z > l+ l-, z > j j)

However, when I look at the diagrams madgraph generates they always have either four leptons or four jets (both Zs follow whichever decay I put first).
How do I specify that I want both decay paths?

Thanks,
Alex

Question information

Language:
English Edit question
Status:
Solved
For:
MadGraph5_aMC@NLO Edit question
Assignee:
No assignee Edit question
Solved by:
Olivier Mattelaer
Solved:
Last query:
Last reply:
Revision history for this message
Best Olivier Mattelaer (olivier-mattelaer) said :
#1

Hi Alex,

The correct syntax is
generate p p > y, (y > z z, z > l+ l-, z > j j)

Cheers,

Olivier

PS: generate p p > y > z z, z > l+ l-, z > j j will also give you the same diagrams but this is less safe for the gauge invariant/ physical point of view
since you don't have cut on the invariant mass of the y.

On Jun 6, 2013, at 6:46 PM, Alex Emerman <email address hidden> wrote:

> New question #230329 on MadGraph5:
> https://answers.launchpad.net/madgraph5/+question/230329
>
> Hi!
> I'm trying to generate a ZZ final state in the RS model where one Z decays into two leptons and the other into two jets. The decay chain should look like this: p p > y > z z > l+ l- j j
> To do this I was using the code
> generate p p > y > z z, (z > l+ l-, z > j j)
>
> However, when I look at the diagrams madgraph generates they always have either four leptons or four jets (both Zs follow whichever decay I put first).
> How do I specify that I want both decay paths?
>
> Thanks,
> Alex
>
> --
> You received this question notification because you are a member of
> MadTeam, which is an answer contact for MadGraph5.

Revision history for this message
Alex Emerman (aemerman) said :
#2

Thanks Olivier Mattelaer, that solved my question.