 |
ATLAS Offline Software
|
Go to the documentation of this file.
3 from AthenaCommon
import Logging
4 from ..powheg_RES
import PowhegRES
7 logger = Logging.logging.getLogger(
"PowhegControl")
11 """! Default Powheg configuration for Z gamma production plus one jet using MiNNLOPS.
13 Create a configurable object with all applicable Powheg options.
15 @author Aonan Wang <aonan.wang@cern.ch>
19 """! Constructor: all process options are set here.
21 @param base_directory: path to PowhegBox code.
22 @param kwargs dictionary of arguments from Generate_tf.
27 infos.append(
"qqvvamp: increasing precision to")
28 super(Zgamj_MiNNLO, self).
__init__(base_directory,
"ZgamJ",warning_output=warnings, info_output=infos, error_output=errors, **kwargs)
40 "z > e+ e- / mu+ mu-",
76 self.
add_keyword(
"vdecaymode",
"w+ w- > l+ vl l'- vl'~", name=
"decay_mode", hidden=
False)
154 """! Validate the various decay mode keywords."""
159 __decay_mode_lookup = {
"z > e+ e-":
"e+e-",
160 "z > mu+ mu-":
"mu+mu-",
161 "z > tau+ tau-":
"tau+tau-",
162 "z > e+ e- / mu+ mu-":
"leptonic_notau",
163 "z > l+ l-":
"leptonic",
165 if __decay_mode_lookup[self.decay_mode] ==
"vv":
def expose(self)
Add all names to the interface of this object.
def default_scales(self)
Default scale variations for this process.
def add_keyword(self, keyword, value=None, name=None, frozen=None, hidden=None, description=None, **kwargs)
Register configurable parameter that is exposed to the user.
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
def openloops_error(self)
def parameters_by_keyword(self, keyword)
Retrieve all parameters that use a given keyword.
validation_functions
List of validation functions to run before preparing runcard.
def check_decay_mode(self, decay_mode, allowed_decay_modes=None)
Check whether a decay mode is allowed an raise an exception if it is not.
def default_PDFs_nnlo(self)
Default PDFs for this process.
allowed_decay_modes
List of allowed decay modes.
Default Powheg configuration for Z gamma production plus one jet using MiNNLOPS.
def validate_decays(self)
Validate the various decay mode keywords.
Base class for PowhegBox RES processes.