Note

You are not reading the most up to date version of Gammapy documentation.
Access the latest stable version v1.3 or the list of Gammapy releases.

IRFStacker

class gammapy.irf.IRFStacker(list_aeff, list_livetime, list_edisp=None, list_low_threshold=None, list_high_threshold=None)[source]

Bases: object

Stack instrument response functions.

Compute mean effective area and the mean energy dispersion for a given for a given list of instrument response functions. Results are stored as attributes.

The stacking of j elements is implemented as follows. k and l denote a bin in reconstructed and true energy, respectively.

ϵjk={1,if bin k is inside the energy thresholds0,otherwise¯t=jti¯aeffl=jaeffjltj¯t¯edispkl=jedispjklaeffjltjϵjkjaeffjltj
Parameters:

list_aeff : list

list_livetime : list

list of Quantity (livetime)

list_edisp : list

list_low_threshold : list

list of low energy threshold, optional for effective area mean computation

list_high_threshold : list

list of high energy threshold, optional for effective area mean computation

Methods Summary

stack_aeff() Compute mean effective area (EffectiveAreaTable).
stack_edisp() Compute mean energy dispersion (EnergyDispersion).

Methods Documentation

stack_aeff()[source]

Compute mean effective area (EffectiveAreaTable).

stack_edisp()[source]

Compute mean energy dispersion (EnergyDispersion).