Skip to content

v0.9.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@release-drafter release-drafter released this 02 Oct 11:25
aba828c

This release should be compatible with v0.8.0, but with some bug fixes, speed improvements.

Notable bug fix:

  • the DL1 format generated by v0.8.0 was missing the telescope trigger time, due to a bug which was fixed in this version.

API changes:

  • EventSeeker (which provides random access to event sources) now relies on the get_event_index() and get_event_id() methods to move between events, rather than an implicit __get__ function. Code that used it should change as follows:

    previously:

    event = seeker[12]  # move to event at index 12
    event = seeker["1233"] # move to event id 1233

    now:

    event = seeker.get_event_index(12)
    event = seeker.get_event_id(1233)

What's Changed since v0.8.0

Contributors

@Bultako, @Hckjs, @LukasNickel, @maxnoe, @kosack, @moralejo, @nbiederbeck, @vuillaut and @watsonjj