|
ATLAS Offline Software
|
Go to the documentation of this file.
4 from AthenaCommon
import Logging
5 from ..powheg_V2
import PowhegV2
8 logger = Logging.logging.getLogger(
"PowhegControl")
12 """! Default Powheg configuration for gluon-fusion Higgs boson production with quark mass and EW effects.
14 Create a configurable object with all applicable Powheg options.
16 @author Timothée Theveneaux-Pelzer <tpelzer@cern.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.
25 super(ggF_HH_SMEFT, self).
__init__(base_directory,
"ggHH_SMEFT", **kwargs)
34 os.environ[
"PYTHONPATH"] +=
":" + os.environ[
"PWD"]
80 self.
add_keyword(
"fixedscale", description=
"Set renormalisation and factorisation scales to 2*m_H")
172 """! Creates the .grid file needed by this process."""
173 """! This function calls a python script provided by the authors, which is linked to the local directory."""
174 """! The code of this function is adapted from the script ${POWHEGPATH}/POWHEG-BOX-V2/ggHH/testrun/run.sh"""
177 logger.info(
'Now attempting to link locally the files needed by this Powheg process')
179 os.system(
"ln -s " + os.environ[
"POWHEGPATH"] +
"/POWHEG-BOX-V2/ggHH_SMEFT/Virtual/events.cdf events.cdf")
180 os.system(
"ln -s " + os.environ[
"POWHEGPATH"] +
"/POWHEG-BOX-V2/ggHH_SMEFT/Virtual/creategrid.py creategrid.py")
181 os.system(
"ln -s " + os.environ[
"POWHEGPATH"] +
"/POWHEG-BOX-V2/ggHH_SMEFT/shell/warmup_smeft.py warmup_smeft.py")
182 os.system(
"for grid in " + os.environ[
"POWHEGPATH"] +
"/POWHEG-BOX-V2/ggHH_SMEFT/Virtual/Virt_full_*E*.grid; do ln -s $grid ${grid##*/}; done")
184 logger.error(
'Impossible to link the needed files locally')
188 py_path_save = os.environ[
"PYTHONPATH"]
189 base_path = os.environ[
"LHAPDF_INSTAL_PATH"]
192 python_lib_path = glob.glob(os.path.join(base_path,
"lib",
"python*"))
196 python_lib_path = python_lib_path[0]
198 raise ValueError(
"No Python version found in lib folder")
201 py_path_temp = python_lib_path +
"/site-packages" +
":" + py_path_save
203 os.environ[
"PYTHONPATH"] = py_path_temp
204 logger.debug(f
'Temporarily setting PYTHONPATH to:\n{py_path_temp}')
210 if usesmeft_str ==
"0":
214 EFTcount_str = f
'{EFTcount:+n}'
217 renfac_str = f
'{renfact[0]:+.2f}' if type(renfact)
is list
else f
'{renfact:+.2f}'
219 lhapdfid_str =
str(lhapdfid[0])
if type(lhapdfid)
is list
else str(lhapdfid)
221 if usesmeft_str ==
"1":
222 GF_str = f
'{list(self.parameters_by_keyword("gfermi"))[0].value:+.4E}'
223 Lambda_str = f
'{list(self.parameters_by_keyword("Lambda"))[0].value:+.4E}'
224 CHbox_str = f
'{list(self.parameters_by_keyword("CHbox"))[0].value:+.4E}'
225 CHD_str = f
'{list(self.parameters_by_keyword("CHD"))[0].value:+.4E}'
226 CH_str = f
'{list(self.parameters_by_keyword("CH"))[0].value:+.4E}'
227 CuH_str = f
'{list(self.parameters_by_keyword("CuH"))[0].value:+.4E}'
228 CHG_str = f
'{list(self.parameters_by_keyword("CHG"))[0].value:+.4E}'
230 logger.info(
'Now trying to use warmup_smeft.py to create the Virt_full_*.grid file')
231 logger.info(f
'Parameters are: GF={GF_str}, Lambda={Lambda_str}, CHbox={CHbox_str}, CHD={CHD_str}, CH={CH_str}, CuH={CuH_str}, CHG={CHG_str}, EFTcount={EFTcount_str}, usesmeft={usesmeft_str}, lhapdfid={lhapdfid_str}, renfac={renfac_str}')
235 pythoncmd=f
"import warmup_smeft as ws; ws.combinegrids_smeft({Lambda_str}, {CHbox_str}, {CHD_str}, {CH_str}, {CuH_str}, {CHG_str}, {GF_str}, {EFTcount_str}, {usesmeft_str}, {lhapdfid_str}, {renfac_str})"
236 os.system(
"python3 -c \""+pythoncmd+
"\"")
238 logger.error(
'Impossible to use warmup_smeft.py to create the Virt_full_*.grid file')
242 chhh_str = f
'{list(self.parameters_by_keyword("chhh"))[0].value:+.4E}'
243 ct_str = f
'{list(self.parameters_by_keyword("ct"))[0].value:+.4E}'
244 ctt_str = f
'{list(self.parameters_by_keyword("ctt"))[0].value:+.4E}'
245 cggh_str = f
'{list(self.parameters_by_keyword("cggh"))[0].value:+.4E}'
246 cgghh_str = f
'{list(self.parameters_by_keyword("cgghh"))[0].value:+.4E}'
247 grid_file_name = f
'Virt_full_{chhh_str}_{ct_str}_{ctt_str}_{cggh_str}_{cgghh_str}-HEFT{EFTcount_str}.grid'
249 logger.info(
'Now trying to use creategrid.py to create the Virt_full_*.grid file')
250 logger.info(f
'File name: {grid_file_name}')
251 logger.info(f
'Parameters are: chhh={chhh_str}, ct={ct_str}, ctt={ctt_str}, cggh={cggh_str}, cgghh={cgghh_str}, EFTcount={EFTcount_str}, usesmeft={usesmeft_str}, lhapdfid={lhapdfid_str}, renfac={renfac_str}')
255 pythoncmd=f
"import creategrid as cg; cg.combinegrids('{grid_file_name}', {chhh_str}, {ct_str}, {ctt_str}, {cggh_str}, {cgghh_str}, {EFTcount_str}, {lhapdfid_str}, {renfac_str})"
256 os.system(
"python3 -c \""+pythoncmd+
"\"")
258 logger.error(
'Impossible to use creategrid.py to create the Virt_full_*.grid file')
262 os.environ[
"PYTHONPATH"] = py_path_save
263 logger.debug(f
'Setting PYTHONPATH back to:\n{py_path_save}')
265 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.
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.
validation_functions
List of validation functions to run before preparing runcard.
Default Powheg configuration for gluon-fusion Higgs boson production with quark mass and EW effects.
def default_PDFs(self)
Default PDFs for this process.
Base class for PowhegBox V2 processes.
def create_grid_file(self)
Creates the .grid file needed by this process.