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
7 logger = Logging.logging.getLogger(
"PowhegControl")
11 """! Default Powheg configuration for gluon-fusion Higgs boson production with quark mass and EW 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_HH, self).
__init__(base_directory,
"ggHH", **kwargs)
62 self.
add_keyword(
"fixedscale", description=
"Set renormalisation and factorisation scales to 2*m_H")
150 """! Creates the .grid file needed by this process."""
151 """! This function calls a python script provided by the authors, which is linked to the local directory."""
152 """! The code of this function is adapted from the script ${POWHEGPATH}/POWHEG-BOX-V2/ggHH/testrun/run.sh"""
155 logger.info(
'Now attempting to link locally the files needed by this Powheg process')
157 processpythondir = os.path.join(os.environ[
"POWHEGPATH"],
"POWHEG-BOX-V2",
"ggHH",
'python')
158 if os.path.isdir(processpythondir):
159 for filename
in os.listdir(processpythondir):
160 source_path = os.path.join(processpythondir, filename)
161 if os.path.isfile(source_path):
162 link_name = os.path.join(os.getcwd(), filename)
164 os.symlink(source_path, link_name)
165 print(f
"Created link: {link_name} -> {source_path}")
166 except FileExistsError:
167 print(f
"Link already exists: {link_name}")
169 os.system(
"ln -s " + os.environ[
"POWHEGPATH"] +
"/POWHEG-BOX-V2/ggHH/Virtual/events.cdf events.cdf")
170 os.system(
"ln -s " + os.environ[
"POWHEGPATH"] +
"/POWHEG-BOX-V2/ggHH/Virtual/creategrid.py creategrid.py")
171 os.system(
"for grid in " + os.environ[
"POWHEGPATH"] +
"/POWHEG-BOX-V2/ggHH/Virtual/Virt_full_*E*.grid; do ln -s $grid ${grid##*/}; done")
173 logger.error(
'Impossible to link the needed files locally')
178 chhh_str = f
'{list(self.parameters_by_keyword("chhh"))[0].value:+.4E}'
179 ct_str = f
'{list(self.parameters_by_keyword("ct"))[0].value:+.4E}'
180 ctt_str = f
'{list(self.parameters_by_keyword("ctt"))[0].value:+.4E}'
181 cggh_str = f
'{list(self.parameters_by_keyword("cggh"))[0].value:+.4E}'
182 cgghh_str = f
'{list(self.parameters_by_keyword("cgghh"))[0].value:+.4E}'
183 grid_file_name = f
'Virt_full_{chhh_str}_{ct_str}_{ctt_str}_{cggh_str}_{cgghh_str}.grid'
185 logger.info(
'Now trying to use creategrid.py to create the Virt_full_*.grid file')
186 logger.info(f
'File name: {grid_file_name}')
187 logger.info(f
'Parameters are: chhh={chhh_str}, ct={ct_str}, ctt={ctt_str}, cggh={cggh_str}, cgghh={cgghh_str}')
191 pythoncmd=f
"import creategrid as cg; cg.combinegrids('{grid_file_name}', {chhh_str}, {ct_str}, {ctt_str}, {cggh_str}, {cgghh_str})"
192 os.system(
"python3 -c \""+pythoncmd+
"\"")
194 logger.error(
'Impossible to use creategrid.py to create the Virt_full_*.grid file')
196 logger.info(
'Although the produced Virt_full_*.grid file now exists in the local directory, Powheg will later try to find it in all directories contained in $PYTHONPATH. This will produce several "not found" info messages which can safely be ignored.')
def expose(self)
Add all names to the interface of this object.
Default Powheg configuration for gluon-fusion Higgs boson production with quark mass and EW effects.
def create_grid_file(self)
Creates the .grid file needed by this process.
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.
validation_functions
List of validation functions to run before preparing runcard.
void print(char *figname, TCanvas *c1)
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.