├── .all-contributorsrc ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── wheel.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS.rst ├── CHANGELOG.md ├── CITATION.cff ├── CONTRIBUTING.rst ├── LICENSE ├── README.md ├── codecov.yml ├── docs ├── authors.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── index.rst ├── installation.rst ├── readme.rst ├── reference │ ├── decaylanguage.decay.rst │ ├── decaylanguage.rst │ └── index.rst ├── requirements.txt ├── spelling_wordlist.txt └── usage.rst ├── environment.yml ├── images ├── DecayChain_Dst_stable-D0-and-D+.png ├── DecayLanguage.ink.svg ├── DecayLanguage.pdf ├── DecayLanguage.png └── DecayLanguage.svg ├── models └── DtoKpipipi_v2.txt ├── notebooks ├── AmpGen2GooFit D2K3p.ipynb ├── DecayLanguageDemo.ipynb ├── DtoKpipipi_v2.cu ├── ExampleDecFileParsingWithLark.ipynb └── simple_model.txt ├── noxfile.py ├── pyproject.toml ├── src └── decaylanguage │ ├── __init__.py │ ├── __main__.py │ ├── _compat │ ├── __init__.py │ └── typing.py │ ├── _version.pyi │ ├── data │ ├── DECAY_BELLE2.DEC │ ├── DECAY_LHCB.DEC │ ├── MintDalitzSpecialParticles.csv │ ├── MintDalitzSpecialParticles.fwf │ ├── MintDalitzSpecialParticlesLatex.csv │ ├── README.rst │ ├── __init__.py │ ├── ampgen.lark │ ├── decfile.lark │ └── particle.lark │ ├── dec │ ├── __init__.py │ ├── dec.py │ ├── enums.py │ └── py.typed │ ├── decay │ ├── __init__.py │ ├── decay.py │ ├── py.typed │ └── viewer.py │ ├── modeling │ ├── AmpGenReader.ipynb │ ├── __init__.py │ ├── ampgen2goofit.py │ ├── ampgentransform.py │ ├── amplitudechain.py │ ├── decay.py │ ├── goofit.py │ └── py.typed │ ├── py.typed │ └── utils │ ├── __init__.py │ ├── errors.py │ ├── particleutils.py │ └── utilities.py └── tests ├── __init__.py ├── data ├── README.rst ├── defs-aliases-chargeconj.dec ├── duplicate-decays.dec ├── minimalistic.dec ├── models │ ├── model-BCL.dec │ ├── model-BC_SMN.dec │ ├── model-BC_TMN.dec │ ├── model-BC_VHAD.dec │ ├── model-BC_VMN.dec │ ├── model-BC_VPPHAD.dec │ ├── model-BGL.dec │ ├── model-BLLNUL.dec │ ├── model-BNOCB0TO4PICP.dec │ ├── model-BNOCBPTO3HPI0.dec │ ├── model-BNOCBPTOKSHHH.dec │ ├── model-BQTOLLLL.dec │ ├── model-BQTOLLLLHYPERCP.dec │ ├── model-BSTD.dec │ ├── model-BSTD_2HDMTYPE2.dec │ ├── model-BSTOGLLISRFSR.dec │ ├── model-BSTOGLLMNT.dec │ ├── model-BS_MUMUKK.dec │ ├── model-BT02PI_CP_ISO.dec │ ├── model-BTO3PI_CP.dec │ ├── model-BTODDALITZCPK.dec │ ├── model-BTOSLLALI.dec │ ├── model-BTOSLLBALL.dec │ ├── model-BTOSLLMS.dec │ ├── model-BTOSLLMSEXT.dec │ ├── model-BTOVLNUBALL.dec │ ├── model-BTOXELNU.dec │ ├── model-BTOXSGAMMA.dec │ ├── model-BTOXSLL.dec │ ├── model-BTOXSNUNU_FERMI.dec │ ├── model-BToDiBaryonlnupQCD.dec │ ├── model-B_TO_2BARYON_SCALAR.dec │ ├── model-B_TO_LAMBDA_PBAR_GAMMA.dec │ ├── model-BaryonPCR.dec │ ├── model-CB3PI-MPP.dec │ ├── model-CB3PI-P00.dec │ ├── model-D0GAMMADALITZ.dec │ ├── model-D0MIXDALITZ.dec │ ├── model-DToKpienu.dec │ ├── model-D_DALITZ.dec │ ├── model-D_hhhh.dec │ ├── model-ETA2MUMUGAMMA.dec │ ├── model-ETAPRIME_DALITZ.dec │ ├── model-ETA_DALITZ.dec │ ├── model-ETA_FULLDALITZ.dec │ ├── model-ETA_LLPIPI.dec │ ├── model-ETA_PI0DALITZ.dec │ ├── model-FLATQ2.dec │ ├── model-FLATSQDALITZ.dec │ ├── model-FOURBODYPHSP.dec │ ├── model-GENERIC_DALITZ.dec │ ├── model-GOITY_ROBERTS.dec │ ├── model-HELAMP.dec │ ├── model-HQET.dec │ ├── model-HQET2.dec │ ├── model-HQET3.dec │ ├── model-HypNonLepton.dec │ ├── model-ISGW.dec │ ├── model-ISGW2.dec │ ├── model-KNUNU.dec │ ├── model-KSTARNUNU_REV.dec │ ├── model-KS_PI0MUMU.dec │ ├── model-LLSW.dec │ ├── model-LNUGAMMA.dec │ ├── model-Lb2Baryonlnu.dec │ ├── model-Lb2plnuLCSR.dec │ ├── model-Lb2plnuLQCD.dec │ ├── model-LbAmpGen.dec │ ├── model-MELIKHOV.dec │ ├── model-OMEGA_DALITZ.dec │ ├── model-PARTWAVE.dec │ ├── model-PHI_DALITZ.dec │ ├── model-PHSP.dec │ ├── model-PHSPDECAYTIMECUT.dec │ ├── model-PHSPFLATLIFETIME.dec │ ├── model-PHSP_BB_MIX.dec │ ├── model-PHSP_B_MIX.dec │ ├── model-PHSP_CP.dec │ ├── model-PI0_DALITZ.dec │ ├── model-PROPSLPOLE.dec │ ├── model-PTO3P.dec │ ├── model-PVV_CPLH.dec │ ├── model-PYCONT.dec │ ├── model-PYTHIA.dec │ ├── model-RareLbToLll.dec │ ├── model-SHD.dec │ ├── model-SLBKPOLE.dec │ ├── model-SLL.dec │ ├── model-SLN.dec │ ├── model-SLPOLE.dec │ ├── model-SSD_CP.dec │ ├── model-SSD_DirectCP.dec │ ├── model-SSS_CP.dec │ ├── model-SSS_CPT.dec │ ├── model-SSS_CP_PNG.dec │ ├── model-STS.dec │ ├── model-STS_CP.dec │ ├── model-SVP.dec │ ├── model-SVP_CP.dec │ ├── model-SVP_HELAMP.dec │ ├── model-SVS.dec │ ├── model-SVS_CP.dec │ ├── model-SVS_CPLH.dec │ ├── model-SVS_CP_ISO.dec │ ├── model-SVS_NONCPEIGEN.dec │ ├── model-SVVHELCPMIX.dec │ ├── model-SVV_CP.dec │ ├── model-SVV_CPLH.dec │ ├── model-SVV_HELAMP.dec │ ├── model-SVV_NONCPEIGEN.dec │ ├── model-TAUHADNU.dec │ ├── model-TAULNUNU.dec │ ├── model-TAUOLA.dec │ ├── model-TAUSCALARNU.dec │ ├── model-TAUVECTORNU.dec │ ├── model-THREEBODYPHSP.dec │ ├── model-TSS.dec │ ├── model-TVP.dec │ ├── model-TVS_PWAVE.dec │ ├── model-VECTORISR.dec │ ├── model-VLL.dec │ ├── model-VSP_PWAVE.dec │ ├── model-VSS.dec │ ├── model-VSS_BMIX.dec │ ├── model-VSS_MIX.dec │ ├── model-VTOSLL.dec │ ├── model-VUB.dec │ ├── model-VUB_BLNP.dec │ ├── model-VVP.dec │ ├── model-VVPIPI.dec │ ├── model-VVPIPI_WEIGHTED.dec │ ├── model-VVS_PWAVE.dec │ ├── model-XLL.dec │ ├── model-YMSTOYNSPIPICLEO.dec │ └── model-YMSTOYNSPIPICLEOBOOST.dec ├── test_Bc2BsPi_Bs2KK.dec ├── test_Bd2DDst_Ds2DmPi0.dec ├── test_Bd2DMuNu.dec ├── test_Bd2DmTauNu_Dm23PiPi0_Tau2MuNu.dec ├── test_Bd2Dst0X_D02KPi.dec ├── test_Bd2DstDst.dec ├── test_CopyDecay_RemoveDecay.dec ├── test_DtoKlnu.dec ├── test_Upsilon2S2UpsilonPiPi.dec ├── test_Upsilon4S2B0B0bar.dec ├── test_Xicc2XicPiPi.dec ├── test_custom_decay_model.dec ├── test_example_Dst.dec ├── test_issue90.dec ├── test_multiline_model.dec └── test_stable-particle.dec ├── dec ├── test_dec.py ├── test_issues.py └── test_known_decay_models.py ├── decay ├── test_decay.py ├── test_descriptor.py └── test_viewer.py ├── output └── DtoKpipipi_v2.cu ├── test_convert.py ├── test_dec_full.py ├── test_decaylanguage.py ├── test_goofit.py └── utils ├── test_particleutils.py └── test_utilities.py /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/wheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/.github/workflows/wheel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../CHANGELOG.md 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../README.md 2 | -------------------------------------------------------------------------------- /docs/reference/decaylanguage.decay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/docs/reference/decaylanguage.decay.rst -------------------------------------------------------------------------------- /docs/reference/decaylanguage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/docs/reference/decaylanguage.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/spelling_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/docs/spelling_wordlist.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/environment.yml -------------------------------------------------------------------------------- /images/DecayChain_Dst_stable-D0-and-D+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/images/DecayChain_Dst_stable-D0-and-D+.png -------------------------------------------------------------------------------- /images/DecayLanguage.ink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/images/DecayLanguage.ink.svg -------------------------------------------------------------------------------- /images/DecayLanguage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/images/DecayLanguage.pdf -------------------------------------------------------------------------------- /images/DecayLanguage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/images/DecayLanguage.png -------------------------------------------------------------------------------- /images/DecayLanguage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/images/DecayLanguage.svg -------------------------------------------------------------------------------- /models/DtoKpipipi_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/models/DtoKpipipi_v2.txt -------------------------------------------------------------------------------- /notebooks/AmpGen2GooFit D2K3p.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/notebooks/AmpGen2GooFit D2K3p.ipynb -------------------------------------------------------------------------------- /notebooks/DecayLanguageDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/notebooks/DecayLanguageDemo.ipynb -------------------------------------------------------------------------------- /notebooks/DtoKpipipi_v2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/notebooks/DtoKpipipi_v2.cu -------------------------------------------------------------------------------- /notebooks/ExampleDecFileParsingWithLark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/notebooks/ExampleDecFileParsingWithLark.ipynb -------------------------------------------------------------------------------- /notebooks/simple_model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/notebooks/simple_model.txt -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/decaylanguage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/__init__.py -------------------------------------------------------------------------------- /src/decaylanguage/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/__main__.py -------------------------------------------------------------------------------- /src/decaylanguage/_compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/decaylanguage/_compat/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/_compat/typing.py -------------------------------------------------------------------------------- /src/decaylanguage/_version.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/_version.pyi -------------------------------------------------------------------------------- /src/decaylanguage/data/DECAY_BELLE2.DEC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/data/DECAY_BELLE2.DEC -------------------------------------------------------------------------------- /src/decaylanguage/data/DECAY_LHCB.DEC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/data/DECAY_LHCB.DEC -------------------------------------------------------------------------------- /src/decaylanguage/data/MintDalitzSpecialParticles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/data/MintDalitzSpecialParticles.csv -------------------------------------------------------------------------------- /src/decaylanguage/data/MintDalitzSpecialParticles.fwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/data/MintDalitzSpecialParticles.fwf -------------------------------------------------------------------------------- /src/decaylanguage/data/MintDalitzSpecialParticlesLatex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/data/MintDalitzSpecialParticlesLatex.csv -------------------------------------------------------------------------------- /src/decaylanguage/data/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/data/README.rst -------------------------------------------------------------------------------- /src/decaylanguage/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/data/__init__.py -------------------------------------------------------------------------------- /src/decaylanguage/data/ampgen.lark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/data/ampgen.lark -------------------------------------------------------------------------------- /src/decaylanguage/data/decfile.lark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/data/decfile.lark -------------------------------------------------------------------------------- /src/decaylanguage/data/particle.lark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/data/particle.lark -------------------------------------------------------------------------------- /src/decaylanguage/dec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/dec/__init__.py -------------------------------------------------------------------------------- /src/decaylanguage/dec/dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/dec/dec.py -------------------------------------------------------------------------------- /src/decaylanguage/dec/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/dec/enums.py -------------------------------------------------------------------------------- /src/decaylanguage/dec/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/decaylanguage/decay/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/decay/__init__.py -------------------------------------------------------------------------------- /src/decaylanguage/decay/decay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/decay/decay.py -------------------------------------------------------------------------------- /src/decaylanguage/decay/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/decaylanguage/decay/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/decay/viewer.py -------------------------------------------------------------------------------- /src/decaylanguage/modeling/AmpGenReader.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/modeling/AmpGenReader.ipynb -------------------------------------------------------------------------------- /src/decaylanguage/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/modeling/__init__.py -------------------------------------------------------------------------------- /src/decaylanguage/modeling/ampgen2goofit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/modeling/ampgen2goofit.py -------------------------------------------------------------------------------- /src/decaylanguage/modeling/ampgentransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/modeling/ampgentransform.py -------------------------------------------------------------------------------- /src/decaylanguage/modeling/amplitudechain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/modeling/amplitudechain.py -------------------------------------------------------------------------------- /src/decaylanguage/modeling/decay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/modeling/decay.py -------------------------------------------------------------------------------- /src/decaylanguage/modeling/goofit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/modeling/goofit.py -------------------------------------------------------------------------------- /src/decaylanguage/modeling/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/decaylanguage/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/decaylanguage/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/utils/__init__.py -------------------------------------------------------------------------------- /src/decaylanguage/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/utils/errors.py -------------------------------------------------------------------------------- /src/decaylanguage/utils/particleutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/utils/particleutils.py -------------------------------------------------------------------------------- /src/decaylanguage/utils/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/src/decaylanguage/utils/utilities.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/README.rst -------------------------------------------------------------------------------- /tests/data/defs-aliases-chargeconj.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/defs-aliases-chargeconj.dec -------------------------------------------------------------------------------- /tests/data/duplicate-decays.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/duplicate-decays.dec -------------------------------------------------------------------------------- /tests/data/minimalistic.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/minimalistic.dec -------------------------------------------------------------------------------- /tests/data/models/model-BCL.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BCL.dec -------------------------------------------------------------------------------- /tests/data/models/model-BC_SMN.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BC_SMN.dec -------------------------------------------------------------------------------- /tests/data/models/model-BC_TMN.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BC_TMN.dec -------------------------------------------------------------------------------- /tests/data/models/model-BC_VHAD.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BC_VHAD.dec -------------------------------------------------------------------------------- /tests/data/models/model-BC_VMN.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BC_VMN.dec -------------------------------------------------------------------------------- /tests/data/models/model-BC_VPPHAD.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BC_VPPHAD.dec -------------------------------------------------------------------------------- /tests/data/models/model-BGL.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BGL.dec -------------------------------------------------------------------------------- /tests/data/models/model-BLLNUL.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BLLNUL.dec -------------------------------------------------------------------------------- /tests/data/models/model-BNOCB0TO4PICP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BNOCB0TO4PICP.dec -------------------------------------------------------------------------------- /tests/data/models/model-BNOCBPTO3HPI0.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BNOCBPTO3HPI0.dec -------------------------------------------------------------------------------- /tests/data/models/model-BNOCBPTOKSHHH.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BNOCBPTOKSHHH.dec -------------------------------------------------------------------------------- /tests/data/models/model-BQTOLLLL.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BQTOLLLL.dec -------------------------------------------------------------------------------- /tests/data/models/model-BQTOLLLLHYPERCP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BQTOLLLLHYPERCP.dec -------------------------------------------------------------------------------- /tests/data/models/model-BSTD.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BSTD.dec -------------------------------------------------------------------------------- /tests/data/models/model-BSTD_2HDMTYPE2.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BSTD_2HDMTYPE2.dec -------------------------------------------------------------------------------- /tests/data/models/model-BSTOGLLISRFSR.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BSTOGLLISRFSR.dec -------------------------------------------------------------------------------- /tests/data/models/model-BSTOGLLMNT.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BSTOGLLMNT.dec -------------------------------------------------------------------------------- /tests/data/models/model-BS_MUMUKK.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BS_MUMUKK.dec -------------------------------------------------------------------------------- /tests/data/models/model-BT02PI_CP_ISO.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BT02PI_CP_ISO.dec -------------------------------------------------------------------------------- /tests/data/models/model-BTO3PI_CP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BTO3PI_CP.dec -------------------------------------------------------------------------------- /tests/data/models/model-BTODDALITZCPK.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BTODDALITZCPK.dec -------------------------------------------------------------------------------- /tests/data/models/model-BTOSLLALI.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BTOSLLALI.dec -------------------------------------------------------------------------------- /tests/data/models/model-BTOSLLBALL.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BTOSLLBALL.dec -------------------------------------------------------------------------------- /tests/data/models/model-BTOSLLMS.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BTOSLLMS.dec -------------------------------------------------------------------------------- /tests/data/models/model-BTOSLLMSEXT.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BTOSLLMSEXT.dec -------------------------------------------------------------------------------- /tests/data/models/model-BTOVLNUBALL.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BTOVLNUBALL.dec -------------------------------------------------------------------------------- /tests/data/models/model-BTOXELNU.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BTOXELNU.dec -------------------------------------------------------------------------------- /tests/data/models/model-BTOXSGAMMA.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BTOXSGAMMA.dec -------------------------------------------------------------------------------- /tests/data/models/model-BTOXSLL.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BTOXSLL.dec -------------------------------------------------------------------------------- /tests/data/models/model-BTOXSNUNU_FERMI.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BTOXSNUNU_FERMI.dec -------------------------------------------------------------------------------- /tests/data/models/model-BToDiBaryonlnupQCD.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BToDiBaryonlnupQCD.dec -------------------------------------------------------------------------------- /tests/data/models/model-B_TO_2BARYON_SCALAR.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-B_TO_2BARYON_SCALAR.dec -------------------------------------------------------------------------------- /tests/data/models/model-B_TO_LAMBDA_PBAR_GAMMA.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-B_TO_LAMBDA_PBAR_GAMMA.dec -------------------------------------------------------------------------------- /tests/data/models/model-BaryonPCR.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-BaryonPCR.dec -------------------------------------------------------------------------------- /tests/data/models/model-CB3PI-MPP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-CB3PI-MPP.dec -------------------------------------------------------------------------------- /tests/data/models/model-CB3PI-P00.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-CB3PI-P00.dec -------------------------------------------------------------------------------- /tests/data/models/model-D0GAMMADALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-D0GAMMADALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-D0MIXDALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-D0MIXDALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-DToKpienu.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-DToKpienu.dec -------------------------------------------------------------------------------- /tests/data/models/model-D_DALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-D_DALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-D_hhhh.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-D_hhhh.dec -------------------------------------------------------------------------------- /tests/data/models/model-ETA2MUMUGAMMA.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-ETA2MUMUGAMMA.dec -------------------------------------------------------------------------------- /tests/data/models/model-ETAPRIME_DALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-ETAPRIME_DALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-ETA_DALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-ETA_DALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-ETA_FULLDALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-ETA_FULLDALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-ETA_LLPIPI.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-ETA_LLPIPI.dec -------------------------------------------------------------------------------- /tests/data/models/model-ETA_PI0DALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-ETA_PI0DALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-FLATQ2.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-FLATQ2.dec -------------------------------------------------------------------------------- /tests/data/models/model-FLATSQDALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-FLATSQDALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-FOURBODYPHSP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-FOURBODYPHSP.dec -------------------------------------------------------------------------------- /tests/data/models/model-GENERIC_DALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-GENERIC_DALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-GOITY_ROBERTS.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-GOITY_ROBERTS.dec -------------------------------------------------------------------------------- /tests/data/models/model-HELAMP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-HELAMP.dec -------------------------------------------------------------------------------- /tests/data/models/model-HQET.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-HQET.dec -------------------------------------------------------------------------------- /tests/data/models/model-HQET2.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-HQET2.dec -------------------------------------------------------------------------------- /tests/data/models/model-HQET3.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-HQET3.dec -------------------------------------------------------------------------------- /tests/data/models/model-HypNonLepton.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-HypNonLepton.dec -------------------------------------------------------------------------------- /tests/data/models/model-ISGW.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-ISGW.dec -------------------------------------------------------------------------------- /tests/data/models/model-ISGW2.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-ISGW2.dec -------------------------------------------------------------------------------- /tests/data/models/model-KNUNU.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-KNUNU.dec -------------------------------------------------------------------------------- /tests/data/models/model-KSTARNUNU_REV.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-KSTARNUNU_REV.dec -------------------------------------------------------------------------------- /tests/data/models/model-KS_PI0MUMU.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-KS_PI0MUMU.dec -------------------------------------------------------------------------------- /tests/data/models/model-LLSW.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-LLSW.dec -------------------------------------------------------------------------------- /tests/data/models/model-LNUGAMMA.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-LNUGAMMA.dec -------------------------------------------------------------------------------- /tests/data/models/model-Lb2Baryonlnu.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-Lb2Baryonlnu.dec -------------------------------------------------------------------------------- /tests/data/models/model-Lb2plnuLCSR.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-Lb2plnuLCSR.dec -------------------------------------------------------------------------------- /tests/data/models/model-Lb2plnuLQCD.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-Lb2plnuLQCD.dec -------------------------------------------------------------------------------- /tests/data/models/model-LbAmpGen.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-LbAmpGen.dec -------------------------------------------------------------------------------- /tests/data/models/model-MELIKHOV.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-MELIKHOV.dec -------------------------------------------------------------------------------- /tests/data/models/model-OMEGA_DALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-OMEGA_DALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-PARTWAVE.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PARTWAVE.dec -------------------------------------------------------------------------------- /tests/data/models/model-PHI_DALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PHI_DALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-PHSP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PHSP.dec -------------------------------------------------------------------------------- /tests/data/models/model-PHSPDECAYTIMECUT.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PHSPDECAYTIMECUT.dec -------------------------------------------------------------------------------- /tests/data/models/model-PHSPFLATLIFETIME.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PHSPFLATLIFETIME.dec -------------------------------------------------------------------------------- /tests/data/models/model-PHSP_BB_MIX.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PHSP_BB_MIX.dec -------------------------------------------------------------------------------- /tests/data/models/model-PHSP_B_MIX.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PHSP_B_MIX.dec -------------------------------------------------------------------------------- /tests/data/models/model-PHSP_CP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PHSP_CP.dec -------------------------------------------------------------------------------- /tests/data/models/model-PI0_DALITZ.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PI0_DALITZ.dec -------------------------------------------------------------------------------- /tests/data/models/model-PROPSLPOLE.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PROPSLPOLE.dec -------------------------------------------------------------------------------- /tests/data/models/model-PTO3P.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PTO3P.dec -------------------------------------------------------------------------------- /tests/data/models/model-PVV_CPLH.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PVV_CPLH.dec -------------------------------------------------------------------------------- /tests/data/models/model-PYCONT.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PYCONT.dec -------------------------------------------------------------------------------- /tests/data/models/model-PYTHIA.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-PYTHIA.dec -------------------------------------------------------------------------------- /tests/data/models/model-RareLbToLll.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-RareLbToLll.dec -------------------------------------------------------------------------------- /tests/data/models/model-SHD.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SHD.dec -------------------------------------------------------------------------------- /tests/data/models/model-SLBKPOLE.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SLBKPOLE.dec -------------------------------------------------------------------------------- /tests/data/models/model-SLL.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SLL.dec -------------------------------------------------------------------------------- /tests/data/models/model-SLN.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SLN.dec -------------------------------------------------------------------------------- /tests/data/models/model-SLPOLE.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SLPOLE.dec -------------------------------------------------------------------------------- /tests/data/models/model-SSD_CP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SSD_CP.dec -------------------------------------------------------------------------------- /tests/data/models/model-SSD_DirectCP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SSD_DirectCP.dec -------------------------------------------------------------------------------- /tests/data/models/model-SSS_CP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SSS_CP.dec -------------------------------------------------------------------------------- /tests/data/models/model-SSS_CPT.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SSS_CPT.dec -------------------------------------------------------------------------------- /tests/data/models/model-SSS_CP_PNG.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SSS_CP_PNG.dec -------------------------------------------------------------------------------- /tests/data/models/model-STS.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-STS.dec -------------------------------------------------------------------------------- /tests/data/models/model-STS_CP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-STS_CP.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVP.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVP_CP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVP_CP.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVP_HELAMP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVP_HELAMP.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVS.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVS.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVS_CP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVS_CP.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVS_CPLH.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVS_CPLH.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVS_CP_ISO.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVS_CP_ISO.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVS_NONCPEIGEN.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVS_NONCPEIGEN.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVVHELCPMIX.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVVHELCPMIX.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVV_CP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVV_CP.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVV_CPLH.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVV_CPLH.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVV_HELAMP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVV_HELAMP.dec -------------------------------------------------------------------------------- /tests/data/models/model-SVV_NONCPEIGEN.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-SVV_NONCPEIGEN.dec -------------------------------------------------------------------------------- /tests/data/models/model-TAUHADNU.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-TAUHADNU.dec -------------------------------------------------------------------------------- /tests/data/models/model-TAULNUNU.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-TAULNUNU.dec -------------------------------------------------------------------------------- /tests/data/models/model-TAUOLA.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-TAUOLA.dec -------------------------------------------------------------------------------- /tests/data/models/model-TAUSCALARNU.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-TAUSCALARNU.dec -------------------------------------------------------------------------------- /tests/data/models/model-TAUVECTORNU.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-TAUVECTORNU.dec -------------------------------------------------------------------------------- /tests/data/models/model-THREEBODYPHSP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-THREEBODYPHSP.dec -------------------------------------------------------------------------------- /tests/data/models/model-TSS.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-TSS.dec -------------------------------------------------------------------------------- /tests/data/models/model-TVP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-TVP.dec -------------------------------------------------------------------------------- /tests/data/models/model-TVS_PWAVE.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-TVS_PWAVE.dec -------------------------------------------------------------------------------- /tests/data/models/model-VECTORISR.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VECTORISR.dec -------------------------------------------------------------------------------- /tests/data/models/model-VLL.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VLL.dec -------------------------------------------------------------------------------- /tests/data/models/model-VSP_PWAVE.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VSP_PWAVE.dec -------------------------------------------------------------------------------- /tests/data/models/model-VSS.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VSS.dec -------------------------------------------------------------------------------- /tests/data/models/model-VSS_BMIX.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VSS_BMIX.dec -------------------------------------------------------------------------------- /tests/data/models/model-VSS_MIX.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VSS_MIX.dec -------------------------------------------------------------------------------- /tests/data/models/model-VTOSLL.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VTOSLL.dec -------------------------------------------------------------------------------- /tests/data/models/model-VUB.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VUB.dec -------------------------------------------------------------------------------- /tests/data/models/model-VUB_BLNP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VUB_BLNP.dec -------------------------------------------------------------------------------- /tests/data/models/model-VVP.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VVP.dec -------------------------------------------------------------------------------- /tests/data/models/model-VVPIPI.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VVPIPI.dec -------------------------------------------------------------------------------- /tests/data/models/model-VVPIPI_WEIGHTED.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VVPIPI_WEIGHTED.dec -------------------------------------------------------------------------------- /tests/data/models/model-VVS_PWAVE.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-VVS_PWAVE.dec -------------------------------------------------------------------------------- /tests/data/models/model-XLL.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-XLL.dec -------------------------------------------------------------------------------- /tests/data/models/model-YMSTOYNSPIPICLEO.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-YMSTOYNSPIPICLEO.dec -------------------------------------------------------------------------------- /tests/data/models/model-YMSTOYNSPIPICLEOBOOST.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/models/model-YMSTOYNSPIPICLEOBOOST.dec -------------------------------------------------------------------------------- /tests/data/test_Bc2BsPi_Bs2KK.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_Bc2BsPi_Bs2KK.dec -------------------------------------------------------------------------------- /tests/data/test_Bd2DDst_Ds2DmPi0.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_Bd2DDst_Ds2DmPi0.dec -------------------------------------------------------------------------------- /tests/data/test_Bd2DMuNu.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_Bd2DMuNu.dec -------------------------------------------------------------------------------- /tests/data/test_Bd2DmTauNu_Dm23PiPi0_Tau2MuNu.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_Bd2DmTauNu_Dm23PiPi0_Tau2MuNu.dec -------------------------------------------------------------------------------- /tests/data/test_Bd2Dst0X_D02KPi.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_Bd2Dst0X_D02KPi.dec -------------------------------------------------------------------------------- /tests/data/test_Bd2DstDst.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_Bd2DstDst.dec -------------------------------------------------------------------------------- /tests/data/test_CopyDecay_RemoveDecay.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_CopyDecay_RemoveDecay.dec -------------------------------------------------------------------------------- /tests/data/test_DtoKlnu.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_DtoKlnu.dec -------------------------------------------------------------------------------- /tests/data/test_Upsilon2S2UpsilonPiPi.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_Upsilon2S2UpsilonPiPi.dec -------------------------------------------------------------------------------- /tests/data/test_Upsilon4S2B0B0bar.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_Upsilon4S2B0B0bar.dec -------------------------------------------------------------------------------- /tests/data/test_Xicc2XicPiPi.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_Xicc2XicPiPi.dec -------------------------------------------------------------------------------- /tests/data/test_custom_decay_model.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_custom_decay_model.dec -------------------------------------------------------------------------------- /tests/data/test_example_Dst.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_example_Dst.dec -------------------------------------------------------------------------------- /tests/data/test_issue90.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_issue90.dec -------------------------------------------------------------------------------- /tests/data/test_multiline_model.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_multiline_model.dec -------------------------------------------------------------------------------- /tests/data/test_stable-particle.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/data/test_stable-particle.dec -------------------------------------------------------------------------------- /tests/dec/test_dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/dec/test_dec.py -------------------------------------------------------------------------------- /tests/dec/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/dec/test_issues.py -------------------------------------------------------------------------------- /tests/dec/test_known_decay_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/dec/test_known_decay_models.py -------------------------------------------------------------------------------- /tests/decay/test_decay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/decay/test_decay.py -------------------------------------------------------------------------------- /tests/decay/test_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/decay/test_descriptor.py -------------------------------------------------------------------------------- /tests/decay/test_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/decay/test_viewer.py -------------------------------------------------------------------------------- /tests/output/DtoKpipipi_v2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/output/DtoKpipipi_v2.cu -------------------------------------------------------------------------------- /tests/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/test_convert.py -------------------------------------------------------------------------------- /tests/test_dec_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/test_dec_full.py -------------------------------------------------------------------------------- /tests/test_decaylanguage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/test_decaylanguage.py -------------------------------------------------------------------------------- /tests/test_goofit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/test_goofit.py -------------------------------------------------------------------------------- /tests/utils/test_particleutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/utils/test_particleutils.py -------------------------------------------------------------------------------- /tests/utils/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/decaylanguage/HEAD/tests/utils/test_utilities.py --------------------------------------------------------------------------------