write a script for madgraph with some cut application
Hi. I want to generate a tt~ + bb~ process with following cuts (from RIVET):
1 /// Perform the per-event analysis
2 void analyze(const Event& event) {
3 const Jets jets = apply<JetAlg>
4 const Jets jets_30 = filter_select(jets, [](const Jet& j) { return j.pT() > 30*GeV; } );
5 const Jets bjets = filter_select(jets, [](const Jet& j) { return j.bTagged(); } );
6
7 if (jets.size() >= 8 && jets_30.size() >= 6 && bjets.size() >= 4) {
8 _hist_xsec_
9 }
10 }
can you please tell me how to write a script for mad_graph to apply all of these cuts?
thanks
Question information
- Language:
- English Edit question
- Status:
- Answered
- Assignee:
- No assignee Edit question
- Last query:
- Last reply:
Can you help with this problem?
Provide an answer of your own, or ask Nima Hamed for more information if necessary.