 |
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 Z-boson pair production including interference for identical leptons.
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.
24 super(WZj_MiNNLO, self).
__init__(base_directory,
"WZJ", **kwargs)
34 "w- z > e- ve~ e+ e-",
"w- z > e- ve~ mu+ mu-",
"w- z > e- ve~ tau+ tau-",
35 "w- z > mu- vm~ e+ e-",
"w- z > mu- vm~ mu+ mu-",
"w- z > mu- vm~ tau+ tau-",
36 "w- z > tau- vt~ e+ e-",
"w- z > tau- vt~ mu+ mu-",
"w- z > tau- vt~ tau+ tau-",
37 "w+ z > e+ ve e+ e-",
"w+ z > e+ ve mu+ mu-",
"w+ z > e+ ve tau+ tau-",
38 "w+ z > mu+ vm e+ e-",
"w+ z > mu+ vm mu+ mu-",
"w+ z > mu+ vm tau+ tau-",
39 "w+ z > tau+ vt e+ e-",
"w+ z > tau+ vt mu+ mu-",
"w+ z > tau+ vt tau+ tau-"]
64 self.
add_keyword(
"Wdecaymode", 1, name=
"decay_mode", hidden=
False)
124 """! Validate the various decay mode keywords."""
129 __decay_mode_lookup = {
130 "w- z > e- ve~ e+ e-":
"WmZevee",
131 "w- z > e- ve~ mu+ mu-":
"WmZevmumu",
132 "w- z > e- ve~ tau+ tau-":
"WmZevtautau",
133 "w- z > mu- vm~ e+ e-":
"WmZmuvee",
134 "w- z > mu- vm~ mu+ mu-":
"WmZmuvmumu",
135 "w- z > mu- vm~ tau+ tau-":
"WmZmuvtautau",
136 "w- z > tau- vt~ e+ e-":
"WmZtauvee",
137 "w- z > tau- vt~ mu+ mu-":
"WmZtauvmumu",
138 "w- z > tau- vt~ tau+ tau-":
"WmZtauvtautau",
139 "w+ z > e+ ve e+ e-":
"WpZevee",
140 "w+ z > e+ ve mu+ mu-":
"WpZevmumu",
141 "w+ z > e+ ve tau+ tau-":
"WpZevtautau",
142 "w+ z > mu+ vm e+ e-":
"WpZmuvee",
143 "w+ z > mu+ vm mu+ mu-":
"WpZmuvmumu",
144 "w+ z > mu+ vm tau+ tau-":
"WpZmuvtautau",
145 "w+ z > tau+ vt e+ e-":
"WpZtauvee",
146 "w+ z > tau+ vt mu+ mu-":
"WpZtauvmumu",
147 "w+ z > tau+ vt tau+ tau-":
"WpZtauvtautau"}
148 if "Wp" in __decay_mode_lookup[self.decay_mode]:
153 if "ev" in __decay_mode_lookup[self.decay_mode]:
155 elif "muv" in __decay_mode_lookup[self.decay_mode]:
160 if "ee" in __decay_mode_lookup[self.decay_mode]:
162 elif "mumu" in __decay_mode_lookup[self.decay_mode]:
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.
allowed_decay_modes
List of allowed decay modes.
def parameters_by_keyword(self, keyword)
Retrieve all parameters that use a given keyword.
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
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.
def validate_decays(self)
Validate the various decay mode keywords.
Default Powheg configuration for W-boson Z-boson pair production including interference for identical...
Base class for PowhegBox RES processes.