Metadata-Version: 2.1
Name: yaslha
Version: 0.3.2
Summary: A Python package to handle SLHA (SUSY Les Houches Accord) files.
Home-page: https://github.com/misho104/yaslha
License: MIT
Author: Sho Iwamoto (Misho)
Author-email: webmaster@misho-web.com
Requires-Python: >=3.7.1,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: click (>=8.0,<9.0)
Requires-Dist: colorama (>=0.4.4,<0.5.0)
Requires-Dist: coloredlogs (>=15.0,<16.0)
Requires-Dist: numpy (>=1.20,<2.0)
Requires-Dist: ruamel.yaml (>=0.17.4,<0.18.0)
Requires-Dist: typing-extensions (>=4.0,<5.0)
Project-URL: Repository, https://github.com/misho104/yaslha
Description-Content-Type: text/markdown

[![Build Status](https://github.com/misho104/yaslha/actions/workflows/unit-test.yaml/badge.svg?branch=master)](https://github.com/misho104/yaslha/actions/workflows/unit-test.yaml)
[![Coverage Status](https://codecov.io/gh/misho104/yaslha/branch/master/graph/badge.svg?token=SL19A4WATT)](https://codecov.io/gh/misho104/yaslha)
[![Typecheck Status](https://github.com/misho104/yaslha/actions/workflows/type-check.yaml/badge.svg?branch=master)](https://github.com/misho104/yaslha/actions/workflows/type-check.yaml)
[![Doc Status](http://readthedocs.org/projects/yaslha/badge/)](https://yaslha.readthedocs.io/)
[![PyPI version](https://badge.fury.io/py/yaslha.svg)](https://badge.fury.io/py/yaslha)
[![License: MIT](https://img.shields.io/badge/License-MIT-ff25d1.svg)](https://github.com/misho104/yaslha/blob/master/LICENSE)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)

[yaslha](https://github.com/misho104/yaslha): Yet Another SLHA module for Python3
=================================================================================

A Python3 package to manipulate [SLHA](http://skands.physics.monash.edu/slha/) files and convert them to other file formats (JSON and YAML).

Quick Start
-----------

(TBW)

Introduction
------------

The [SUSY Les Houches Accord](http://skands.physics.monash.edu/slha/) is a data format widely used in particle physics phenomenology.
It is originally defined in [arXiv:hep-ph/0311123](https://arxiv.org/abs/hep-ph/0311123) and extended to SLHA2 in [arXiv:0801.0045](https://arxiv.org/abs/0801.0045).

Because of its birth in FORTRAN era it is a fixed length format such as

```
BLOCK SMINPUTS                  # Standard Model input parameters
     1     1.27934000e+02   # alpha_em^-1(M_Z)^MSbar
     2     1.16637000e-05   # G_F [GeV^-2]
     3     1.17200000e-01   # alpha_S(M_Z)^MSbar
     4     9.11876000e+01   # mZ (pole)
     5     4.18000000e+00   # mb(mb)^MSbar
     6     1.73300000e+02   # mt (pole)
     7     1.77682000e+00   # mtau (pole)
#
BLOCK ALPHA                    #
          -2.68630018e-02   # Higgs mixing parameter
#
BLOCK HMIX Q= 2.00000000e+02   # Higgs parameters (DRbar)
     1     5.40000000e+02   # mu(Q)
     2     4.00000000e+01   # tanbeta(Q)
     3     2.46220569e+02   # vev(Q)
     4     2.30400000e+05   # mA^2(Q)
#
...
```

and extended in many program codes.

Python has two famous SLHA parser: [PySLHA](http://www.insectnation.org/projects/pyslha) by Andy Buckley and [pylha](https://github.com/DavidMStraub/pylha) by David M. Straub.
[yaslha](https://github.com/misho104/yaslha) is "yet another" SLHA parser, influenced much by these two parsers.

Python regrettably experienced a terrible era due to the transition from Python2 to Python3.
To reduce code complexity, this package supports only Python3.4 and later versions.

Usage
-----

(TBW)

Author
------

[Sho Iwamoto / Misho](https://www.misho-web.com/), under much influence from [PySLHA](http://www.insectnation.org/projects/pyslha) by Andy Buckley and [pylha](https://github.com/DavidMStraub/pylha) by David M. Straub.
