3from AthenaCommon
import Logging
4from ..powheg_V2
import PowhegV2
7logger = Logging.logging.getLogger(
"PowhegControl")
11 """! Default Powheg configuration for associated Higgs boson and Z-boson production plus one jet, with quark mass effects.
13 Create a configurable object with all applicable Powheg options.
14 @author James Robinson <james.robinson@cern.ch>
18 """! Constructor: all process options are set here.
20 @param base_directory path to PowhegBox code.
21 @param kwargs dictionary of arguments from Generate_tf.
23 super(HZj, self).
__init__(base_directory,
"HZJ", **kwargs)
27 "z > vt vt~",
"z > j j",
"z > l l~",
"z > v v~",
"z > all"]
157 """! Validate idvecbos and vdecaymode keywords."""
161 __decay_mode_lookup = {
"e+ e-": 1,
"mu+ mu-": 2,
"tau+ tau-": 3,
"ve ve~": 4,
"vm vm~": 5,
"vt vt~": 6,
162 "j j": 0,
"l l~": 11,
"v v~": 12,
"all": 10}
add_keyword(self, keyword, value=None, name=None, frozen=None, hidden=None, description=None, **kwargs)
Register configurable parameter that is exposed to the user.
expose(self)
Add all names to the interface of this object.
parameters_by_name(self, name)
Retrieve all parameters that use a given name.
parameters_by_keyword(self, keyword)
Retrieve all parameters that use a given keyword.
Default Powheg configuration for associated Higgs boson and Z-boson production plus one jet,...
validate_decays(self)
Validate idvecbos and vdecaymode keywords.
list allowed_decay_modes
List of allowed decay modes.
__init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Base class for PowhegBox V2 processes.
list validation_functions
List of validation functions to run before preparing runcard.
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.
default_scales(self)
Default scale variations for this process.
std::vector< std::string > split(const std::string &s, const std::string &t=":")