|
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 Z-boson pair 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(ZZ, self).
__init__(base_directory,
"ZZ", **kwargs)
30 self.
allowed_decay_modes = [
"z z > e+ e- e+ e-",
"z z > e+ e- tau+ tau-",
"z z > j j j j",
"z z > j j l+ l-",
31 "z z > l+ l- l'+ l'-",
"z z > mu+ mu- e+ e-",
"z z > mu+ mu- mu+ mu-",
32 "z z > tau+ tau- mu+ mu-",
"z z > tau+ tau- tau+ tau-",
"z z > v v~ e+ e-",
33 "z z > v v~ j j",
"z z > v v~ l+ l-",
"z z > v v~ mu+ mu-",
"z z > v v~ tau+ tau-",
159 """! Validate idvecbos and vdecaymode keywords."""
165 __decay_mode_lookup = {
"z z > e+ e- e+ e-":
"ZZeeee",
166 "z z > e+ e- tau+ tau-":
"ZZeetautau",
167 "z z > j j j j":
"ZZqqqq",
168 "z z > j j l+ l-":
"ZZqqll",
169 "z z > l+ l- l'+ l'-":
"ZZllll",
170 "z z > mu+ mu- e+ e-":
"ZZmumuee",
171 "z z > mu+ mu- mu+ mu-":
"ZZmumumumu",
172 "z z > tau+ tau- mu+ mu-":
"ZZtautaumumu",
173 "z z > tau+ tau- tau+ tau-":
"ZZtautautautau",
174 "z z > v v~ e+ e-":
"ZZvvee",
175 "z z > v v~ j j":
"ZZvvqq",
176 "z z > v v~ l+ l-":
"ZZvvll",
177 "z z > v v~ mu+ mu-":
"ZZvvmumu",
178 "z z > v v~ tau+ tau-":
"ZZvvtautau",
179 "z z > v v~ v' v'~":
"ZZvvvv"}
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 parameters_by_keyword(self, keyword)
Retrieve all parameters that use a given keyword.
def validate_decays(self)
Validate idvecbos and vdecaymode keywords.
Default Powheg configuration for Z-boson pair production including interference for identical leptons...
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.
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Base class for PowhegBox V2 processes.
allowed_decay_modes
List of allowed decay modes.