 |
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 W-boson pair 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(WWj_MiNNLO, self).
__init__(base_directory,
"WWJ",warning_output=warnings, info_output=infos, error_output=errors, **kwargs)
38 "w+ w- > mu+ vm mu- vm~",
39 "w+ w- > tau+ vt tau- vt~",
40 "w+ w- > e+ ve mu- vm~ / mu+ vm e- ve~",
41 "w+ w- > l+ vl l'- vl'~",
42 "w+ w- > l+ vl j j / j j l- vl~",
43 "w+ w- > e+ ve j j / j j e- ve~ / mu+ vmu j j / j j mu- vmu~",
45 "w+ w- > e+ ve mu- vm~",
46 "w+ w- > mu+ vm e- ve~"]
90 self.
add_keyword(
"semileptonic",
"w+ w- > l+ vl l'- vl'~", name=
"decay_mode", hidden=
False)
125 """! Validate the various decay mode keywords."""
130 __decay_mode_lookup = {
"w+ w- > e+ ve e- ve~":
"e+e-",
131 "w+ w- > mu+ vm mu- vm~":
"mu+mu-",
132 "w+ w- > tau+ vt tau- vt~":
"tau+tau-",
133 "w+ w- > e+ ve mu- vm~":
"e+mu-",
134 "w+ w- > mu+ vm e- ve~":
"mu+e-",
135 "w+ w- > l+ vl l'- vl'~":
"leptonic",
136 "w+ w- > e+ ve mu- vm~ / mu+ vm e- ve~":
"leptonic_notau",
137 "w+ w- > l+ vl j j / j j l- vl~":
"semileptonic",
138 "w+ w- > e+ ve j j / j j e- ve~ / mu+ vmu j j / j j mu- vmu~":
"semileptonic_notau",
139 "w+ w- > j j j j":
"hadronic"}
def expose(self)
Add all names to the interface of this object.
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
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.
Default Powheg configuration for W-boson pair production plus one jet using MiNNLOPS.
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 validate_decays(self)
Validate the various decay mode keywords.
def default_PDFs_nnlo_nf_4(self)
Default PDFs for this process.
Base class for PowhegBox RES processes.
allowed_decay_modes
List of allowed decay modes.