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=∑jaeffjl⋅tj¯t¯edispkl=∑jedispjkl⋅aeffjl⋅tj⋅ϵjk∑jaeffjl⋅tjParameters: list_aeff : list
list of
EffectiveAreaTable
list_livetime : list
list of
Quantity
(livetime)list_edisp : list
list of
EnergyDispersion
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
).
-