MapEvaluator¶
-
class
gammapy.cube.MapEvaluator(model=None, exposure=None, background=None, psf=None, edisp=None)[source]¶ Bases:
objectSky model evaluation on maps.
This is a first attempt to compute flux as well as predicted counts maps.
The basic idea is that this evaluator is created once at the start of the analysis, and pre-computes some things. It it then evaluated many times during likelihood fit when model parameters change, re-using pre-computed quantities each time. At the moment it does some things, e.g. cache and re-use energy and coordinate grids, but overall it is not an efficient implementation yet.
For now, we only make it work for 3D WCS maps with an energy axis. No HPX, no other axes, those can be added later here or via new separate model evaluator classes.
We should discuss how to organise the model and IRF evaluation code, and things like integrations and convolutions in a good way.
Parameters: model :
SkyModelSky model
exposure :
MapExposure map
background :
Mapbackground map
psf :
PSFKernelPSF kernel
edisp :
EnergyDispersionEnergy dispersion
Attributes Summary
bin_volumeMap pixel bin volume (solid angle times energy bin width). energy_bin_widthEnergy axis bin widths ( astropy.units.Quantity)energy_centerEnergy axis bin centers ( Quantity)energy_edgesEnergy axis bin edges ( Quantity)geomgeom_imagelatlonlon_latSpatial coordinate pixel centers. solid_angleSolid angle per pixel Methods Summary
apply_edisp(data)Convolve map data with energy dispersion. apply_exposure(flux)Compute npred cube apply_psf(npred)Convolve npred cube with PSF compute_dnde()Compute model differential flux at map pixel centers. compute_flux()Compute model integral flux over map pixel volumes. compute_npred()Evaluate model predicted counts. Attributes Documentation
-
bin_volume¶ Map pixel bin volume (solid angle times energy bin width).
-
energy_bin_width¶ Energy axis bin widths (
astropy.units.Quantity)
-
geom¶
-
geom_image¶
-
lat¶
-
lon¶
-
solid_angle¶ Solid angle per pixel
Methods Documentation
-
compute_dnde()[source]¶ Compute model differential flux at map pixel centers.
Returns: model_map :
MapSky cube with data filled with evaluated model values. Units:
cm-2 s-1 TeV-1 deg-2
-