CINXE.COM
Bug #2089733 “error in using lhapdf” : Bugs : MadGraph5_aMC@NLO
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <base href="https://bugs.launchpad.net/mg5amcnlo/+bug/2089733/+index" /> <meta charset="UTF-8" /> <title>Bug #2089733 “error in using lhapdf” : Bugs : MadGraph5_aMC@NLO</title> <link rel="apple-touch-icon" sizes="180x180" href="/@@/apple-touch-icon.png?v=2022" /> <link rel="icon" type="image/png" sizes="32x32" href="/@@/favicon-32x32.png?v=2022" /> <link rel="icon" type="image/png" sizes="16x16" href="/@@/favicon-16x16.png?v=2022" /> <link rel="manifest" href="/@@/site.webmanifest?v=2022" /> <link rel="mask-icon" href="/@@/safari-pinned-tab.svg?v=2022" color="#e9531f" /> <link rel="shortcut icon" href="/@@/favicon.ico?v=2022" /> <meta name="msapplication-TileColor" content="#da532c" /> <meta name="msapplication-config" content="/@@/browserconfig.xml?v=2022" /> <meta name="theme-color" content="#ffffff" /> <link rel="canonical" href="https://bugs.launchpad.net/bugs/2089733" /> <link rel="alternate" type="application/atom+xml" href="http://feeds.launchpad.net/bugs/2089733/bug.atom" title="Bug 2089733 Feed" /> <link type="text/css" rel="stylesheet" media="screen, print" href="/+icing/rev22ade00ab50b929fac63b8ee7252243aceda294a/combo.css" /> <meta name="description" content="Dear experts, I have some confusing error in running the following process with systermatic module my process is mu- mu+ > vm vm~ b b~ / h my madgraph version is MG5_aMC_v3_5_6 I have installed lhapdf6 and add environment variable (my madgraph is MG5_aMC_v3_5_6) export PYTHONPATH=/root/MG5_aMC_v3_5_6/HEPTools/lhapdf6_py3/lib/python3.9:$PYTHONPATH export LD_LIBRARY_PATH=/root/MG5_aMC_v3_5_6/HEPTools/lhapdf6_py3/lib:$LD_LIBRARY_PATH then change in run card: lhapdf = pdlabel1 ! PDF typ..." /> <meta property="og:description" content="Dear experts, I have some confusing error in running the following process with systermatic module my process is mu- mu+ > vm vm~ b b~ / h my madgraph version is MG5_aMC_v3_5_6 I have installed lhapdf6 and add environment variable (my madgraph is MG5_aMC_v3_5_6) export PYTHONPATH=/root/MG5_aMC_v3_5_6/HEPTools/lhapdf6_py3/lib/python3.9:$PYTHONPATH export LD_LIBRARY_PATH=/root/MG5_aMC_v3_5_6/HEPTools/lhapdf6_py3/lib:$LD_LIBRARY_PATH then change in run card: lhapdf = pdlabel1 ! PDF typ..." /> <meta property="og:title" content="Bug #2089733 “error in using lhapdf” : Bugs : MadGraph5_aMC@NLO" /> <meta property="og:type" content="website" /> <meta property="og:image" content="/@@/launchpad-og-image.png" /> <meta property="og:url" content="https://bugs.launchpad.net/bugs/2089733" /> <meta property="og:site_name" content="Launchpad" /> <script type="text/javascript"> var LP = { cache: {}, links: {} }; </script> <script type="text/javascript">var cookie_scope = '; Path=/; Secure; Domain=.launchpad.net';</script> <script type="text/javascript" src="/+combo/rev22ade00ab50b929fac63b8ee7252243aceda294a/?yui/yui/yui-min.js&lp/meta.js&yui/loader/loader-min.js"></script> <script type="text/javascript"> var raw = null; if (LP.devmode) { raw = 'raw'; } YUI.GlobalConfig = { combine: true, comboBase: '/+combo/rev22ade00ab50b929fac63b8ee7252243aceda294a/?', root: 'yui/', filter: raw, debug: false, fetchCSS: false, maxURLLength: 2000, groups: { lp: { combine: true, base: '/+combo/rev22ade00ab50b929fac63b8ee7252243aceda294a/?lp/', comboBase: '/+combo/rev22ade00ab50b929fac63b8ee7252243aceda294a/?', root: 'lp/', // comes from including lp/meta.js modules: LP_MODULES, fetchCSS: false } } }</script> <script type="text/javascript"> // we need this to create a single YUI instance all events and code // talks across. All instances of YUI().use should be based off of // LPJS instead. var LPJS = new YUI(); </script> <script id="base-layout-load-scripts" type="text/javascript"> //<![CDATA[ LPJS.use('base', 'node', 'console', 'event', 'oop', 'lp', 'lp.app.foldables','lp.app.sorttable', 'lp.app.inlinehelp', 'lp.app.links', 'lp.bugs.bugtask_index', 'lp.bugs.subscribers', 'lp.app.ellipsis', 'lp.code.branchmergeproposal.diff', 'lp.views.global', function(Y) { Y.on("domready", function () { var global_view = new Y.lp.views.Global(); global_view.render(); Y.lp.app.sorttable.SortTable.init(); Y.lp.app.inlinehelp.init_help(); Y.lp.activate_collapsibles(); Y.lp.app.foldables.activate(); Y.lp.app.links.check_valid_lp_links(); }); Y.on('lp:context:web_link:changed', function(e) { window.location = e.new_value; }); }); //]]> </script> <script id="base-helper-functions" type="text/javascript"> //<![CDATA[ // This code is pulled from lp.js that needs to be available on every // request. Pulling here to get it outside the scope of the YUI block. function setFocusByName(name) { // Focus the first element matching the given name which can be focused. var nodes = document.getElementsByName(name); var i, node; for (i = 0; i < nodes.length; i++) { node = nodes[i]; if (node.focus) { try { // Trying to focus a hidden element throws an error in IE8. if (node.offsetHeight !== 0) { node.focus(); } } catch (e) { LPJS.use('console', function(Y) { Y.log('In setFocusByName(<' + node.tagName + ' type=' + node.type + '>): ' + e); }); } break; } } } function selectWidget(widget_name, event) { if (event && (event.keyCode === 9 || event.keyCode === 13)) { // Avoid firing if user is tabbing through or simply pressing // enter to submit the form. return; } document.getElementById(widget_name).checked = true; } //]]> </script> <script type="text/javascript" id="available-official-tags-js">var available_official_tags = ["amcatnlo", "madevent", "madfks", "madgraph", "madloop", "madweight"];</script> <script type="text/javascript"> LPJS.use('base', 'node', 'oop', 'event', 'lp.bugs.bugtask_index', 'lp.bugs.subscribers', 'lp.code.branchmergeproposal.diff', 'lp.app.comment', 'lp.services.messages.edit', function(Y) { Y.on('domready', function() { Y.lp.code.branchmergeproposal.diff.connect_diff_links(); Y.lp.bugs.bugtask_index.setup_bugtask_index(); Y.lp.bugs.bugtask_index.setup_bugtask_table(); LP.cache.comment_context = LP.cache.bug; var cl = new Y.lp.app.comment.CommentList(); cl.render(); var sl = new Y.lp.bugs.subscribers.createBugSubscribersLoader({ container_box: '#other-bug-subscribers', subscribers_details_view: '/+bug-portlet-subscribers-details', subscribe_someone_else_link: '.menu-link-addsubscriber' }, window); Y.lp.services.messages.edit.setup(); }); }); </script> <style type="text/css"> /* Align the 'add comment' link to the right of the comment box. */ #add-comment-form textarea { width: 100%; } #add-comment-form { max-width: 60em; padding-bottom: 4em; } #add-comment-form .actions {float: right;} .buglink-summary dd { font-size: 10px; } a#privacy-link:link:hover, a#privacy-link:visited:hover {text-decoration:none;} </style> <style type="text/css"> .yui3-overlay .value label { /* It normally makes sense for form labels to be bold, but since this form consists only of radio buttons, there's nothing but labels so we just get wall-to-wall bold. */ font-weight: normal !important; } </style> </head> <body id="document" itemscope="" itemtype="http://schema.org/WebPage" class="tab-bugs main_side public yui3-skin-sam"> <div class="yui-d0"> <div id="locationbar" class="login-logout"> <div id="logincontrol"><a href="https://bugs.launchpad.net/mg5amcnlo/+bug/2089733/+login">Log in / Register</a></div> </div><!--id="locationbar"--> <div id="watermark" class="watermark-apps-portlet"> <div> <a href="https://launchpad.net/mg5amcnlo"><img alt="" width="64" height="64" src="https://launchpadlibrarian.net/121184783/64_2.jpg" /></a> </div> <div class="wide"> <h2 id="watermark-heading"><a href="https://launchpad.net/mg5amcnlo">MadGraph5_aMC@NLO</a></h2> </div> <!-- Application Menu --> <ul class="facetmenu"> <li class="overview"><a href="https://launchpad.net/mg5amcnlo">Overview</a></li> <li class="branches"><a href="https://code.launchpad.net/mg5amcnlo">Code</a></li> <li class="bugs active"><a href="https://bugs.launchpad.net/mg5amcnlo">Bugs</a></li> <li class="specifications"><a href="https://blueprints.launchpad.net/mg5amcnlo">Blueprints</a></li> <li class="translations"><a href="https://translations.launchpad.net/mg5amcnlo">Translations</a></li> <li class="answers"><a href="https://answers.launchpad.net/mg5amcnlo">Answers</a></li> </ul> </div> <div class="yui-t4"> <div id="maincontent" class="yui-main"> <div class="yui-b" dir="ltr"> <div class="context-publication"> <h1 id="edit-title"> <span class="yui3-editable_text-text ellipsis" style="max-width: 95%;"> error in using lhapdf </span> </h1> <div id="registration" class="registering"> Bug #2089733 reported by <a href="https://launchpad.net/~stein-re" class="sprite person">Haoqiao Li</a> <time title="2024-11-27 07:37:25 UTC" datetime="2024-11-27T07:37:25.952253+00:00">3 hours ago</time> </div> </div> <div id="request-notifications"> </div> <div> <div id="bug-is-duplicate"> </div> <div style="float: right;"> <span><a href="/+help-bugs/bug-heat.html" target="help" class="sprite flame">6</a></span> </div> <div class="actions"> <span id="affectsmetoo" style="display: inline">This bug affects 1 person</span> </div> <table id="affected-software" class="listing"> <thead> <tr> <th colspan="2">Affects</th> <th>Status</th> <th>Importance</th> <th>Assigned to</th> <th>Milestone</th> </tr> </thead> <tbody> <tr class="highlight" id="tasksummary3292028"> <td> </td> <td> <span id="bugtarget-picker-tasksummary3292028"> <span class="yui3-activator-data-box"> <a class="sprite product" href="https://bugs.launchpad.net/mg5amcnlo">MadGraph5_aMC@NLO</a> </span> <div class="yui3-activator-message-box yui3-activator-hidden"></div> </span> </td> <td style="width: 20%; vertical-align: middle"> <div class="status-content" style="width: 100%; float: left"> <span style="float: left" class="value statusNEW">New</span> </div> </td> <td style="width: 15em; vertical-align: middle"> <div class="importance-content" style="width: 100%; float: left"> <span style="float: left" class="value importanceUNDECIDED">Undecided</span> </div> </td> <td style="width:20%; margin: 0; padding: 0; vertical-align: middle; padding-left: 0.5em"> <span id="assignee-picker-tasksummary3292028"> <span class="yui3-activator-data-box"> Unassigned </span> <div class="yui3-activator-message-box yui3-activator-hidden"></div> </span> </td> <td style="width: 20%; vertical-align: middle"> </td> </tr> </tbody> </table> <div id="maincontentsub"> <div class="top-portlet"> <div itemprop="mainContentOfPage" class="report"> <div> <div class="lazr-multiline-edit" id="edit-description"> <div class="clearfix"> <h3>Bug Description</h3> </div> <div class="yui3-editable_text-text"><p>Dear experts,</p> <p>I have some confusing error in running the following process with systermatic module</p> <p>my process is mu- mu+ > vm vm~ b b~ / h</p> <p>my madgraph version is MG5_aMC_v3_5_6</p> <p>I have installed lhapdf6 and add environment variable (my madgraph is MG5_aMC_v3_5_6)</p> <p>export PYTHONPATH=<wbr />/root/MG5_<wbr />aMC_v3_<wbr />5_6/HEPTools/<wbr />lhapdf6_<wbr />py3/lib/<wbr />python3.<wbr />9:$PYTHONPATH<br /> export LD_LIBRARY_<wbr />PATH=/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />HEPTools/<wbr />lhapdf6_<wbr />py3/lib:<wbr />$LD_LIBRARY_<wbr />PATH</p> <p>then change in run card:<br /> lhapdf = pdlabel1 ! PDF type for beam #1<br /> lhapdf = pdlabel2 ! PDF type for beam #2<br /> 246000 = lhaid ! if pdlabel=lhapdf, this is the lhapdf number</p> <p> True = use_syst ! Enable systematics studies<br /> #<br /> systematics = systematics_program ! none, systematics [python], SysCalc [depreceted, C++]<br /> ['--mur=0.5,1,2', '--muf=0.5,1,2', '', ', '--pdf=<wbr />NNPDF23_<wbr />lo_as_0119_<wbr />qed''] = systematics_<wbr />arguments</p> <p>but still get the error</p> <p>WARNING: program /opt/conda/<wbr />bin/python3 -O /root/MG5_<wbr />aMC_v3_<wbr />5_6/bb0h/<wbr />bin/internal/<wbr />systematics.<wbr />py unweighted_<wbr />events.<wbr />lhe.gz ./tmp_0_, --mur=0.5,1,2 --muf=0.5,1,2 --pdf=NNPDF23_<wbr />lo_as_0119_<wbr />qed --start_event=0 --stop_event=2500 --result=<wbr />./log_sys_<wbr />0.txt --lhapdf_<wbr />config=<wbr />/root/MG5_<wbr />aMC_v3_<wbr />5_6/HEPTools/<wbr />lhapdf6_<wbr />py3/bin/<wbr />lhapdf-<wbr />config launch ends with non zero status: 1. Stop all computation<br /> INFO: Running Systematics computation<br /> Command "generate_events run_61" interrupted with error:<br /> SystematicsError : Systematics not supported for pdlabel=<wbr />none,chff,<wbr />edff<br /> Please report this bug on <a rel="nofollow" href="https://bugs.launchpad.net/mg5amcnlo">https:/<wbr />/bugs.launchpad<wbr />.net/mg5amcnlo</a><br /> More information is found in '/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />bb0h/run_<wbr />61_tag_<wbr />1_debug.<wbr />log'.<br /> Please attach this file to your report.</p> <p> the whole run card is</p> <p>#******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # MadGraph5_aMC@NLO *<br /> # *<br /> # run_card.dat MadEvent *<br /> # *<br /> # This file is used to set the parameters of the run. *<br /> # *<br /> # Some notation/<wbr />conventions: *<br /> # *<br /> # Lines starting with a '# ' are info or comments *<br /> # *<br /> # mind the format: value = variable ! comment *<br /> # *<br /> # To display more options, you can type the command: *<br /> # update to_full *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> #<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Tag name for the run (one word) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> tag_1 = run_tag ! name of the run<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Number of events and rnd seed *<br /> # Warning: Do not generate more than 1M events in a single run *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 10000 = nevents ! Number of unweighted events requested<br /> 0 = iseed ! rnd seed (0=assigned automatically=<wbr />default)<wbr />)<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Collider type and energy *<br /> # lpp: 0=No PDF, 1=proton, -1=antiproton, *<br /> # 2=elastic photon of proton/ion beam *<br /> # +/-3=PDF of electron/positron beam *<br /> # +/-4=PDF of muon/antimuon beam *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0 = lpp1 ! beam 1 type<br /> 0 = lpp2 ! beam 2 type<br /> 500.0 = ebeam1 ! beam 1 total energy in GeV<br /> 500.0 = ebeam2 ! beam 2 total energy in GeV<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Beam polarization from -100 (left-handed) to 100 (right-handed) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0.0 = polbeam1 ! beam polarization for beam 1<br /> 0.0 = polbeam2 ! beam polarization for beam 2</p> <p>#******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # PDF CHOICE: this automatically fixes alpha_s and its evol. *<br /> # pdlabel: lhapdf=LHAPDF (installation needed) [1412.7420] *<br /> # iww=Improved Weizsaecker-<wbr />Williams Approx.<wbr />[hep-ph/<wbr />9310350] *<br /> # eva=Effective W/Z/A Approx. [2111.02442] *<br /> # edff=EDFF in gamma-UPC [eq.(11) in 2207.03012] *<br /> # chff=ChFF in gamma-UPC [eq.(13) in 2207.03012] *<br /> # none=No PDF, same as lhapdf with lppx=0 *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> nn23lo = pdlabel1 ! PDF type for beam #1<br /> nn23lo = pdlabel2 ! PDF type for beam #2<br /> 246000 = lhaid ! if pdlabel=lhapdf, this is the lhapdf number<br /> # To see heavy ion options: type "update ion_pdf"<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Renormalization and factorization scales *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> False = fixed_ren_scale ! if .true. use fixed ren scale<br /> False = fixed_fac_scale ! if .true. use fixed fac scale<br /> 91.188 = scale ! fixed ren scale<br /> 91.188 = dsqrt_q2fact1 ! fixed fact scale for pdf1<br /> 91.188 = dsqrt_q2fact2 ! fixed fact scale for pdf2<br /> -1 = dynamical_<wbr />scale_choice ! Choose one of the preselected dynamical choices<br /> 1.0 = scalefact ! scale factor for event-by-event scales</p> <p>#******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Type and output format<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> False = gridpack !True = setting up the grid pack<br /> -1.0 = time_of_flight ! threshold (in mm) below which the invariant livetime is not written (-1 means not written)<br /> average = event_norm ! average/sum. Normalization of the weight in the LHEF<br /> # To see MLM/CKKW merging options: type "update MLM" or "update CKKW"</p> <p>#******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> #<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Phase-Space Optimization strategy (basic options)<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0 = nhel ! using helicities importance sampling or not.<br /> <wbr /> <wbr /> <wbr /> <wbr /> ! 0: sum over helicity, 1: importance sampling<br /> 1 = sde_strategy ! default integration strategy (hep-ph/2021.00773)<br /> <wbr /> <wbr /> <wbr /> <wbr /> ! 1 is old strategy (using amp square)<br /> ! 2 is new strategy (using only the denominator)<br /> # To see advanced option for Phase-Space optimization: type "update psoptim"<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Customization (custom cuts/scale/<wbr />bias/..<wbr />.) *<br /> # list of files containing fortran function that overwrite default *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> = custom_fcts ! List of files containing user hook function<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />****<br /> # Parton level cuts definition *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />****<br /> 0.0 = dsqrt_shat ! minimal shat for full process<br /> #<br /> #<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # BW cutoff (M+/-bwcutoff*<wbr />Gamma) ! Define on/off-shell for "$" and decay<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 15.0 = bwcutoff ! (M+/-bwcutoff*<wbr />Gamma)<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Standard Cuts *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Minimum and maximum pt's (for max, -1 means no cut) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0.0 = ptb ! minimum pt for the b<br /> 0.0 = misset ! minimum missing Et (sum of neutrino's momenta)<br /> -1.0 = ptbmax ! maximum pt for the b<br /> -1.0 = missetmax ! maximum missing Et (sum of neutrino's momenta)<br /> {} = pt_min_pdg ! pt cut for other particles (use pdg code). Applied on particle and anti-particle<br /> {} = pt_max_pdg ! pt cut for other particles (syntax e.g. {6: 100, 25: 50})<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Minimum and maximum E's (in the center of mass frame) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0.0 = ej ! minimum E for the jets<br /> 0.0 = eb ! minimum E for the b<br /> 0.0 = ea ! minimum E for the photons<br /> 0.0 = el ! minimum E for the charged leptons<br /> -1.0 = ejmax ! maximum E for the jets<br /> -1.0 = ebmax ! maximum E for the b<br /> -1.0 = eamax ! maximum E for the photons<br /> -1.0 = elmax ! maximum E for the charged leptons<br /> {} = e_min_pdg ! E cut for other particles (use pdg code). Applied on particle and anti-particle<br /> {} = e_max_pdg ! E cut for other particles (syntax e.g. {6: 100, 25: 50})</p> <p>#******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Maximum and minimum absolute rapidity (for max, -1 means no cut) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> -1.0 = etab ! max rap for the b<br /> 0.0 = etabmin ! min rap for the b<br /> {} = eta_min_pdg ! rap cut for other particles (use pdg code). Applied on particle and anti-particle<br /> {} = eta_max_pdg ! rap cut for other particles (syntax e.g. {6: 2.5, 23: 5})<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Minimum and maximum DeltaR distance *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0.0 = drbb ! min distance between b's<br /> -1.0 = drbbmax ! max distance between b's<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Minimum and maximum invariant mass for pairs *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 100.0 = mmbb ! min invariant mass of a b pair<br /> 200.0 = mmbbmax ! max invariant mass of a b pair<br /> {} = mxx_min_pdg ! min invariant mass of a pair of particles X/X~ (e.g. {6:250})<br /> {'default': False} = mxx_only_<wbr />part_antipart ! if True the invariant mass is applied only<br /> <wbr /> <wbr /> <wbr /> ! to pairs of particle/<wbr />antiparticle and not to pairs of the same pdg codes.<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> # Minimum and maximum invariant mass for all letpons *<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> 0.0 = mmnl ! min invariant mass for all letpons (l+- and vl)<br /> -1.0 = mmnlmax ! max invariant mass for all letpons (l+- and vl)<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> # Minimum and maximum pt for 4-momenta sum of leptons / neutrino *<br /> # for pair of lepton includes only same flavor, opposite charge<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Inclusive cuts *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0.0 = xptb ! minimum pt for at least one b<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> # Control the Ht(k)=Sum of k leading jets *<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> 0.0 = ihtmin !inclusive Ht for all partons (including b)<br /> -1.0 = ihtmax !inclusive Ht for all partons (including b)<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # maximal pdg code for quark to be considered as a light jet *<br /> # (otherwise b cuts are applied) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 4 = maxjetflavor ! Maximum jet pdg code<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> #<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Store info for systematics studies *<br /> # WARNING: Do not use for interference type of computation *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> True = use_syst ! Enable systematics studies<br /> #<br /> systematics = systematics_program ! none, systematics [python], SysCalc [depreceted, C++]<br /> ['--mur=0.5,1,2', '--muf=0.5,1,2', '', '--pdf=errorset'] = systematics_<wbr />arguments ! see: <a rel="nofollow" href="https://cp3.irmp.ucl.ac.be/projects/madgraph/wiki/Systematics#Systematicspythonmodule">https:/<wbr />/cp3.irmp.<wbr />ucl.ac.<wbr />be/projects/<wbr />madgraph/<wbr />wiki/Systematic<wbr />s#Systematicspy<wbr />thonmodule</a></p> <p>=======<wbr />=======<wbr />=======<wbr />=======<wbr />=======<wbr />=======<wbr />=======<wbr />=======<wbr />=======<wbr />=======<wbr />=======<wbr />=======<wbr />====</p> <p>and the debug .log file</p> <p>#******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*****<br /> #* MadGraph5_<wbr />aMC@NLO/<wbr />MadEvent *<br /> #* *<br /> #* * * *<br /> #* * * * * *<br /> #* * * * * 5 * * * * *<br /> #* * * * * *<br /> #* * * *<br /> #* *<br /> #* *<br /> #* VERSION 3.5.6 2024-09-26 *<br /> #* *<br /> #* The MadGraph5_aMC@NLO Development Team - Find us at *<br /> #* <a rel="nofollow" href="https://server06.fynu.ucl.ac.be/projects/madgraph">https:/<wbr />/server06.<wbr />fynu.ucl.<wbr />ac.be/projects/<wbr />madgraph</a> *<br /> #* *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*****<br /> #* *<br /> #* Command File for MadEvent *<br /> #* *<br /> #* run as ./bin/madevent.py filename *<br /> #* *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*****<br /> generate_events run_61<br /> Traceback (most recent call last):<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />interface/<wbr />common_<wbr />run_interface.<wbr />py", line 1946, in do_systematics<br /> self.<wbr />cluster.<wbr />wait(os.<wbr />path.dirname(<wbr />output)<wbr />, update_status, update_<wbr />first=update_<wbr />status)<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />various/<wbr />cluster.<wbr />py", line 847, in wait<br /> raise Exception(<wbr />self.fail_<wbr />msg)<br /> Exception: program /opt/conda/<wbr />bin/python3 -O /root/MG5_<wbr />aMC_v3_<wbr />5_6/bb0h/<wbr />bin/internal/<wbr />systematics.<wbr />py unweighted_<wbr />events.<wbr />lhe.gz ./tmp_0_, --mur=0.5,1,2 --muf=0.5,1,2 --pdf=NNPDF23_<wbr />lo_as_0119_<wbr />qed --start_event=0 --stop_event=2500 --result=<wbr />./log_sys_<wbr />0.txt --lhapdf_<wbr />config=<wbr />/root/MG5_<wbr />aMC_v3_<wbr />5_6/HEPTools/<wbr />lhapdf6_<wbr />py3/bin/<wbr />lhapdf-<wbr />config launch ends with non zero status: 1. Stop all computation</p> <p>During handling of the above exception, another exception occurred:</p> <p>Traceback (most recent call last):<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />interface/<wbr />extended_<wbr />cmd.py"<wbr />, line 1546, in onecmd<br /> return self.onecmd_<wbr />orig(line, **opt)<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />interface/<wbr />extended_<wbr />cmd.py"<wbr />, line 1495, in onecmd_orig<br /> return func(arg, **opt)<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />interface/<wbr />madevent_<wbr />interface.<wbr />py", line 2402, in do_generate_events<br /> self.<wbr />run_generate_<wbr />events(<wbr />switch_<wbr />mode, args)<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />interface/<wbr />common_<wbr />run_interface.<wbr />py", line 7773, in new_fct<br /> original_<wbr />fct(obj, *args, **opts)<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />interface/<wbr />madevent_<wbr />interface.<wbr />py", line 2639, in run_generate_events<br /> self.<wbr />exec_cmd(<wbr />'systematics %s %s ' % (self.run_name,<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />interface/<wbr />extended_<wbr />cmd.py"<wbr />, line 1575, in exec_cmd<br /> stop = Cmd.onecmd_<wbr />orig(current_<wbr />interface, line, **opt)<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />interface/<wbr />extended_<wbr />cmd.py"<wbr />, line 1495, in onecmd_orig<br /> return func(arg, **opt)<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />interface/<wbr />common_<wbr />run_interface.<wbr />py", line 1952, in do_systematics<br /> out = self.do_<wbr />systematics(<wbr />line)<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />interface/<wbr />common_<wbr />run_interface.<wbr />py", line 1901, in do_systematics<br /> systematics<wbr />.call_systemati<wbr />cs([input, output] + opts,<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />various/<wbr />systematics.<wbr />py", line 1270, in call_systematics<br /> obj = Systematics(input, output, log=log, **opts)<br /> File "/root/<wbr />MG5_aMC_<wbr />v3_5_6/<wbr />madgraph/<wbr />various/<wbr />systematics.<wbr />py", line 167, in __init__<br /> raise SystematicsErro<wbr />r('Systematics not supported for pdlabel=<wbr />none,chff,<wbr />edff')<br /> madgraph.<wbr />various.<wbr />systematics.<wbr />SystematicsErro<wbr />r: Systematics not supported for pdlabel=<wbr />none,chff,<wbr />edff<br /> <wbr /> <wbr /> <wbr /> <wbr /> Run Options<br /> <wbr /> <wbr /> <wbr /> <wbr /> -----<wbr />------<br /> <wbr /> <wbr /> stdout_<wbr />level : 20 (user set)</p> <p> <wbr /> <wbr /> <wbr /> MadEvent Options<br /> <wbr /> <wbr /> <wbr /> ---<wbr />-------<wbr />------<br /> automatic_<wbr />html_opening : False (user set)<br /> <wbr /> notification_<wbr />center : True<br /> <wbr /> <wbr /> run_<wbr />mode : 2<br /> <wbr /> <wbr />cluster_<wbr />queue : None (user set)<br /> <wbr /> <wbr /> cluster_<wbr />time : None (user set)<br /> <wbr /> <wbr /> cluster_<wbr />size : 100<br /> <wbr /> cluster_<wbr />memory : 100 (user set)<br /> <wbr /> <wbr /> nb_<wbr />core : 12 (user set)<br /> <wbr /> cluster_<wbr />temp_path : None</p> <p> <wbr /> <wbr /> <wbr /> Configuration Options<br /> <wbr /> <wbr /> <wbr /> ------<wbr />-------<wbr />-------<wbr />-<br /> <wbr /> <wbr /> pythia8_<wbr />path : /root/MG5_<wbr />aMC_v3_<wbr />5_6/HEPTools/<wbr />pythia8 (user set)<br /> <wbr /> <wbr /> hwpp_<wbr />path : None (user set)<br /> <wbr /> <wbr /> thepeg_<wbr />path : None (user set)<br /> <wbr /> <wbr /> hepmc_<wbr />path : None (user set)<br /> <wbr /> madanalysis<wbr />_path : /root/MG5_<wbr />aMC_v3_<wbr />5_6/MadAnalysis (user set)<br /> <wbr /> madanalysis5<wbr />_path : /root/MG5_<wbr />aMC_v3_<wbr />5_6/HEPTools/<wbr />madanalysis5/<wbr />madanalysis5 (user set)<br /> <wbr /> pythia-<wbr />pgs_path : None (user set)<br /> <wbr /> <wbr /> td_<wbr />path : /root/MG5_<wbr />aMC_v3_<wbr />5_6/td (user set)<br /> <wbr /> <wbr /> delphes_<wbr />path : /root/MG5_<wbr />aMC_v3_<wbr />5_6/Delphes (user set)<br /> <wbr /> exrootanalysis<wbr />_path : /root/MG5_<wbr />aMC_v3_<wbr />5_6/ExRootAnaly<wbr />sis (user set)<br /> <wbr /> <wbr /> syscalc_<wbr />path : None (user set)<br /> <wbr /> <wbr /> rivet_<wbr />path : None<br /> <wbr /> <wbr /> yoda_<wbr />path : None<br /> <wbr /> <wbr /> <wbr />lhapdf : /root/MG5_<wbr />aMC_v3_<wbr />5_6/HEPTools/<wbr />lhapdf6_<wbr />py3/bin/<wbr />lhapdf-<wbr />config (user set)<br /> <wbr /> <wbr /> lhapdf_<wbr />py2 : None<br /> <wbr /> <wbr /> lhapdf_<wbr />py3 : /root/MG5_<wbr />aMC_v3_<wbr />5_6/HEPTools/<wbr />lhapdf6_<wbr />py3/bin/<wbr />lhapdf-<wbr />config (user set)<br /> <wbr /> <wbr /> timeout : 60<br /> <wbr /> <wbr />f2py_compiler : None<br /> <wbr /> f2py_<wbr />compiler_<wbr />py2 : None<br /> <wbr /> f2py_<wbr />compiler_<wbr />py3 : None<br /> <wbr /> <wbr /> web_browser : None<br /> <wbr /> <wbr /> eps_<wbr />viewer : None<br /> <wbr /> <wbr /> text_<wbr />editor : None<br /> <wbr /> fortran_<wbr />compiler : None<br /> <wbr /> <wbr /> cpp_compiler : None<br /> <wbr /> <wbr /> auto_<wbr />update : 7 (user set)<br /> <wbr /> <wbr /> cluster_<wbr />type : condor<br /> cluster_<wbr />status_<wbr />update : (600, 30)<br /> <wbr /> cluster_<wbr />nb_retry : 1<br /> <wbr /> cluster_<wbr />local_path : None<br /> <wbr /> cluster_<wbr />retry_wait : 300<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*****<br /> #* MadGraph5_aMC@NLO *<br /> #* *<br /> #* * * *<br /> #* * * * * *<br /> #* * * * * 5 * * * * *<br /> #* * * * * *<br /> #* * * *<br /> #* *<br /> #* *<br /> #* VERSION 3.5.6 2024-09-26 *<br /> #* *<br /> #* The MadGraph5_aMC@NLO Development Team - Find us at *<br /> #* <a rel="nofollow" href="https://server06.fynu.ucl.ac.be/projects/madgraph">https:/<wbr />/server06.<wbr />fynu.ucl.<wbr />ac.be/projects/<wbr />madgraph</a> *<br /> #* *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*****<br /> #* *<br /> #* Command File for MadGraph5_aMC@NLO *<br /> #* *<br /> #* run as ./bin/mg5_aMC filename *<br /> #* *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*****<br /> set group_subprocesses Auto<br /> set ignore_<wbr />six_quark_<wbr />processes False<br /> set low_mem_<wbr />multicore_<wbr />nlo_generation False<br /> set complex_mass_scheme False<br /> set include_<wbr />lepton_<wbr />initiated_<wbr />processes False<br /> set gauge unitary<br /> set loop_optimized_<wbr />output True<br /> set loop_color_flows False<br /> set max_npoint_<wbr />for_channel 0<br /> set default_<wbr />unset_couplings 99<br /> set max_t_for_channel 99<br /> set zerowidth_tchannel True<br /> set nlo_mixed_expansion True<br /> import model sm<br /> define p = g u c d s u~ c~ d~ s~<br /> define j = g u c d s u~ c~ d~ s~<br /> define l+ = e+ mu+<br /> define l- = e- mu-<br /> define vl = ve vm vt<br /> define vl~ = ve~ vm~ vt~<br /> generate mu- mu+ > vm vm~ b b~ / h<br /> output bb0h<br /> #######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<br /> ## PARAM_CARD AUTOMATICALY GENERATED BY MG5 ####<br /> #######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<br /> #######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<br /> ## INFORMATION FOR MASS<br /> #######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<br /> BLOCK MASS #<br /> 5 4.700000e+00 # mb<br /> 6 1.730000e+02 # mt<br /> 15 1.777000e+00 # mta<br /> 23 9.118800e+01 # mz<br /> 25 1.250000e+02 # mh<br /> 1 0.000000e+00 # d : 0.0<br /> 2 0.000000e+00 # u : 0.0<br /> 3 0.000000e+00 # s : 0.0<br /> 4 0.000000e+00 # c : 0.0<br /> 11 0.000000e+00 # e- : 0.0<br /> 12 0.000000e+00 # ve : 0.0<br /> 13 0.000000e+00 # mu- : 0.0<br /> 14 0.000000e+00 # vm : 0.0<br /> 16 0.000000e+00 # vt : 0.0<br /> 21 0.000000e+00 # g : 0.0<br /> 22 0.000000e+00 # a : 0.0<br /> 24 8.041900e+01 # w+ : cmath.sqrt(<wbr />mz__exp_<wbr />_2/2. + cmath.sqrt(<wbr />mz__exp_<wbr />_4/4. - (aew*cmath.<wbr />pi*mz__<wbr />exp__2)<wbr />/(gf*sqrt_<wbr />_2)))<br /> #######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<br /> ## INFORMATION FOR SMINPUTS<br /> #######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<br /> BLOCK SMINPUTS #<br /> 1 1.325070e+02 # aewm1<br /> 2 1.166390e-05 # gf<br /> 3 1.190025e-01 # as (note that parameter not used if you use a pdf set)<br /> #######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<br /> ## INFORMATION FOR YUKAWA<br /> #######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<br /> BLOCK YUKAWA #<br /> 5 4.700000e+00 # ymb<br /> 6 1.730000e+02 # ymt<br /> 15 1.777000e+00 # ymtau<br /> #######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<br /> ## INFORMATION FOR DECAY<br /> #######<wbr />#######<wbr />#######<wbr />#######<wbr />#######<br /> DECAY 6 1.491500e+00 # wt<br /> DECAY 23 2.441404e+00 # wz<br /> DECAY 24 2.047600e+00 # ww<br /> DECAY 25 6.382339e-03 # wh<br /> DECAY 1 0.000000e+00 # d : 0.0<br /> DECAY 2 0.000000e+00 # u : 0.0<br /> DECAY 3 0.000000e+00 # s : 0.0<br /> DECAY 4 0.000000e+00 # c : 0.0<br /> DECAY 5 0.000000e+00 # b : 0.0<br /> DECAY 11 0.000000e+00 # e- : 0.0<br /> DECAY 12 0.000000e+00 # ve : 0.0<br /> DECAY 13 0.000000e+00 # mu- : 0.0<br /> DECAY 14 0.000000e+00 # vm : 0.0<br /> DECAY 15 0.000000e+00 # ta- : 0.0<br /> DECAY 16 0.000000e+00 # vt : 0.0<br /> DECAY 21 0.000000e+00 # g : 0.0<br /> DECAY 22 0.000000e+00 # a : 0.0</p> <p>#******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # MadGraph5_aMC@NLO *<br /> # *<br /> # run_card.dat MadEvent *<br /> # *<br /> # This file is used to set the parameters of the run. *<br /> # *<br /> # Some notation/<wbr />conventions: *<br /> # *<br /> # Lines starting with a '# ' are info or comments *<br /> # *<br /> # mind the format: value = variable ! comment *<br /> # *<br /> # To display more options, you can type the command: *<br /> # update to_full *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> #<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Tag name for the run (one word) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> tag_1 = run_tag ! name of the run<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Number of events and rnd seed *<br /> # Warning: Do not generate more than 1M events in a single run *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 10000 = nevents ! Number of unweighted events requested<br /> 0 = iseed ! rnd seed (0=assigned automatically=<wbr />default)<wbr />)<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Collider type and energy *<br /> # lpp: 0=No PDF, 1=proton, -1=antiproton, *<br /> # 2=elastic photon of proton/ion beam *<br /> # +/-3=PDF of electron/positron beam *<br /> # +/-4=PDF of muon/antimuon beam *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0 = lpp1 ! beam 1 type<br /> 0 = lpp2 ! beam 2 type<br /> 500.0 = ebeam1 ! beam 1 total energy in GeV<br /> 500.0 = ebeam2 ! beam 2 total energy in GeV<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Beam polarization from -100 (left-handed) to 100 (right-handed) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0.0 = polbeam1 ! beam polarization for beam 1<br /> 0.0 = polbeam2 ! beam polarization for beam 2</p> <p>#******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # PDF CHOICE: this automatically fixes alpha_s and its evol. *<br /> # pdlabel: lhapdf=LHAPDF (installation needed) [1412.7420] *<br /> # iww=Improved Weizsaecker-<wbr />Williams Approx.<wbr />[hep-ph/<wbr />9310350] *<br /> # eva=Effective W/Z/A Approx. [2111.02442] *<br /> # edff=EDFF in gamma-UPC [eq.(11) in 2207.03012] *<br /> # chff=ChFF in gamma-UPC [eq.(13) in 2207.03012] *<br /> # none=No PDF, same as lhapdf with lppx=0 *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> lhapdf = pdlabel ! PDF set<br /> 246000 = lhaid ! if pdlabel=lhapdf, this is the lhapdf number<br /> # To see heavy ion options: type "update ion_pdf"<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Renormalization and factorization scales *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> False = fixed_ren_scale ! if .true. use fixed ren scale<br /> False = fixed_fac_scale ! if .true. use fixed fac scale<br /> 91.188 = scale ! fixed ren scale<br /> 91.188 = dsqrt_q2fact1 ! fixed fact scale for pdf1<br /> 91.188 = dsqrt_q2fact2 ! fixed fact scale for pdf2<br /> -1 = dynamical_<wbr />scale_choice ! Choose one of the preselected dynamical choices<br /> 1.0 = scalefact ! scale factor for event-by-event scales</p> <p>#******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Type and output format<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> False = gridpack !True = setting up the grid pack<br /> -1.0 = time_of_flight ! threshold (in mm) below which the invariant livetime is not written (-1 means not written)<br /> average = event_norm ! average/sum. Normalization of the weight in the LHEF<br /> # To see MLM/CKKW merging options: type "update MLM" or "update CKKW"</p> <p>#******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> #<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Phase-Space Optimization strategy (basic options)<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0 = nhel ! using helicities importance sampling or not.<br /> <wbr /> <wbr /> <wbr /> <wbr /> ! 0: sum over helicity, 1: importance sampling<br /> 1 = sde_strategy ! default integration strategy (hep-ph/2021.00773)<br /> <wbr /> <wbr /> <wbr /> <wbr /> ! 1 is old strategy (using amp square)<br /> ! 2 is new strategy (using only the denominator)<br /> # To see advanced option for Phase-Space optimization: type "update psoptim"<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Customization (custom cuts/scale/<wbr />bias/..<wbr />.) *<br /> # list of files containing fortran function that overwrite default *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> = custom_fcts ! List of files containing user hook function<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />****<br /> # Parton level cuts definition *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />****<br /> 0.0 = dsqrt_shat ! minimal shat for full process<br /> #<br /> #<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # BW cutoff (M+/-bwcutoff*<wbr />Gamma) ! Define on/off-shell for "$" and decay<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 15.0 = bwcutoff ! (M+/-bwcutoff*<wbr />Gamma)<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Standard Cuts *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Minimum and maximum pt's (for max, -1 means no cut) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0.0 = ptb ! minimum pt for the b<br /> 0.0 = misset ! minimum missing Et (sum of neutrino's momenta)<br /> -1.0 = ptbmax ! maximum pt for the b<br /> -1.0 = missetmax ! maximum missing Et (sum of neutrino's momenta)<br /> {} = pt_min_pdg ! pt cut for other particles (use pdg code). Applied on particle and anti-particle<br /> {} = pt_max_pdg ! pt cut for other particles (syntax e.g. {6: 100, 25: 50})<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Minimum and maximum E's (in the center of mass frame) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0.0 = ej ! minimum E for the jets<br /> 0.0 = eb ! minimum E for the b<br /> 0.0 = ea ! minimum E for the photons<br /> 0.0 = el ! minimum E for the charged leptons<br /> -1.0 = ejmax ! maximum E for the jets<br /> -1.0 = ebmax ! maximum E for the b<br /> -1.0 = eamax ! maximum E for the photons<br /> -1.0 = elmax ! maximum E for the charged leptons<br /> {} = e_min_pdg ! E cut for other particles (use pdg code). Applied on particle and anti-particle<br /> {} = e_max_pdg ! E cut for other particles (syntax e.g. {6: 100, 25: 50})</p> <p>#******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Maximum and minimum absolute rapidity (for max, -1 means no cut) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> -1.0 = etab ! max rap for the b<br /> 0.0 = etabmin ! min rap for the b<br /> {} = eta_min_pdg ! rap cut for other particles (use pdg code). Applied on particle and anti-particle<br /> {} = eta_max_pdg ! rap cut for other particles (syntax e.g. {6: 2.5, 23: 5})<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Minimum and maximum DeltaR distance *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0.0 = drbb ! min distance between b's<br /> -1.0 = drbbmax ! max distance between b's<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Minimum and maximum invariant mass for pairs *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 100.0 = mmbb ! min invariant mass of a b pair<br /> 200.0 = mmbbmax ! max invariant mass of a b pair<br /> {} = mxx_min_pdg ! min invariant mass of a pair of particles X/X~ (e.g. {6:250})<br /> {'default': False} = mxx_only_<wbr />part_antipart ! if True the invariant mass is applied only<br /> <wbr /> <wbr /> <wbr /> ! to pairs of particle/<wbr />antiparticle and not to pairs of the same pdg codes.<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> # Minimum and maximum invariant mass for all letpons *<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> 0.0 = mmnl ! min invariant mass for all letpons (l+- and vl)<br /> -1.0 = mmnlmax ! max invariant mass for all letpons (l+- and vl)<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> # Minimum and maximum pt for 4-momenta sum of leptons / neutrino *<br /> # for pair of lepton includes only same flavor, opposite charge<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Inclusive cuts *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 0.0 = xptb ! minimum pt for at least one b<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> # Control the Ht(k)=Sum of k leading jets *<br /> #*****<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*<br /> 0.0 = ihtmin !inclusive Ht for all partons (including b)<br /> -1.0 = ihtmax !inclusive Ht for all partons (including b)<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # maximal pdg code for quark to be considered as a light jet *<br /> # (otherwise b cuts are applied) *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> 4 = maxjetflavor ! Maximum jet pdg code<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> #<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> # Store info for systematics studies *<br /> # WARNING: Do not use for interference type of computation *<br /> #******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<wbr />*******<br /> True = use_syst ! Enable systematics studies<br /> #<br /> systematics = systematics_program ! none, systematics [python], SysCalc [depreceted, C++]<br /> ['--mur=0.5,1,2', '--muf=0.5,1,2', '', ', '--pdf=<wbr />NNPDF23_<wbr />lo_as_0119_<wbr />qed''] = systematics_<wbr />arguments ! see: <a rel="nofollow" href="https://cp3.irmp.ucl.ac.be/projects/madgraph/wiki/Systematics#Systematicspythonmodule">https:/<wbr />/cp3.irmp.<wbr />ucl.ac.<wbr />be/projects/<wbr />madgraph/<wbr />wiki/Systematic<wbr />s#Systematicspy<wbr />thonmodule</a></p></div> </div> </div> <div style="margin:-10px 0 20px 5px" class="clearfix"> </div> <div id="bug-tags"> <span id="tags-heading"> </span> <span id="tag-list"> </span> </div> <script type="text/javascript"> LPJS.use('event', 'node', 'lp.bugs.tags_entry', function(Y) { Y.on('domready', function(e) { Y.lp.bugs.tags_entry.setup_tag_entry( available_official_tags); }, window); }); </script> <div class="clearfix"></div> </div> <div id="branches-and-cves"> <div id="bug-branches-container" style="float: left"> </div><!-- bug-branch-container --> <div class="clearfix"></div> </div> <!-- branches and CVEs --> </div> <div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/mg5amcnlo/+bug/2089733/comments/1" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~olivier-mattelaer" class="sprite person">Olivier Mattelaer (olivier-mattelaer)</a> wrote <time itemprop="commentTime" datetime="2024-11-27T07:50:29.906915+00:00" title="2024-11-27 07:50:29 UTC">3 hours ago</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/mg5amcnlo/+bug/2089733/comments/1"> #1</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>So here you are doing muon collider and did setup the code to "no pdf" (lpp1 and lpp2 =0)<br /> so I'm confused why you did set "pdlabel1/pdlable2" to lhapdf<br /> and 246000 = lhaid</p> <p>Especially since that PDF does not have any muon content.</p> <p>So I would say that the crash is here expected since I do not understand your question.</p> <p>Olivier</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">So here you are doing muon collider and did setup the code to "no pdf" (lpp1 and lpp2 =0) so I'm confused why you did set "pdlabel1/pdlable2" to lhapdf and 246000 = lhaid Especially since that PDF does not have any muon content. So I would say that the crash is here expected since I do not understand your question. Olivier </textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> </div> <div style="float: right;"> <a class="menu-link-activitylog" href="https://bugs.launchpad.net/mg5amcnlo/+bug/2089733/+activity">See full activity log</a> </div> <div class="clearfix"></div> <div align="center" id="add-comment-login-first"> To post a comment you must <a href="+login?comments=all">log in</a>. </div> </div><!-- class="top-portlet" --> </div><!--- id="maincontentsub"--> <div> <div id="duplicate-form-container"></div> <div id="privacy-form-container"></div> </div> </div> </div><!-- yui-b --> </div><!-- yui-main --> <div id="side-portlets" class="yui-b side"> <div id="involvement" class="portlet"> <ul class="involvement"> <li class="single"> <a class="sprite bugs" href="/mg5amcnlo/+filebug"> Report a bug </a> </li> </ul> </div> <div id="privacy" class="first portlet public"> <div id="privacy-text"> <span id="information-type-summary" class="sprite public">This report contains <strong id="information-type">Public</strong> information </span> <div id="information-type-description" style="padding-top: 5px">Everyone can see this information. </div> </div> </div> <div id="portlet-actions" class="portlet vertical"> <ul id="duplicate-actions"> </ul> <ul id="lock-status-actions"> </ul> </div> <div class="portlet vertical" id="portlet-subscription"> <div class="section"> <div id="current_user_subscription" class="False"> <span>You are</span> <a class="menu-link-subscription sprite modify edit" href="/mg5amcnlo/+bug/2089733/+subscribe"> not directly subscribed to this bug's notifications. </a> </div> <div id="sub-unsub-spinner">Subscribing...</div> <ul> <li><a class="menu-link-editsubscriptions sprite modify edit" href="https://bugs.launchpad.net/mg5amcnlo/+bug/2089733/+subscriptions" title="View and change your subscriptions to this bug">Edit bug mail</a></li> </ul> </div> <script type="text/javascript"> LPJS.use('io-base', 'node', 'lp.bugs.bugtask_index.portlets.subscription', function(Y) { Y.on('domready', function() { Y.lp.bugs.bugtask_index.portlets.subscription.initialize(); }); }); </script> </div> <div class="portlet vertical" id="portlet-subscribers"> <h2>Other bug subscribers</h2> <div> <div><a class="menu-link-addsubscriber sprite add" href="https://bugs.launchpad.net/mg5amcnlo/+bug/2089733/+addsubscriber" title="Launchpad will email that person whenever this bugs changes">Subscribe someone else</a></div> </div> <div id="other-bug-subscribers"></div> </div> <div class="portlet" id="portlet-questions"> <h2>Related questions</h2> <ul> <li class="question-row"> <span class="sprite question">MadGraph5_aMC@NLO</span>: <a href="https://answers.launchpad.net/mg5amcnlo/+question/819426">error in using lhapdf</a> </li> </ul> </div> <div class="portlet" id="portlet-watches"> <h2>Remote bug watches</h2> <ul> </ul> <p>Bug watches keep track of this bug in other bug trackers.</p> </div> </div><!-- yui-b side --> </div><!-- yui-t4 --> <div id="footer" class="footer"> <div class="lp-arcana"> <div class="lp-branding"> <a href="https://launchpad.net/"><img src="/@@/launchpad-footer-logo.svg" alt="Launchpad" width="65" height="18" /></a> • <a href="https://launchpad.net/+tour">Take the tour</a> • <a href="https://help.launchpad.net/">Read the guide</a> <form id="globalsearch" method="get" accept-charset="UTF-8" action="https://launchpad.net/+search"> <input type="search" id="search-text" name="field.text" /> <input type="image" src="/@@/search" style="vertical-align:5%" alt="Search Launchpad" /> </form> </div> </div> <div class="colophon"> © 2004 <a href="http://canonical.com/">Canonical Ltd.</a> • <a href="https://launchpad.net/legal">Terms of use</a> • <a href="https://www.ubuntu.com/legal/dataprivacy">Data privacy</a> • <a href="/feedback">Contact Launchpad Support</a> • <a href="http://blog.launchpad.net/">Blog</a> • <a href="https://canonical.com/careers">Careers</a> • <a href="https://ubuntu.social/@launchpadstatus">System status</a> <span id="lp-version"> • 22ade00 (<a href="https://dev.launchpad.net/">Get the code!</a>) </span> </div> </div> </div><!-- yui-d0--> <script id="json-cache-script">LP.cache = {"related_features": {}, "bug": {"self_link": "https://bugs.launchpad.net/api/devel/bugs/2089733", "web_link": "https://bugs.launchpad.net/bugs/2089733", "resource_type_link": "https://bugs.launchpad.net/api/devel/#bug", "id": 2089733, "private": false, "information_type": "Public", "name": null, "title": "error in using lhapdf", "description": "Dear experts,\n\nI have some confusing error in running the following process with systermatic module\n\nmy process is mu- mu+ \u003e vm vm~ b b~ / h \n\nmy madgraph version is MG5_aMC_v3_5_6\n\nI have installed lhapdf6 and add environment variable (my madgraph is MG5_aMC_v3_5_6)\n\nexport PYTHONPATH=/root/MG5_aMC_v3_5_6/HEPTools/lhapdf6_py3/lib/python3.9:$PYTHONPATH\nexport LD_LIBRARY_PATH=/root/MG5_aMC_v3_5_6/HEPTools/lhapdf6_py3/lib:$LD_LIBRARY_PATH\n\nthen change in run card:\n lhapdf = pdlabel1 ! PDF type for beam #1\n lhapdf = pdlabel2 ! PDF type for beam #2\n 246000 = lhaid ! if pdlabel=lhapdf, this is the lhapdf number\n\n True = use_syst ! Enable systematics studies\n#\n systematics = systematics_program ! none, systematics [python], SysCalc [depreceted, C++]\n['--mur=0.5,1,2', '--muf=0.5,1,2', '', ', '--pdf=NNPDF23_lo_as_0119_qed'']\t= systematics_arguments\n\nbut still get the error\n\nWARNING: program /opt/conda/bin/python3 -O /root/MG5_aMC_v3_5_6/bb0h/bin/internal/systematics.py unweighted_events.lhe.gz ./tmp_0_, --mur=0.5,1,2 --muf=0.5,1,2 --pdf=NNPDF23_lo_as_0119_qed --start_event=0 --stop_event=2500 --result=./log_sys_0.txt --lhapdf_config=/root/MG5_aMC_v3_5_6/HEPTools/lhapdf6_py3/bin/lhapdf-config launch ends with non zero status: 1. Stop all computation \nINFO: Running Systematics computation\nCommand \"generate_events run_61\" interrupted with error:\nSystematicsError : Systematics not supported for pdlabel=none,chff,edff\nPlease report this bug on https://bugs.launchpad.net/mg5amcnlo\nMore information is found in '/root/MG5_aMC_v3_5_6/bb0h/run_61_tag_1_debug.log'.\nPlease attach this file to your report.\n\n\n the whole run card is\n\n#*********************************************************************\n# MadGraph5_aMC@NLO *\n# *\n# run_card.dat MadEvent *\n# *\n# This file is used to set the parameters of the run. *\n# *\n# Some notation/conventions: *\n# *\n# Lines starting with a '# ' are info or comments *\n# *\n# mind the format: value = variable ! comment *\n# *\n# To display more options, you can type the command: *\n# update to_full *\n#*********************************************************************\n# \n#*********************************************************************\n# Tag name for the run (one word) *\n#*********************************************************************\n tag_1\t= run_tag ! name of the run \n#*********************************************************************\n# Number of events and rnd seed *\n# Warning: Do not generate more than 1M events in a single run *\n#*********************************************************************\n 10000\t= nevents ! Number of unweighted events requested \n 0\t= iseed ! rnd seed (0=assigned automatically=default))\n#*********************************************************************\n# Collider type and energy *\n# lpp: 0=No PDF, 1=proton, -1=antiproton, *\n# 2=elastic photon of proton/ion beam *\n# +/-3=PDF of electron/positron beam *\n# +/-4=PDF of muon/antimuon beam *\n#*********************************************************************\n 0\t= lpp1 ! beam 1 type \n 0\t= lpp2 ! beam 2 type\n 500.0\t= ebeam1 ! beam 1 total energy in GeV\n 500.0\t= ebeam2 ! beam 2 total energy in GeV\n#*********************************************************************\n# Beam polarization from -100 (left-handed) to 100 (right-handed) *\n#*********************************************************************\n 0.0\t= polbeam1 ! beam polarization for beam 1\n 0.0\t= polbeam2 ! beam polarization for beam 2\n\n\n#*********************************************************************\n# PDF CHOICE: this automatically fixes alpha_s and its evol. *\n# pdlabel: lhapdf=LHAPDF (installation needed) [1412.7420] *\n# iww=Improved Weizsaecker-Williams Approx.[hep-ph/9310350] *\n# eva=Effective W/Z/A Approx. [2111.02442] *\n# edff=EDFF in gamma-UPC [eq.(11) in 2207.03012] *\n# chff=ChFF in gamma-UPC [eq.(13) in 2207.03012] *\n# none=No PDF, same as lhapdf with lppx=0 *\n#*********************************************************************\n nn23lo = pdlabel1 ! PDF type for beam #1\n nn23lo = pdlabel2 ! PDF type for beam #2\n 246000\t= lhaid ! if pdlabel=lhapdf, this is the lhapdf number\n# To see heavy ion options: type \"update ion_pdf\"\n#*********************************************************************\n# Renormalization and factorization scales *\n#*********************************************************************\n False\t= fixed_ren_scale ! if .true. use fixed ren scale\n False\t= fixed_fac_scale ! if .true. use fixed fac scale\n 91.188\t= scale ! fixed ren scale\n 91.188\t= dsqrt_q2fact1 ! fixed fact scale for pdf1\n 91.188\t= dsqrt_q2fact2 ! fixed fact scale for pdf2\n -1\t= dynamical_scale_choice ! Choose one of the preselected dynamical choices\n 1.0\t= scalefact ! scale factor for event-by-event scales\n\n \n#*********************************************************************\n# Type and output format\n#*********************************************************************\n False\t= gridpack !True = setting up the grid pack\n -1.0\t= time_of_flight ! threshold (in mm) below which the invariant livetime is not written (-1 means not written)\n average\t= event_norm ! average/sum. Normalization of the weight in the LHEF\n# To see MLM/CKKW merging options: type \"update MLM\" or \"update CKKW\"\n\n#*********************************************************************\n#\n#*********************************************************************\n# Phase-Space Optimization strategy (basic options)\n#*********************************************************************\n 0\t= nhel ! using helicities importance sampling or not.\n ! 0: sum over helicity, 1: importance sampling\n 1\t= sde_strategy ! default integration strategy (hep-ph/2021.00773)\n ! 1 is old strategy (using amp square)\n\t\t\t ! 2 is new strategy (using only the denominator)\n# To see advanced option for Phase-Space optimization: type \"update psoptim\"\t\t\t \n#*********************************************************************\n# Customization (custom cuts/scale/bias/...) *\n# list of files containing fortran function that overwrite default *\n#*********************************************************************\n \t= custom_fcts ! List of files containing user hook function\n#******************************* \n# Parton level cuts definition *\n#*******************************\n 0.0\t= dsqrt_shat ! minimal shat for full process\n# \n#\n#*********************************************************************\n# BW cutoff (M+/-bwcutoff*Gamma) ! Define on/off-shell for \"$\" and decay \n#*********************************************************************\n 15.0\t= bwcutoff ! (M+/-bwcutoff*Gamma)\n#*********************************************************************\n# Standard Cuts *\n#*********************************************************************\n# Minimum and maximum pt's (for max, -1 means no cut) *\n#*********************************************************************\n 0.0\t= ptb ! minimum pt for the b \n 0.0\t= misset ! minimum missing Et (sum of neutrino's momenta)\n -1.0\t= ptbmax ! maximum pt for the b\n -1.0\t= missetmax ! maximum missing Et (sum of neutrino's momenta)\n {}\t= pt_min_pdg ! pt cut for other particles (use pdg code). Applied on particle and anti-particle\n {}\t= pt_max_pdg ! pt cut for other particles (syntax e.g. {6: 100, 25: 50}) \n#*********************************************************************\n# Minimum and maximum E's (in the center of mass frame) *\n#*********************************************************************\n 0.0\t= ej ! minimum E for the jets\n 0.0\t= eb ! minimum E for the b\n 0.0\t= ea ! minimum E for the photons\n 0.0\t= el ! minimum E for the charged leptons\n -1.0\t= ejmax ! maximum E for the jets\n -1.0\t= ebmax ! maximum E for the b\n -1.0\t= eamax ! maximum E for the photons\n -1.0\t= elmax ! maximum E for the charged leptons\n {}\t= e_min_pdg ! E cut for other particles (use pdg code). Applied on particle and anti-particle\n {}\t= e_max_pdg ! E cut for other particles (syntax e.g. {6: 100, 25: 50})\n\n#*********************************************************************\n# Maximum and minimum absolute rapidity (for max, -1 means no cut) *\n#*********************************************************************\n -1.0\t= etab ! max rap for the b\n 0.0\t= etabmin ! min rap for the b\n {}\t= eta_min_pdg ! rap cut for other particles (use pdg code). Applied on particle and anti-particle\n {}\t= eta_max_pdg ! rap cut for other particles (syntax e.g. {6: 2.5, 23: 5})\n#*********************************************************************\n# Minimum and maximum DeltaR distance *\n#*********************************************************************\n 0.0\t= drbb ! min distance between b's \n -1.0\t= drbbmax ! max distance between b's\n#*********************************************************************\n# Minimum and maximum invariant mass for pairs *\n#*********************************************************************\n 100.0\t= mmbb ! min invariant mass of a b pair \n 200.0\t= mmbbmax ! max invariant mass of a b pair\n {}\t= mxx_min_pdg ! min invariant mass of a pair of particles X/X~ (e.g. {6:250})\n {'default': False}\t= mxx_only_part_antipart ! if True the invariant mass is applied only \n ! to pairs of particle/antiparticle and not to pairs of the same pdg codes. \n #*********************************************************************\n # Minimum and maximum invariant mass for all letpons *\n #*********************************************************************\n 0.0\t= mmnl ! min invariant mass for all letpons (l+- and vl) \n -1.0\t= mmnlmax ! max invariant mass for all letpons (l+- and vl) \n #*********************************************************************\n # Minimum and maximum pt for 4-momenta sum of leptons / neutrino *\n # for pair of lepton includes only same flavor, opposite charge\n #*********************************************************************\n#*********************************************************************\n# Inclusive cuts *\n#*********************************************************************\n 0.0\t= xptb ! minimum pt for at least one b \n #*********************************************************************\n # Control the Ht(k)=Sum of k leading jets *\n #*********************************************************************\n 0.0\t= ihtmin !inclusive Ht for all partons (including b)\n -1.0\t= ihtmax !inclusive Ht for all partons (including b)\n#*********************************************************************\n# maximal pdg code for quark to be considered as a light jet *\n# (otherwise b cuts are applied) *\n#*********************************************************************\n 4\t= maxjetflavor ! Maximum jet pdg code\n#*********************************************************************\n#\n#*********************************************************************\n# Store info for systematics studies *\n# WARNING: Do not use for interference type of computation *\n#*********************************************************************\n True\t= use_syst ! Enable systematics studies\n#\n systematics\t= systematics_program ! none, systematics [python], SysCalc [depreceted, C++]\n ['--mur=0.5,1,2', '--muf=0.5,1,2', '', '--pdf=errorset']\t= systematics_arguments ! see: https://cp3.irmp.ucl.ac.be/projects/madgraph/wiki/Systematics#Systematicspythonmodule\n\n========================================================================================\n\nand the debug .log file\n\n#************************************************************\n#* MadGraph5_aMC@NLO/MadEvent *\n#* *\n#* * * *\n#* * * * * *\n#* * * * * 5 * * * * *\n#* * * * * *\n#* * * *\n#* *\n#* *\n#* VERSION 3.5.6 2024-09-26 *\n#* *\n#* The MadGraph5_aMC@NLO Development Team - Find us at *\n#* https://server06.fynu.ucl.ac.be/projects/madgraph *\n#* *\n#************************************************************\n#* *\n#* Command File for MadEvent *\n#* *\n#* run as ./bin/madevent.py filename *\n#* *\n#************************************************************\ngenerate_events run_61\nTraceback (most recent call last):\n File \"/root/MG5_aMC_v3_5_6/madgraph/interface/common_run_interface.py\", line 1946, in do_systematics\n self.cluster.wait(os.path.dirname(output), update_status, update_first=update_status)\n File \"/root/MG5_aMC_v3_5_6/madgraph/various/cluster.py\", line 847, in wait\n raise Exception(self.fail_msg)\nException: program /opt/conda/bin/python3 -O /root/MG5_aMC_v3_5_6/bb0h/bin/internal/systematics.py unweighted_events.lhe.gz ./tmp_0_, --mur=0.5,1,2 --muf=0.5,1,2 --pdf=NNPDF23_lo_as_0119_qed --start_event=0 --stop_event=2500 --result=./log_sys_0.txt --lhapdf_config=/root/MG5_aMC_v3_5_6/HEPTools/lhapdf6_py3/bin/lhapdf-config launch ends with non zero status: 1. Stop all computation\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"/root/MG5_aMC_v3_5_6/madgraph/interface/extended_cmd.py\", line 1546, in onecmd\n return self.onecmd_orig(line, **opt)\n File \"/root/MG5_aMC_v3_5_6/madgraph/interface/extended_cmd.py\", line 1495, in onecmd_orig\n return func(arg, **opt)\n File \"/root/MG5_aMC_v3_5_6/madgraph/interface/madevent_interface.py\", line 2402, in do_generate_events\n self.run_generate_events(switch_mode, args)\n File \"/root/MG5_aMC_v3_5_6/madgraph/interface/common_run_interface.py\", line 7773, in new_fct\n original_fct(obj, *args, **opts)\n File \"/root/MG5_aMC_v3_5_6/madgraph/interface/madevent_interface.py\", line 2639, in run_generate_events\n self.exec_cmd('systematics %s %s ' % (self.run_name,\n File \"/root/MG5_aMC_v3_5_6/madgraph/interface/extended_cmd.py\", line 1575, in exec_cmd\n stop = Cmd.onecmd_orig(current_interface, line, **opt)\n File \"/root/MG5_aMC_v3_5_6/madgraph/interface/extended_cmd.py\", line 1495, in onecmd_orig\n return func(arg, **opt)\n File \"/root/MG5_aMC_v3_5_6/madgraph/interface/common_run_interface.py\", line 1952, in do_systematics\n out = self.do_systematics(line)\n File \"/root/MG5_aMC_v3_5_6/madgraph/interface/common_run_interface.py\", line 1901, in do_systematics\n systematics.call_systematics([input, output] + opts,\n File \"/root/MG5_aMC_v3_5_6/madgraph/various/systematics.py\", line 1270, in call_systematics\n obj = Systematics(input, output, log=log, **opts)\n File \"/root/MG5_aMC_v3_5_6/madgraph/various/systematics.py\", line 167, in __init__\n raise SystematicsError('Systematics not supported for pdlabel=none,chff,edff')\nmadgraph.various.systematics.SystematicsError: Systematics not supported for pdlabel=none,chff,edff\n Run Options \n ----------- \n stdout_level \t:\t20 (user set)\n\n MadEvent Options \n ---------------- \n automatic_html_opening \t:\tFalse (user set)\n notification_center \t:\tTrue\n run_mode \t:\t2\n cluster_queue \t:\tNone (user set)\n cluster_time \t:\tNone (user set)\n cluster_size \t:\t100\n cluster_memory \t:\t100 (user set)\n nb_core \t:\t12 (user set)\n cluster_temp_path \t:\tNone\n\n Configuration Options \n --------------------- \n pythia8_path \t:\t/root/MG5_aMC_v3_5_6/HEPTools/pythia8 (user set)\n hwpp_path \t:\tNone (user set)\n thepeg_path \t:\tNone (user set)\n hepmc_path \t:\tNone (user set)\n madanalysis_path \t:\t/root/MG5_aMC_v3_5_6/MadAnalysis (user set)\n madanalysis5_path \t:\t/root/MG5_aMC_v3_5_6/HEPTools/madanalysis5/madanalysis5 (user set)\n pythia-pgs_path \t:\tNone (user set)\n td_path \t:\t/root/MG5_aMC_v3_5_6/td (user set)\n delphes_path \t:\t/root/MG5_aMC_v3_5_6/Delphes (user set)\n exrootanalysis_path \t:\t/root/MG5_aMC_v3_5_6/ExRootAnalysis (user set)\n syscalc_path \t:\tNone (user set)\n rivet_path \t:\tNone\n yoda_path \t:\tNone\n lhapdf \t:\t/root/MG5_aMC_v3_5_6/HEPTools/lhapdf6_py3/bin/lhapdf-config (user set)\n lhapdf_py2 \t:\tNone\n lhapdf_py3 \t:\t/root/MG5_aMC_v3_5_6/HEPTools/lhapdf6_py3/bin/lhapdf-config (user set)\n timeout \t:\t60\n f2py_compiler \t:\tNone\n f2py_compiler_py2 \t:\tNone\n f2py_compiler_py3 \t:\tNone\n web_browser \t:\tNone\n eps_viewer \t:\tNone\n text_editor \t:\tNone\n fortran_compiler \t:\tNone\n cpp_compiler \t:\tNone\n auto_update \t:\t7 (user set)\n cluster_type \t:\tcondor\n cluster_status_update \t:\t(600, 30)\n cluster_nb_retry \t:\t1\n cluster_local_path \t:\tNone\n cluster_retry_wait \t:\t300\n#************************************************************\n#* MadGraph5_aMC@NLO *\n#* *\n#* * * *\n#* * * * * *\n#* * * * * 5 * * * * *\n#* * * * * *\n#* * * *\n#* *\n#* *\n#* VERSION 3.5.6 2024-09-26 *\n#* *\n#* The MadGraph5_aMC@NLO Development Team - Find us at *\n#* https://server06.fynu.ucl.ac.be/projects/madgraph *\n#* *\n#************************************************************\n#* *\n#* Command File for MadGraph5_aMC@NLO *\n#* *\n#* run as ./bin/mg5_aMC filename *\n#* *\n#************************************************************\nset group_subprocesses Auto\nset ignore_six_quark_processes False\nset low_mem_multicore_nlo_generation False\nset complex_mass_scheme False\nset include_lepton_initiated_processes False\nset gauge unitary\nset loop_optimized_output True\nset loop_color_flows False\nset max_npoint_for_channel 0\nset default_unset_couplings 99\nset max_t_for_channel 99\nset zerowidth_tchannel True\nset nlo_mixed_expansion True\nimport model sm\ndefine p = g u c d s u~ c~ d~ s~\ndefine j = g u c d s u~ c~ d~ s~\ndefine l+ = e+ mu+\ndefine l- = e- mu-\ndefine vl = ve vm vt\ndefine vl~ = ve~ vm~ vt~\ngenerate mu- mu+ \u003e vm vm~ b b~ / h\noutput bb0h\n######################################################################\n## PARAM_CARD AUTOMATICALY GENERATED BY MG5 ####\n######################################################################\n###################################\n## INFORMATION FOR MASS\n###################################\nBLOCK MASS # \n 5 4.700000e+00 # mb\n 6 1.730000e+02 # mt\n 15 1.777000e+00 # mta\n 23 9.118800e+01 # mz\n 25 1.250000e+02 # mh\n 1 0.000000e+00 # d : 0.0\n 2 0.000000e+00 # u : 0.0\n 3 0.000000e+00 # s : 0.0\n 4 0.000000e+00 # c : 0.0\n 11 0.000000e+00 # e- : 0.0\n 12 0.000000e+00 # ve : 0.0\n 13 0.000000e+00 # mu- : 0.0\n 14 0.000000e+00 # vm : 0.0\n 16 0.000000e+00 # vt : 0.0\n 21 0.000000e+00 # g : 0.0\n 22 0.000000e+00 # a : 0.0\n 24 8.041900e+01 # w+ : cmath.sqrt(mz__exp__2/2. + cmath.sqrt(mz__exp__4/4. - (aew*cmath.pi*mz__exp__2)/(gf*sqrt__2)))\n###################################\n## INFORMATION FOR SMINPUTS\n###################################\nBLOCK SMINPUTS # \n 1 1.325070e+02 # aewm1\n 2 1.166390e-05 # gf\n 3 1.190025e-01 # as (note that parameter not used if you use a pdf set)\n###################################\n## INFORMATION FOR YUKAWA\n###################################\nBLOCK YUKAWA # \n 5 4.700000e+00 # ymb\n 6 1.730000e+02 # ymt\n 15 1.777000e+00 # ymtau\n###################################\n## INFORMATION FOR DECAY\n###################################\nDECAY 6 1.491500e+00 # wt\nDECAY 23 2.441404e+00 # wz\nDECAY 24 2.047600e+00 # ww\nDECAY 25 6.382339e-03 # wh\nDECAY 1 0.000000e+00 # d : 0.0\nDECAY 2 0.000000e+00 # u : 0.0\nDECAY 3 0.000000e+00 # s : 0.0\nDECAY 4 0.000000e+00 # c : 0.0\nDECAY 5 0.000000e+00 # b : 0.0\nDECAY 11 0.000000e+00 # e- : 0.0\nDECAY 12 0.000000e+00 # ve : 0.0\nDECAY 13 0.000000e+00 # mu- : 0.0\nDECAY 14 0.000000e+00 # vm : 0.0\nDECAY 15 0.000000e+00 # ta- : 0.0\nDECAY 16 0.000000e+00 # vt : 0.0\nDECAY 21 0.000000e+00 # g : 0.0\nDECAY 22 0.000000e+00 # a : 0.0\n\n#*********************************************************************\n# MadGraph5_aMC@NLO *\n# *\n# run_card.dat MadEvent *\n# *\n# This file is used to set the parameters of the run. *\n# *\n# Some notation/conventions: *\n# *\n# Lines starting with a '# ' are info or comments *\n# *\n# mind the format: value = variable ! comment *\n# *\n# To display more options, you can type the command: *\n# update to_full *\n#*********************************************************************\n# \n#*********************************************************************\n# Tag name for the run (one word) *\n#*********************************************************************\n tag_1\t= run_tag ! name of the run \n#*********************************************************************\n# Number of events and rnd seed *\n# Warning: Do not generate more than 1M events in a single run *\n#*********************************************************************\n 10000\t= nevents ! Number of unweighted events requested \n 0\t= iseed ! rnd seed (0=assigned automatically=default))\n#*********************************************************************\n# Collider type and energy *\n# lpp: 0=No PDF, 1=proton, -1=antiproton, *\n# 2=elastic photon of proton/ion beam *\n# +/-3=PDF of electron/positron beam *\n# +/-4=PDF of muon/antimuon beam *\n#*********************************************************************\n 0\t= lpp1 ! beam 1 type \n 0\t= lpp2 ! beam 2 type\n 500.0\t= ebeam1 ! beam 1 total energy in GeV\n 500.0\t= ebeam2 ! beam 2 total energy in GeV\n#*********************************************************************\n# Beam polarization from -100 (left-handed) to 100 (right-handed) *\n#*********************************************************************\n 0.0\t= polbeam1 ! beam polarization for beam 1\n 0.0\t= polbeam2 ! beam polarization for beam 2\n\n\n#*********************************************************************\n# PDF CHOICE: this automatically fixes alpha_s and its evol. *\n# pdlabel: lhapdf=LHAPDF (installation needed) [1412.7420] *\n# iww=Improved Weizsaecker-Williams Approx.[hep-ph/9310350] *\n# eva=Effective W/Z/A Approx. [2111.02442] *\n# edff=EDFF in gamma-UPC [eq.(11) in 2207.03012] *\n# chff=ChFF in gamma-UPC [eq.(13) in 2207.03012] *\n# none=No PDF, same as lhapdf with lppx=0 *\n#*********************************************************************\n lhapdf\t= pdlabel ! PDF set \n 246000\t= lhaid ! if pdlabel=lhapdf, this is the lhapdf number\n# To see heavy ion options: type \"update ion_pdf\"\n#*********************************************************************\n# Renormalization and factorization scales *\n#*********************************************************************\n False\t= fixed_ren_scale ! if .true. use fixed ren scale\n False\t= fixed_fac_scale ! if .true. use fixed fac scale\n 91.188\t= scale ! fixed ren scale\n 91.188\t= dsqrt_q2fact1 ! fixed fact scale for pdf1\n 91.188\t= dsqrt_q2fact2 ! fixed fact scale for pdf2\n -1\t= dynamical_scale_choice ! Choose one of the preselected dynamical choices\n 1.0\t= scalefact ! scale factor for event-by-event scales\n\n \n#*********************************************************************\n# Type and output format\n#*********************************************************************\n False\t= gridpack !True = setting up the grid pack\n -1.0\t= time_of_flight ! threshold (in mm) below which the invariant livetime is not written (-1 means not written)\n average\t= event_norm ! average/sum. Normalization of the weight in the LHEF\n# To see MLM/CKKW merging options: type \"update MLM\" or \"update CKKW\"\n\n#*********************************************************************\n#\n#*********************************************************************\n# Phase-Space Optimization strategy (basic options)\n#*********************************************************************\n 0\t= nhel ! using helicities importance sampling or not.\n ! 0: sum over helicity, 1: importance sampling\n 1\t= sde_strategy ! default integration strategy (hep-ph/2021.00773)\n ! 1 is old strategy (using amp square)\n\t\t\t ! 2 is new strategy (using only the denominator)\n# To see advanced option for Phase-Space optimization: type \"update psoptim\"\t\t\t \n#*********************************************************************\n# Customization (custom cuts/scale/bias/...) *\n# list of files containing fortran function that overwrite default *\n#*********************************************************************\n \t= custom_fcts ! List of files containing user hook function\n#******************************* \n# Parton level cuts definition *\n#*******************************\n 0.0\t= dsqrt_shat ! minimal shat for full process\n# \n#\n#*********************************************************************\n# BW cutoff (M+/-bwcutoff*Gamma) ! Define on/off-shell for \"$\" and decay \n#*********************************************************************\n 15.0\t= bwcutoff ! (M+/-bwcutoff*Gamma)\n#*********************************************************************\n# Standard Cuts *\n#*********************************************************************\n# Minimum and maximum pt's (for max, -1 means no cut) *\n#*********************************************************************\n 0.0\t= ptb ! minimum pt for the b \n 0.0\t= misset ! minimum missing Et (sum of neutrino's momenta)\n -1.0\t= ptbmax ! maximum pt for the b\n -1.0\t= missetmax ! maximum missing Et (sum of neutrino's momenta)\n {}\t= pt_min_pdg ! pt cut for other particles (use pdg code). Applied on particle and anti-particle\n {}\t= pt_max_pdg ! pt cut for other particles (syntax e.g. {6: 100, 25: 50}) \n#*********************************************************************\n# Minimum and maximum E's (in the center of mass frame) *\n#*********************************************************************\n 0.0\t= ej ! minimum E for the jets\n 0.0\t= eb ! minimum E for the b\n 0.0\t= ea ! minimum E for the photons\n 0.0\t= el ! minimum E for the charged leptons\n -1.0\t= ejmax ! maximum E for the jets\n -1.0\t= ebmax ! maximum E for the b\n -1.0\t= eamax ! maximum E for the photons\n -1.0\t= elmax ! maximum E for the charged leptons\n {}\t= e_min_pdg ! E cut for other particles (use pdg code). Applied on particle and anti-particle\n {}\t= e_max_pdg ! E cut for other particles (syntax e.g. {6: 100, 25: 50})\n\n#*********************************************************************\n# Maximum and minimum absolute rapidity (for max, -1 means no cut) *\n#*********************************************************************\n -1.0\t= etab ! max rap for the b\n 0.0\t= etabmin ! min rap for the b\n {}\t= eta_min_pdg ! rap cut for other particles (use pdg code). Applied on particle and anti-particle\n {}\t= eta_max_pdg ! rap cut for other particles (syntax e.g. {6: 2.5, 23: 5})\n#*********************************************************************\n# Minimum and maximum DeltaR distance *\n#*********************************************************************\n 0.0\t= drbb ! min distance between b's \n -1.0\t= drbbmax ! max distance between b's\n#*********************************************************************\n# Minimum and maximum invariant mass for pairs *\n#*********************************************************************\n 100.0\t= mmbb ! min invariant mass of a b pair \n 200.0\t= mmbbmax ! max invariant mass of a b pair\n {}\t= mxx_min_pdg ! min invariant mass of a pair of particles X/X~ (e.g. {6:250})\n {'default': False}\t= mxx_only_part_antipart ! if True the invariant mass is applied only \n ! to pairs of particle/antiparticle and not to pairs of the same pdg codes. \n #*********************************************************************\n # Minimum and maximum invariant mass for all letpons *\n #*********************************************************************\n 0.0\t= mmnl ! min invariant mass for all letpons (l+- and vl) \n -1.0\t= mmnlmax ! max invariant mass for all letpons (l+- and vl) \n #*********************************************************************\n # Minimum and maximum pt for 4-momenta sum of leptons / neutrino *\n # for pair of lepton includes only same flavor, opposite charge\n #*********************************************************************\n#*********************************************************************\n# Inclusive cuts *\n#*********************************************************************\n 0.0\t= xptb ! minimum pt for at least one b \n #*********************************************************************\n # Control the Ht(k)=Sum of k leading jets *\n #*********************************************************************\n 0.0\t= ihtmin !inclusive Ht for all partons (including b)\n -1.0\t= ihtmax !inclusive Ht for all partons (including b)\n#*********************************************************************\n# maximal pdg code for quark to be considered as a light jet *\n# (otherwise b cuts are applied) *\n#*********************************************************************\n 4\t= maxjetflavor ! Maximum jet pdg code\n#*********************************************************************\n#\n#*********************************************************************\n# Store info for systematics studies *\n# WARNING: Do not use for interference type of computation *\n#*********************************************************************\n True\t= use_syst ! Enable systematics studies\n#\n systematics\t= systematics_program ! none, systematics [python], SysCalc [depreceted, C++]\n ['--mur=0.5,1,2', '--muf=0.5,1,2', '', ', '--pdf=NNPDF23_lo_as_0119_qed'']\t= systematics_arguments ! see: https://cp3.irmp.ucl.ac.be/projects/madgraph/wiki/Systematics#Systematicspythonmodule\n\n\n\n\n", "owner_link": "https://bugs.launchpad.net/api/devel/~stein-re", "bug_tasks_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/bug_tasks", "duplicate_of_link": null, "date_created": "2024-11-27T07:37:25.952253+00:00", "activity_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/activity", "subscriptions_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/subscriptions", "date_last_updated": "2024-11-27T07:50:30.465319+00:00", "who_made_private_link": null, "date_made_private": null, "heat": 6, "bug_watches_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/bug_watches", "cves_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/cves", "vulnerabilities_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/vulnerabilities", "duplicates_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/duplicates", "attachments_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/attachments", "security_related": false, "latest_patch_uploaded": null, "tags": [], "date_last_message": "2024-11-27T07:50:29.906915+00:00", "number_of_duplicates": 0, "message_count": 2, "users_affected_count": 1, "users_unaffected_count": 0, "users_affected_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/users_affected", "users_unaffected_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/users_unaffected", "users_affected_count_with_dupes": 1, "other_users_affected_count_with_dupes": 1, "users_affected_with_dupes_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/users_affected_with_dupes", "messages_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/messages", "lock_status": "Unlocked", "lock_reason": null, "linked_branches_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/linked_branches", "linked_merge_proposals_collection_link": "https://bugs.launchpad.net/api/devel/bugs/2089733/linked_merge_proposals", "http_etag": "\"68fa199b11915dab4bc7cd01ac456e5c86875636-fe6430d59378474627bbc2e8e40a56c0304f35c3\""}, "subscribers_portlet_url_data": {"web_link": "https://bugs.launchpad.net/bugs/2089733", "self_link": "https://bugs.launchpad.net/api/devel/bugs/2089733"}, "total_comments_and_activity": 1, "initial_comment_batch_offset": 41, "first visible_recent_comment": -39, "bugtask_data": {"3292028": {"id": 3292028, "row_id": "tasksummary3292028", "form_row_id": "task3292028", "bugtask_path": "/mg5amcnlo/+bug/2089733", "prefix": "mg5amcnlo", "targetname": "MadGraph5_aMC@NLO", "bug_title": "error in using lhapdf", "assignee_value": null, "assignee_is_team": null, "assignee_vocabulary": "AllUserTeamsParticipation", "assignee_vocabulary_filters": [], "hide_assignee_team_selection": true, "user_can_unassign": false, "user_can_delete": false, "delete_link": "https://bugs.launchpad.net/mg5amcnlo/+bug/2089733/+delete", "target_is_product": true, "status_widget_items": [{"name": "New", "value": "New", "description": "Not looked at yet.\n", "description_css_class": "choice-description", "style": "", "help": "", "disabled": false, "css_class": "statusNEW"}], "status_value": "New", "importance_widget_items": "[]", "importance_value": "Undecided", "milestone_widget_items": "[]", "milestone_value": null, "user_can_edit_assignee": false, "user_can_edit_milestone": false, "user_can_edit_status": false, "user_can_edit_importance": false}}, "information_type_data": {"PUBLIC": {"value": "PUBLIC", "description": "Everyone can see this information.\n", "name": "Public", "order": 0, "is_private": false, "description_css_class": "choice-description"}, "PUBLICSECURITY": {"value": "PUBLICSECURITY", "description": "Everyone can see this security related information.\n", "name": "Public Security", "order": 1, "is_private": false, "description_css_class": "choice-description"}, "PRIVATESECURITY": {"value": "PRIVATESECURITY", "description": "Only the security group can see this information.\n ", "name": "Private Security", "order": 2, "is_private": true, "description_css_class": "choice-description"}, "USERDATA": {"value": "USERDATA", "description": "Only shared with users permitted to see private user information.\n", "name": "Private", "order": 3, "is_private": true, "description_css_class": "choice-description"}}, "bug_is_private": false, "context": {"self_link": "https://bugs.launchpad.net/api/devel/mg5amcnlo/+bug/2089733", "web_link": "https://bugs.launchpad.net/mg5amcnlo/+bug/2089733", "resource_type_link": "https://bugs.launchpad.net/api/devel/#bug_task", "bug_link": "https://bugs.launchpad.net/api/devel/bugs/2089733", "milestone_link": null, "status": "New", "status_explanation": null, "importance": "Undecided", "importance_explanation": null, "assignee_link": null, "bug_target_display_name": "MadGraph5_aMC@NLO", "bug_target_name": "mg5amcnlo", "bug_watch_link": null, "date_assigned": null, "date_created": "2024-11-27T07:37:25.952253+00:00", "date_confirmed": null, "date_incomplete": null, "date_in_progress": null, "date_closed": null, "date_left_new": null, "date_triaged": null, "date_fix_committed": null, "date_fix_released": null, "date_left_closed": null, "owner_link": "https://bugs.launchpad.net/api/devel/~stein-re", "target_link": "https://bugs.launchpad.net/api/devel/mg5amcnlo", "title": "Bug #2089733 in MadGraph5_aMC@NLO: \"error in using lhapdf\"", "related_tasks_collection_link": "https://bugs.launchpad.net/api/devel/mg5amcnlo/+bug/2089733/related_tasks", "is_complete": false, "http_etag": "\"e54ec3e95a8ded619d588fa86fc6f23d76c7a0fa-636d1e9b7ce3eac342bd37ec8df863971e9e4a91\""}};</script> </body> <!-- Facet name: bugs Page type: main_side Has global search: True Has application tabs: True Has side portlets: True At least 49 queries/external actions issued in 0.52 seconds Features: {'profiling.enabled': None, 'hard_timeout': '9000', 'app.mainsite_only.canonical_url': None, 'js.yui_version': None, 'app.maintenance_message': None, 'bugs.affected_count_includes_dupes.disabled': None, 'baselayout.careers_link.disabled': None, 'visible_render_time': None} r22ade00 --> </html>