├── .gitignore ├── .gitlab-ci.yml ├── CHANGELOG.md ├── CITATION.cff ├── LICENSE ├── NOTICE ├── README.md ├── doc ├── Makefile └── source │ ├── _static │ ├── logo-wide.png │ └── logo.png │ ├── conf.py │ ├── index.rst │ ├── install.rst │ ├── reference.rst │ ├── reference │ ├── data.rst │ ├── io.rst │ ├── ogip.rst │ └── user.rst │ ├── tutorials.rst │ └── tutorials │ ├── apec.rst │ ├── bkgfitting.rst │ ├── datasets.rst │ ├── myusermodel.rst │ ├── ogip2spex.rst │ ├── ogipgenrsp.rst │ ├── simres.rst │ └── tg2spex.rst ├── examples ├── apec.py └── myusermodel.py ├── pyproject.toml ├── pyspextools ├── __init__.py ├── color.py ├── data │ ├── __init__.py │ ├── badchannels.py │ └── response.py ├── io │ ├── __init__.py │ ├── arf.py │ ├── convert.py │ ├── dataset.py │ ├── ogip.py │ ├── pha.py │ ├── pha2.py │ ├── region.py │ ├── res.py │ ├── rmf.py │ ├── spo.py │ └── tg.py ├── messages.py ├── model │ ├── __init__.py │ └── user.py └── scripts │ ├── ogip2spex.py │ ├── ogipgenrsp.py │ ├── simres.py │ └── tg2spex.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/source/_static/logo-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/_static/logo-wide.png -------------------------------------------------------------------------------- /doc/source/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/_static/logo.png -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/install.rst -------------------------------------------------------------------------------- /doc/source/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/reference.rst -------------------------------------------------------------------------------- /doc/source/reference/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/reference/data.rst -------------------------------------------------------------------------------- /doc/source/reference/io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/reference/io.rst -------------------------------------------------------------------------------- /doc/source/reference/ogip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/reference/ogip.rst -------------------------------------------------------------------------------- /doc/source/reference/user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/reference/user.rst -------------------------------------------------------------------------------- /doc/source/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/tutorials.rst -------------------------------------------------------------------------------- /doc/source/tutorials/apec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/tutorials/apec.rst -------------------------------------------------------------------------------- /doc/source/tutorials/bkgfitting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/tutorials/bkgfitting.rst -------------------------------------------------------------------------------- /doc/source/tutorials/datasets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/tutorials/datasets.rst -------------------------------------------------------------------------------- /doc/source/tutorials/myusermodel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/tutorials/myusermodel.rst -------------------------------------------------------------------------------- /doc/source/tutorials/ogip2spex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/tutorials/ogip2spex.rst -------------------------------------------------------------------------------- /doc/source/tutorials/ogipgenrsp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/tutorials/ogipgenrsp.rst -------------------------------------------------------------------------------- /doc/source/tutorials/simres.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/tutorials/simres.rst -------------------------------------------------------------------------------- /doc/source/tutorials/tg2spex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/doc/source/tutorials/tg2spex.rst -------------------------------------------------------------------------------- /examples/apec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/examples/apec.py -------------------------------------------------------------------------------- /examples/myusermodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/examples/myusermodel.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyspextools/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | __version__ = "0.7.0" 4 | -------------------------------------------------------------------------------- /pyspextools/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/color.py -------------------------------------------------------------------------------- /pyspextools/data/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | from .badchannels import * -------------------------------------------------------------------------------- /pyspextools/data/badchannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/data/badchannels.py -------------------------------------------------------------------------------- /pyspextools/data/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/data/response.py -------------------------------------------------------------------------------- /pyspextools/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/__init__.py -------------------------------------------------------------------------------- /pyspextools/io/arf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/arf.py -------------------------------------------------------------------------------- /pyspextools/io/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/convert.py -------------------------------------------------------------------------------- /pyspextools/io/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/dataset.py -------------------------------------------------------------------------------- /pyspextools/io/ogip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/ogip.py -------------------------------------------------------------------------------- /pyspextools/io/pha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/pha.py -------------------------------------------------------------------------------- /pyspextools/io/pha2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/pha2.py -------------------------------------------------------------------------------- /pyspextools/io/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/region.py -------------------------------------------------------------------------------- /pyspextools/io/res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/res.py -------------------------------------------------------------------------------- /pyspextools/io/rmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/rmf.py -------------------------------------------------------------------------------- /pyspextools/io/spo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/spo.py -------------------------------------------------------------------------------- /pyspextools/io/tg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/io/tg.py -------------------------------------------------------------------------------- /pyspextools/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/messages.py -------------------------------------------------------------------------------- /pyspextools/model/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | from .user import User 4 | -------------------------------------------------------------------------------- /pyspextools/model/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/model/user.py -------------------------------------------------------------------------------- /pyspextools/scripts/ogip2spex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/scripts/ogip2spex.py -------------------------------------------------------------------------------- /pyspextools/scripts/ogipgenrsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/scripts/ogipgenrsp.py -------------------------------------------------------------------------------- /pyspextools/scripts/simres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/scripts/simres.py -------------------------------------------------------------------------------- /pyspextools/scripts/tg2spex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/pyspextools/scripts/tg2spex.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy >= 1.22.0 2 | astropy 3 | matplotlib 4 | sphinx 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spex-xray/pyspextools/HEAD/setup.py --------------------------------------------------------------------------------