how to use ./aMCatNLO with *.mg5 script to generate several runs that with different settings of NLO/LO, Showering/not Showering, Fixed Order/not Fixed order

Asked by Hantian Zhang

how to use ./aMCatNLO with *.mg5 script to generate several runs that with different settings of NLO/LO, Showering/not Showering, Fixed Order/not Fixed order. What commands should I include? Thank you!

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,

 you can do something like this:

launch
order=NLO
fixed_order=OFF
shower=OFF
# you can edit parameter here like: set mt 170
launch
order=LO
fixed_order=OFF
shower=ON
# you can edit parameter here like: set mt 170
launch
order=NLO
fixed_order=ON
shower=OFF
# you can edit parameter here like: set mt 170
launch
order=LO
fixed_order=ON
shower=OFF
# you can edit parameter here like: set mt 170

Cheers,

You can also look at the following FAQ:
FAQ #2186: “How to script MG5 run?”.

Revision history for this message
Hantian Zhang (hantian01) said :
#2

Thanks Olivier Mattelaer, that solved my question.