|
ATLAS Offline Software
|
Go to the documentation of this file.
3 from AthenaCommon
import Logging
4 from ..powheg_V2
import PowhegV2
7 logger = Logging.logging.getLogger(
"PowhegControl")
11 """! Default Powheg configuration for W-boson and Z-boson production including interference for identical leptons.
13 Create a configurable object with all applicable Powheg options.
15 @author James Robinson <james.robinson@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(WZ, self).
__init__(base_directory,
"WZ", **kwargs)
30 self.
allowed_decay_modes = [
"w z > e ve e+ e-",
"w z > e ve mu+ mu-",
"w z > e ve tau+ tau-",
"w z > j j j j",
31 "w z > j j l+ l-",
"w z > j j v v~",
"w z > l v j j",
"w z > l v l+ l-",
32 "w z > l v v v~",
"w z > mu vm e+ e-",
"w z > mu vm mu+ mu-",
33 "w z > mu vm tau+ tau-",
"w z > tau vt e+ e-",
"w z > tau vt mu+ mu-",
34 "w z > tau vt tau+ tau-",
"w- z > e- ve~ e+ e-",
"w- z > e- ve~ mu+ mu-",
35 "w- z > e- ve~ tau+ tau-",
"w- z > mu- vm~ e+ e-",
"w- z > mu- vm~ mu+ mu-",
36 "w- z > mu- vm~ tau+ tau-",
"w- z > tau- vt~ e+ e-",
"w- z > tau- vt~ mu+ mu-",
37 "w- z > tau- vt~ tau+ tau-",
"w+ z > e+ ve e+ e-",
"w+ z > e+ ve mu+ mu-",
38 "w+ z > e+ ve tau+ tau-",
"w+ z > mu+ vm e+ e-",
"w+ z > mu+ vm mu+ mu-",
39 "w+ z > mu+ vm tau+ tau-",
"w+ z > tau+ vt e+ e-",
"w+ z > tau+ vt mu+ mu-",
40 "w+ z > tau+ vt tau+ tau-"]
192 """! Validate the various decay mode keywords."""
198 __decay_mode_lookup = {
"w z > e ve e+ e-":
"WZevee",
199 "w z > e ve mu+ mu-":
"WZevmumu",
200 "w z > e ve tau+ tau-":
"WZevtautau",
201 "w z > j j j j":
"WZqqqq",
202 "w z > j j l+ l-":
"WZqqll",
203 "w z > j j v v~":
"WZqqvv",
204 "w z > l v j j":
"WZlvqq",
205 "w z > l v l+ l-":
"WZlvll",
206 "w z > l v v v~":
"WZlvvv",
207 "w z > mu vm e+ e-":
"WZmuvee",
208 "w z > mu vm mu+ mu-":
"WZmuvmumu",
209 "w z > mu vm tau+ tau-":
"WZmuvtautau",
210 "w z > tau vt e+ e-":
"WZtauvee",
211 "w z > tau vt mu+ mu-":
"WZtauvmumu",
212 "w z > tau vt tau+ tau-":
"WZtauvtautau",
213 "w- z > e- ve~ e+ e-":
"WmZevee",
214 "w- z > e- ve~ mu+ mu-":
"WmZevmumu",
215 "w- z > e- ve~ tau+ tau-":
"WmZevtautau",
216 "w- z > mu- vm~ e+ e-":
"WmZmuvee",
217 "w- z > mu- vm~ mu+ mu-":
"WmZmuvmumu",
218 "w- z > mu- vm~ tau+ tau-":
"WmZmuvtautau",
219 "w- z > tau- vt~ e+ e-":
"WmZtauvee",
220 "w- z > tau- vt~ mu+ mu-":
"WmZtauvmumu",
221 "w- z > tau- vt~ tau+ tau-":
"WmZtauvtautau",
222 "w+ z > e+ ve e+ e-":
"WpZevee",
223 "w+ z > e+ ve mu+ mu-":
"WpZevmumu",
224 "w+ z > e+ ve tau+ tau-":
"WpZevtautau",
225 "w+ z > mu+ vm e+ e-":
"WpZmuvee",
226 "w+ z > mu+ vm mu+ mu-":
"WpZmuvmumu",
227 "w+ z > mu+ vm tau+ tau-":
"WpZmuvtautau",
228 "w+ z > tau+ vt e+ e-":
"WpZtauvee",
229 "w+ z > tau+ vt mu+ mu-":
"WpZtauvmumu",
230 "w+ z > tau+ vt tau+ tau-":
"WpZtauvtautau"}
def expose(self)
Add all names to the interface of this object.
def validate_decays(self)
Validate the various decay mode keywords.
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.
Default Powheg configuration for W-boson and Z-boson production including interference for identical ...
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(self)
Default PDFs for this process.
Base class for PowhegBox V2 processes.