EventList

class gammapy.data.EventList(table)[source]

Bases: object

Event list.

Data format specification: ref:iact-events

Event list data is stored in table (Table) data member.

TODO: merge this class with EventListDataset, which also holds a GTI extension.

The most important reconstructed event parameters are available as the following columns:

  • TIME - Mission elapsed time (sec)
  • RA, DEC - ICRS system position (deg)
  • ENERGY - Energy (usually MeV for Fermi and TeV for IACTs)

Other optional (columns) that are sometimes useful for high-level analysis:

  • GLON, GLAT - Galactic coordinates (deg)
  • DETX, DETY - Field of view coordinates (deg)

Note that when reading data for analysis you shouldn’t use those values directly, but access them via properties which create objects of the appropriate class:

Parameters:

table : Table

Event list table

Examples

To load an example H.E.S.S. event list:

>>> from gammapy.data import EventList
>>> filename = '$GAMMAPY_EXTRA/test_datasets/unbundled/hess/run_0023037_hard_eventlist.fits.gz'
>>> events = EventList.read(filename)

To load an example Fermi-LAT event list (the one corresponding to the 2FHL catalog dataset):

>>> filename = '$GAMMAPY_EXTRA/datasets/fermi_2fhl/2fhl_events.fits.gz'
>>> events = EventList.read(filename)

Attributes Summary

altaz Event horizontal sky coordinates (SkyCoord).
energy Event energies (Quantity).
galactic Event Galactic sky coordinates (SkyCoord).
observation_dead_time_fraction Dead-time fraction (float).
observation_live_time_duration Live-time duration in seconds (Quantity).
observation_time_duration Observation time duration in seconds (Quantity).
observatory_earth_location Observatory location (EarthLocation).
offset Event offset from the array pointing position (Angle).
pointing_radec Pointing RA / DEC sky coordinates (SkyCoord).
radec Event RA / DEC sky coordinates (SkyCoord).
time Event times (Time).

Methods Summary

add_galactic_columns() Add Galactic coordinate columns to the table.
filter_circular_region(region) Create selection mask for event in given circular regions.
peek() Summary plots.
plot_energy_hist([ax, ebounds]) Plot counts as a function of energy.
plot_energy_offset([ax]) Plot energy dependence as a function of camera offset.
plot_image([ax, number_bins]) Plot the counts as a function of x and y camera coordinate.
plot_image_radec([ax, number_bins]) Plot a sky counts image in RADEC coordinate.
plot_offset_hist([ax]) Plot counts as a function of camera offset.
plot_time([ax]) Plots an event rate time curve.
plot_time_map([ax]) A time map showing for each event the time between the previous and following event.
read(filename, **kwargs) Read from FITS file.
select_circular_region(region) Select events in circular regions.
select_energy(energy_band) Select events in energy band.
select_offset(offset_band) Select events in offset band.
select_row_subset(row_specifier) Select table row subset.
select_sky_box(lon_lim, lat_lim[, frame]) Select events in sky box.
select_sky_cone(center, radius) Select events in sky circle.
select_sky_ring(center, inner_radius, ...) Select events in ring region on the sky.
select_time(time_interval) Select events in time interval.
stack(event_lists, **kwargs) Stack (concatenate) list of event lists.

Attributes Documentation

altaz

Event horizontal sky coordinates (SkyCoord).

energy

Event energies (Quantity).

galactic

Event Galactic sky coordinates (SkyCoord).

Note: uses the GLON and GLAT columns. If only RA and DEC are present use the explicit event_list.radec.to('galactic') instead.

observation_dead_time_fraction

Dead-time fraction (float).

Defined as dead-time over observation time.

Dead-time is defined as the time during the observation where the detector didn’t record events: http://en.wikipedia.org/wiki/Dead_time http://adsabs.harvard.edu/abs/2004APh....22..285F

The dead-time fraction is used in the live-time computation, which in turn is used in the exposure and flux computation.

observation_live_time_duration

Live-time duration in seconds (Quantity).

The dead-time-corrected observation time.

Computed as t_live = t_observation * (1 - f_dead) where f_dead is the dead-time fraction.

observation_time_duration

Observation time duration in seconds (Quantity).

The wall time, including dead-time.

observatory_earth_location

Observatory location (EarthLocation).

offset

Event offset from the array pointing position (Angle).

pointing_radec

Pointing RA / DEC sky coordinates (SkyCoord).

radec

Event RA / DEC sky coordinates (SkyCoord).

TODO: the radec and galactic properties should be cached as table columns

time

Event times (Time).

Notes

Times are automatically converted to 64-bit floats. With 32-bit floats times will be incorrect by a few seconds when e.g. adding them to the reference time.

Methods Documentation

add_galactic_columns()[source]

Add Galactic coordinate columns to the table.

Adds the following columns to the table if not already present: - “GLON” - Galactic longitude (deg) - “GLAT” - Galactic latitude (deg)

filter_circular_region(region)[source]

Create selection mask for event in given circular regions.

TODO: Extend to support generic regions

Parameters:

region : list of SkyRegion

List of sky regions

Returns:

index_array : np.array

Index array of selected events

peek()[source]

Summary plots.

plot_energy_hist(ax=None, ebounds=None, **kwargs)[source]

Plot counts as a function of energy.

plot_energy_offset(ax=None)[source]

Plot energy dependence as a function of camera offset.

plot_image(ax=None, number_bins=50)[source]

Plot the counts as a function of x and y camera coordinate.

TODO: fix the histogramming ... this example shows that it’s currently incorrect: gammapy-data-show ~/work/hess-host-analyses/hap-hd-example-files/run023000-023199/run023037/hess_events_023037.fits.gz events -p Maybe we can use the FOVCube class for this with one energy bin. Or add a separate FOVImage class.

plot_image_radec(ax=None, number_bins=50)[source]

Plot a sky counts image in RADEC coordinate.

TODO: fix the histogramming ... this example shows that it’s currently incorrect: gammapy-data-show ~/work/hess-host-analyses/hap-hd-example-files/run023000-023199/run023037/hess_events_023037.fits.gz events -p Maybe we can use the FOVCube class for this with one energy bin. Or add a separate FOVImage class.

plot_offset_hist(ax=None)[source]

Plot counts as a function of camera offset.

plot_time(ax=None)[source]

Plots an event rate time curve.

Parameters:

ax : Axes or None

Axes

Returns:

ax : Axes

Axes

Examples

Plot the rate of the events:

import matplotlib.pyplot as plt
from gammapy.data import DataStore

ds = DataStore.from_dir('$GAMMAPY_EXTRA/datasets/hess-crab4-hd-hap-prod2')
events = ds.obs(obs_id=23523).events
events.plot_time_map()
plt.show()

(Source code, png, hires.png, pdf)

../_images/gammapy-data-EventList-1.png
plot_time_map(ax=None)[source]

A time map showing for each event the time between the previous and following event.

The use and implementation are described here: https://districtdatalabs.silvrback.com/time-maps-visualizing-discrete-events-across-many-timescales

Parameters:

ax : Axes or None

Axes

Returns:

ax : Axes

Axes

Examples

Plot a time map of the events:

import matplotlib.pyplot as plt
from gammapy.data import DataStore

ds = DataStore.from_dir('$GAMMAPY_EXTRA/datasets/hess-crab4-hd-hap-prod2')
events = ds.obs(obs_id=23523).events
events.plot_time_map()
plt.show()

(Source code, png, hires.png, pdf)

../_images/gammapy-data-EventList-2.png
classmethod read(filename, **kwargs)[source]

Read from FITS file.

Format specification: EVENTS extension

Parameters:

filename : Path, str

Filename

select_circular_region(region)[source]

Select events in circular regions.

TODO: Extend to support generic regions

Parameters:

region : CircleSkyRegion or list of CircleSkyRegion

(List of) sky region(s)

Returns:

event_list : EventList

Copy of event list with selection applied.

select_energy(energy_band)[source]

Select events in energy band.

Parameters:

energy_band : Quantity

Energy band [energy_min, energy_max)

Returns:

event_list : EventList

Copy of event list with selection applied.

Examples

>>> from astropy.units import Quantity
>>> from gammapy.data import EventList
>>> event_list = EventList.read('events.fits')
>>> energy_band = Quantity([1, 20], 'TeV')
>>> event_list = event_list.select_energy()
select_offset(offset_band)[source]

Select events in offset band.

Parameters:

offset_band : Angle

offset band [offset_min, offset_max)

Returns:

event_list : EventList

Copy of event list with selection applied.

select_row_subset(row_specifier)[source]

Select table row subset.

Parameters:

row_specifier : slice, int, or array of ints

Specification for rows to select, passed on to self.table[row_specifier].

Returns:

event_list : EventList

New event list with table row subset selected

Examples

Use a boolean mask as row_specifier:

mask = events.table[‘FOO’] > 42 events2 = events.select_row_subset(mask)

Use row index array as row_specifier:

idx = np.where(events.table[‘FOO’] > 42)[0] events2 = events.select_row_subset(idx)
select_sky_box(lon_lim, lat_lim, frame='icrs')[source]

Select events in sky box.

TODO: move gammapy.catalog.select_sky_box to gammapy.utils.

select_sky_cone(center, radius)[source]

Select events in sky circle.

Parameters:

center : SkyCoord

Sky circle center

radius : Angle

Sky circle radius

Returns:

event_list : EventList

Copy of event list with selection applied.

select_sky_ring(center, inner_radius, outer_radius)[source]

Select events in ring region on the sky.

Parameters:

center : SkyCoord

Sky ring center

inner_radius, outer_radius : Angle

Sky ring inner and outer radius

Returns:

event_list : EventList

Copy of event list with selection applied.

select_time(time_interval)[source]

Select events in time interval.

classmethod stack(event_lists, **kwargs)[source]

Stack (concatenate) list of event lists.

Calls vstack.

Parameters:

event_lists : list

list of EventList to stack