  | 
  
    ATLAS Offline Software
    
   | 
 
 
 
 
Go to the documentation of this file.
    3 from AthenaCommon 
import Logging
 
    4 from ..powheg_V2 
import PowhegV2
 
    8 logger = Logging.logging.getLogger(
"PowhegControl")
 
   12     """! Default Powheg configuration for single W-boson production plus one jet using MINNLOPS. 
   14     Create a configurable object with all applicable Powheg options. 
   16     @author Simone Amoroso  <simone.amoroso@amoroso.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. 
   30         super(Wj_MiNNLO, self).
__init__(base_directory, os.path.join(
"Wj", 
"WjMiNNLO"), warning_output=warnings, info_output=infos, **kwargs)
 
   38         self.
allowed_decay_modes = [
"w- > e- ve~", 
"w- > mu- vm~", 
"w- > tau- vt~", 
"w+ > e+ ve", 
"w+ > mu+ vm", 
"w+ > tau+ vt"]
 
  181         """! Validate idvecbos and vdecaymode keywords.""" 
  186         __decay_mode_lookup = {
"e- ve~": 1, 
"mu- vm~": 2, 
"tau- vt~": 3, 
"e+ ve": 1, 
"mu+ vm": 2, 
"tau+ vt": 3}
 
  
def expose(self)
Add all names to the interface of this object.
 
def parameters_by_name(self, name)
Retrieve all parameters that use a given name.
 
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.
 
validation_functions
List of validation functions to run before preparing runcard.
 
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 validate_decays(self)
Validate idvecbos and vdecaymode keywords.
 
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
 
def default_PDFs(self)
Default PDFs for this process.
 
Default Powheg configuration for single W-boson production plus one jet using MINNLOPS.
 
Base class for PowhegBox V2 processes.
 
allowed_decay_modes
List of allowed decay modes.