Skip to content

KM3NeT/km3irf

Repository files navigation

image

image

image

image

image

KM3NeT instrument response functions

This project provides a versatile tool that can be used to quickly analyze the sensitivity of the KM3NeT detector for various source models. Currently it considers only point-like sources. The main feature of the tool is deep targeting to gammapy software. At same time it is independent from installation of gammapy software. For further analysis in gammapy, km3irf provides next modules:

  • Instrument response function (IRF)
    • Effective area (Aeff)
    • Energy dispertion (Edisp)
    • Point spread function (PSF)
  • Data set (in progress)
  • Event list (in progress)

Installation

It is recommended to create an isolated virtualenvironment to not interfere with other Python projects, preferably inside the project's folder. First clone the repository with:

git clone git@git.km3net.de:km3py/km3irf.git

or:

git clone https://git.km3net.de/km3py/km3irf.git

Create and acitvate a virtual environment:

cd km3irf
python3 -m venv venv
. venv/bin/activate

Install the package with:

make install

You can also install the package directly from Pypi via pip package manager (no cloning needed). It can easily be done into any Python environment with next command:

pip install km3irf

To install all the development dependencies, in case you want to contribute or run the test suite:

make install-dev
make test

---

Created with ``cookiecutter https://git.km3net.de/templates/python-project``