3from AthenaCommon
import Logging
4from ..powheg_RES
import PowhegRES
7logger = 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.
24 super(VV_pol, self).
__init__(base_directory,
"VV_pol", **kwargs)
35 "w+ w- > mu+ vm e- ve~",
36 "w+ w- > tau+ vt e- ve~",
37 "w+ w- > e+ ve tau- vt~",
38 "w+ w- > tau+ vt mu- vm~",
39 "w+ w- > mu+ vm tau- vt~",
40 "w+ w- > e+ ve e- ve~",
41 "w+ w- > mu+ vm mu- vm~",
42 "w+ w- > tau+ vt tau- vt~",
43 "w+ z > e+ ve mu+ mu-",
44 "w+ z > e+ ve tau+ tau-",
45 "w+ z > mu+ vm e+ e-",
46 "w+ z > mu+ vm tau+ tau-",
47 "w+ z > tau+ vt e+ e-",
48 "w+ z > tau+ vt mu+ mu-",
49 "w- z > e- ve~ mu+ mu-",
50 "w- z > e- ve~ tau+ tau-",
51 "w- z > mu- vm~ e+ e-",
52 "w- z > mu- vm~ tau+ tau-",
53 "w- z > tau- vt~ e+ e-",
54 "w- z > tau- vt~ mu+ mu-",
55 "z z > e+ e- mu+ mu-",
56 "z z > e+ e- tau+ tau-",
57 "z z > mu+ mu- e+ e-",
58 "z z > mu+ mu- tau+ tau-",
59 "z z > tau+ tau- e+ e-",
60 "z z > tau+ tau- mu+ mu-",
97 self.
add_keyword(
"decayV1",
"w+ w- > e+ ve mu- vm~", name=
"VVprocess", hidden=
False)
185 """! Validate the various process keywords."""
205 elif "tau+ vt mu- vm~" in self.
VVprocess:
208 elif "mu+ vm tau- vt~" in self.
VVprocess:
217 elif "tau+ vt tau- vt~" in self.
VVprocess:
227 elif "e+ e- tau+ tau-" in self.
VVprocess:
233 elif "mu+ mu- tau+ tau-" in self.
VVprocess:
236 elif "tau+ tau- e+ e-" in self.
VVprocess:
239 elif "tau+ tau- mu+ mu-" in self.
VVprocess:
249 elif "e+ ve tau+ tau-" in self.
VVprocess:
255 elif "mu+ vm tau+ tau-" in self.
VVprocess:
261 elif "tau+ vt mu+ mu-" in self.
VVprocess:
271 elif "e- ve~ tau+ tau-" in self.
VVprocess:
277 elif "mu- vm~ tau+ tau-" in self.
VVprocess:
283 elif "tau- vt~ mu+ mu-" in self.
VVprocess:
288 """! Validate the various polarization keywords."""
add_keyword(self, keyword, value=None, name=None, frozen=None, hidden=None, description=None, **kwargs)
Register configurable parameter that is exposed to the user.
expose(self)
Add all names to the interface of this object.
parameters_by_keyword(self, keyword)
Retrieve all parameters that use a given keyword.
Default Powheg configuration for W-boson pair production plus one jet using MiNNLOPS.
list allowed_polarization
validate_polarization(self)
Validate the various polarization keywords.
list allowed_VVprocess
List of allowed decay modes.
__init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
validate_process(self)
Validate the various process keywords.
Base class for PowhegBox RES processes.
list validation_functions
List of validation functions to run before preparing runcard.
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.
default_scales(self)
Default scale variations for this process.