Source code for hepi.run.resummino.run

"""Runs Resummino"""
import os
import os.path
import pkgutil
import stat
import warnings
from string import Template
from typing import List

from hepi.input import Order
from hepi.results import Result
from hepi.run import Runner, RunParam

from .. import Input
from .result import is_valid, parse_single


[docs] class ResumminoRunner(Runner):
[docs] def orders(self) -> List[Order]: return [Order.LO, Order.NLO, Order.NLO_PLUS_NLL, Order.aNNLO_PLUS_NNLL]
[docs] def get_version(self) -> str: p = os.path.expanduser(self.get_path()) ret = self._sub_run([p, "--version"]) return ret.split("\n")[-2]
[docs] def _check_path(self) -> bool: if os.path.exists(os.path.expanduser(self.get_path() + "/build/bin/resummino")): self.set_path(self.get_path() + "/build/bin/resummino") return True if os.path.exists(os.path.expanduser(self.get_path() + "/bin/resummino")): self.set_path(self.get_path() + "/bin/resummino") return True if self.get_path().endswith("resummino"): return True return False
[docs] def _check_input(self, p: Input, **kwargs) -> bool: if p.order == Order.aNNLO_PLUS_NNLL and ( (p.has_gluino() and p.has_weakino()) or (p.has_squark() and p.has_weakino()) ): warnings.warn("Resummino does not support stong-weak mixed aNNLO+NNLL.") return False return True
[docs] def _is_valid(self, file: str, p: Input, d, **kwargs) -> bool: if not super()._is_valid(file, p, d): return False return is_valid(file, p, d, **kwargs)
[docs] def _parse_file(self, file: str) -> Result: return parse_single(file)
[docs] def _prepare(self, p: Input, **kwargs) -> RunParam: rp = super()._prepare(p, **kwargs) if not rp.skip: data = pkgutil.get_data(__name__, "plot_template.in").decode("utf-8") flags = "" if p.order == Order.LO: flags = flags + "--lo" elif p.order == Order.NLO: flags = flags + "--nlo" elif p.order == Order.NLO_PLUS_NLL: flags = flags + "--nll" elif p.order == Order.aNNLO_PLUS_NNLL: flags = flags + "--nnll" else: raise ValueError( "Order not supported by resummino. Must be one of LO/NLO/NLO+NLL/aNNLO+NNLL." ) src = Template(data) result = src.substitute(p.__dict__) od = self.get_output_dir() if not os.path.exists(od): os.makedirs(od) with open(od + rp.name + ".in", "w") as tmp: tmp.write(result) with open(od + rp.name + ".sh", "w") as tmp: tmp.write( "#!/bin/sh\n" + get_path() + " {} {} >> {}".format( od + rp.name + ".in", flags, od + rp.name + ".out" ) ) st = os.stat(od + rp.name + ".sh") os.chmod(od + rp.name + ".sh", st.st_mode | stat.S_IEXEC) with open(od + rp.name + ".out", "w") as tmp: tmp.write(result + "\n\n") sname = p.slha with open(od + sname, "r") as f: with open(od + rp.name + ".out", "a") as a: a.write(f.read() + "\n\n") return rp
# Legacy
[docs] default_resummino_runner = ResumminoRunner("~/resummino/")
"""Default Resummino Runner to provide backward compatibility"""
[docs] run = default_resummino_runner.run
[docs] set_path = default_resummino_runner.set_path
[docs] get_path = default_resummino_runner.get_path
[docs] get_version = default_resummino_runner.get_version