Loading [MathJax]/extensions/tex2jax.js
 |
ATLAS Offline Software
|
Go to the documentation of this file.
3 from AthenaCommon
import Logging
4 from ..powheg_V2
import PowhegV2
5 from ..external
import ExternalMadSpin
8 logger = Logging.logging.getLogger(
"PowhegControl")
16 _decay_mode_lookup = {
17 "t t~ > all":
"22222",
18 "t t~ > b j j b~ j j":
"00022",
19 "t t~ > b l+ vl b~ l- vl~":
"22200",
20 "t t~ > b emu+ vemu b~ emu- vemu~":
"22000",
21 "t t~ > semileptonic":
"11111",
22 "t t~ > undecayed" :
"00000",
23 "t t~ > all [MadSpin]" :
"00000",
28 """! Default Powheg configuration for top pair production plus one jet.
30 Create a configurable object with all applicable Powheg options.
32 @author James Robinson <james.robinson@cern.ch>
36 """! Constructor: all process options are set here.
38 @param base_directory: path to PowhegBox code.
39 @param kwargs dictionary of arguments from Generate_tf.
41 super(ttj, self).
__init__(base_directory,
"ttbarj", **kwargs)
152 self.
add_keyword(
"topdecaymode",
"t t~ > all", name=
"decay_mode")
170 """! Validate semileptonic and topdecaymode keywords."""
174 logger.warning(error_message)
175 raise ValueError(error_message)
std::vector< typename R::value_type > sorted(const R &r, PROJ proj={})
Helper function to create a sorted vector from an unsorted range.
def expose(self)
Add all names to the interface of this object.
def add_algorithm(self, alg_or_process)
Add an algorithm or external process to the sequence.
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 __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Class for running external MadSpin process.
def validate_decays(self)
Validate semileptonic and topdecaymode keywords.
def parameters_by_keyword(self, keyword)
Retrieve all parameters that use a given keyword.
allowed_decay_modes
List of allowed decay modes (The sorting of the list is just to increase readability when it's printe...
validation_functions
List of validation functions to run before preparing runcard.
std::string join(const std::vector< std::string > &v, const char c=',')
externals
List of external processes to schedule.
def default_PDFs(self)
Default PDFs for this process.
Base class for PowhegBox V2 processes.
Default Powheg configuration for top pair production plus one jet.