Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 703 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 703 Bytes

ctapipe MAGIC event source

This module implements the ctapipe class, needed to read the calibrated data of the MAGIC telescope system. It requires the ctapipe and uproot packages to run.

Installation

Provided ctapipe is already installed, the installation can be done like so:

https://github.com/cta-observatory/ctapipe_io_magic.git
cd ctapipe_io_magic
python setup.py install --user

Usage

import ctapipe
from ctapipe_io_magic import MAGICEventSource

with MAGICEventSource(input_url=file_name) as source:
    for event in source:
        ...some processing...