|
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 gluon-fusion Higgs boson plus Z-boson production with quark mass effects.
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(ggF_HZ, self).
__init__(base_directory,
"ggHZ", **kwargs)
34 "z > tau+ tau-",
"z > ve ve~",
"z > vm vm~",
"z > vt vt~"]
143 """! Validate vdecaymode keyword."""
146 __decay_mode_lookup = {
"j j": 0,
"e+ e-": 1,
"mu+ mu-": 2,
"tau+ tau-": 3,
"ve ve~": 4,
"vm vm~": 5,
147 "vt vt~": 6,
"all": 10,
"l+ l-": 11,
"v v~": 12}
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 __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
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_Z_decay_modes
List of allowed decay modes.
validation_functions
List of validation functions to run before preparing runcard.
def validate_vdecaymode(self)
Validate vdecaymode keyword.
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.
Base class for PowhegBox V2 processes.
Default Powheg configuration for gluon-fusion Higgs boson plus Z-boson production with quark mass eff...