Releases: cta-observatory/pyeventio
Releases · cta-observatory/pyeventio
v0.11.0
Perfomance improvements
- Reduced python overhead in
read
, tell
and seek
methods of EventIOObject
.
- Use cython to read
MCEvent
data returning a dict instead of a structured array now.
v0.10.0
Fixes, improvements and updated examples
- Fix broken repr of
PixelSet
- Fix some lying docs
- Update examples to use
SimTelFile
- Show class name in `eventio_print_object_information
- Aggregate
TelescopeEvent
s and TrackingInformation
v0.9.3
Add missing c file in eventio.simtel
to package_data so it gets into the PyPI tar ball
v0.9.2
Include the converted cython extension c-files to make it installable without cython
v0.9.1
Fix a performance regression
Parsing MCEvent was much slower due to the use of recarray.append_field
, fixed now.
v0.9.0
SimTelFile
We now provide a higher level abstractions over SimTelArray Outputfiles called SimTelFile
hat iterates over array events.
v0.8.0
Add command line tools
We now provide three command line tools, to look into eventio
files.
eventio_print_object_information
prints a table of container types, versions and counts.
eventio_print_structure
prints all containers and subcontainer decriptions in a file
eventio_plot_histograms
uses matlplotlib to plot the histograms stored in an eventio file
v0.7.0
Add Histogram support
To see all histograms in a file, run
$ python examples/plot_hists.py /path/to/simtel/file
v0.6.0
SimTel support
- Most simtel types got implemented
- Should be able to read CTA prod2, prod3b and prod4 simulations, both simtel and corsika
v0.5.1
v0.5.1
- Fix dtype of cherenkov photo electron image (float32 -> int32)
- Allow access to simtel history from
SimTelFile