|
ATLAS Offline Software
|
Go to the documentation of this file.
3 from AthenaCommon
import Logging
5 from ..powheg_RES
import PowhegRES
8 logger = Logging.logging.getLogger(
"PowhegControl")
12 """! Default Powheg configuration for top pair and Wt production including non-resonant and interference effects.
14 Create a configurable object with all applicable Powheg options.
16 @author James Robinson <james.robinson@cern.ch>
20 """! Constructor: all process options are set here.
22 @param base_directory: path to PowhegBox code.
23 @param kwargs dictionary of arguments from Generate_tf.
25 super(bblvlv, self).
__init__(base_directory,
"b_bbar_4l", **kwargs)
34 self.
allowed_decay_modes = [
"b mu+ vmu b~ e- ve~",
"b e+ ve b~ mu- vmu~",
"b emu+ vemu b~ emu- vemu~",\
35 "b tau+ vtau b~ e- ve~",
"b e+ ve b~ tau- vtau~", \
36 "b mu+ vmu b~ tau- vtau~",
"b tau+ vtau b~ mu- vmu~",
"b l+ vl b~ l- vl~"]
180 """! Validate decay_mode keyword."""
183 logger.warning(
"Decay mode {} not recognised!".
format(self.decay_mode))
184 raise ValueError(
"Decay mode {} not recognised!".
format(self.decay_mode))
187 __decay_mode_lookup = {
"b mu+ vmu b~ e- ve~" : 0,
"b e+ ve b~ mu- vmu~" : 1,
"b emu+ vemu b~ emu- vemu~" : 2,\
188 "b tau+ vtau b~ e- ve~" : 3,
"b e+ ve b~ tau- vtau~" : 4, \
189 "b mu+ vmu b~ tau- vtau~" : 5,
"b tau+ vtau b~ mu- vmu~" : 6,
"b l+ vl b~ l- vl~" : 7}
Default Powheg configuration for top pair and Wt production including non-resonant and interference e...
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.
validation_functions
List of validation functions to run before preparing runcard.
def validate_decays(self)
Validate decay_mode keyword.
def default_PDFs(self)
Default PDFs for this process.
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
def manually_set_openloops_paths(self)
Base class for PowhegBox RES processes.