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_aefflist

list of EffectiveAreaTable

list_livetimelist

list of Quantity (livetime)

list_edisplist

list of EnergyDispersion

list_low_thresholdlist

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

list_high_thresholdlist

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

Methods Summary

stack_aeff(self)

Compute mean effective area (EffectiveAreaTable).

stack_edisp(self)

Compute mean energy dispersion (EnergyDispersion).

Methods Documentation

stack_aeff(self)[source]

Compute mean effective area (EffectiveAreaTable).

stack_edisp(self)[source]

Compute mean energy dispersion (EnergyDispersion).