Skip to content

Commit 8c438c7

Browse files
authored
Merge pull request #63 from cta-observatory/v0.19_fix
Fix CI
2 parents fec17de + 1e5de0c commit 8c438c7

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## *ctapipe* MAGIC event source
22

3-
EventSource plugin for *ctapipe*, needed to read the calibrated data of the MAGIC telescope system. It requires the [*ctapipe*](https://github.com/cta-observatory/ctapipe) (v0.17.0) and [*uproot*](https://github.com/scikit-hep/uproot4) (>=5) packages to run.
3+
EventSource plugin for *ctapipe*, needed to read the calibrated data of the MAGIC telescope system. It requires the [*ctapipe*](https://github.com/cta-observatory/ctapipe) (v0.19.0) and [*uproot*](https://github.com/scikit-hep/uproot4) (>=5) packages to run.
44

55
#### Installation
66

@@ -111,4 +111,6 @@ Some general information about the simulated data, useful for IRF calculation, a
111111
- v0.4.5: fixed automatic tests, add possibility to choose between effective and nominal focal length
112112
- v0.4.6: add support to read in data taken in mono mode (full for real data, partial for MCs). Fixed bug in recognition of mono/stereo or standard trigger/SumT data (added also for MC)
113113
- v0.4.7: add full support to read in real and MC data taken in mono mode, and with SumT. Added treatment of unsuitable pixels for MC data. Added readout of true XMax value from MC data (usually not available, filled with 0 otherwise)
114-
- v0.5.0: release compatible with ctapipe 0.17. Also, the equivalent focal length is set to the correct value used in MAGIC simulations (i.e. 16.97 meters)
114+
- v0.5.0: release compatible with ctapipe 0.17. Also, the equivalent focal length is set to the
115+
correct value used in MAGIC simulations (i.e. 16.97 meters)
116+
- v0.5.1: release compatible with ctapipe 0.19

eventsource_subclasses.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from ctapipe.io import EventSource
2-
from ctapipe.core import non_abstract_children
32

4-
for cls in non_abstract_children(EventSource):
3+
for cls in EventSource.non_abstract_subclasses().values():
54
print(cls.__name__)

0 commit comments

Comments
 (0)