-
Notifications
You must be signed in to change notification settings - Fork 789
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Logic for creating gridpacks with 2016 PDFs #2542
Comments
Currently for 2017/2018, PDF can be handled automatically, if one set in run_card.dat the following as in GEN recommendation: However, for 2016, one has to set it explicitly by hand as one may want a different central PDF. One indeed needs to improve a bit for 2016 case. |
Right. This was on my todo list for so long it fell off. If someone would like to have it, it's quite straightforward to implement, I can provide input at least. |
Hi @agrohsje - sure, I'd be happy to. |
I was wondering how the logic for 2016 PDFs is supposed to work in the gridpack creation scripts. Particular these lines, https://github.com/cms-sw/genproductions/blob/master/bin/MadGraph5_aMCatNLO/Utilities/gridpack_helpers.sh#L12-L23, which control the default PDFs used for 2016 vs. 2017. Should this line:
elif grep -q -e "\$DEFAULT_PDF_SETS" -e "\$DEFAULT_PDF_MEMBERS" $CARDSDIR/${name}_run_card.dat; then
be something like this instead:
elif grep -q -e "\$DEFAULT_2016_PDF_SETS" -e "\$DEFAULT_PDF_MEMBERS" $CARDSDIR/${name}_run_card.dat; then
? It seems like the first "elif" block will never be entered.Thanks,
David
The text was updated successfully, but these errors were encountered: