|
ATLAS Offline Software
|
Go to the documentation of this file.
3 from AthenaCommon
import Logging
4 from ...parameters
import powheg_atlas_common
5 from ..powheg_V2
import PowhegV2
8 logger = Logging.logging.getLogger(
"PowhegControl")
12 """! Default Powheg configuration for Vector LeptoQuark production.
14 https://arxiv.org/abs/2209.12780
16 Create a configurable object with all applicable Powheg options.
18 @author Timothee Theveneaux-Pelzer <tpelzer@cern.ch>
22 """! Constructor: all process options are set here.
24 @param base_directory: path to PowhegBox code.
25 @param kwargs dictionary of arguments from Generate_tf.
27 super(DY_VLQ, self).
__init__(base_directory,
"DY_VLQ_NLO", **kwargs)
101 self.
add_keyword(
"mt", powheg_atlas_common.mass.t, name=
"mass_t", description=
"top quark mass in GeV")
149 """! Validate semileptonic and topdecaymode keywords."""
152 logger.warning(
"Decay mode {} not recognised!".
format(self.decay_mode))
153 raise ValueError(
"Decay mode {} not recognised!".
format(self.decay_mode))
155 __decay_mode_lookup = {
"ta+ ta-":
"3",
"e+ e-":
"1",
"mu+ mu-":
"2"}
def expose(self)
Add all names to the interface of this object.
def validate_decays(self)
Validate semileptonic and topdecaymode 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.
def parameters_by_keyword(self, keyword)
Retrieve all parameters that use a given keyword.
allowed_decay_modes
List of allowed decay modes.
validation_functions
List of validation functions to run before preparing runcard.
Default Powheg configuration for Vector LeptoQuark production.
def default_PDFs(self)
Default PDFs for this process.
Base class for PowhegBox V2 processes.
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.