Gammapy
-Date: Feb 02, 2024 Version: 1.2.dev1863+ga8285d4fc
+Date: Feb 02, 2024 Version: 1.2.dev1865+gcce7eee8f
Useful links:
Web page |
Recipes |
diff --git a/docs/dev/notebooks/dev/tutorials/api/datasets.ipynb b/docs/dev/notebooks/dev/tutorials/api/datasets.ipynb
index c6312c7f6f5..aa95d676afe 100644
--- a/docs/dev/notebooks/dev/tutorials/api/datasets.ipynb
+++ b/docs/dev/notebooks/dev/tutorials/api/datasets.ipynb
@@ -411,7 +411,25 @@
},
"outputs": [],
"source": [
- "e_min, e_max = dataset_cta.energy_range\n\n# To see the low energy threshold at each point\n\ne_min.plot(add_cbar=True)\nplt.show()\n\n# To see the high energy threshold at each point\n\ne_max.plot(add_cbar=True)\nplt.show()"
+ "e_min, e_max = dataset_cta.energy_range\n\n# To see the low energy threshold at each point\n\ne_min.plot(add_cbar=True)\nplt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "To see the high energy threshold at each point\n\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [],
+ "source": [
+ "e_max.plot(add_cbar=True)\nplt.show()"
]
},
{
diff --git a/docs/dev/notebooks/dev/tutorials/api/mask_maps.ipynb b/docs/dev/notebooks/dev/tutorials/api/mask_maps.ipynb
index fad641b7c66..10414b1fe57 100644
--- a/docs/dev/notebooks/dev/tutorials/api/mask_maps.ipynb
+++ b/docs/dev/notebooks/dev/tutorials/api/mask_maps.ipynb
@@ -479,7 +479,7 @@
},
"outputs": [],
"source": [
- "mask = significance_mask_inv.binary_erode(width=0.2 * u.deg, kernel=\"disk\")\nmask.plot()\nplt.show()\n\nmask = significance_mask_inv.binary_dilate(width=0.2 * u.deg)\nmask.plot()\nplt.show()"
+ "fig, (ax1, ax2) = plt.subplots(\n figsize=(11, 5), ncols=2, subplot_kw={\"projection\": significance_mask_inv.geom.wcs}\n)\n\nmask = significance_mask_inv.binary_erode(width=0.2 * u.deg, kernel=\"disk\")\nmask.plot(ax=ax1)\n\nmask = significance_mask_inv.binary_dilate(width=0.2 * u.deg)\nmask.plot(ax=ax2)\nplt.show()"
]
},
{
diff --git a/docs/dev/notebooks/dev/tutorials/api/observation_clustering.ipynb b/docs/dev/notebooks/dev/tutorials/api/observation_clustering.ipynb
index 2c93bee9504..4ff8b116788 100644
--- a/docs/dev/notebooks/dev/tutorials/api/observation_clustering.ipynb
+++ b/docs/dev/notebooks/dev/tutorials/api/observation_clustering.ipynb
@@ -116,7 +116,7 @@
},
"outputs": [],
"source": [
- "fix, ax = plt.subplots(1, 1, figsize=(7, 5))\nfor obs in grouped_observations[\"group_low_zenith\"]:\n ax.plot(\n obs.get_pointing_altaz(time=obs.tmid).zen,\n obs.meta.optional[\"MUONEFF\"],\n \"d\",\n color=\"red\",\n )\nfor obs in grouped_observations[\"group_high_zenith\"]:\n ax.plot(\n obs.get_pointing_altaz(time=obs.tmid).zen,\n obs.meta.optional[\"MUONEFF\"],\n \"o\",\n color=\"blue\",\n )\nax.set_ylabel(\"Muon efficiency\")\nax.set_xlabel(\"Zenith angle (deg)\")\nax.axvline(median_zenith.value, ls=\"--\", color=\"black\")"
+ "fix, ax = plt.subplots(1, 1, figsize=(7, 5))\nfor obs in grouped_observations[\"group_low_zenith\"]:\n ax.plot(\n obs.get_pointing_altaz(time=obs.tmid).zen,\n obs.meta.optional[\"MUONEFF\"],\n \"d\",\n color=\"red\",\n )\nfor obs in grouped_observations[\"group_high_zenith\"]:\n ax.plot(\n obs.get_pointing_altaz(time=obs.tmid).zen,\n obs.meta.optional[\"MUONEFF\"],\n \"o\",\n color=\"blue\",\n )\nax.set_ylabel(\"Muon efficiency\")\nax.set_xlabel(\"Zenith angle (deg)\")\nax.axvline(median_zenith.value, ls=\"--\", color=\"black\")\nplt.show()"
]
},
{
@@ -195,7 +195,7 @@
},
"outputs": [],
"source": [
- "obs_clusters = observations.group_by_label(features[\"labels\"])\nprint(obs_clusters)\n\n\nmask_1 = features[\"labels\"] == 1\nmask_2 = features[\"labels\"] == 2\nfix, ax = plt.subplots(1, 1, figsize=(7, 5))\nax.set_ylabel(\"edisp-res\")\nax.set_xlabel(\"psf-radius\")\nax.plot(\n features_irfs[mask_1][\"edisp-res\"],\n features_irfs[mask_1][\"psf-radius\"],\n \"d\",\n color=\"green\",\n label=\"Group 1\",\n)\nax.plot(\n features_irfs[mask_2][\"edisp-res\"],\n features_irfs[mask_2][\"psf-radius\"],\n \"o\",\n color=\"magenta\",\n label=\"Group 2\",\n)\nax.legend()"
+ "obs_clusters = observations.group_by_label(features[\"labels\"])\nprint(obs_clusters)\n\n\nmask_1 = features[\"labels\"] == 1\nmask_2 = features[\"labels\"] == 2\nfix, ax = plt.subplots(1, 1, figsize=(7, 5))\nax.set_ylabel(\"edisp-res\")\nax.set_xlabel(\"psf-radius\")\nax.plot(\n features_irfs[mask_1][\"edisp-res\"],\n features_irfs[mask_1][\"psf-radius\"],\n \"d\",\n color=\"green\",\n label=\"Group 1\",\n)\nax.plot(\n features_irfs[mask_2][\"edisp-res\"],\n features_irfs[mask_2][\"psf-radius\"],\n \"o\",\n color=\"magenta\",\n label=\"Group 2\",\n)\nax.legend()\nplt.show()"
]
},
{
diff --git a/docs/dev/notebooks/dev/tutorials/data/cta.ipynb b/docs/dev/notebooks/dev/tutorials/data/cta.ipynb
index 9d5c483067b..c5241e1efd8 100644
--- a/docs/dev/notebooks/dev/tutorials/data/cta.ipynb
+++ b/docs/dev/notebooks/dev/tutorials/data/cta.ipynb
@@ -260,7 +260,25 @@
},
"outputs": [],
"source": [
- "irfs[\"psf\"].peek()\nplt.show()\n\n# This is how for analysis you could slice out the PSF\n# at a given field of view offset\nirfs[\"psf\"].plot_containment_radius_vs_energy(\n offset=[1] * u.deg, fraction=[0.68, 0.8, 0.95]\n)\nplt.show()"
+ "irfs[\"psf\"].peek()\nplt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "This is how for analysis you could slice out the PSF\nat a given field of view offset\n\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [],
+ "source": [
+ "irfs[\"psf\"].plot_containment_radius_vs_energy(\n offset=[1] * u.deg, fraction=[0.68, 0.8, 0.95]\n)\nplt.show()"
]
},
{
diff --git a/docs/dev/objects.inv b/docs/dev/objects.inv
index 4f837db0069..d55b72e8512 100644
Binary files a/docs/dev/objects.inv and b/docs/dev/objects.inv differ
diff --git a/docs/dev/plot_directive/api/gammapy-irf-EnergyDependentMultiGaussPSF-1.pdf b/docs/dev/plot_directive/api/gammapy-irf-EnergyDependentMultiGaussPSF-1.pdf
index 7c79eb0090d..92c241ee6ae 100644
Binary files a/docs/dev/plot_directive/api/gammapy-irf-EnergyDependentMultiGaussPSF-1.pdf and b/docs/dev/plot_directive/api/gammapy-irf-EnergyDependentMultiGaussPSF-1.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/astro/population/plot_radial_distributions.pdf b/docs/dev/plot_directive/user-guide/astro/population/plot_radial_distributions.pdf
index 41800a2c247..5790f2cb719 100644
Binary files a/docs/dev/plot_directive/user-guide/astro/population/plot_radial_distributions.pdf and b/docs/dev/plot_directive/user-guide/astro/population/plot_radial_distributions.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arm_models.pdf b/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arm_models.pdf
index 4e9f9ee51f0..6fb66b9e9a8 100644
Binary files a/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arm_models.pdf and b/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arm_models.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.hires.png b/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.hires.png
index c758c4a14c1..cb695953405 100644
Binary files a/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.hires.png and b/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.hires.png differ
diff --git a/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.pdf b/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.pdf
index 3dce4199937..f39c42f143b 100644
Binary files a/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.pdf and b/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.png b/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.png
index f6318f4f4b6..81a5413a2a8 100644
Binary files a/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.png and b/docs/dev/plot_directive/user-guide/astro/population/plot_spiral_arms.png differ
diff --git a/docs/dev/plot_directive/user-guide/astro/population/plot_velocity_distributions.pdf b/docs/dev/plot_directive/user-guide/astro/population/plot_velocity_distributions.pdf
index a450b56117c..1dd39a874c4 100644
Binary files a/docs/dev/plot_directive/user-guide/astro/population/plot_velocity_distributions.pdf and b/docs/dev/plot_directive/user-guide/astro/population/plot_velocity_distributions.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/astro/source/plot_pulsar_spindown.pdf b/docs/dev/plot_directive/user-guide/astro/source/plot_pulsar_spindown.pdf
index e09d69e37d2..478f68e00a1 100644
Binary files a/docs/dev/plot_directive/user-guide/astro/source/plot_pulsar_spindown.pdf and b/docs/dev/plot_directive/user-guide/astro/source/plot_pulsar_spindown.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/astro/source/plot_pwn_evolution.pdf b/docs/dev/plot_directive/user-guide/astro/source/plot_pwn_evolution.pdf
index 5f04eb61e7a..adb3f3e3b96 100644
Binary files a/docs/dev/plot_directive/user-guide/astro/source/plot_pwn_evolution.pdf and b/docs/dev/plot_directive/user-guide/astro/source/plot_pwn_evolution.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/astro/source/plot_snr_brightness_evolution.pdf b/docs/dev/plot_directive/user-guide/astro/source/plot_snr_brightness_evolution.pdf
index bb68206c3e7..c64bf445d86 100644
Binary files a/docs/dev/plot_directive/user-guide/astro/source/plot_snr_brightness_evolution.pdf and b/docs/dev/plot_directive/user-guide/astro/source/plot_snr_brightness_evolution.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/astro/source/plot_snr_radius_evolution.pdf b/docs/dev/plot_directive/user-guide/astro/source/plot_snr_radius_evolution.pdf
index 9273d7e718b..9da3700ef77 100644
Binary files a/docs/dev/plot_directive/user-guide/astro/source/plot_snr_radius_evolution.pdf and b/docs/dev/plot_directive/user-guide/astro/source/plot_snr_radius_evolution.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/datasets/plot_stack.pdf b/docs/dev/plot_directive/user-guide/datasets/plot_stack.pdf
index 8453938ba4f..1dc0cf1142d 100644
Binary files a/docs/dev/plot_directive/user-guide/datasets/plot_stack.pdf and b/docs/dev/plot_directive/user-guide/datasets/plot_stack.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/dl3-1.pdf b/docs/dev/plot_directive/user-guide/dl3-1.pdf
index 42b4a21605f..1c85b1a4e9f 100644
Binary files a/docs/dev/plot_directive/user-guide/dl3-1.pdf and b/docs/dev/plot_directive/user-guide/dl3-1.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/irf/edisp-1.pdf b/docs/dev/plot_directive/user-guide/irf/edisp-1.pdf
index 5b69c4d057d..b3e0851a7f8 100644
Binary files a/docs/dev/plot_directive/user-guide/irf/edisp-1.pdf and b/docs/dev/plot_directive/user-guide/irf/edisp-1.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/irf/plot_aeff.pdf b/docs/dev/plot_directive/user-guide/irf/plot_aeff.pdf
index 6c459d0c112..80326703e26 100644
Binary files a/docs/dev/plot_directive/user-guide/irf/plot_aeff.pdf and b/docs/dev/plot_directive/user-guide/irf/plot_aeff.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/irf/plot_aeff_param.pdf b/docs/dev/plot_directive/user-guide/irf/plot_aeff_param.pdf
index b5a67ee470b..aaf01119eec 100644
Binary files a/docs/dev/plot_directive/user-guide/irf/plot_aeff_param.pdf and b/docs/dev/plot_directive/user-guide/irf/plot_aeff_param.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/irf/plot_bkg_3d.pdf b/docs/dev/plot_directive/user-guide/irf/plot_bkg_3d.pdf
index 8fcf1e27e7c..8ba92e850d4 100644
Binary files a/docs/dev/plot_directive/user-guide/irf/plot_bkg_3d.pdf and b/docs/dev/plot_directive/user-guide/irf/plot_bkg_3d.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/irf/plot_edisp.pdf b/docs/dev/plot_directive/user-guide/irf/plot_edisp.pdf
index 14893b79712..afaeccee9c0 100644
Binary files a/docs/dev/plot_directive/user-guide/irf/plot_edisp.pdf and b/docs/dev/plot_directive/user-guide/irf/plot_edisp.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/irf/plot_edisp_kernel.pdf b/docs/dev/plot_directive/user-guide/irf/plot_edisp_kernel.pdf
index 0fa99452c76..9d0d0c9736e 100644
Binary files a/docs/dev/plot_directive/user-guide/irf/plot_edisp_kernel.pdf and b/docs/dev/plot_directive/user-guide/irf/plot_edisp_kernel.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/irf/plot_edisp_kernel_param.pdf b/docs/dev/plot_directive/user-guide/irf/plot_edisp_kernel_param.pdf
index 59cc5211590..271ee9d188f 100644
Binary files a/docs/dev/plot_directive/user-guide/irf/plot_edisp_kernel_param.pdf and b/docs/dev/plot_directive/user-guide/irf/plot_edisp_kernel_param.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/irf/plot_psf.pdf b/docs/dev/plot_directive/user-guide/irf/plot_psf.pdf
index afc4b42e25f..180965974b7 100644
Binary files a/docs/dev/plot_directive/user-guide/irf/plot_psf.pdf and b/docs/dev/plot_directive/user-guide/irf/plot_psf.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/makers/create_region.pdf b/docs/dev/plot_directive/user-guide/makers/create_region.pdf
index 1c45337c410..03b4a7ba658 100644
Binary files a/docs/dev/plot_directive/user-guide/makers/create_region.pdf and b/docs/dev/plot_directive/user-guide/makers/create_region.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/makers/make_rectangular_reflected_background.pdf b/docs/dev/plot_directive/user-guide/makers/make_rectangular_reflected_background.pdf
index 2b48e10e3d1..ce802fb846b 100644
Binary files a/docs/dev/plot_directive/user-guide/makers/make_rectangular_reflected_background.pdf and b/docs/dev/plot_directive/user-guide/makers/make_rectangular_reflected_background.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/makers/make_reflected_regions.pdf b/docs/dev/plot_directive/user-guide/makers/make_reflected_regions.pdf
index 3ac4ccf8262..c7cd525dab9 100644
Binary files a/docs/dev/plot_directive/user-guide/makers/make_reflected_regions.pdf and b/docs/dev/plot_directive/user-guide/makers/make_reflected_regions.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/maps/regionmap-1.pdf b/docs/dev/plot_directive/user-guide/maps/regionmap-1.pdf
index 1cfef8a0f73..4f2e9782f5a 100644
Binary files a/docs/dev/plot_directive/user-guide/maps/regionmap-1.pdf and b/docs/dev/plot_directive/user-guide/maps/regionmap-1.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/maps/regionmap-2.pdf b/docs/dev/plot_directive/user-guide/maps/regionmap-2.pdf
index e01ad2cd8f3..cdd631bd58f 100644
Binary files a/docs/dev/plot_directive/user-guide/maps/regionmap-2.pdf and b/docs/dev/plot_directive/user-guide/maps/regionmap-2.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/maps/regionmap-3.pdf b/docs/dev/plot_directive/user-guide/maps/regionmap-3.pdf
index 16a0c7855c0..4f2e9782f5a 100644
Binary files a/docs/dev/plot_directive/user-guide/maps/regionmap-3.pdf and b/docs/dev/plot_directive/user-guide/maps/regionmap-3.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/maps/regionmap-4.pdf b/docs/dev/plot_directive/user-guide/maps/regionmap-4.pdf
index d88ceaa9b60..f82886b5d12 100644
Binary files a/docs/dev/plot_directive/user-guide/maps/regionmap-4.pdf and b/docs/dev/plot_directive/user-guide/maps/regionmap-4.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/maps/regionmap-5.pdf b/docs/dev/plot_directive/user-guide/maps/regionmap-5.pdf
index a60edc523d5..61fce7b0806 100644
Binary files a/docs/dev/plot_directive/user-guide/maps/regionmap-5.pdf and b/docs/dev/plot_directive/user-guide/maps/regionmap-5.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/stats/plot_cash_errors.pdf b/docs/dev/plot_directive/user-guide/stats/plot_cash_errors.pdf
index ae547060bb3..445569a1c25 100644
Binary files a/docs/dev/plot_directive/user-guide/stats/plot_cash_errors.pdf and b/docs/dev/plot_directive/user-guide/stats/plot_cash_errors.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/stats/plot_cash_significance.pdf b/docs/dev/plot_directive/user-guide/stats/plot_cash_significance.pdf
index 7e97110aca2..074978cfa04 100644
Binary files a/docs/dev/plot_directive/user-guide/stats/plot_cash_significance.pdf and b/docs/dev/plot_directive/user-guide/stats/plot_cash_significance.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/stats/plot_wstat_errors.pdf b/docs/dev/plot_directive/user-guide/stats/plot_wstat_errors.pdf
index 51c88af9ca7..d09a1269b86 100644
Binary files a/docs/dev/plot_directive/user-guide/stats/plot_wstat_errors.pdf and b/docs/dev/plot_directive/user-guide/stats/plot_wstat_errors.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/stats/plot_wstat_significance.pdf b/docs/dev/plot_directive/user-guide/stats/plot_wstat_significance.pdf
index 3bbc8b3d9fa..94de8780548 100644
Binary files a/docs/dev/plot_directive/user-guide/stats/plot_wstat_significance.pdf and b/docs/dev/plot_directive/user-guide/stats/plot_wstat_significance.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/visualization/colormap_example.pdf b/docs/dev/plot_directive/user-guide/visualization/colormap_example.pdf
index 94f03447c94..6b8b7beeb32 100644
Binary files a/docs/dev/plot_directive/user-guide/visualization/colormap_example.pdf and b/docs/dev/plot_directive/user-guide/visualization/colormap_example.pdf differ
diff --git a/docs/dev/plot_directive/user-guide/visualization/index-1.pdf b/docs/dev/plot_directive/user-guide/visualization/index-1.pdf
index b7a92ba5e4a..46a86b4be1b 100644
Binary files a/docs/dev/plot_directive/user-guide/visualization/index-1.pdf and b/docs/dev/plot_directive/user-guide/visualization/index-1.pdf differ
diff --git a/docs/dev/py-modindex.html b/docs/dev/py-modindex.html
index 4094ba1ad5f..03205552f40 100644
--- a/docs/dev/py-modindex.html
+++ b/docs/dev/py-modindex.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/index.html b/docs/dev/release-notes/index.html
index 166b971a877..a4bf217e6a5 100644
--- a/docs/dev/release-notes/index.html
+++ b/docs/dev/release-notes/index.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.1.html b/docs/dev/release-notes/v0.1.html
index dd0734e02a2..471a2c6e541 100644
--- a/docs/dev/release-notes/v0.1.html
+++ b/docs/dev/release-notes/v0.1.html
@@ -190,7 +190,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.10.html b/docs/dev/release-notes/v0.10.html
index e12d5b34be8..c0cc75f4a0c 100644
--- a/docs/dev/release-notes/v0.10.html
+++ b/docs/dev/release-notes/v0.10.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.11.html b/docs/dev/release-notes/v0.11.html
index 9f904132ee7..6ca794b3756 100644
--- a/docs/dev/release-notes/v0.11.html
+++ b/docs/dev/release-notes/v0.11.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.12.html b/docs/dev/release-notes/v0.12.html
index e95cd07a6d7..03a2fd65312 100644
--- a/docs/dev/release-notes/v0.12.html
+++ b/docs/dev/release-notes/v0.12.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.13.html b/docs/dev/release-notes/v0.13.html
index 05f6693d283..7f2f0b1be93 100644
--- a/docs/dev/release-notes/v0.13.html
+++ b/docs/dev/release-notes/v0.13.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.14.html b/docs/dev/release-notes/v0.14.html
index a79be31d6dd..945c450ea14 100644
--- a/docs/dev/release-notes/v0.14.html
+++ b/docs/dev/release-notes/v0.14.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.15.html b/docs/dev/release-notes/v0.15.html
index 8ba56e7696b..8cc3b90af5c 100644
--- a/docs/dev/release-notes/v0.15.html
+++ b/docs/dev/release-notes/v0.15.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.16.html b/docs/dev/release-notes/v0.16.html
index bad85b4d9a5..f7d00a66f8c 100644
--- a/docs/dev/release-notes/v0.16.html
+++ b/docs/dev/release-notes/v0.16.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.17.html b/docs/dev/release-notes/v0.17.html
index 1368cf372fb..457cf959a8e 100644
--- a/docs/dev/release-notes/v0.17.html
+++ b/docs/dev/release-notes/v0.17.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.18.1.html b/docs/dev/release-notes/v0.18.1.html
index 8fa34041134..d4f0a9e3da4 100644
--- a/docs/dev/release-notes/v0.18.1.html
+++ b/docs/dev/release-notes/v0.18.1.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.18.2.html b/docs/dev/release-notes/v0.18.2.html
index 8f9f8e73f05..e5fa5a7d15a 100644
--- a/docs/dev/release-notes/v0.18.2.html
+++ b/docs/dev/release-notes/v0.18.2.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.18.html b/docs/dev/release-notes/v0.18.html
index b390d2096a4..3f268eba7e3 100644
--- a/docs/dev/release-notes/v0.18.html
+++ b/docs/dev/release-notes/v0.18.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.19.html b/docs/dev/release-notes/v0.19.html
index 0ae2e106c8a..91ba88af728 100644
--- a/docs/dev/release-notes/v0.19.html
+++ b/docs/dev/release-notes/v0.19.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.2.html b/docs/dev/release-notes/v0.2.html
index 305778d1662..3cfb5b993b1 100644
--- a/docs/dev/release-notes/v0.2.html
+++ b/docs/dev/release-notes/v0.2.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.20.1.html b/docs/dev/release-notes/v0.20.1.html
index 48782f1a5f8..ffcd482dd64 100644
--- a/docs/dev/release-notes/v0.20.1.html
+++ b/docs/dev/release-notes/v0.20.1.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.20.html b/docs/dev/release-notes/v0.20.html
index e176cb5b057..50876f9e718 100644
--- a/docs/dev/release-notes/v0.20.html
+++ b/docs/dev/release-notes/v0.20.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.3.html b/docs/dev/release-notes/v0.3.html
index 31379d7a3fa..f999f661f63 100644
--- a/docs/dev/release-notes/v0.3.html
+++ b/docs/dev/release-notes/v0.3.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.4.html b/docs/dev/release-notes/v0.4.html
index a9a4a318885..4dfc015b3c4 100644
--- a/docs/dev/release-notes/v0.4.html
+++ b/docs/dev/release-notes/v0.4.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.5.html b/docs/dev/release-notes/v0.5.html
index 36239d05de0..dc880b89c58 100644
--- a/docs/dev/release-notes/v0.5.html
+++ b/docs/dev/release-notes/v0.5.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.6.html b/docs/dev/release-notes/v0.6.html
index 2234b087f84..15a8e2b71ea 100644
--- a/docs/dev/release-notes/v0.6.html
+++ b/docs/dev/release-notes/v0.6.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.7.html b/docs/dev/release-notes/v0.7.html
index 65094458265..37ea825657b 100644
--- a/docs/dev/release-notes/v0.7.html
+++ b/docs/dev/release-notes/v0.7.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.8.html b/docs/dev/release-notes/v0.8.html
index 3e8fd396c64..efb1b251b39 100644
--- a/docs/dev/release-notes/v0.8.html
+++ b/docs/dev/release-notes/v0.8.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v0.9.html b/docs/dev/release-notes/v0.9.html
index 21daa76acfe..c946559bee2 100644
--- a/docs/dev/release-notes/v0.9.html
+++ b/docs/dev/release-notes/v0.9.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v1.0.1.html b/docs/dev/release-notes/v1.0.1.html
index cc0b91b5934..dc63bad8542 100644
--- a/docs/dev/release-notes/v1.0.1.html
+++ b/docs/dev/release-notes/v1.0.1.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v1.0.2.html b/docs/dev/release-notes/v1.0.2.html
index 552d9ea4a3c..8487410ba3f 100644
--- a/docs/dev/release-notes/v1.0.2.html
+++ b/docs/dev/release-notes/v1.0.2.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v1.0.html b/docs/dev/release-notes/v1.0.html
index fb5e3a1be71..55e289d9f7a 100644
--- a/docs/dev/release-notes/v1.0.html
+++ b/docs/dev/release-notes/v1.0.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v1.1.html b/docs/dev/release-notes/v1.1.html
index 2512ad40377..0aad0d353d9 100644
--- a/docs/dev/release-notes/v1.1.html
+++ b/docs/dev/release-notes/v1.1.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/release-notes/v1.2.html b/docs/dev/release-notes/v1.2.html
index 1073b12692a..b92d559e46d 100644
--- a/docs/dev/release-notes/v1.2.html
+++ b/docs/dev/release-notes/v1.2.html
@@ -189,7 +189,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/search.html b/docs/dev/search.html
index 87ed9d9b85c..930b890b431 100644
--- a/docs/dev/search.html
+++ b/docs/dev/search.html
@@ -194,7 +194,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
diff --git a/docs/dev/searchindex.js b/docs/dev/searchindex.js
index aac73fbd2f1..ea34efb39d5 100644
--- a/docs/dev/searchindex.js
+++ b/docs/dev/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["api-reference/analysis","api-reference/astro","api-reference/catalog","api-reference/data","api-reference/datasets","api-reference/estimators","api-reference/index","api-reference/irf","api-reference/makers","api-reference/maps","api-reference/modeling","api-reference/scripts","api-reference/stats","api-reference/utils","api-reference/visualization","api/gammapy.analysis.Analysis","api/gammapy.analysis.AnalysisConfig","api/gammapy.astro.darkmatter.BurkertProfile","api/gammapy.astro.darkmatter.DMProfile","api/gammapy.astro.darkmatter.DarkMatterAnnihilationSpectralModel","api/gammapy.astro.darkmatter.DarkMatterDecaySpectralModel","api/gammapy.astro.darkmatter.EinastoProfile","api/gammapy.astro.darkmatter.IsothermalProfile","api/gammapy.astro.darkmatter.JFactory","api/gammapy.astro.darkmatter.MooreProfile","api/gammapy.astro.darkmatter.NFWProfile","api/gammapy.astro.darkmatter.PrimaryFlux","api/gammapy.astro.darkmatter.ZhaoProfile","api/gammapy.astro.population.CaseBattacharya1998","api/gammapy.astro.population.Exponential","api/gammapy.astro.population.FaucherKaspi2006","api/gammapy.astro.population.FaucherKaspi2006VelocityBimodal","api/gammapy.astro.population.FaucherKaspi2006VelocityMaxwellian","api/gammapy.astro.population.FaucherSpiral","api/gammapy.astro.population.LogSpiral","api/gammapy.astro.population.Lorimer2006","api/gammapy.astro.population.Paczynski1990","api/gammapy.astro.population.Paczynski1990Velocity","api/gammapy.astro.population.ValleeSpiral","api/gammapy.astro.population.YusifovKucuk2004","api/gammapy.astro.population.YusifovKucuk2004B","api/gammapy.astro.population.add_observed_parameters","api/gammapy.astro.population.add_pulsar_parameters","api/gammapy.astro.population.add_pwn_parameters","api/gammapy.astro.population.add_snr_parameters","api/gammapy.astro.population.make_base_catalog_galactic","api/gammapy.astro.population.make_catalog_random_positions_cube","api/gammapy.astro.population.make_catalog_random_positions_sphere","api/gammapy.astro.population.radial_distributions","api/gammapy.astro.population.velocity_distributions","api/gammapy.astro.source.PWN","api/gammapy.astro.source.Pulsar","api/gammapy.astro.source.SNR","api/gammapy.astro.source.SNRTrueloveMcKee","api/gammapy.astro.source.SimplePulsar","api/gammapy.catalog.CATALOG_REGISTRY","api/gammapy.catalog.SourceCatalog","api/gammapy.catalog.SourceCatalog1LHAASO","api/gammapy.catalog.SourceCatalog2FHL","api/gammapy.catalog.SourceCatalog2HWC","api/gammapy.catalog.SourceCatalog3FGL","api/gammapy.catalog.SourceCatalog3FHL","api/gammapy.catalog.SourceCatalog3HWC","api/gammapy.catalog.SourceCatalog4FGL","api/gammapy.catalog.SourceCatalogGammaCat","api/gammapy.catalog.SourceCatalogHGPS","api/gammapy.catalog.SourceCatalogLargeScaleHGPS","api/gammapy.catalog.SourceCatalogObject","api/gammapy.catalog.SourceCatalogObject1LHAASO","api/gammapy.catalog.SourceCatalogObject2FHL","api/gammapy.catalog.SourceCatalogObject2HWC","api/gammapy.catalog.SourceCatalogObject3FGL","api/gammapy.catalog.SourceCatalogObject3FHL","api/gammapy.catalog.SourceCatalogObject3HWC","api/gammapy.catalog.SourceCatalogObject4FGL","api/gammapy.catalog.SourceCatalogObjectGammaCat","api/gammapy.catalog.SourceCatalogObjectHGPS","api/gammapy.catalog.SourceCatalogObjectHGPSComponent","api/gammapy.data.DataStore","api/gammapy.data.EventList","api/gammapy.data.EventListMetaData","api/gammapy.data.FixedPointingInfo","api/gammapy.data.GTI","api/gammapy.data.HDUIndexTable","api/gammapy.data.Observation","api/gammapy.data.ObservationFilter","api/gammapy.data.ObservationTable","api/gammapy.data.Observations","api/gammapy.data.ObservationsEventsSampler","api/gammapy.data.PointingInfo","api/gammapy.data.PointingMode","api/gammapy.data.get_irfs_features","api/gammapy.data.observatory_locations","api/gammapy.datasets.DATASET_REGISTRY","api/gammapy.datasets.Dataset","api/gammapy.datasets.Datasets","api/gammapy.datasets.FluxPointsDataset","api/gammapy.datasets.MapDataset","api/gammapy.datasets.MapDatasetEventSampler","api/gammapy.datasets.MapDatasetOnOff","api/gammapy.datasets.OGIPDatasetReader","api/gammapy.datasets.OGIPDatasetWriter","api/gammapy.datasets.ObservationEventSampler","api/gammapy.datasets.SpectrumDataset","api/gammapy.datasets.SpectrumDatasetOnOff","api/gammapy.datasets.create_map_dataset_from_observation","api/gammapy.datasets.create_map_dataset_geoms","api/gammapy.estimators.ASmoothMapEstimator","api/gammapy.estimators.ESTIMATOR_REGISTRY","api/gammapy.estimators.EnergyDependentMorphologyEstimator","api/gammapy.estimators.Estimator","api/gammapy.estimators.ExcessMapEstimator","api/gammapy.estimators.FluxMaps","api/gammapy.estimators.FluxPoints","api/gammapy.estimators.FluxPointsEstimator","api/gammapy.estimators.FluxProfileEstimator","api/gammapy.estimators.ImageProfile","api/gammapy.estimators.ImageProfileEstimator","api/gammapy.estimators.LightCurveEstimator","api/gammapy.estimators.ParameterEstimator","api/gammapy.estimators.SensitivityEstimator","api/gammapy.estimators.TSMapEstimator","api/gammapy.estimators.utils.compute_lightcurve_doublingtime","api/gammapy.estimators.utils.compute_lightcurve_fpp","api/gammapy.estimators.utils.compute_lightcurve_fvar","api/gammapy.estimators.utils.estimate_exposure_reco_energy","api/gammapy.estimators.utils.find_peaks","api/gammapy.estimators.utils.find_peaks_in_flux_map","api/gammapy.estimators.utils.resample_energy_edges","api/gammapy.irf.Background2D","api/gammapy.irf.Background3D","api/gammapy.irf.BackgroundIRF","api/gammapy.irf.EDispKernel","api/gammapy.irf.EDispKernelMap","api/gammapy.irf.EDispMap","api/gammapy.irf.EffectiveAreaTable2D","api/gammapy.irf.EnergyDependentMultiGaussPSF","api/gammapy.irf.EnergyDispersion2D","api/gammapy.irf.FoVAlignment","api/gammapy.irf.IRF","api/gammapy.irf.IRFMap","api/gammapy.irf.IRF_REGISTRY","api/gammapy.irf.PSF3D","api/gammapy.irf.PSFKernel","api/gammapy.irf.PSFKing","api/gammapy.irf.PSFMap","api/gammapy.irf.ParametricPSF","api/gammapy.irf.RadMax2D","api/gammapy.irf.RecoPSFMap","api/gammapy.irf.load_irf_dict_from_file","api/gammapy.makers.AdaptiveRingBackgroundMaker","api/gammapy.makers.DatasetsMaker","api/gammapy.makers.FoVBackgroundMaker","api/gammapy.makers.MAKER_REGISTRY","api/gammapy.makers.Maker","api/gammapy.makers.MapDatasetMaker","api/gammapy.makers.PhaseBackgroundMaker","api/gammapy.makers.ReflectedRegionsBackgroundMaker","api/gammapy.makers.ReflectedRegionsFinder","api/gammapy.makers.RegionsFinder","api/gammapy.makers.RingBackgroundMaker","api/gammapy.makers.SafeMaskMaker","api/gammapy.makers.SpectrumDatasetMaker","api/gammapy.makers.WobbleRegionsFinder","api/gammapy.makers.utils.make_counts_rad_max","api/gammapy.makers.utils.make_edisp_kernel_map","api/gammapy.makers.utils.make_edisp_map","api/gammapy.makers.utils.make_effective_livetime_map","api/gammapy.makers.utils.make_map_background_irf","api/gammapy.makers.utils.make_map_exposure_true_energy","api/gammapy.makers.utils.make_observation_time_map","api/gammapy.makers.utils.make_psf_map","api/gammapy.makers.utils.make_theta_squared_table","api/gammapy.maps.Geom","api/gammapy.maps.HpxGeom","api/gammapy.maps.HpxMap","api/gammapy.maps.HpxNDMap","api/gammapy.maps.LabelMapAxis","api/gammapy.maps.Map","api/gammapy.maps.MapAxes","api/gammapy.maps.MapAxis","api/gammapy.maps.MapCoord","api/gammapy.maps.Maps","api/gammapy.maps.RegionGeom","api/gammapy.maps.RegionNDMap","api/gammapy.maps.TimeMapAxis","api/gammapy.maps.WcsGeom","api/gammapy.maps.WcsMap","api/gammapy.maps.WcsNDMap","api/gammapy.maps.containment_radius","api/gammapy.maps.containment_region","api/gammapy.modeling.Covariance","api/gammapy.modeling.Fit","api/gammapy.modeling.Parameter","api/gammapy.modeling.Parameters","api/gammapy.modeling.PriorParameter","api/gammapy.modeling.PriorParameters","api/gammapy.modeling.models.BrokenPowerLawSpectralModel","api/gammapy.modeling.models.CompoundSpectralModel","api/gammapy.modeling.models.ConstantFluxSpatialModel","api/gammapy.modeling.models.ConstantSpatialModel","api/gammapy.modeling.models.ConstantSpectralModel","api/gammapy.modeling.models.ConstantTemporalModel","api/gammapy.modeling.models.DatasetModels","api/gammapy.modeling.models.DiskSpatialModel","api/gammapy.modeling.models.EBLAbsorptionNormSpectralModel","api/gammapy.modeling.models.EBL_DATA_BUILTIN","api/gammapy.modeling.models.ExpCutoffPowerLaw3FGLSpectralModel","api/gammapy.modeling.models.ExpCutoffPowerLawNormSpectralModel","api/gammapy.modeling.models.ExpCutoffPowerLawSpectralModel","api/gammapy.modeling.models.ExpDecayTemporalModel","api/gammapy.modeling.models.FoVBackgroundModel","api/gammapy.modeling.models.GaussianSpatialModel","api/gammapy.modeling.models.GaussianSpectralModel","api/gammapy.modeling.models.GaussianTemporalModel","api/gammapy.modeling.models.GeneralizedGaussianSpatialModel","api/gammapy.modeling.models.GeneralizedGaussianTemporalModel","api/gammapy.modeling.models.LightCurveTemplateTemporalModel","api/gammapy.modeling.models.LinearTemporalModel","api/gammapy.modeling.models.LogParabolaNormSpectralModel","api/gammapy.modeling.models.LogParabolaSpectralModel","api/gammapy.modeling.models.MODEL_REGISTRY","api/gammapy.modeling.models.MeyerCrabSpectralModel","api/gammapy.modeling.models.Model","api/gammapy.modeling.models.ModelBase","api/gammapy.modeling.models.Models","api/gammapy.modeling.models.NaimaSpectralModel","api/gammapy.modeling.models.PiecewiseNormSpatialModel","api/gammapy.modeling.models.PiecewiseNormSpectralModel","api/gammapy.modeling.models.PointSpatialModel","api/gammapy.modeling.models.PowerLaw2SpectralModel","api/gammapy.modeling.models.PowerLawNormSpectralModel","api/gammapy.modeling.models.PowerLawSpectralModel","api/gammapy.modeling.models.PowerLawTemporalModel","api/gammapy.modeling.models.SPATIAL_MODEL_REGISTRY","api/gammapy.modeling.models.SPECTRAL_MODEL_REGISTRY","api/gammapy.modeling.models.ScaleSpectralModel","api/gammapy.modeling.models.Shell2SpatialModel","api/gammapy.modeling.models.ShellSpatialModel","api/gammapy.modeling.models.SineTemporalModel","api/gammapy.modeling.models.SkyModel","api/gammapy.modeling.models.SmoothBrokenPowerLawSpectralModel","api/gammapy.modeling.models.SpatialModel","api/gammapy.modeling.models.SpectralModel","api/gammapy.modeling.models.SuperExpCutoffPowerLaw3FGLSpectralModel","api/gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLDR3SpectralModel","api/gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLSpectralModel","api/gammapy.modeling.models.TEMPORAL_MODEL_REGISTRY","api/gammapy.modeling.models.TemplateNDSpatialModel","api/gammapy.modeling.models.TemplateNDSpectralModel","api/gammapy.modeling.models.TemplateNPredModel","api/gammapy.modeling.models.TemplatePhaseCurveTemporalModel","api/gammapy.modeling.models.TemplateSpatialModel","api/gammapy.modeling.models.TemplateSpectralModel","api/gammapy.modeling.models.TemporalModel","api/gammapy.modeling.models.create_cosmic_ray_spectral_model","api/gammapy.modeling.models.create_crab_spectral_model","api/gammapy.modeling.models.create_fermi_isotropic_diffuse_model","api/gammapy.modeling.models.integrate_spectrum","api/gammapy.modeling.models.scale_plot_flux","api/gammapy.modeling.select_nested_models","api/gammapy.modeling.stat_profile_ul_scipy","api/gammapy.stats.CashCountsStatistic","api/gammapy.stats.WStatCountsStatistic","api/gammapy.stats.cash","api/gammapy.stats.cash_sum_cython","api/gammapy.stats.compute_chisq","api/gammapy.stats.compute_flux_doubling","api/gammapy.stats.compute_fpp","api/gammapy.stats.compute_fvar","api/gammapy.stats.cstat","api/gammapy.stats.f_cash_root_cython","api/gammapy.stats.get_wstat_gof_terms","api/gammapy.stats.get_wstat_mu_bkg","api/gammapy.stats.norm_bounds_cython","api/gammapy.stats.wstat","api/gammapy.utils.cluster.hierarchical_clustering","api/gammapy.utils.cluster.standard_scaler","api/gammapy.utils.coordinates.D_SUN_TO_GALACTIC_CENTER","api/gammapy.utils.coordinates.cartesian","api/gammapy.utils.coordinates.fov_to_sky","api/gammapy.utils.coordinates.galactic","api/gammapy.utils.coordinates.motion_since_birth","api/gammapy.utils.coordinates.polar","api/gammapy.utils.coordinates.sky_to_fov","api/gammapy.utils.coordinates.velocity_glon_glat","api/gammapy.utils.fits.HDULocation","api/gammapy.utils.fits.LazyFitsData","api/gammapy.utils.fits.earth_location_from_dict","api/gammapy.utils.integrate.trapz_loglog","api/gammapy.utils.interpolation.ScaledRegularGridInterpolator","api/gammapy.utils.interpolation.interpolate_profile","api/gammapy.utils.interpolation.interpolation_scale","api/gammapy.utils.parallel.BACKEND_DEFAULT","api/gammapy.utils.parallel.METHOD_DEFAULT","api/gammapy.utils.parallel.METHOD_KWARGS_DEFAULT","api/gammapy.utils.parallel.N_JOBS_DEFAULT","api/gammapy.utils.parallel.POOL_KWARGS_DEFAULT","api/gammapy.utils.parallel.multiprocessing_manager","api/gammapy.utils.parallel.run_multiprocessing","api/gammapy.utils.random.InverseCDFSampler","api/gammapy.utils.random.draw","api/gammapy.utils.random.get_random_state","api/gammapy.utils.random.normalize","api/gammapy.utils.random.pdf","api/gammapy.utils.random.sample_powerlaw","api/gammapy.utils.random.sample_sphere","api/gammapy.utils.random.sample_sphere_distance","api/gammapy.utils.random.sample_times","api/gammapy.utils.regions.compound_region_to_regions","api/gammapy.utils.regions.make_concentric_annulus_sky_regions","api/gammapy.utils.regions.make_orthogonal_rectangle_sky_regions","api/gammapy.utils.regions.region_to_frame","api/gammapy.utils.regions.regions_to_compound_region","api/gammapy.utils.scripts.get_images_paths","api/gammapy.utils.scripts.make_path","api/gammapy.utils.scripts.read_yaml","api/gammapy.utils.scripts.recursive_merge_dicts","api/gammapy.utils.scripts.write_yaml","api/gammapy.utils.table.hstack_columns","api/gammapy.utils.table.table_row_to_dict","api/gammapy.utils.table.table_standardise_units_copy","api/gammapy.utils.table.table_standardise_units_inplace","api/gammapy.utils.testing.Checker","api/gammapy.utils.testing.assert_quantity_allclose","api/gammapy.utils.testing.assert_skycoord_allclose","api/gammapy.utils.testing.assert_time_allclose","api/gammapy.utils.testing.mpl_plot_check","api/gammapy.utils.testing.requires_data","api/gammapy.utils.testing.requires_dependency","api/gammapy.utils.time.absolute_time","api/gammapy.utils.time.time_ref_from_dict","api/gammapy.utils.time.time_ref_to_dict","api/gammapy.utils.time.time_relative_to_ref","api/gammapy.utils.units.standardise_unit","api/gammapy.utils.units.unit_from_fits_image_hdu","api/gammapy.visualization.MapPanelPlotter","api/gammapy.visualization.add_colorbar","api/gammapy.visualization.annotate_heatmap","api/gammapy.visualization.colormap_hess","api/gammapy.visualization.colormap_milagro","api/gammapy.visualization.plot_contour_line","api/gammapy.visualization.plot_distribution","api/gammapy.visualization.plot_heatmap","api/gammapy.visualization.plot_map_rgb","api/gammapy.visualization.plot_npred_signal","api/gammapy.visualization.plot_spectrum_datasets_off_regions","api/gammapy.visualization.plot_theta_squared_table","development/dependencies","development/dev_howto","development/doc_howto","development/index","development/intro","development/pigs/index","development/pigs/pig-001","development/pigs/pig-002","development/pigs/pig-003","development/pigs/pig-004","development/pigs/pig-005","development/pigs/pig-006","development/pigs/pig-007","development/pigs/pig-008","development/pigs/pig-009","development/pigs/pig-010","development/pigs/pig-011","development/pigs/pig-012","development/pigs/pig-013","development/pigs/pig-014","development/pigs/pig-016","development/pigs/pig-018","development/pigs/pig-019","development/pigs/pig-020","development/pigs/pig-021","development/pigs/pig-022","development/pigs/pig-023","development/pigs/pig-024","development/pigs/pig-025","development/pigs/pig-026","development/release","development/setup","getting-started/environments","getting-started/index","getting-started/install","getting-started/quickstart","getting-started/troubleshooting","getting-started/usage","index","release-notes/index","release-notes/v0.1","release-notes/v0.10","release-notes/v0.11","release-notes/v0.12","release-notes/v0.13","release-notes/v0.14","release-notes/v0.15","release-notes/v0.16","release-notes/v0.17","release-notes/v0.18","release-notes/v0.18.1","release-notes/v0.18.2","release-notes/v0.19","release-notes/v0.2","release-notes/v0.20","release-notes/v0.20.1","release-notes/v0.3","release-notes/v0.4","release-notes/v0.5","release-notes/v0.6","release-notes/v0.7","release-notes/v0.8","release-notes/v0.9","release-notes/v1.0","release-notes/v1.0.1","release-notes/v1.0.2","release-notes/v1.1","release-notes/v1.2","tutorials/analysis-1d/cta_sensitivity","tutorials/analysis-1d/extended_source_spectral_analysis","tutorials/analysis-1d/sed_fitting","tutorials/analysis-1d/sg_execution_times","tutorials/analysis-1d/spectral_analysis","tutorials/analysis-1d/spectral_analysis_hli","tutorials/analysis-1d/spectral_analysis_rad_max","tutorials/analysis-1d/spectrum_simulation","tutorials/analysis-2d/detect","tutorials/analysis-2d/modeling_2D","tutorials/analysis-2d/ring_background","tutorials/analysis-2d/sg_execution_times","tutorials/analysis-3d/analysis_3d","tutorials/analysis-3d/analysis_mwl","tutorials/analysis-3d/cta_data_analysis","tutorials/analysis-3d/energy_dependent_estimation","tutorials/analysis-3d/event_sampling","tutorials/analysis-3d/event_sampling_nrg_depend_models","tutorials/analysis-3d/flux_profiles","tutorials/analysis-3d/sg_execution_times","tutorials/analysis-3d/simulate_3d","tutorials/analysis-time/Variability_estimation","tutorials/analysis-time/light_curve","tutorials/analysis-time/light_curve_flare","tutorials/analysis-time/light_curve_simulation","tutorials/analysis-time/pulsar_analysis","tutorials/analysis-time/sg_execution_times","tutorials/api/astro_dark_matter","tutorials/api/catalog","tutorials/api/datasets","tutorials/api/fitting","tutorials/api/irfs","tutorials/api/makers","tutorials/api/maps","tutorials/api/mask_maps","tutorials/api/model_management","tutorials/api/models","tutorials/api/observation_clustering","tutorials/api/sg_execution_times","tutorials/data/cta","tutorials/data/fermi_lat","tutorials/data/hawc","tutorials/data/hess","tutorials/data/sg_execution_times","tutorials/index","tutorials/scripts/sg_execution_times","tutorials/scripts/survey_map","tutorials/starting/analysis_1","tutorials/starting/analysis_2","tutorials/starting/overview","tutorials/starting/sg_execution_times","user-guide/astro/darkmatter/index","user-guide/astro/index","user-guide/astro/population/index","user-guide/astro/source/index","user-guide/astro/source/pulsar","user-guide/astro/source/pwn","user-guide/astro/source/snr","user-guide/catalog","user-guide/datasets/index","user-guide/dl3","user-guide/estimators","user-guide/hli","user-guide/howto","user-guide/index","user-guide/irf/aeff","user-guide/irf/bkg","user-guide/irf/edisp","user-guide/irf/index","user-guide/irf/psf","user-guide/makers/fov","user-guide/makers/index","user-guide/makers/reflected","user-guide/makers/ring","user-guide/maps/hpxmap","user-guide/maps/index","user-guide/maps/regionmap","user-guide/model-gallery/index","user-guide/model-gallery/spatial/plot_constant","user-guide/model-gallery/spatial/plot_disk","user-guide/model-gallery/spatial/plot_gauss","user-guide/model-gallery/spatial/plot_gen_gauss","user-guide/model-gallery/spatial/plot_piecewise_norm_spatial","user-guide/model-gallery/spatial/plot_point","user-guide/model-gallery/spatial/plot_shell","user-guide/model-gallery/spatial/plot_shell2","user-guide/model-gallery/spatial/plot_template","user-guide/model-gallery/spatial/sg_execution_times","user-guide/model-gallery/spectral/plot_absorbed","user-guide/model-gallery/spectral/plot_broken_powerlaw","user-guide/model-gallery/spectral/plot_compound","user-guide/model-gallery/spectral/plot_constant_spectral","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw_3fgl","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw_norm_spectral","user-guide/model-gallery/spectral/plot_gauss_spectral","user-guide/model-gallery/spectral/plot_logparabola","user-guide/model-gallery/spectral/plot_logparabola_norm_spectral","user-guide/model-gallery/spectral/plot_naima","user-guide/model-gallery/spectral/plot_piecewise_norm_spectral","user-guide/model-gallery/spectral/plot_powerlaw","user-guide/model-gallery/spectral/plot_powerlaw2","user-guide/model-gallery/spectral/plot_powerlaw_norm_spectral","user-guide/model-gallery/spectral/plot_smooth_broken_powerlaw","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_3fgl","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_4fgl","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_4fgl_dr1","user-guide/model-gallery/spectral/plot_template_spectral","user-guide/model-gallery/spectral/sg_execution_times","user-guide/model-gallery/temporal/plot_constant_temporal","user-guide/model-gallery/temporal/plot_expdecay_temporal","user-guide/model-gallery/temporal/plot_gaussian_temporal","user-guide/model-gallery/temporal/plot_generalized_gaussian_temporal","user-guide/model-gallery/temporal/plot_linear_temporal","user-guide/model-gallery/temporal/plot_powerlaw_temporal","user-guide/model-gallery/temporal/plot_sine_temporal","user-guide/model-gallery/temporal/plot_template_phase_temporal","user-guide/model-gallery/temporal/plot_template_temporal","user-guide/model-gallery/temporal/sg_execution_times","user-guide/modeling","user-guide/package","user-guide/references","user-guide/scripts/index","user-guide/stats/fit_statistics","user-guide/stats/index","user-guide/stats/wstat_derivation","user-guide/utils","user-guide/visualization/index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["api-reference/analysis.rst","api-reference/astro.rst","api-reference/catalog.rst","api-reference/data.rst","api-reference/datasets.rst","api-reference/estimators.rst","api-reference/index.rst","api-reference/irf.rst","api-reference/makers.rst","api-reference/maps.rst","api-reference/modeling.rst","api-reference/scripts.rst","api-reference/stats.rst","api-reference/utils.rst","api-reference/visualization.rst","api/gammapy.analysis.Analysis.rst","api/gammapy.analysis.AnalysisConfig.rst","api/gammapy.astro.darkmatter.BurkertProfile.rst","api/gammapy.astro.darkmatter.DMProfile.rst","api/gammapy.astro.darkmatter.DarkMatterAnnihilationSpectralModel.rst","api/gammapy.astro.darkmatter.DarkMatterDecaySpectralModel.rst","api/gammapy.astro.darkmatter.EinastoProfile.rst","api/gammapy.astro.darkmatter.IsothermalProfile.rst","api/gammapy.astro.darkmatter.JFactory.rst","api/gammapy.astro.darkmatter.MooreProfile.rst","api/gammapy.astro.darkmatter.NFWProfile.rst","api/gammapy.astro.darkmatter.PrimaryFlux.rst","api/gammapy.astro.darkmatter.ZhaoProfile.rst","api/gammapy.astro.population.CaseBattacharya1998.rst","api/gammapy.astro.population.Exponential.rst","api/gammapy.astro.population.FaucherKaspi2006.rst","api/gammapy.astro.population.FaucherKaspi2006VelocityBimodal.rst","api/gammapy.astro.population.FaucherKaspi2006VelocityMaxwellian.rst","api/gammapy.astro.population.FaucherSpiral.rst","api/gammapy.astro.population.LogSpiral.rst","api/gammapy.astro.population.Lorimer2006.rst","api/gammapy.astro.population.Paczynski1990.rst","api/gammapy.astro.population.Paczynski1990Velocity.rst","api/gammapy.astro.population.ValleeSpiral.rst","api/gammapy.astro.population.YusifovKucuk2004.rst","api/gammapy.astro.population.YusifovKucuk2004B.rst","api/gammapy.astro.population.add_observed_parameters.rst","api/gammapy.astro.population.add_pulsar_parameters.rst","api/gammapy.astro.population.add_pwn_parameters.rst","api/gammapy.astro.population.add_snr_parameters.rst","api/gammapy.astro.population.make_base_catalog_galactic.rst","api/gammapy.astro.population.make_catalog_random_positions_cube.rst","api/gammapy.astro.population.make_catalog_random_positions_sphere.rst","api/gammapy.astro.population.radial_distributions.rst","api/gammapy.astro.population.velocity_distributions.rst","api/gammapy.astro.source.PWN.rst","api/gammapy.astro.source.Pulsar.rst","api/gammapy.astro.source.SNR.rst","api/gammapy.astro.source.SNRTrueloveMcKee.rst","api/gammapy.astro.source.SimplePulsar.rst","api/gammapy.catalog.CATALOG_REGISTRY.rst","api/gammapy.catalog.SourceCatalog.rst","api/gammapy.catalog.SourceCatalog1LHAASO.rst","api/gammapy.catalog.SourceCatalog2FHL.rst","api/gammapy.catalog.SourceCatalog2HWC.rst","api/gammapy.catalog.SourceCatalog3FGL.rst","api/gammapy.catalog.SourceCatalog3FHL.rst","api/gammapy.catalog.SourceCatalog3HWC.rst","api/gammapy.catalog.SourceCatalog4FGL.rst","api/gammapy.catalog.SourceCatalogGammaCat.rst","api/gammapy.catalog.SourceCatalogHGPS.rst","api/gammapy.catalog.SourceCatalogLargeScaleHGPS.rst","api/gammapy.catalog.SourceCatalogObject.rst","api/gammapy.catalog.SourceCatalogObject1LHAASO.rst","api/gammapy.catalog.SourceCatalogObject2FHL.rst","api/gammapy.catalog.SourceCatalogObject2HWC.rst","api/gammapy.catalog.SourceCatalogObject3FGL.rst","api/gammapy.catalog.SourceCatalogObject3FHL.rst","api/gammapy.catalog.SourceCatalogObject3HWC.rst","api/gammapy.catalog.SourceCatalogObject4FGL.rst","api/gammapy.catalog.SourceCatalogObjectGammaCat.rst","api/gammapy.catalog.SourceCatalogObjectHGPS.rst","api/gammapy.catalog.SourceCatalogObjectHGPSComponent.rst","api/gammapy.data.DataStore.rst","api/gammapy.data.EventList.rst","api/gammapy.data.EventListMetaData.rst","api/gammapy.data.FixedPointingInfo.rst","api/gammapy.data.GTI.rst","api/gammapy.data.HDUIndexTable.rst","api/gammapy.data.Observation.rst","api/gammapy.data.ObservationFilter.rst","api/gammapy.data.ObservationTable.rst","api/gammapy.data.Observations.rst","api/gammapy.data.ObservationsEventsSampler.rst","api/gammapy.data.PointingInfo.rst","api/gammapy.data.PointingMode.rst","api/gammapy.data.get_irfs_features.rst","api/gammapy.data.observatory_locations.rst","api/gammapy.datasets.DATASET_REGISTRY.rst","api/gammapy.datasets.Dataset.rst","api/gammapy.datasets.Datasets.rst","api/gammapy.datasets.FluxPointsDataset.rst","api/gammapy.datasets.MapDataset.rst","api/gammapy.datasets.MapDatasetEventSampler.rst","api/gammapy.datasets.MapDatasetOnOff.rst","api/gammapy.datasets.OGIPDatasetReader.rst","api/gammapy.datasets.OGIPDatasetWriter.rst","api/gammapy.datasets.ObservationEventSampler.rst","api/gammapy.datasets.SpectrumDataset.rst","api/gammapy.datasets.SpectrumDatasetOnOff.rst","api/gammapy.datasets.create_map_dataset_from_observation.rst","api/gammapy.datasets.create_map_dataset_geoms.rst","api/gammapy.estimators.ASmoothMapEstimator.rst","api/gammapy.estimators.ESTIMATOR_REGISTRY.rst","api/gammapy.estimators.EnergyDependentMorphologyEstimator.rst","api/gammapy.estimators.Estimator.rst","api/gammapy.estimators.ExcessMapEstimator.rst","api/gammapy.estimators.FluxMaps.rst","api/gammapy.estimators.FluxPoints.rst","api/gammapy.estimators.FluxPointsEstimator.rst","api/gammapy.estimators.FluxProfileEstimator.rst","api/gammapy.estimators.ImageProfile.rst","api/gammapy.estimators.ImageProfileEstimator.rst","api/gammapy.estimators.LightCurveEstimator.rst","api/gammapy.estimators.ParameterEstimator.rst","api/gammapy.estimators.SensitivityEstimator.rst","api/gammapy.estimators.TSMapEstimator.rst","api/gammapy.estimators.utils.compute_lightcurve_doublingtime.rst","api/gammapy.estimators.utils.compute_lightcurve_fpp.rst","api/gammapy.estimators.utils.compute_lightcurve_fvar.rst","api/gammapy.estimators.utils.estimate_exposure_reco_energy.rst","api/gammapy.estimators.utils.find_peaks.rst","api/gammapy.estimators.utils.find_peaks_in_flux_map.rst","api/gammapy.estimators.utils.resample_energy_edges.rst","api/gammapy.irf.Background2D.rst","api/gammapy.irf.Background3D.rst","api/gammapy.irf.BackgroundIRF.rst","api/gammapy.irf.EDispKernel.rst","api/gammapy.irf.EDispKernelMap.rst","api/gammapy.irf.EDispMap.rst","api/gammapy.irf.EffectiveAreaTable2D.rst","api/gammapy.irf.EnergyDependentMultiGaussPSF.rst","api/gammapy.irf.EnergyDispersion2D.rst","api/gammapy.irf.FoVAlignment.rst","api/gammapy.irf.IRF.rst","api/gammapy.irf.IRFMap.rst","api/gammapy.irf.IRF_REGISTRY.rst","api/gammapy.irf.PSF3D.rst","api/gammapy.irf.PSFKernel.rst","api/gammapy.irf.PSFKing.rst","api/gammapy.irf.PSFMap.rst","api/gammapy.irf.ParametricPSF.rst","api/gammapy.irf.RadMax2D.rst","api/gammapy.irf.RecoPSFMap.rst","api/gammapy.irf.load_irf_dict_from_file.rst","api/gammapy.makers.AdaptiveRingBackgroundMaker.rst","api/gammapy.makers.DatasetsMaker.rst","api/gammapy.makers.FoVBackgroundMaker.rst","api/gammapy.makers.MAKER_REGISTRY.rst","api/gammapy.makers.Maker.rst","api/gammapy.makers.MapDatasetMaker.rst","api/gammapy.makers.PhaseBackgroundMaker.rst","api/gammapy.makers.ReflectedRegionsBackgroundMaker.rst","api/gammapy.makers.ReflectedRegionsFinder.rst","api/gammapy.makers.RegionsFinder.rst","api/gammapy.makers.RingBackgroundMaker.rst","api/gammapy.makers.SafeMaskMaker.rst","api/gammapy.makers.SpectrumDatasetMaker.rst","api/gammapy.makers.WobbleRegionsFinder.rst","api/gammapy.makers.utils.make_counts_rad_max.rst","api/gammapy.makers.utils.make_edisp_kernel_map.rst","api/gammapy.makers.utils.make_edisp_map.rst","api/gammapy.makers.utils.make_effective_livetime_map.rst","api/gammapy.makers.utils.make_map_background_irf.rst","api/gammapy.makers.utils.make_map_exposure_true_energy.rst","api/gammapy.makers.utils.make_observation_time_map.rst","api/gammapy.makers.utils.make_psf_map.rst","api/gammapy.makers.utils.make_theta_squared_table.rst","api/gammapy.maps.Geom.rst","api/gammapy.maps.HpxGeom.rst","api/gammapy.maps.HpxMap.rst","api/gammapy.maps.HpxNDMap.rst","api/gammapy.maps.LabelMapAxis.rst","api/gammapy.maps.Map.rst","api/gammapy.maps.MapAxes.rst","api/gammapy.maps.MapAxis.rst","api/gammapy.maps.MapCoord.rst","api/gammapy.maps.Maps.rst","api/gammapy.maps.RegionGeom.rst","api/gammapy.maps.RegionNDMap.rst","api/gammapy.maps.TimeMapAxis.rst","api/gammapy.maps.WcsGeom.rst","api/gammapy.maps.WcsMap.rst","api/gammapy.maps.WcsNDMap.rst","api/gammapy.maps.containment_radius.rst","api/gammapy.maps.containment_region.rst","api/gammapy.modeling.Covariance.rst","api/gammapy.modeling.Fit.rst","api/gammapy.modeling.Parameter.rst","api/gammapy.modeling.Parameters.rst","api/gammapy.modeling.PriorParameter.rst","api/gammapy.modeling.PriorParameters.rst","api/gammapy.modeling.models.BrokenPowerLawSpectralModel.rst","api/gammapy.modeling.models.CompoundSpectralModel.rst","api/gammapy.modeling.models.ConstantFluxSpatialModel.rst","api/gammapy.modeling.models.ConstantSpatialModel.rst","api/gammapy.modeling.models.ConstantSpectralModel.rst","api/gammapy.modeling.models.ConstantTemporalModel.rst","api/gammapy.modeling.models.DatasetModels.rst","api/gammapy.modeling.models.DiskSpatialModel.rst","api/gammapy.modeling.models.EBLAbsorptionNormSpectralModel.rst","api/gammapy.modeling.models.EBL_DATA_BUILTIN.rst","api/gammapy.modeling.models.ExpCutoffPowerLaw3FGLSpectralModel.rst","api/gammapy.modeling.models.ExpCutoffPowerLawNormSpectralModel.rst","api/gammapy.modeling.models.ExpCutoffPowerLawSpectralModel.rst","api/gammapy.modeling.models.ExpDecayTemporalModel.rst","api/gammapy.modeling.models.FoVBackgroundModel.rst","api/gammapy.modeling.models.GaussianSpatialModel.rst","api/gammapy.modeling.models.GaussianSpectralModel.rst","api/gammapy.modeling.models.GaussianTemporalModel.rst","api/gammapy.modeling.models.GeneralizedGaussianSpatialModel.rst","api/gammapy.modeling.models.GeneralizedGaussianTemporalModel.rst","api/gammapy.modeling.models.LightCurveTemplateTemporalModel.rst","api/gammapy.modeling.models.LinearTemporalModel.rst","api/gammapy.modeling.models.LogParabolaNormSpectralModel.rst","api/gammapy.modeling.models.LogParabolaSpectralModel.rst","api/gammapy.modeling.models.MODEL_REGISTRY.rst","api/gammapy.modeling.models.MeyerCrabSpectralModel.rst","api/gammapy.modeling.models.Model.rst","api/gammapy.modeling.models.ModelBase.rst","api/gammapy.modeling.models.Models.rst","api/gammapy.modeling.models.NaimaSpectralModel.rst","api/gammapy.modeling.models.PiecewiseNormSpatialModel.rst","api/gammapy.modeling.models.PiecewiseNormSpectralModel.rst","api/gammapy.modeling.models.PointSpatialModel.rst","api/gammapy.modeling.models.PowerLaw2SpectralModel.rst","api/gammapy.modeling.models.PowerLawNormSpectralModel.rst","api/gammapy.modeling.models.PowerLawSpectralModel.rst","api/gammapy.modeling.models.PowerLawTemporalModel.rst","api/gammapy.modeling.models.SPATIAL_MODEL_REGISTRY.rst","api/gammapy.modeling.models.SPECTRAL_MODEL_REGISTRY.rst","api/gammapy.modeling.models.ScaleSpectralModel.rst","api/gammapy.modeling.models.Shell2SpatialModel.rst","api/gammapy.modeling.models.ShellSpatialModel.rst","api/gammapy.modeling.models.SineTemporalModel.rst","api/gammapy.modeling.models.SkyModel.rst","api/gammapy.modeling.models.SmoothBrokenPowerLawSpectralModel.rst","api/gammapy.modeling.models.SpatialModel.rst","api/gammapy.modeling.models.SpectralModel.rst","api/gammapy.modeling.models.SuperExpCutoffPowerLaw3FGLSpectralModel.rst","api/gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLDR3SpectralModel.rst","api/gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLSpectralModel.rst","api/gammapy.modeling.models.TEMPORAL_MODEL_REGISTRY.rst","api/gammapy.modeling.models.TemplateNDSpatialModel.rst","api/gammapy.modeling.models.TemplateNDSpectralModel.rst","api/gammapy.modeling.models.TemplateNPredModel.rst","api/gammapy.modeling.models.TemplatePhaseCurveTemporalModel.rst","api/gammapy.modeling.models.TemplateSpatialModel.rst","api/gammapy.modeling.models.TemplateSpectralModel.rst","api/gammapy.modeling.models.TemporalModel.rst","api/gammapy.modeling.models.create_cosmic_ray_spectral_model.rst","api/gammapy.modeling.models.create_crab_spectral_model.rst","api/gammapy.modeling.models.create_fermi_isotropic_diffuse_model.rst","api/gammapy.modeling.models.integrate_spectrum.rst","api/gammapy.modeling.models.scale_plot_flux.rst","api/gammapy.modeling.select_nested_models.rst","api/gammapy.modeling.stat_profile_ul_scipy.rst","api/gammapy.stats.CashCountsStatistic.rst","api/gammapy.stats.WStatCountsStatistic.rst","api/gammapy.stats.cash.rst","api/gammapy.stats.cash_sum_cython.rst","api/gammapy.stats.compute_chisq.rst","api/gammapy.stats.compute_flux_doubling.rst","api/gammapy.stats.compute_fpp.rst","api/gammapy.stats.compute_fvar.rst","api/gammapy.stats.cstat.rst","api/gammapy.stats.f_cash_root_cython.rst","api/gammapy.stats.get_wstat_gof_terms.rst","api/gammapy.stats.get_wstat_mu_bkg.rst","api/gammapy.stats.norm_bounds_cython.rst","api/gammapy.stats.wstat.rst","api/gammapy.utils.cluster.hierarchical_clustering.rst","api/gammapy.utils.cluster.standard_scaler.rst","api/gammapy.utils.coordinates.D_SUN_TO_GALACTIC_CENTER.rst","api/gammapy.utils.coordinates.cartesian.rst","api/gammapy.utils.coordinates.fov_to_sky.rst","api/gammapy.utils.coordinates.galactic.rst","api/gammapy.utils.coordinates.motion_since_birth.rst","api/gammapy.utils.coordinates.polar.rst","api/gammapy.utils.coordinates.sky_to_fov.rst","api/gammapy.utils.coordinates.velocity_glon_glat.rst","api/gammapy.utils.fits.HDULocation.rst","api/gammapy.utils.fits.LazyFitsData.rst","api/gammapy.utils.fits.earth_location_from_dict.rst","api/gammapy.utils.integrate.trapz_loglog.rst","api/gammapy.utils.interpolation.ScaledRegularGridInterpolator.rst","api/gammapy.utils.interpolation.interpolate_profile.rst","api/gammapy.utils.interpolation.interpolation_scale.rst","api/gammapy.utils.parallel.BACKEND_DEFAULT.rst","api/gammapy.utils.parallel.METHOD_DEFAULT.rst","api/gammapy.utils.parallel.METHOD_KWARGS_DEFAULT.rst","api/gammapy.utils.parallel.N_JOBS_DEFAULT.rst","api/gammapy.utils.parallel.POOL_KWARGS_DEFAULT.rst","api/gammapy.utils.parallel.multiprocessing_manager.rst","api/gammapy.utils.parallel.run_multiprocessing.rst","api/gammapy.utils.random.InverseCDFSampler.rst","api/gammapy.utils.random.draw.rst","api/gammapy.utils.random.get_random_state.rst","api/gammapy.utils.random.normalize.rst","api/gammapy.utils.random.pdf.rst","api/gammapy.utils.random.sample_powerlaw.rst","api/gammapy.utils.random.sample_sphere.rst","api/gammapy.utils.random.sample_sphere_distance.rst","api/gammapy.utils.random.sample_times.rst","api/gammapy.utils.regions.compound_region_to_regions.rst","api/gammapy.utils.regions.make_concentric_annulus_sky_regions.rst","api/gammapy.utils.regions.make_orthogonal_rectangle_sky_regions.rst","api/gammapy.utils.regions.region_to_frame.rst","api/gammapy.utils.regions.regions_to_compound_region.rst","api/gammapy.utils.scripts.get_images_paths.rst","api/gammapy.utils.scripts.make_path.rst","api/gammapy.utils.scripts.read_yaml.rst","api/gammapy.utils.scripts.recursive_merge_dicts.rst","api/gammapy.utils.scripts.write_yaml.rst","api/gammapy.utils.table.hstack_columns.rst","api/gammapy.utils.table.table_row_to_dict.rst","api/gammapy.utils.table.table_standardise_units_copy.rst","api/gammapy.utils.table.table_standardise_units_inplace.rst","api/gammapy.utils.testing.Checker.rst","api/gammapy.utils.testing.assert_quantity_allclose.rst","api/gammapy.utils.testing.assert_skycoord_allclose.rst","api/gammapy.utils.testing.assert_time_allclose.rst","api/gammapy.utils.testing.mpl_plot_check.rst","api/gammapy.utils.testing.requires_data.rst","api/gammapy.utils.testing.requires_dependency.rst","api/gammapy.utils.time.absolute_time.rst","api/gammapy.utils.time.time_ref_from_dict.rst","api/gammapy.utils.time.time_ref_to_dict.rst","api/gammapy.utils.time.time_relative_to_ref.rst","api/gammapy.utils.units.standardise_unit.rst","api/gammapy.utils.units.unit_from_fits_image_hdu.rst","api/gammapy.visualization.MapPanelPlotter.rst","api/gammapy.visualization.add_colorbar.rst","api/gammapy.visualization.annotate_heatmap.rst","api/gammapy.visualization.colormap_hess.rst","api/gammapy.visualization.colormap_milagro.rst","api/gammapy.visualization.plot_contour_line.rst","api/gammapy.visualization.plot_distribution.rst","api/gammapy.visualization.plot_heatmap.rst","api/gammapy.visualization.plot_map_rgb.rst","api/gammapy.visualization.plot_npred_signal.rst","api/gammapy.visualization.plot_spectrum_datasets_off_regions.rst","api/gammapy.visualization.plot_theta_squared_table.rst","development/dependencies.rst","development/dev_howto.rst","development/doc_howto.rst","development/index.rst","development/intro.rst","development/pigs/index.rst","development/pigs/pig-001.rst","development/pigs/pig-002.rst","development/pigs/pig-003.rst","development/pigs/pig-004.rst","development/pigs/pig-005.rst","development/pigs/pig-006.rst","development/pigs/pig-007.rst","development/pigs/pig-008.rst","development/pigs/pig-009.rst","development/pigs/pig-010.rst","development/pigs/pig-011.rst","development/pigs/pig-012.rst","development/pigs/pig-013.rst","development/pigs/pig-014.rst","development/pigs/pig-016.rst","development/pigs/pig-018.rst","development/pigs/pig-019.rst","development/pigs/pig-020.rst","development/pigs/pig-021.rst","development/pigs/pig-022.rst","development/pigs/pig-023.rst","development/pigs/pig-024.rst","development/pigs/pig-025.rst","development/pigs/pig-026.rst","development/release.rst","development/setup.rst","getting-started/environments.rst","getting-started/index.rst","getting-started/install.rst","getting-started/quickstart.rst","getting-started/troubleshooting.rst","getting-started/usage.rst","index.rst","release-notes/index.rst","release-notes/v0.1.rst","release-notes/v0.10.rst","release-notes/v0.11.rst","release-notes/v0.12.rst","release-notes/v0.13.rst","release-notes/v0.14.rst","release-notes/v0.15.rst","release-notes/v0.16.rst","release-notes/v0.17.rst","release-notes/v0.18.rst","release-notes/v0.18.1.rst","release-notes/v0.18.2.rst","release-notes/v0.19.rst","release-notes/v0.2.rst","release-notes/v0.20.rst","release-notes/v0.20.1.rst","release-notes/v0.3.rst","release-notes/v0.4.rst","release-notes/v0.5.rst","release-notes/v0.6.rst","release-notes/v0.7.rst","release-notes/v0.8.rst","release-notes/v0.9.rst","release-notes/v1.0.rst","release-notes/v1.0.1.rst","release-notes/v1.0.2.rst","release-notes/v1.1.rst","release-notes/v1.2.rst","tutorials/analysis-1d/cta_sensitivity.rst","tutorials/analysis-1d/extended_source_spectral_analysis.rst","tutorials/analysis-1d/sed_fitting.rst","tutorials/analysis-1d/sg_execution_times.rst","tutorials/analysis-1d/spectral_analysis.rst","tutorials/analysis-1d/spectral_analysis_hli.rst","tutorials/analysis-1d/spectral_analysis_rad_max.rst","tutorials/analysis-1d/spectrum_simulation.rst","tutorials/analysis-2d/detect.rst","tutorials/analysis-2d/modeling_2D.rst","tutorials/analysis-2d/ring_background.rst","tutorials/analysis-2d/sg_execution_times.rst","tutorials/analysis-3d/analysis_3d.rst","tutorials/analysis-3d/analysis_mwl.rst","tutorials/analysis-3d/cta_data_analysis.rst","tutorials/analysis-3d/energy_dependent_estimation.rst","tutorials/analysis-3d/event_sampling.rst","tutorials/analysis-3d/event_sampling_nrg_depend_models.rst","tutorials/analysis-3d/flux_profiles.rst","tutorials/analysis-3d/sg_execution_times.rst","tutorials/analysis-3d/simulate_3d.rst","tutorials/analysis-time/Variability_estimation.rst","tutorials/analysis-time/light_curve.rst","tutorials/analysis-time/light_curve_flare.rst","tutorials/analysis-time/light_curve_simulation.rst","tutorials/analysis-time/pulsar_analysis.rst","tutorials/analysis-time/sg_execution_times.rst","tutorials/api/astro_dark_matter.rst","tutorials/api/catalog.rst","tutorials/api/datasets.rst","tutorials/api/fitting.rst","tutorials/api/irfs.rst","tutorials/api/makers.rst","tutorials/api/maps.rst","tutorials/api/mask_maps.rst","tutorials/api/model_management.rst","tutorials/api/models.rst","tutorials/api/observation_clustering.rst","tutorials/api/sg_execution_times.rst","tutorials/data/cta.rst","tutorials/data/fermi_lat.rst","tutorials/data/hawc.rst","tutorials/data/hess.rst","tutorials/data/sg_execution_times.rst","tutorials/index.rst","tutorials/scripts/sg_execution_times.rst","tutorials/scripts/survey_map.rst","tutorials/starting/analysis_1.rst","tutorials/starting/analysis_2.rst","tutorials/starting/overview.rst","tutorials/starting/sg_execution_times.rst","user-guide/astro/darkmatter/index.rst","user-guide/astro/index.rst","user-guide/astro/population/index.rst","user-guide/astro/source/index.rst","user-guide/astro/source/pulsar.rst","user-guide/astro/source/pwn.rst","user-guide/astro/source/snr.rst","user-guide/catalog.rst","user-guide/datasets/index.rst","user-guide/dl3.rst","user-guide/estimators.rst","user-guide/hli.rst","user-guide/howto.rst","user-guide/index.rst","user-guide/irf/aeff.rst","user-guide/irf/bkg.rst","user-guide/irf/edisp.rst","user-guide/irf/index.rst","user-guide/irf/psf.rst","user-guide/makers/fov.rst","user-guide/makers/index.rst","user-guide/makers/reflected.rst","user-guide/makers/ring.rst","user-guide/maps/hpxmap.rst","user-guide/maps/index.rst","user-guide/maps/regionmap.rst","user-guide/model-gallery/index.rst","user-guide/model-gallery/spatial/plot_constant.rst","user-guide/model-gallery/spatial/plot_disk.rst","user-guide/model-gallery/spatial/plot_gauss.rst","user-guide/model-gallery/spatial/plot_gen_gauss.rst","user-guide/model-gallery/spatial/plot_piecewise_norm_spatial.rst","user-guide/model-gallery/spatial/plot_point.rst","user-guide/model-gallery/spatial/plot_shell.rst","user-guide/model-gallery/spatial/plot_shell2.rst","user-guide/model-gallery/spatial/plot_template.rst","user-guide/model-gallery/spatial/sg_execution_times.rst","user-guide/model-gallery/spectral/plot_absorbed.rst","user-guide/model-gallery/spectral/plot_broken_powerlaw.rst","user-guide/model-gallery/spectral/plot_compound.rst","user-guide/model-gallery/spectral/plot_constant_spectral.rst","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw.rst","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw_3fgl.rst","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw_norm_spectral.rst","user-guide/model-gallery/spectral/plot_gauss_spectral.rst","user-guide/model-gallery/spectral/plot_logparabola.rst","user-guide/model-gallery/spectral/plot_logparabola_norm_spectral.rst","user-guide/model-gallery/spectral/plot_naima.rst","user-guide/model-gallery/spectral/plot_piecewise_norm_spectral.rst","user-guide/model-gallery/spectral/plot_powerlaw.rst","user-guide/model-gallery/spectral/plot_powerlaw2.rst","user-guide/model-gallery/spectral/plot_powerlaw_norm_spectral.rst","user-guide/model-gallery/spectral/plot_smooth_broken_powerlaw.rst","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_3fgl.rst","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_4fgl.rst","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_4fgl_dr1.rst","user-guide/model-gallery/spectral/plot_template_spectral.rst","user-guide/model-gallery/spectral/sg_execution_times.rst","user-guide/model-gallery/temporal/plot_constant_temporal.rst","user-guide/model-gallery/temporal/plot_expdecay_temporal.rst","user-guide/model-gallery/temporal/plot_gaussian_temporal.rst","user-guide/model-gallery/temporal/plot_generalized_gaussian_temporal.rst","user-guide/model-gallery/temporal/plot_linear_temporal.rst","user-guide/model-gallery/temporal/plot_powerlaw_temporal.rst","user-guide/model-gallery/temporal/plot_sine_temporal.rst","user-guide/model-gallery/temporal/plot_template_phase_temporal.rst","user-guide/model-gallery/temporal/plot_template_temporal.rst","user-guide/model-gallery/temporal/sg_execution_times.rst","user-guide/modeling.rst","user-guide/package.rst","user-guide/references.rst","user-guide/scripts/index.rst","user-guide/stats/fit_statistics.rst","user-guide/stats/index.rst","user-guide/stats/wstat_derivation.rst","user-guide/utils.rst","user-guide/visualization/index.rst"],objects:{"gammapy-analysis-config":[[11,6,1,"cmdoption-gammapy-analysis-config-filename","--filename"],[11,6,1,"cmdoption-gammapy-analysis-config-overwrite","--overwrite"]],"gammapy-analysis-run":[[11,6,1,"cmdoption-gammapy-analysis-run-filename","--filename"],[11,6,1,"cmdoption-gammapy-analysis-run-out","--out"],[11,6,1,"cmdoption-gammapy-analysis-run-overwrite","--overwrite"]],"gammapy-download-datasets":[[11,6,1,"cmdoption-gammapy-download-datasets-out","--out"],[11,6,1,"cmdoption-gammapy-download-datasets-release","--release"]],"gammapy-download-notebooks":[[11,6,1,"cmdoption-gammapy-download-notebooks-out","--out"],[11,6,1,"cmdoption-gammapy-download-notebooks-release","--release"]],"gammapy-info":[[11,6,1,"cmdoption-gammapy-info-dependencies","--dependencies"],[11,6,1,"cmdoption-gammapy-info-envvar","--envvar"],[11,6,1,"cmdoption-gammapy-info-dependencies","--no-dependencies"],[11,6,1,"cmdoption-gammapy-info-envvar","--no-envvar"],[11,6,1,"cmdoption-gammapy-info-system","--no-system"],[11,6,1,"cmdoption-gammapy-info-version","--no-version"],[11,6,1,"cmdoption-gammapy-info-system","--system"],[11,6,1,"cmdoption-gammapy-info-version","--version"]],"gammapy.analysis":[[15,1,1,"","Analysis"],[16,1,1,"","AnalysisConfig"]],"gammapy.analysis.Analysis":[[15,2,1,"","config"],[15,3,1,"","get_datasets"],[15,3,1,"","get_excess_map"],[15,3,1,"","get_flux_points"],[15,3,1,"","get_light_curve"],[15,3,1,"","get_observations"],[15,2,1,"","models"],[15,3,1,"","read_datasets"],[15,3,1,"","read_models"],[15,3,1,"","run_fit"],[15,3,1,"","set_models"],[15,3,1,"","update_config"],[15,3,1,"","write_datasets"],[15,3,1,"","write_models"]],"gammapy.analysis.AnalysisConfig":[[16,3,1,"","construct"],[16,3,1,"","copy"],[16,3,1,"","dict"],[16,3,1,"","from_orm"],[16,3,1,"","from_yaml"],[16,3,1,"","json"],[16,2,1,"","model_computed_fields"],[16,2,1,"","model_config"],[16,3,1,"","model_construct"],[16,3,1,"","model_copy"],[16,3,1,"","model_dump"],[16,3,1,"","model_dump_json"],[16,2,1,"","model_extra"],[16,2,1,"","model_fields"],[16,2,1,"","model_fields_set"],[16,3,1,"","model_json_schema"],[16,3,1,"","model_parametrized_name"],[16,3,1,"","model_post_init"],[16,3,1,"","model_rebuild"],[16,3,1,"","model_validate"],[16,3,1,"","model_validate_json"],[16,3,1,"","model_validate_strings"],[16,3,1,"","parse_file"],[16,3,1,"","parse_obj"],[16,3,1,"","parse_raw"],[16,3,1,"","read"],[16,3,1,"","schema"],[16,3,1,"","schema_json"],[16,3,1,"","set_logging"],[16,3,1,"","to_yaml"],[16,3,1,"","update"],[16,3,1,"","update_forward_refs"],[16,3,1,"","validate"],[16,3,1,"","write"]],"gammapy.astro":[[1,0,0,"-","darkmatter"],[1,0,0,"-","population"],[1,0,0,"-","source"]],"gammapy.astro.darkmatter":[[17,1,1,"","BurkertProfile"],[18,1,1,"","DMProfile"],[19,1,1,"","DarkMatterAnnihilationSpectralModel"],[20,1,1,"","DarkMatterDecaySpectralModel"],[21,1,1,"","EinastoProfile"],[22,1,1,"","IsothermalProfile"],[23,1,1,"","JFactory"],[24,1,1,"","MooreProfile"],[25,1,1,"","NFWProfile"],[26,1,1,"","PrimaryFlux"],[27,1,1,"","ZhaoProfile"]],"gammapy.astro.darkmatter.BurkertProfile":[[17,2,1,"","DEFAULT_SCALE_RADIUS"],[17,2,1,"","DISTANCE_GC"],[17,2,1,"","LOCAL_DENSITY"],[17,3,1,"","__call__"],[17,3,1,"","evaluate"],[17,3,1,"","integral"],[17,3,1,"","integrate_spectrum_separation"],[17,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.DMProfile":[[18,2,1,"","DISTANCE_GC"],[18,2,1,"","LOCAL_DENSITY"],[18,3,1,"","__call__"],[18,3,1,"","integral"],[18,3,1,"","integrate_spectrum_separation"],[18,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.DarkMatterAnnihilationSpectralModel":[[19,2,1,"","THERMAL_RELIC_CROSS_SECTION"],[19,3,1,"","__call__"],[19,3,1,"","copy"],[19,2,1,"","covariance"],[19,2,1,"","default_parameters"],[19,3,1,"","energy_flux"],[19,3,1,"","energy_flux_error"],[19,3,1,"","evaluate"],[19,3,1,"","evaluate_error"],[19,3,1,"","freeze"],[19,3,1,"","from_dict"],[19,3,1,"","from_parameters"],[19,2,1,"","frozen"],[19,3,1,"","integral"],[19,3,1,"","integral_error"],[19,3,1,"","inverse"],[19,3,1,"","inverse_all"],[19,2,1,"","is_norm_spectral_model"],[19,2,1,"","parameters"],[19,2,1,"","pivot_energy"],[19,3,1,"","plot"],[19,3,1,"","plot_error"],[19,3,1,"","reassign"],[19,3,1,"","reference_fluxes"],[19,2,1,"","scale"],[19,3,1,"","spectral_index"],[19,3,1,"","spectral_index_error"],[19,2,1,"","tag"],[19,3,1,"","to_dict"],[19,2,1,"","type"],[19,3,1,"","unfreeze"]],"gammapy.astro.darkmatter.DarkMatterDecaySpectralModel":[[20,2,1,"","LIFETIME_AGE_OF_UNIVERSE"],[20,3,1,"","__call__"],[20,3,1,"","copy"],[20,2,1,"","covariance"],[20,2,1,"","default_parameters"],[20,3,1,"","energy_flux"],[20,3,1,"","energy_flux_error"],[20,3,1,"","evaluate"],[20,3,1,"","evaluate_error"],[20,3,1,"","freeze"],[20,3,1,"","from_dict"],[20,3,1,"","from_parameters"],[20,2,1,"","frozen"],[20,3,1,"","integral"],[20,3,1,"","integral_error"],[20,3,1,"","inverse"],[20,3,1,"","inverse_all"],[20,2,1,"","is_norm_spectral_model"],[20,2,1,"","parameters"],[20,2,1,"","pivot_energy"],[20,3,1,"","plot"],[20,3,1,"","plot_error"],[20,3,1,"","reassign"],[20,3,1,"","reference_fluxes"],[20,2,1,"","scale"],[20,3,1,"","spectral_index"],[20,3,1,"","spectral_index_error"],[20,2,1,"","tag"],[20,3,1,"","to_dict"],[20,2,1,"","type"],[20,3,1,"","unfreeze"]],"gammapy.astro.darkmatter.EinastoProfile":[[21,2,1,"","DEFAULT_ALPHA"],[21,2,1,"","DEFAULT_SCALE_RADIUS"],[21,2,1,"","DISTANCE_GC"],[21,2,1,"","LOCAL_DENSITY"],[21,3,1,"","__call__"],[21,3,1,"","evaluate"],[21,3,1,"","integral"],[21,3,1,"","integrate_spectrum_separation"],[21,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.IsothermalProfile":[[22,2,1,"","DEFAULT_SCALE_RADIUS"],[22,2,1,"","DISTANCE_GC"],[22,2,1,"","LOCAL_DENSITY"],[22,3,1,"","__call__"],[22,3,1,"","evaluate"],[22,3,1,"","integral"],[22,3,1,"","integrate_spectrum_separation"],[22,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.JFactory":[[23,3,1,"","compute_differential_jfactor"],[23,3,1,"","compute_jfactor"]],"gammapy.astro.darkmatter.MooreProfile":[[24,2,1,"","DEFAULT_SCALE_RADIUS"],[24,2,1,"","DISTANCE_GC"],[24,2,1,"","LOCAL_DENSITY"],[24,3,1,"","__call__"],[24,3,1,"","evaluate"],[24,3,1,"","integral"],[24,3,1,"","integrate_spectrum_separation"],[24,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.NFWProfile":[[25,2,1,"","DEFAULT_SCALE_RADIUS"],[25,2,1,"","DISTANCE_GC"],[25,2,1,"","LOCAL_DENSITY"],[25,3,1,"","__call__"],[25,3,1,"","evaluate"],[25,3,1,"","integral"],[25,3,1,"","integrate_spectrum_separation"],[25,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.PrimaryFlux":[[26,3,1,"","__call__"],[26,2,1,"","allowed_channels"],[26,2,1,"","channel"],[26,2,1,"","channel_registry"],[26,3,1,"","copy"],[26,2,1,"","covariance"],[26,2,1,"","default_parameters"],[26,3,1,"","energy_flux"],[26,3,1,"","energy_flux_error"],[26,3,1,"","evaluate"],[26,3,1,"","evaluate_error"],[26,3,1,"","freeze"],[26,3,1,"","from_dict"],[26,3,1,"","from_parameters"],[26,2,1,"","frozen"],[26,3,1,"","integral"],[26,3,1,"","integral_error"],[26,3,1,"","inverse"],[26,3,1,"","inverse_all"],[26,2,1,"","is_norm_spectral_model"],[26,2,1,"","mDM"],[26,2,1,"","map"],[26,2,1,"","parameters"],[26,2,1,"","pivot_energy"],[26,3,1,"","plot"],[26,3,1,"","plot_error"],[26,3,1,"","reassign"],[26,3,1,"","reference_fluxes"],[26,3,1,"","spectral_index"],[26,3,1,"","spectral_index_error"],[26,2,1,"","table_filename"],[26,2,1,"","tag"],[26,3,1,"","to_dict"],[26,2,1,"","type"],[26,3,1,"","unfreeze"],[26,3,1,"","write"]],"gammapy.astro.darkmatter.ZhaoProfile":[[27,2,1,"","DEFAULT_ALPHA"],[27,2,1,"","DEFAULT_BETA"],[27,2,1,"","DEFAULT_GAMMA"],[27,2,1,"","DEFAULT_SCALE_RADIUS"],[27,2,1,"","DISTANCE_GC"],[27,2,1,"","LOCAL_DENSITY"],[27,3,1,"","__call__"],[27,3,1,"","evaluate"],[27,3,1,"","integral"],[27,3,1,"","integrate_spectrum_separation"],[27,3,1,"","scale_to_local_density"]],"gammapy.astro.population":[[28,1,1,"","CaseBattacharya1998"],[29,1,1,"","Exponential"],[30,1,1,"","FaucherKaspi2006"],[31,1,1,"","FaucherKaspi2006VelocityBimodal"],[32,1,1,"","FaucherKaspi2006VelocityMaxwellian"],[33,1,1,"","FaucherSpiral"],[34,1,1,"","LogSpiral"],[35,1,1,"","Lorimer2006"],[36,1,1,"","Paczynski1990"],[37,1,1,"","Paczynski1990Velocity"],[38,1,1,"","ValleeSpiral"],[39,1,1,"","YusifovKucuk2004"],[40,1,1,"","YusifovKucuk2004B"],[41,4,1,"","add_observed_parameters"],[42,4,1,"","add_pulsar_parameters"],[43,4,1,"","add_pwn_parameters"],[44,4,1,"","add_snr_parameters"],[45,4,1,"","make_base_catalog_galactic"],[46,4,1,"","make_catalog_random_positions_cube"],[47,4,1,"","make_catalog_random_positions_sphere"],[48,5,1,"","radial_distributions"],[49,5,1,"","velocity_distributions"]],"gammapy.astro.population.CaseBattacharya1998":[[28,3,1,"","__call__"],[28,2,1,"","alpha"],[28,2,1,"","amplitude"],[28,2,1,"","bbox_with_units"],[28,2,1,"","beta"],[28,2,1,"","bounding_box"],[28,2,1,"","bounds"],[28,3,1,"","coerce_units"],[28,2,1,"","col_fit_deriv"],[28,3,1,"","copy"],[28,2,1,"","cov_matrix"],[28,3,1,"","deepcopy"],[28,2,1,"","eqcons"],[28,3,1,"","evaluate"],[28,2,1,"","evolved"],[28,2,1,"","fit_deriv"],[28,2,1,"","fittable"],[28,2,1,"","fixed"],[28,3,1,"","get_bounding_box"],[28,3,1,"","has_inverse"],[28,2,1,"","has_user_bounding_box"],[28,2,1,"","has_user_inverse"],[28,2,1,"","ineqcons"],[28,3,1,"","input_shape"],[28,2,1,"","input_units"],[28,2,1,"","input_units_allow_dimensionless"],[28,2,1,"","input_units_equivalencies"],[28,2,1,"","input_units_strict"],[28,2,1,"","inputs"],[28,2,1,"","inverse"],[28,2,1,"","linear"],[28,2,1,"","meta"],[28,2,1,"","model_constraints"],[28,2,1,"","model_set_axis"],[28,2,1,"","n_inputs"],[28,2,1,"","n_outputs"],[28,2,1,"","n_submodels"],[28,2,1,"","name"],[28,3,1,"","output_units"],[28,2,1,"","outputs"],[28,2,1,"","param_names"],[28,2,1,"","param_sets"],[28,2,1,"","parameter_constraints"],[28,2,1,"","parameters"],[28,3,1,"","prepare_inputs"],[28,3,1,"","prepare_outputs"],[28,3,1,"","rename"],[28,3,1,"","render"],[28,2,1,"","return_units"],[28,2,1,"","separable"],[28,3,1,"","set_slice_args"],[28,2,1,"","standard_broadcasting"],[28,2,1,"","stds"],[28,3,1,"","strip_units_from_tree"],[28,3,1,"","sum_of_implicit_terms"],[28,2,1,"","sync_constraints"],[28,2,1,"","tied"],[28,2,1,"","uses_quantity"],[28,3,1,"","with_units_from_data"],[28,3,1,"","without_units_for_data"]],"gammapy.astro.population.Exponential":[[29,3,1,"","__call__"],[29,2,1,"","amplitude"],[29,2,1,"","bbox_with_units"],[29,2,1,"","bounding_box"],[29,2,1,"","bounds"],[29,3,1,"","coerce_units"],[29,2,1,"","col_fit_deriv"],[29,3,1,"","copy"],[29,2,1,"","cov_matrix"],[29,3,1,"","deepcopy"],[29,2,1,"","eqcons"],[29,3,1,"","evaluate"],[29,2,1,"","evolved"],[29,2,1,"","fit_deriv"],[29,2,1,"","fittable"],[29,2,1,"","fixed"],[29,3,1,"","get_bounding_box"],[29,3,1,"","has_inverse"],[29,2,1,"","has_user_bounding_box"],[29,2,1,"","has_user_inverse"],[29,2,1,"","ineqcons"],[29,3,1,"","input_shape"],[29,2,1,"","input_units"],[29,2,1,"","input_units_allow_dimensionless"],[29,2,1,"","input_units_equivalencies"],[29,2,1,"","input_units_strict"],[29,2,1,"","inputs"],[29,2,1,"","inverse"],[29,2,1,"","linear"],[29,2,1,"","meta"],[29,2,1,"","model_constraints"],[29,2,1,"","model_set_axis"],[29,2,1,"","n_inputs"],[29,2,1,"","n_outputs"],[29,2,1,"","n_submodels"],[29,2,1,"","name"],[29,3,1,"","output_units"],[29,2,1,"","outputs"],[29,2,1,"","param_names"],[29,2,1,"","param_sets"],[29,2,1,"","parameter_constraints"],[29,2,1,"","parameters"],[29,3,1,"","prepare_inputs"],[29,3,1,"","prepare_outputs"],[29,3,1,"","rename"],[29,3,1,"","render"],[29,2,1,"","return_units"],[29,2,1,"","separable"],[29,3,1,"","set_slice_args"],[29,2,1,"","standard_broadcasting"],[29,2,1,"","stds"],[29,3,1,"","strip_units_from_tree"],[29,3,1,"","sum_of_implicit_terms"],[29,2,1,"","sync_constraints"],[29,2,1,"","tied"],[29,2,1,"","uses_quantity"],[29,3,1,"","with_units_from_data"],[29,3,1,"","without_units_for_data"],[29,2,1,"","z_0"]],"gammapy.astro.population.FaucherKaspi2006":[[30,3,1,"","__call__"],[30,2,1,"","amplitude"],[30,2,1,"","bbox_with_units"],[30,2,1,"","bounding_box"],[30,2,1,"","bounds"],[30,3,1,"","coerce_units"],[30,2,1,"","col_fit_deriv"],[30,3,1,"","copy"],[30,2,1,"","cov_matrix"],[30,3,1,"","deepcopy"],[30,2,1,"","eqcons"],[30,3,1,"","evaluate"],[30,2,1,"","evolved"],[30,2,1,"","fit_deriv"],[30,2,1,"","fittable"],[30,2,1,"","fixed"],[30,3,1,"","get_bounding_box"],[30,3,1,"","has_inverse"],[30,2,1,"","has_user_bounding_box"],[30,2,1,"","has_user_inverse"],[30,2,1,"","ineqcons"],[30,3,1,"","input_shape"],[30,2,1,"","input_units"],[30,2,1,"","input_units_allow_dimensionless"],[30,2,1,"","input_units_equivalencies"],[30,2,1,"","input_units_strict"],[30,2,1,"","inputs"],[30,2,1,"","inverse"],[30,2,1,"","linear"],[30,2,1,"","meta"],[30,2,1,"","model_constraints"],[30,2,1,"","model_set_axis"],[30,2,1,"","n_inputs"],[30,2,1,"","n_outputs"],[30,2,1,"","n_submodels"],[30,2,1,"","name"],[30,3,1,"","output_units"],[30,2,1,"","outputs"],[30,2,1,"","param_names"],[30,2,1,"","param_sets"],[30,2,1,"","parameter_constraints"],[30,2,1,"","parameters"],[30,3,1,"","prepare_inputs"],[30,3,1,"","prepare_outputs"],[30,2,1,"","r_0"],[30,3,1,"","rename"],[30,3,1,"","render"],[30,2,1,"","return_units"],[30,2,1,"","separable"],[30,3,1,"","set_slice_args"],[30,2,1,"","sigma"],[30,2,1,"","standard_broadcasting"],[30,2,1,"","stds"],[30,3,1,"","strip_units_from_tree"],[30,3,1,"","sum_of_implicit_terms"],[30,2,1,"","sync_constraints"],[30,2,1,"","tied"],[30,2,1,"","uses_quantity"],[30,3,1,"","with_units_from_data"],[30,3,1,"","without_units_for_data"]],"gammapy.astro.population.FaucherKaspi2006VelocityBimodal":[[31,3,1,"","__call__"],[31,2,1,"","amplitude"],[31,2,1,"","bbox_with_units"],[31,2,1,"","bounding_box"],[31,2,1,"","bounds"],[31,3,1,"","coerce_units"],[31,2,1,"","col_fit_deriv"],[31,3,1,"","copy"],[31,2,1,"","cov_matrix"],[31,3,1,"","deepcopy"],[31,2,1,"","eqcons"],[31,3,1,"","evaluate"],[31,2,1,"","fit_deriv"],[31,2,1,"","fittable"],[31,2,1,"","fixed"],[31,3,1,"","get_bounding_box"],[31,3,1,"","has_inverse"],[31,2,1,"","has_user_bounding_box"],[31,2,1,"","has_user_inverse"],[31,2,1,"","ineqcons"],[31,3,1,"","input_shape"],[31,2,1,"","input_units"],[31,2,1,"","input_units_allow_dimensionless"],[31,2,1,"","input_units_equivalencies"],[31,2,1,"","input_units_strict"],[31,2,1,"","inputs"],[31,2,1,"","inverse"],[31,2,1,"","linear"],[31,2,1,"","meta"],[31,2,1,"","model_constraints"],[31,2,1,"","model_set_axis"],[31,2,1,"","n_inputs"],[31,2,1,"","n_outputs"],[31,2,1,"","n_submodels"],[31,2,1,"","name"],[31,3,1,"","output_units"],[31,2,1,"","outputs"],[31,2,1,"","param_names"],[31,2,1,"","param_sets"],[31,2,1,"","parameter_constraints"],[31,2,1,"","parameters"],[31,3,1,"","prepare_inputs"],[31,3,1,"","prepare_outputs"],[31,3,1,"","rename"],[31,3,1,"","render"],[31,2,1,"","return_units"],[31,2,1,"","separable"],[31,3,1,"","set_slice_args"],[31,2,1,"","sigma_1"],[31,2,1,"","sigma_2"],[31,2,1,"","standard_broadcasting"],[31,2,1,"","stds"],[31,3,1,"","strip_units_from_tree"],[31,3,1,"","sum_of_implicit_terms"],[31,2,1,"","sync_constraints"],[31,2,1,"","tied"],[31,2,1,"","uses_quantity"],[31,2,1,"","w"],[31,3,1,"","with_units_from_data"],[31,3,1,"","without_units_for_data"]],"gammapy.astro.population.FaucherKaspi2006VelocityMaxwellian":[[32,3,1,"","__call__"],[32,2,1,"","amplitude"],[32,2,1,"","bbox_with_units"],[32,2,1,"","bounding_box"],[32,2,1,"","bounds"],[32,3,1,"","coerce_units"],[32,2,1,"","col_fit_deriv"],[32,3,1,"","copy"],[32,2,1,"","cov_matrix"],[32,3,1,"","deepcopy"],[32,2,1,"","eqcons"],[32,3,1,"","evaluate"],[32,2,1,"","fit_deriv"],[32,2,1,"","fittable"],[32,2,1,"","fixed"],[32,3,1,"","get_bounding_box"],[32,3,1,"","has_inverse"],[32,2,1,"","has_user_bounding_box"],[32,2,1,"","has_user_inverse"],[32,2,1,"","ineqcons"],[32,3,1,"","input_shape"],[32,2,1,"","input_units"],[32,2,1,"","input_units_allow_dimensionless"],[32,2,1,"","input_units_equivalencies"],[32,2,1,"","input_units_strict"],[32,2,1,"","inputs"],[32,2,1,"","inverse"],[32,2,1,"","linear"],[32,2,1,"","meta"],[32,2,1,"","model_constraints"],[32,2,1,"","model_set_axis"],[32,2,1,"","n_inputs"],[32,2,1,"","n_outputs"],[32,2,1,"","n_submodels"],[32,2,1,"","name"],[32,3,1,"","output_units"],[32,2,1,"","outputs"],[32,2,1,"","param_names"],[32,2,1,"","param_sets"],[32,2,1,"","parameter_constraints"],[32,2,1,"","parameters"],[32,3,1,"","prepare_inputs"],[32,3,1,"","prepare_outputs"],[32,3,1,"","rename"],[32,3,1,"","render"],[32,2,1,"","return_units"],[32,2,1,"","separable"],[32,3,1,"","set_slice_args"],[32,2,1,"","sigma"],[32,2,1,"","standard_broadcasting"],[32,2,1,"","stds"],[32,3,1,"","strip_units_from_tree"],[32,3,1,"","sum_of_implicit_terms"],[32,2,1,"","sync_constraints"],[32,2,1,"","tied"],[32,2,1,"","uses_quantity"],[32,3,1,"","with_units_from_data"],[32,3,1,"","without_units_for_data"]],"gammapy.astro.population.FaucherSpiral":[[33,3,1,"","__call__"],[33,2,1,"","k"],[33,2,1,"","r_0"],[33,3,1,"","radius"],[33,2,1,"","spiralarms"],[33,3,1,"","theta"],[33,2,1,"","theta_0"],[33,3,1,"","xy_position"]],"gammapy.astro.population.LogSpiral":[[34,3,1,"","radius"],[34,3,1,"","theta"],[34,3,1,"","xy_position"]],"gammapy.astro.population.Lorimer2006":[[35,2,1,"","B"],[35,2,1,"","C"],[35,3,1,"","__call__"],[35,2,1,"","amplitude"],[35,2,1,"","bbox_with_units"],[35,2,1,"","bounding_box"],[35,2,1,"","bounds"],[35,3,1,"","coerce_units"],[35,2,1,"","col_fit_deriv"],[35,3,1,"","copy"],[35,2,1,"","cov_matrix"],[35,3,1,"","deepcopy"],[35,2,1,"","eqcons"],[35,3,1,"","evaluate"],[35,2,1,"","evolved"],[35,2,1,"","fit_deriv"],[35,2,1,"","fittable"],[35,2,1,"","fixed"],[35,3,1,"","get_bounding_box"],[35,3,1,"","has_inverse"],[35,2,1,"","has_user_bounding_box"],[35,2,1,"","has_user_inverse"],[35,2,1,"","ineqcons"],[35,3,1,"","input_shape"],[35,2,1,"","input_units"],[35,2,1,"","input_units_allow_dimensionless"],[35,2,1,"","input_units_equivalencies"],[35,2,1,"","input_units_strict"],[35,2,1,"","inputs"],[35,2,1,"","inverse"],[35,2,1,"","linear"],[35,2,1,"","meta"],[35,2,1,"","model_constraints"],[35,2,1,"","model_set_axis"],[35,2,1,"","n_inputs"],[35,2,1,"","n_outputs"],[35,2,1,"","n_submodels"],[35,2,1,"","name"],[35,3,1,"","output_units"],[35,2,1,"","outputs"],[35,2,1,"","param_names"],[35,2,1,"","param_sets"],[35,2,1,"","parameter_constraints"],[35,2,1,"","parameters"],[35,3,1,"","prepare_inputs"],[35,3,1,"","prepare_outputs"],[35,3,1,"","rename"],[35,3,1,"","render"],[35,2,1,"","return_units"],[35,2,1,"","separable"],[35,3,1,"","set_slice_args"],[35,2,1,"","standard_broadcasting"],[35,2,1,"","stds"],[35,3,1,"","strip_units_from_tree"],[35,3,1,"","sum_of_implicit_terms"],[35,2,1,"","sync_constraints"],[35,2,1,"","tied"],[35,2,1,"","uses_quantity"],[35,3,1,"","with_units_from_data"],[35,3,1,"","without_units_for_data"]],"gammapy.astro.population.Paczynski1990":[[36,3,1,"","__call__"],[36,2,1,"","amplitude"],[36,2,1,"","bbox_with_units"],[36,2,1,"","bounding_box"],[36,2,1,"","bounds"],[36,3,1,"","coerce_units"],[36,2,1,"","col_fit_deriv"],[36,3,1,"","copy"],[36,2,1,"","cov_matrix"],[36,3,1,"","deepcopy"],[36,2,1,"","eqcons"],[36,3,1,"","evaluate"],[36,2,1,"","evolved"],[36,2,1,"","fit_deriv"],[36,2,1,"","fittable"],[36,2,1,"","fixed"],[36,3,1,"","get_bounding_box"],[36,3,1,"","has_inverse"],[36,2,1,"","has_user_bounding_box"],[36,2,1,"","has_user_inverse"],[36,2,1,"","ineqcons"],[36,3,1,"","input_shape"],[36,2,1,"","input_units"],[36,2,1,"","input_units_allow_dimensionless"],[36,2,1,"","input_units_equivalencies"],[36,2,1,"","input_units_strict"],[36,2,1,"","inputs"],[36,2,1,"","inverse"],[36,2,1,"","linear"],[36,2,1,"","meta"],[36,2,1,"","model_constraints"],[36,2,1,"","model_set_axis"],[36,2,1,"","n_inputs"],[36,2,1,"","n_outputs"],[36,2,1,"","n_submodels"],[36,2,1,"","name"],[36,3,1,"","output_units"],[36,2,1,"","outputs"],[36,2,1,"","param_names"],[36,2,1,"","param_sets"],[36,2,1,"","parameter_constraints"],[36,2,1,"","parameters"],[36,3,1,"","prepare_inputs"],[36,3,1,"","prepare_outputs"],[36,2,1,"","r_exp"],[36,3,1,"","rename"],[36,3,1,"","render"],[36,2,1,"","return_units"],[36,2,1,"","separable"],[36,3,1,"","set_slice_args"],[36,2,1,"","standard_broadcasting"],[36,2,1,"","stds"],[36,3,1,"","strip_units_from_tree"],[36,3,1,"","sum_of_implicit_terms"],[36,2,1,"","sync_constraints"],[36,2,1,"","tied"],[36,2,1,"","uses_quantity"],[36,3,1,"","with_units_from_data"],[36,3,1,"","without_units_for_data"]],"gammapy.astro.population.Paczynski1990Velocity":[[37,3,1,"","__call__"],[37,2,1,"","amplitude"],[37,2,1,"","bbox_with_units"],[37,2,1,"","bounding_box"],[37,2,1,"","bounds"],[37,3,1,"","coerce_units"],[37,2,1,"","col_fit_deriv"],[37,3,1,"","copy"],[37,2,1,"","cov_matrix"],[37,3,1,"","deepcopy"],[37,2,1,"","eqcons"],[37,3,1,"","evaluate"],[37,2,1,"","fit_deriv"],[37,2,1,"","fittable"],[37,2,1,"","fixed"],[37,3,1,"","get_bounding_box"],[37,3,1,"","has_inverse"],[37,2,1,"","has_user_bounding_box"],[37,2,1,"","has_user_inverse"],[37,2,1,"","ineqcons"],[37,3,1,"","input_shape"],[37,2,1,"","input_units"],[37,2,1,"","input_units_allow_dimensionless"],[37,2,1,"","input_units_equivalencies"],[37,2,1,"","input_units_strict"],[37,2,1,"","inputs"],[37,2,1,"","inverse"],[37,2,1,"","linear"],[37,2,1,"","meta"],[37,2,1,"","model_constraints"],[37,2,1,"","model_set_axis"],[37,2,1,"","n_inputs"],[37,2,1,"","n_outputs"],[37,2,1,"","n_submodels"],[37,2,1,"","name"],[37,3,1,"","output_units"],[37,2,1,"","outputs"],[37,2,1,"","param_names"],[37,2,1,"","param_sets"],[37,2,1,"","parameter_constraints"],[37,2,1,"","parameters"],[37,3,1,"","prepare_inputs"],[37,3,1,"","prepare_outputs"],[37,3,1,"","rename"],[37,3,1,"","render"],[37,2,1,"","return_units"],[37,2,1,"","separable"],[37,3,1,"","set_slice_args"],[37,2,1,"","standard_broadcasting"],[37,2,1,"","stds"],[37,3,1,"","strip_units_from_tree"],[37,3,1,"","sum_of_implicit_terms"],[37,2,1,"","sync_constraints"],[37,2,1,"","tied"],[37,2,1,"","uses_quantity"],[37,2,1,"","v_0"],[37,3,1,"","with_units_from_data"],[37,3,1,"","without_units_for_data"]],"gammapy.astro.population.ValleeSpiral":[[38,2,1,"","bar_radius"],[38,2,1,"","m"],[38,2,1,"","p"],[38,2,1,"","r_0"],[38,2,1,"","r_sun"],[38,3,1,"","radius"],[38,2,1,"","spiralarms"],[38,3,1,"","theta"],[38,2,1,"","theta_0"],[38,3,1,"","xy_position"]],"gammapy.astro.population.YusifovKucuk2004":[[39,3,1,"","__call__"],[39,2,1,"","a"],[39,2,1,"","amplitude"],[39,2,1,"","b"],[39,2,1,"","bbox_with_units"],[39,2,1,"","bounding_box"],[39,2,1,"","bounds"],[39,3,1,"","coerce_units"],[39,2,1,"","col_fit_deriv"],[39,3,1,"","copy"],[39,2,1,"","cov_matrix"],[39,3,1,"","deepcopy"],[39,2,1,"","eqcons"],[39,3,1,"","evaluate"],[39,2,1,"","evolved"],[39,2,1,"","fit_deriv"],[39,2,1,"","fittable"],[39,2,1,"","fixed"],[39,3,1,"","get_bounding_box"],[39,3,1,"","has_inverse"],[39,2,1,"","has_user_bounding_box"],[39,2,1,"","has_user_inverse"],[39,2,1,"","ineqcons"],[39,3,1,"","input_shape"],[39,2,1,"","input_units"],[39,2,1,"","input_units_allow_dimensionless"],[39,2,1,"","input_units_equivalencies"],[39,2,1,"","input_units_strict"],[39,2,1,"","inputs"],[39,2,1,"","inverse"],[39,2,1,"","linear"],[39,2,1,"","meta"],[39,2,1,"","model_constraints"],[39,2,1,"","model_set_axis"],[39,2,1,"","n_inputs"],[39,2,1,"","n_outputs"],[39,2,1,"","n_submodels"],[39,2,1,"","name"],[39,3,1,"","output_units"],[39,2,1,"","outputs"],[39,2,1,"","param_names"],[39,2,1,"","param_sets"],[39,2,1,"","parameter_constraints"],[39,2,1,"","parameters"],[39,3,1,"","prepare_inputs"],[39,3,1,"","prepare_outputs"],[39,2,1,"","r_1"],[39,3,1,"","rename"],[39,3,1,"","render"],[39,2,1,"","return_units"],[39,2,1,"","separable"],[39,3,1,"","set_slice_args"],[39,2,1,"","standard_broadcasting"],[39,2,1,"","stds"],[39,3,1,"","strip_units_from_tree"],[39,3,1,"","sum_of_implicit_terms"],[39,2,1,"","sync_constraints"],[39,2,1,"","tied"],[39,2,1,"","uses_quantity"],[39,3,1,"","with_units_from_data"],[39,3,1,"","without_units_for_data"]],"gammapy.astro.population.YusifovKucuk2004B":[[40,3,1,"","__call__"],[40,2,1,"","a"],[40,2,1,"","amplitude"],[40,2,1,"","b"],[40,2,1,"","bbox_with_units"],[40,2,1,"","bounding_box"],[40,2,1,"","bounds"],[40,3,1,"","coerce_units"],[40,2,1,"","col_fit_deriv"],[40,3,1,"","copy"],[40,2,1,"","cov_matrix"],[40,3,1,"","deepcopy"],[40,2,1,"","eqcons"],[40,3,1,"","evaluate"],[40,2,1,"","evolved"],[40,2,1,"","fit_deriv"],[40,2,1,"","fittable"],[40,2,1,"","fixed"],[40,3,1,"","get_bounding_box"],[40,3,1,"","has_inverse"],[40,2,1,"","has_user_bounding_box"],[40,2,1,"","has_user_inverse"],[40,2,1,"","ineqcons"],[40,3,1,"","input_shape"],[40,2,1,"","input_units"],[40,2,1,"","input_units_allow_dimensionless"],[40,2,1,"","input_units_equivalencies"],[40,2,1,"","input_units_strict"],[40,2,1,"","inputs"],[40,2,1,"","inverse"],[40,2,1,"","linear"],[40,2,1,"","meta"],[40,2,1,"","model_constraints"],[40,2,1,"","model_set_axis"],[40,2,1,"","n_inputs"],[40,2,1,"","n_outputs"],[40,2,1,"","n_submodels"],[40,2,1,"","name"],[40,3,1,"","output_units"],[40,2,1,"","outputs"],[40,2,1,"","param_names"],[40,2,1,"","param_sets"],[40,2,1,"","parameter_constraints"],[40,2,1,"","parameters"],[40,3,1,"","prepare_inputs"],[40,3,1,"","prepare_outputs"],[40,3,1,"","rename"],[40,3,1,"","render"],[40,2,1,"","return_units"],[40,2,1,"","separable"],[40,3,1,"","set_slice_args"],[40,2,1,"","standard_broadcasting"],[40,2,1,"","stds"],[40,3,1,"","strip_units_from_tree"],[40,3,1,"","sum_of_implicit_terms"],[40,2,1,"","sync_constraints"],[40,2,1,"","tied"],[40,2,1,"","uses_quantity"],[40,3,1,"","with_units_from_data"],[40,3,1,"","without_units_for_data"]],"gammapy.astro.source":[[50,1,1,"","PWN"],[51,1,1,"","Pulsar"],[52,1,1,"","SNR"],[53,1,1,"","SNRTrueloveMcKee"],[54,1,1,"","SimplePulsar"]],"gammapy.astro.source.PWN":[[50,3,1,"","magnetic_field"],[50,3,1,"","radius"]],"gammapy.astro.source.Pulsar":[[51,3,1,"","energy_integrated"],[51,3,1,"","luminosity_spindown"],[51,3,1,"","magnetic_field"],[51,3,1,"","period"],[51,3,1,"","period_dot"],[51,3,1,"","tau"]],"gammapy.astro.source.SNR":[[52,3,1,"","luminosity_tev"],[52,3,1,"","radius"],[52,3,1,"","radius_inner"],[52,2,1,"","sedov_taylor_begin"],[52,2,1,"","sedov_taylor_end"]],"gammapy.astro.source.SNRTrueloveMcKee":[[53,3,1,"","luminosity_tev"],[53,3,1,"","radius"],[53,3,1,"","radius_inner"],[53,3,1,"","radius_reverse_shock"],[53,2,1,"","sedov_taylor_begin"],[53,2,1,"","sedov_taylor_end"]],"gammapy.astro.source.SimplePulsar":[[54,2,1,"","luminosity_spindown"],[54,2,1,"","magnetic_field"],[54,2,1,"","tau"]],"gammapy.catalog":[[55,5,1,"","CATALOG_REGISTRY"],[56,1,1,"","SourceCatalog"],[57,1,1,"","SourceCatalog1LHAASO"],[58,1,1,"","SourceCatalog2FHL"],[59,1,1,"","SourceCatalog2HWC"],[60,1,1,"","SourceCatalog3FGL"],[61,1,1,"","SourceCatalog3FHL"],[62,1,1,"","SourceCatalog3HWC"],[63,1,1,"","SourceCatalog4FGL"],[64,1,1,"","SourceCatalogGammaCat"],[65,1,1,"","SourceCatalogHGPS"],[66,1,1,"","SourceCatalogLargeScaleHGPS"],[67,1,1,"","SourceCatalogObject"],[68,1,1,"","SourceCatalogObject1LHAASO"],[69,1,1,"","SourceCatalogObject2FHL"],[70,1,1,"","SourceCatalogObject2HWC"],[71,1,1,"","SourceCatalogObject3FGL"],[72,1,1,"","SourceCatalogObject3FHL"],[73,1,1,"","SourceCatalogObject3HWC"],[74,1,1,"","SourceCatalogObject4FGL"],[75,1,1,"","SourceCatalogObjectGammaCat"],[76,1,1,"","SourceCatalogObjectHGPS"],[77,1,1,"","SourceCatalogObjectHGPSComponent"]],"gammapy.catalog.SourceCatalog":[[56,3,1,"","description"],[56,2,1,"","positions"],[56,3,1,"","row_index"],[56,3,1,"","source_name"],[56,2,1,"","tag"],[56,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog1LHAASO":[[57,2,1,"","description"],[57,2,1,"","positions"],[57,3,1,"","row_index"],[57,3,1,"","source_name"],[57,2,1,"","tag"],[57,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog2FHL":[[58,2,1,"","description"],[58,2,1,"","positions"],[58,3,1,"","row_index"],[58,3,1,"","source_name"],[58,2,1,"","tag"],[58,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog2HWC":[[59,2,1,"","description"],[59,2,1,"","positions"],[59,3,1,"","row_index"],[59,3,1,"","source_name"],[59,2,1,"","tag"],[59,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog3FGL":[[60,2,1,"","description"],[60,2,1,"","positions"],[60,3,1,"","row_index"],[60,3,1,"","source_name"],[60,2,1,"","tag"],[60,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog3FHL":[[61,2,1,"","description"],[61,2,1,"","positions"],[61,3,1,"","row_index"],[61,3,1,"","source_name"],[61,2,1,"","tag"],[61,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog3HWC":[[62,2,1,"","description"],[62,2,1,"","positions"],[62,3,1,"","row_index"],[62,3,1,"","source_name"],[62,2,1,"","tag"],[62,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog4FGL":[[63,2,1,"","description"],[63,2,1,"","positions"],[63,3,1,"","row_index"],[63,3,1,"","source_name"],[63,2,1,"","tag"],[63,3,1,"","to_models"]],"gammapy.catalog.SourceCatalogGammaCat":[[64,2,1,"","description"],[64,2,1,"","positions"],[64,3,1,"","row_index"],[64,3,1,"","source_name"],[64,2,1,"","tag"],[64,3,1,"","to_models"]],"gammapy.catalog.SourceCatalogHGPS":[[65,2,1,"","description"],[65,3,1,"","gaussian_component"],[65,2,1,"","large_scale_component"],[65,2,1,"","positions"],[65,3,1,"","row_index"],[65,3,1,"","source_name"],[65,2,1,"","table_associations"],[65,2,1,"","table_components"],[65,2,1,"","table_identifications"],[65,2,1,"","table_large_scale_component"],[65,2,1,"","tag"],[65,3,1,"","to_models"]],"gammapy.catalog.SourceCatalogLargeScaleHGPS":[[66,3,1,"","evaluate"],[66,3,1,"","peak_brightness"],[66,3,1,"","peak_brightness_error"],[66,3,1,"","peak_latitude"],[66,3,1,"","peak_latitude_error"],[66,3,1,"","width"],[66,3,1,"","width_error"]],"gammapy.catalog.SourceCatalogObject":[[67,2,1,"","name"],[67,2,1,"","position"],[67,2,1,"","row_index"]],"gammapy.catalog.SourceCatalogObject1LHAASO":[[68,2,1,"","name"],[68,2,1,"","position"],[68,2,1,"","row_index"],[68,3,1,"","sky_model"],[68,3,1,"","spatial_model"],[68,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject2FHL":[[69,2,1,"","asso"],[69,2,1,"","energy_range"],[69,2,1,"","flux_points"],[69,2,1,"","flux_points_meta"],[69,2,1,"","flux_points_table"],[69,3,1,"","info"],[69,2,1,"","is_pointlike"],[69,2,1,"","name"],[69,2,1,"","position"],[69,2,1,"","row_index"],[69,3,1,"","sky_model"],[69,3,1,"","spatial_model"],[69,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject2HWC":[[70,3,1,"","info"],[70,2,1,"","n_models"],[70,2,1,"","name"],[70,2,1,"","position"],[70,2,1,"","row_index"],[70,3,1,"","sky_model"],[70,3,1,"","spatial_model"],[70,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject3FGL":[[71,2,1,"","asso"],[71,2,1,"","energy_range"],[71,2,1,"","flux_points"],[71,2,1,"","flux_points_meta"],[71,2,1,"","flux_points_table"],[71,3,1,"","info"],[71,2,1,"","is_pointlike"],[71,3,1,"","lightcurve"],[71,2,1,"","name"],[71,2,1,"","position"],[71,2,1,"","row_index"],[71,3,1,"","sky_model"],[71,3,1,"","spatial_model"],[71,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject3FHL":[[72,2,1,"","asso"],[72,2,1,"","energy_range"],[72,2,1,"","flux_points"],[72,2,1,"","flux_points_meta"],[72,2,1,"","flux_points_table"],[72,3,1,"","info"],[72,2,1,"","is_pointlike"],[72,2,1,"","name"],[72,2,1,"","position"],[72,2,1,"","row_index"],[72,3,1,"","sky_model"],[72,3,1,"","spatial_model"],[72,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject3HWC":[[73,3,1,"","info"],[73,2,1,"","is_pointlike"],[73,2,1,"","n_models"],[73,2,1,"","name"],[73,2,1,"","position"],[73,2,1,"","row_index"],[73,3,1,"","sky_model"],[73,3,1,"","spatial_model"],[73,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject4FGL":[[74,2,1,"","asso"],[74,2,1,"","flux_points"],[74,2,1,"","flux_points_meta"],[74,2,1,"","flux_points_table"],[74,3,1,"","info"],[74,2,1,"","is_pointlike"],[74,3,1,"","lightcurve"],[74,2,1,"","name"],[74,2,1,"","position"],[74,2,1,"","row_index"],[74,3,1,"","sky_model"],[74,3,1,"","spatial_model"],[74,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObjectGammaCat":[[75,2,1,"","flux_points"],[75,2,1,"","flux_points_table"],[75,3,1,"","info"],[75,2,1,"","name"],[75,2,1,"","position"],[75,2,1,"","row_index"],[75,3,1,"","sky_model"],[75,3,1,"","spatial_model"],[75,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObjectHGPS":[[76,3,1,"","components_models"],[76,2,1,"","energy_range"],[76,2,1,"","flux_points"],[76,2,1,"","flux_points_table"],[76,3,1,"","info"],[76,2,1,"","name"],[76,2,1,"","position"],[76,2,1,"","row_index"],[76,3,1,"","sky_model"],[76,3,1,"","spatial_model"],[76,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObjectHGPSComponent":[[77,2,1,"","name"],[77,2,1,"","position"],[77,2,1,"","row_index"],[77,3,1,"","spatial_model"]],"gammapy.data":[[78,1,1,"","DataStore"],[79,1,1,"","EventList"],[80,1,1,"","EventListMetaData"],[81,1,1,"","FixedPointingInfo"],[82,1,1,"","GTI"],[83,1,1,"","HDUIndexTable"],[84,1,1,"","Observation"],[85,1,1,"","ObservationFilter"],[86,1,1,"","ObservationTable"],[87,1,1,"","Observations"],[88,1,1,"","ObservationsEventsSampler"],[89,1,1,"","PointingInfo"],[90,1,1,"","PointingMode"],[91,4,1,"","get_irfs_features"],[92,5,1,"","observatory_locations"]],"gammapy.data.DataStore":[[78,2,1,"","DEFAULT_HDU_TABLE"],[78,2,1,"","DEFAULT_OBS_TABLE"],[78,3,1,"","check"],[78,3,1,"","copy_obs"],[78,3,1,"","from_dir"],[78,3,1,"","from_events_files"],[78,3,1,"","from_file"],[78,3,1,"","get_observations"],[78,3,1,"","info"],[78,3,1,"","obs"],[78,2,1,"","obs_ids"]],"gammapy.data.EventList":[[79,2,1,"","altaz"],[79,2,1,"","altaz_frame"],[79,2,1,"","altaz_from_table"],[79,3,1,"","check"],[79,3,1,"","copy"],[79,2,1,"","energy"],[79,3,1,"","from_stack"],[79,2,1,"","galactic"],[79,2,1,"","galactic_median"],[79,2,1,"","is_pointed_observation"],[79,3,1,"","map_coord"],[79,2,1,"","observation_dead_time_fraction"],[79,2,1,"","observation_live_time_duration"],[79,2,1,"","observation_time_duration"],[79,2,1,"","observation_time_start"],[79,2,1,"","observation_time_stop"],[79,2,1,"","observatory_earth_location"],[79,2,1,"","offset"],[79,2,1,"","offset_from_median"],[79,3,1,"","peek"],[79,3,1,"","plot_energy"],[79,3,1,"","plot_energy_offset"],[79,3,1,"","plot_image"],[79,3,1,"","plot_offset2_distribution"],[79,3,1,"","plot_time"],[79,2,1,"","pointing_radec"],[79,2,1,"","radec"],[79,3,1,"","read"],[79,3,1,"","select_energy"],[79,3,1,"","select_mask"],[79,3,1,"","select_offset"],[79,3,1,"","select_parameter"],[79,3,1,"","select_rad_max"],[79,3,1,"","select_region"],[79,3,1,"","select_row_subset"],[79,3,1,"","select_time"],[79,3,1,"","stack"],[79,2,1,"","time"],[79,2,1,"","time_ref"],[79,3,1,"","to_table_hdu"],[79,3,1,"","write"]],"gammapy.data.EventListMetaData":[[80,3,1,"","construct"],[80,3,1,"","copy"],[80,3,1,"","dict"],[80,3,1,"","from_header"],[80,3,1,"","from_orm"],[80,3,1,"","json"],[80,2,1,"","model_computed_fields"],[80,2,1,"","model_config"],[80,3,1,"","model_construct"],[80,3,1,"","model_copy"],[80,3,1,"","model_dump"],[80,3,1,"","model_dump_json"],[80,2,1,"","model_extra"],[80,2,1,"","model_fields"],[80,2,1,"","model_fields_set"],[80,3,1,"","model_json_schema"],[80,3,1,"","model_parametrized_name"],[80,3,1,"","model_post_init"],[80,3,1,"","model_rebuild"],[80,3,1,"","model_validate"],[80,3,1,"","model_validate_json"],[80,3,1,"","model_validate_strings"],[80,3,1,"","parse_file"],[80,3,1,"","parse_obj"],[80,3,1,"","parse_raw"],[80,3,1,"","schema"],[80,3,1,"","schema_json"],[80,2,1,"","tag"],[80,3,1,"","to_header"],[80,3,1,"","to_yaml"],[80,3,1,"","update_forward_refs"],[80,3,1,"","validate"]],"gammapy.data.FixedPointingInfo":[[81,2,1,"","fixed_altaz"],[81,2,1,"","fixed_icrs"],[81,3,1,"","from_fits_header"],[81,3,1,"","get_altaz"],[81,3,1,"","get_icrs"],[81,2,1,"","mode"],[81,3,1,"","read"],[81,3,1,"","to_fits_header"]],"gammapy.data.GTI":[[82,3,1,"","copy"],[82,3,1,"","create"],[82,3,1,"","delete_interval"],[82,3,1,"","from_stack"],[82,3,1,"","from_table_hdu"],[82,3,1,"","from_time_intervals"],[82,3,1,"","group_table"],[82,2,1,"","met_start"],[82,2,1,"","met_stop"],[82,3,1,"","read"],[82,3,1,"","select_time"],[82,3,1,"","stack"],[82,2,1,"","time_delta"],[82,2,1,"","time_intervals"],[82,2,1,"","time_ref"],[82,2,1,"","time_start"],[82,2,1,"","time_stop"],[82,2,1,"","time_sum"],[82,3,1,"","to_table_hdu"],[82,3,1,"","union"],[82,3,1,"","write"]],"gammapy.data.HDUIndexTable":[[83,2,1,"","ColumnClass"],[83,2,1,"","VALID_HDU_CLASS"],[83,2,1,"","VALID_HDU_TYPE"],[83,3,1,"","add_column"],[83,3,1,"","add_columns"],[83,3,1,"","add_index"],[83,3,1,"","add_row"],[83,3,1,"","argsort"],[83,3,1,"","as_array"],[83,2,1,"","base_dir"],[83,2,1,"","colnames"],[83,3,1,"","convert_bytestring_to_unicode"],[83,3,1,"","convert_unicode_to_bytestring"],[83,3,1,"","copy"],[83,2,1,"","dtype"],[83,3,1,"","field"],[83,3,1,"","filled"],[83,3,1,"","from_pandas"],[83,3,1,"","group_by"],[83,2,1,"","groups"],[83,2,1,"","has_masked_columns"],[83,2,1,"","has_masked_values"],[83,2,1,"","has_mixin_columns"],[83,2,1,"","hdu_class_unique"],[83,3,1,"","hdu_location"],[83,2,1,"","hdu_type_unique"],[83,2,1,"","iloc"],[83,3,1,"","index_column"],[83,3,1,"","index_mode"],[83,2,1,"","indices"],[83,2,1,"","info"],[83,3,1,"","insert_row"],[83,3,1,"","items"],[83,3,1,"","itercols"],[83,3,1,"","iterrows"],[83,3,1,"","keep_columns"],[83,3,1,"","keys"],[83,2,1,"","loc"],[83,2,1,"","loc_indices"],[83,3,1,"","location_info"],[83,2,1,"","mask"],[83,2,1,"","masked"],[83,2,1,"","meta"],[83,3,1,"","more"],[83,2,1,"","obs_id_unique"],[83,3,1,"","pformat"],[83,3,1,"","pformat_all"],[83,3,1,"","pprint"],[83,3,1,"","pprint_all"],[83,2,1,"","pprint_exclude_names"],[83,2,1,"","pprint_include_names"],[83,3,1,"","read"],[83,3,1,"","remove_column"],[83,3,1,"","remove_columns"],[83,3,1,"","remove_indices"],[83,3,1,"","remove_row"],[83,3,1,"","remove_rows"],[83,3,1,"","rename_column"],[83,3,1,"","rename_columns"],[83,3,1,"","replace_column"],[83,3,1,"","reverse"],[83,3,1,"","round"],[83,3,1,"","row_idx"],[83,3,1,"","show_in_browser"],[83,3,1,"","show_in_notebook"],[83,3,1,"","sort"],[83,3,1,"","summary"],[83,3,1,"","to_pandas"],[83,3,1,"","update"],[83,3,1,"","values"],[83,3,1,"","values_equal"],[83,2,1,"","write"]],"gammapy.data.Observation":[[84,2,1,"","aeff"],[84,2,1,"","available_hdus"],[84,2,1,"","available_irfs"],[84,2,1,"","bkg"],[84,3,1,"","check"],[84,3,1,"","copy"],[84,3,1,"","create"],[84,2,1,"","edisp"],[84,2,1,"","events"],[84,3,1,"","get_pointing_altaz"],[84,3,1,"","get_pointing_icrs"],[84,2,1,"","gti"],[84,2,1,"","meta"],[84,2,1,"","muoneff"],[84,2,1,"","obs_info"],[84,2,1,"","observation_dead_time_fraction"],[84,2,1,"","observation_live_time_duration"],[84,2,1,"","observation_time_duration"],[84,2,1,"","observatory_earth_location"],[84,3,1,"","peek"],[84,2,1,"","pointing"],[84,2,1,"","psf"],[84,2,1,"","rad_max"],[84,3,1,"","read"],[84,3,1,"","select_time"],[84,2,1,"","target_radec"],[84,2,1,"","tmid"],[84,2,1,"","tstart"],[84,2,1,"","tstop"],[84,3,1,"","write"]],"gammapy.data.ObservationFilter":[[85,2,1,"","EVENT_FILTER_TYPES"],[85,3,1,"","copy"],[85,3,1,"","filter_events"],[85,3,1,"","filter_gti"],[85,2,1,"","livetime_fraction"]],"gammapy.data.ObservationTable":[[86,2,1,"","ColumnClass"],[86,3,1,"","add_column"],[86,3,1,"","add_columns"],[86,3,1,"","add_index"],[86,3,1,"","add_row"],[86,3,1,"","argsort"],[86,3,1,"","as_array"],[86,2,1,"","colnames"],[86,3,1,"","convert_bytestring_to_unicode"],[86,3,1,"","convert_unicode_to_bytestring"],[86,3,1,"","copy"],[86,2,1,"","dtype"],[86,3,1,"","field"],[86,3,1,"","filled"],[86,3,1,"","from_pandas"],[86,3,1,"","group_by"],[86,2,1,"","groups"],[86,2,1,"","has_masked_columns"],[86,2,1,"","has_masked_values"],[86,2,1,"","has_mixin_columns"],[86,2,1,"","iloc"],[86,3,1,"","index_column"],[86,3,1,"","index_mode"],[86,2,1,"","indices"],[86,2,1,"","info"],[86,3,1,"","insert_row"],[86,3,1,"","items"],[86,3,1,"","itercols"],[86,3,1,"","iterrows"],[86,3,1,"","keep_columns"],[86,3,1,"","keys"],[86,2,1,"","loc"],[86,2,1,"","loc_indices"],[86,2,1,"","mask"],[86,2,1,"","masked"],[86,2,1,"","meta"],[86,3,1,"","more"],[86,3,1,"","pformat"],[86,3,1,"","pformat_all"],[86,2,1,"","pointing_galactic"],[86,2,1,"","pointing_radec"],[86,3,1,"","pprint"],[86,3,1,"","pprint_all"],[86,2,1,"","pprint_exclude_names"],[86,2,1,"","pprint_include_names"],[86,3,1,"","read"],[86,3,1,"","remove_column"],[86,3,1,"","remove_columns"],[86,3,1,"","remove_indices"],[86,3,1,"","remove_row"],[86,3,1,"","remove_rows"],[86,3,1,"","rename_column"],[86,3,1,"","rename_columns"],[86,3,1,"","replace_column"],[86,3,1,"","reverse"],[86,3,1,"","round"],[86,3,1,"","select_obs_id"],[86,3,1,"","select_observations"],[86,3,1,"","select_range"],[86,3,1,"","select_sky_circle"],[86,3,1,"","select_time_range"],[86,3,1,"","show_in_browser"],[86,3,1,"","show_in_notebook"],[86,3,1,"","sort"],[86,3,1,"","summary"],[86,2,1,"","time_ref"],[86,2,1,"","time_start"],[86,2,1,"","time_stop"],[86,3,1,"","to_pandas"],[86,3,1,"","update"],[86,3,1,"","values"],[86,3,1,"","values_equal"],[86,2,1,"","write"]],"gammapy.data.Observations":[[87,3,1,"","append"],[87,3,1,"","clear"],[87,3,1,"","count"],[87,3,1,"","extend"],[87,3,1,"","from_stack"],[87,3,1,"","group_by_label"],[87,2,1,"","ids"],[87,3,1,"","in_memory_generator"],[87,3,1,"","index"],[87,3,1,"","insert"],[87,3,1,"","pop"],[87,3,1,"","remove"],[87,3,1,"","reverse"],[87,3,1,"","select_time"]],"gammapy.data.ObservationsEventsSampler":[[88,2,1,"","n_jobs"],[88,2,1,"","parallel_backend"],[88,3,1,"","run"],[88,3,1,"","simulate_observation"]],"gammapy.data.PointingInfo":[[89,2,1,"","altaz"],[89,2,1,"","altaz_frame"],[89,2,1,"","altaz_from_table"],[89,3,1,"","altaz_interpolate"],[89,2,1,"","duration"],[89,3,1,"","get_altaz"],[89,3,1,"","get_icrs"],[89,2,1,"","location"],[89,2,1,"","radec"],[89,3,1,"","read"],[89,2,1,"","time"],[89,2,1,"","time_ref"]],"gammapy.data.PointingMode":[[90,2,1,"","DRIFT"],[90,2,1,"","POINTING"]],"gammapy.datasets":[[93,5,1,"","DATASET_REGISTRY"],[94,1,1,"","Dataset"],[95,1,1,"","Datasets"],[96,1,1,"","FluxPointsDataset"],[97,1,1,"","MapDataset"],[98,1,1,"","MapDatasetEventSampler"],[99,1,1,"","MapDatasetOnOff"],[100,1,1,"","OGIPDatasetReader"],[101,1,1,"","OGIPDatasetWriter"],[102,1,1,"","ObservationEventSampler"],[103,1,1,"","SpectrumDataset"],[104,1,1,"","SpectrumDatasetOnOff"],[105,4,1,"","create_map_dataset_from_observation"],[106,4,1,"","create_map_dataset_geoms"]],"gammapy.datasets.Dataset":[[94,3,1,"","copy"],[94,2,1,"","mask"],[94,2,1,"","name"],[94,3,1,"","stat_array"],[94,3,1,"","stat_sum"],[94,2,1,"","tag"],[94,3,1,"","to_dict"]],"gammapy.datasets.Datasets":[[95,3,1,"","append"],[95,3,1,"","clear"],[95,2,1,"","contributes_to_stat"],[95,3,1,"","copy"],[95,3,1,"","count"],[95,2,1,"","energy_axes_are_aligned"],[95,2,1,"","energy_ranges"],[95,3,1,"","extend"],[95,2,1,"","gti"],[95,3,1,"","index"],[95,3,1,"","info_table"],[95,3,1,"","insert"],[95,2,1,"","is_all_same_energy_shape"],[95,2,1,"","is_all_same_shape"],[95,2,1,"","is_all_same_type"],[95,2,1,"","meta_table"],[95,2,1,"","models"],[95,2,1,"","names"],[95,2,1,"","parameters"],[95,3,1,"","pop"],[95,3,1,"","read"],[95,3,1,"","remove"],[95,3,1,"","reverse"],[95,3,1,"","select_time"],[95,3,1,"","slice_by_energy"],[95,3,1,"","stack_reduce"],[95,3,1,"","stat_sum"],[95,3,1,"","to_spectrum_datasets"],[95,3,1,"","write"]],"gammapy.datasets.FluxPointsDataset":[[96,3,1,"","copy"],[96,3,1,"","data_shape"],[96,3,1,"","flux_pred"],[96,3,1,"","from_dict"],[96,2,1,"","gti"],[96,2,1,"","mask"],[96,2,1,"","models"],[96,2,1,"","name"],[96,3,1,"","plot_fit"],[96,3,1,"","plot_residuals"],[96,3,1,"","plot_spectrum"],[96,3,1,"","read"],[96,3,1,"","residuals"],[96,3,1,"","stat_array"],[96,3,1,"","stat_sum"],[96,2,1,"","stat_type"],[96,2,1,"","tag"],[96,3,1,"","to_dict"],[96,3,1,"","write"]],"gammapy.datasets.MapDataset":[[97,2,1,"","background"],[97,2,1,"","background_model"],[97,3,1,"","copy"],[97,2,1,"","counts"],[97,3,1,"","create"],[97,3,1,"","cutout"],[97,2,1,"","data_shape"],[97,3,1,"","downsample"],[97,2,1,"","edisp"],[97,2,1,"","energy_range"],[97,2,1,"","energy_range_fit"],[97,2,1,"","energy_range_safe"],[97,2,1,"","energy_range_total"],[97,2,1,"","evaluators"],[97,2,1,"","excess"],[97,2,1,"","exposure"],[97,3,1,"","fake"],[97,3,1,"","from_dict"],[97,3,1,"","from_geoms"],[97,3,1,"","from_hdulist"],[97,2,1,"","geoms"],[97,2,1,"","gti"],[97,3,1,"","info_dict"],[97,2,1,"","mask"],[97,2,1,"","mask_fit"],[97,2,1,"","mask_fit_image"],[97,2,1,"","mask_image"],[97,2,1,"","mask_safe"],[97,2,1,"","mask_safe_edisp"],[97,2,1,"","mask_safe_image"],[97,2,1,"","mask_safe_psf"],[97,2,1,"","meta_table"],[97,2,1,"","models"],[97,2,1,"","name"],[97,3,1,"","npred"],[97,3,1,"","npred_background"],[97,3,1,"","npred_signal"],[97,3,1,"","pad"],[97,3,1,"","peek"],[97,3,1,"","plot_residuals"],[97,3,1,"","plot_residuals_spatial"],[97,3,1,"","plot_residuals_spectral"],[97,2,1,"","psf"],[97,3,1,"","read"],[97,3,1,"","resample_energy_axis"],[97,3,1,"","reset_data_cache"],[97,3,1,"","residuals"],[97,3,1,"","slice_by_energy"],[97,3,1,"","slice_by_idx"],[97,3,1,"","stack"],[97,3,1,"","stat_array"],[97,3,1,"","stat_sum"],[97,2,1,"","stat_type"],[97,2,1,"","tag"],[97,3,1,"","to_dict"],[97,3,1,"","to_hdulist"],[97,3,1,"","to_image"],[97,3,1,"","to_masked"],[97,3,1,"","to_region_map_dataset"],[97,3,1,"","to_spectrum_dataset"],[97,3,1,"","write"]],"gammapy.datasets.MapDatasetEventSampler":[[98,3,1,"","event_det_coords"],[98,3,1,"","event_list_meta"],[98,3,1,"","run"],[98,3,1,"","sample_background"],[98,3,1,"","sample_edisp"],[98,3,1,"","sample_psf"],[98,3,1,"","sample_sources"]],"gammapy.datasets.MapDatasetOnOff":[[99,2,1,"","alpha"],[99,2,1,"","background"],[99,2,1,"","background_model"],[99,3,1,"","copy"],[99,2,1,"","counts"],[99,3,1,"","create"],[99,3,1,"","cutout"],[99,2,1,"","data_shape"],[99,3,1,"","downsample"],[99,2,1,"","edisp"],[99,2,1,"","energy_range"],[99,2,1,"","energy_range_fit"],[99,2,1,"","energy_range_safe"],[99,2,1,"","energy_range_total"],[99,2,1,"","evaluators"],[99,2,1,"","excess"],[99,2,1,"","exposure"],[99,3,1,"","fake"],[99,3,1,"","from_dict"],[99,3,1,"","from_geoms"],[99,3,1,"","from_hdulist"],[99,3,1,"","from_map_dataset"],[99,2,1,"","geoms"],[99,2,1,"","gti"],[99,3,1,"","info_dict"],[99,2,1,"","mask"],[99,2,1,"","mask_fit"],[99,2,1,"","mask_fit_image"],[99,2,1,"","mask_image"],[99,2,1,"","mask_safe"],[99,2,1,"","mask_safe_edisp"],[99,2,1,"","mask_safe_image"],[99,2,1,"","mask_safe_psf"],[99,2,1,"","meta_table"],[99,2,1,"","models"],[99,2,1,"","name"],[99,3,1,"","npred"],[99,3,1,"","npred_background"],[99,3,1,"","npred_off"],[99,3,1,"","npred_signal"],[99,3,1,"","pad"],[99,3,1,"","peek"],[99,3,1,"","plot_residuals"],[99,3,1,"","plot_residuals_spatial"],[99,3,1,"","plot_residuals_spectral"],[99,2,1,"","psf"],[99,3,1,"","read"],[99,3,1,"","resample_energy_axis"],[99,3,1,"","reset_data_cache"],[99,3,1,"","residuals"],[99,3,1,"","slice_by_energy"],[99,3,1,"","slice_by_idx"],[99,3,1,"","stack"],[99,3,1,"","stat_array"],[99,3,1,"","stat_sum"],[99,2,1,"","stat_type"],[99,2,1,"","tag"],[99,3,1,"","to_dict"],[99,3,1,"","to_hdulist"],[99,3,1,"","to_image"],[99,3,1,"","to_map_dataset"],[99,3,1,"","to_masked"],[99,3,1,"","to_region_map_dataset"],[99,3,1,"","to_spectrum_dataset"],[99,3,1,"","write"]],"gammapy.datasets.OGIPDatasetReader":[[100,3,1,"","get_filenames"],[100,3,1,"","get_valid_path"],[100,3,1,"","read"],[100,3,1,"","read_arf"],[100,3,1,"","read_bkg"],[100,3,1,"","read_pha"],[100,3,1,"","read_rmf"],[100,2,1,"","tag"]],"gammapy.datasets.OGIPDatasetWriter":[[101,3,1,"","get_filenames"],[101,3,1,"","get_ogip_meta"],[101,2,1,"","tag"],[101,3,1,"","to_counts_hdulist"],[101,3,1,"","write"],[101,3,1,"","write_arf"],[101,3,1,"","write_bkg"],[101,3,1,"","write_pha"],[101,3,1,"","write_rmf"]],"gammapy.datasets.ObservationEventSampler":[[102,3,1,"","event_det_coords"],[102,3,1,"","event_list_meta"],[102,3,1,"","run"],[102,3,1,"","sample_background"],[102,3,1,"","sample_edisp"],[102,3,1,"","sample_psf"],[102,3,1,"","sample_sources"]],"gammapy.datasets.SpectrumDataset":[[103,2,1,"","background"],[103,2,1,"","background_model"],[103,3,1,"","copy"],[103,2,1,"","counts"],[103,3,1,"","create"],[103,3,1,"","cutout"],[103,2,1,"","data_shape"],[103,3,1,"","downsample"],[103,2,1,"","edisp"],[103,2,1,"","energy_range"],[103,2,1,"","energy_range_fit"],[103,2,1,"","energy_range_safe"],[103,2,1,"","energy_range_total"],[103,2,1,"","evaluators"],[103,2,1,"","excess"],[103,2,1,"","exposure"],[103,3,1,"","fake"],[103,3,1,"","from_dict"],[103,3,1,"","from_geoms"],[103,3,1,"","from_hdulist"],[103,2,1,"","geoms"],[103,2,1,"","gti"],[103,3,1,"","info_dict"],[103,2,1,"","mask"],[103,2,1,"","mask_fit"],[103,2,1,"","mask_fit_image"],[103,2,1,"","mask_image"],[103,2,1,"","mask_safe"],[103,2,1,"","mask_safe_edisp"],[103,2,1,"","mask_safe_image"],[103,2,1,"","mask_safe_psf"],[103,2,1,"","meta_table"],[103,2,1,"","models"],[103,2,1,"","name"],[103,3,1,"","npred"],[103,3,1,"","npred_background"],[103,3,1,"","npred_signal"],[103,3,1,"","pad"],[103,3,1,"","peek"],[103,3,1,"","plot_counts"],[103,3,1,"","plot_excess"],[103,3,1,"","plot_fit"],[103,3,1,"","plot_masks"],[103,3,1,"","plot_residuals"],[103,3,1,"","plot_residuals_spatial"],[103,3,1,"","plot_residuals_spectral"],[103,2,1,"","psf"],[103,3,1,"","read"],[103,3,1,"","resample_energy_axis"],[103,3,1,"","reset_data_cache"],[103,3,1,"","residuals"],[103,3,1,"","slice_by_energy"],[103,3,1,"","slice_by_idx"],[103,3,1,"","stack"],[103,3,1,"","stat_array"],[103,3,1,"","stat_sum"],[103,2,1,"","stat_type"],[103,2,1,"","tag"],[103,3,1,"","to_dict"],[103,3,1,"","to_hdulist"],[103,3,1,"","to_image"],[103,3,1,"","to_masked"],[103,3,1,"","to_region_map_dataset"],[103,3,1,"","to_spectrum_dataset"],[103,3,1,"","write"]],"gammapy.datasets.SpectrumDatasetOnOff":[[104,2,1,"","alpha"],[104,2,1,"","background"],[104,2,1,"","background_model"],[104,3,1,"","copy"],[104,2,1,"","counts"],[104,3,1,"","create"],[104,3,1,"","cutout"],[104,2,1,"","data_shape"],[104,3,1,"","downsample"],[104,2,1,"","edisp"],[104,2,1,"","energy_range"],[104,2,1,"","energy_range_fit"],[104,2,1,"","energy_range_safe"],[104,2,1,"","energy_range_total"],[104,2,1,"","evaluators"],[104,2,1,"","excess"],[104,2,1,"","exposure"],[104,3,1,"","fake"],[104,3,1,"","from_dict"],[104,3,1,"","from_geoms"],[104,3,1,"","from_hdulist"],[104,3,1,"","from_map_dataset"],[104,3,1,"","from_spectrum_dataset"],[104,2,1,"","geoms"],[104,2,1,"","gti"],[104,3,1,"","info_dict"],[104,2,1,"","mask"],[104,2,1,"","mask_fit"],[104,2,1,"","mask_fit_image"],[104,2,1,"","mask_image"],[104,2,1,"","mask_safe"],[104,2,1,"","mask_safe_edisp"],[104,2,1,"","mask_safe_image"],[104,2,1,"","mask_safe_psf"],[104,2,1,"","meta_table"],[104,2,1,"","models"],[104,2,1,"","name"],[104,3,1,"","npred"],[104,3,1,"","npred_background"],[104,3,1,"","npred_off"],[104,3,1,"","npred_signal"],[104,3,1,"","pad"],[104,3,1,"","peek"],[104,3,1,"","plot_counts"],[104,3,1,"","plot_excess"],[104,3,1,"","plot_fit"],[104,3,1,"","plot_masks"],[104,3,1,"","plot_residuals"],[104,3,1,"","plot_residuals_spatial"],[104,3,1,"","plot_residuals_spectral"],[104,2,1,"","psf"],[104,3,1,"","read"],[104,3,1,"","resample_energy_axis"],[104,3,1,"","reset_data_cache"],[104,3,1,"","residuals"],[104,3,1,"","slice_by_energy"],[104,3,1,"","slice_by_idx"],[104,3,1,"","stack"],[104,3,1,"","stat_array"],[104,3,1,"","stat_sum"],[104,2,1,"","stat_type"],[104,2,1,"","tag"],[104,3,1,"","to_dict"],[104,3,1,"","to_hdulist"],[104,3,1,"","to_image"],[104,3,1,"","to_map_dataset"],[104,3,1,"","to_masked"],[104,3,1,"","to_region_map_dataset"],[104,3,1,"","to_spectrum_dataset"],[104,3,1,"","write"]],"gammapy.estimators":[[107,1,1,"","ASmoothMapEstimator"],[108,5,1,"","ESTIMATOR_REGISTRY"],[109,1,1,"","EnergyDependentMorphologyEstimator"],[110,1,1,"","Estimator"],[111,1,1,"","ExcessMapEstimator"],[112,1,1,"","FluxMaps"],[113,1,1,"","FluxPoints"],[114,1,1,"","FluxPointsEstimator"],[115,1,1,"","FluxProfileEstimator"],[116,1,1,"","ImageProfile"],[117,1,1,"","ImageProfileEstimator"],[118,1,1,"","LightCurveEstimator"],[119,1,1,"","ParameterEstimator"],[120,1,1,"","SensitivityEstimator"],[121,1,1,"","TSMapEstimator"],[5,0,0,"-","utils"]],"gammapy.estimators.ASmoothMapEstimator":[[107,2,1,"","config_parameters"],[107,3,1,"","copy"],[107,3,1,"","estimate_maps"],[107,3,1,"","get_kernels"],[107,3,1,"","get_scales"],[107,3,1,"","run"],[107,3,1,"","selection_all"],[107,2,1,"","selection_optional"],[107,2,1,"","tag"]],"gammapy.estimators.EnergyDependentMorphologyEstimator":[[109,2,1,"","config_parameters"],[109,3,1,"","copy"],[109,3,1,"","estimate_energy_dependence"],[109,3,1,"","run"],[109,2,1,"","selection_optional"],[109,2,1,"","tag"]],"gammapy.estimators.Estimator":[[110,2,1,"","config_parameters"],[110,3,1,"","copy"],[110,3,1,"","run"],[110,2,1,"","selection_optional"],[110,2,1,"","tag"]],"gammapy.estimators.ExcessMapEstimator":[[111,2,1,"","config_parameters"],[111,3,1,"","copy"],[111,2,1,"","correlation_radius"],[111,3,1,"","estimate_excess_map"],[111,3,1,"","estimate_exposure_reco_energy"],[111,3,1,"","estimate_kernel"],[111,3,1,"","estimate_mask_default"],[111,3,1,"","run"],[111,2,1,"","selection_optional"],[111,2,1,"","tag"]],"gammapy.estimators.FluxMaps":[[112,3,1,"","all_quantities"],[112,2,1,"","available_quantities"],[112,2,1,"","counts"],[112,2,1,"","dnde"],[112,2,1,"","dnde_err"],[112,2,1,"","dnde_errn"],[112,2,1,"","dnde_errp"],[112,2,1,"","dnde_ref"],[112,2,1,"","dnde_ul"],[112,2,1,"","e2dnde"],[112,2,1,"","e2dnde_err"],[112,2,1,"","e2dnde_errn"],[112,2,1,"","e2dnde_errp"],[112,2,1,"","e2dnde_ref"],[112,2,1,"","e2dnde_ul"],[112,2,1,"","eflux"],[112,2,1,"","eflux_err"],[112,2,1,"","eflux_errn"],[112,2,1,"","eflux_errp"],[112,2,1,"","eflux_ref"],[112,2,1,"","eflux_ul"],[112,2,1,"","energy_axis"],[112,2,1,"","energy_max"],[112,2,1,"","energy_min"],[112,2,1,"","energy_ref"],[112,2,1,"","filter_success_nan"],[112,2,1,"","flux"],[112,2,1,"","flux_err"],[112,2,1,"","flux_errn"],[112,2,1,"","flux_errp"],[112,2,1,"","flux_ref"],[112,2,1,"","flux_sensitivity"],[112,2,1,"","flux_ul"],[112,3,1,"","from_hdulist"],[112,3,1,"","from_maps"],[112,3,1,"","from_stack"],[112,2,1,"","geom"],[112,3,1,"","get_flux_points"],[112,2,1,"","has_any_ts"],[112,2,1,"","has_stat_profiles"],[112,2,1,"","has_success"],[112,2,1,"","has_ul"],[112,2,1,"","is_convertible_to_flux_sed_type"],[112,2,1,"","is_ul"],[112,3,1,"","iter_by_axis"],[112,2,1,"","n_dof"],[112,2,1,"","n_sigma"],[112,2,1,"","n_sigma_ul"],[112,2,1,"","niter"],[112,2,1,"","norm"],[112,2,1,"","norm_err"],[112,2,1,"","norm_errn"],[112,2,1,"","norm_errp"],[112,2,1,"","norm_sensitivity"],[112,2,1,"","norm_ul"],[112,2,1,"","npred"],[112,2,1,"","npred_background"],[112,2,1,"","npred_excess"],[112,2,1,"","npred_excess_err"],[112,2,1,"","npred_excess_errn"],[112,2,1,"","npred_excess_errp"],[112,2,1,"","npred_excess_ref"],[112,2,1,"","npred_excess_ul"],[112,3,1,"","read"],[112,2,1,"","reference_model"],[112,2,1,"","reference_model_default"],[112,2,1,"","reference_spectral_model"],[112,2,1,"","sed_type_init"],[112,2,1,"","sed_type_plot_default"],[112,3,1,"","slice_by_coord"],[112,3,1,"","slice_by_energy"],[112,3,1,"","slice_by_idx"],[112,3,1,"","slice_by_time"],[112,2,1,"","sqrt_ts"],[112,2,1,"","sqrt_ts_threshold_ul"],[112,2,1,"","stat"],[112,2,1,"","stat_null"],[112,2,1,"","stat_scan"],[112,2,1,"","success"],[112,3,1,"","to_hdulist"],[112,3,1,"","to_maps"],[112,2,1,"","ts"],[112,2,1,"","ts_scan"],[112,3,1,"","write"]],"gammapy.estimators.FluxPoints":[[113,3,1,"","all_quantities"],[113,2,1,"","available_quantities"],[113,2,1,"","counts"],[113,2,1,"","dnde"],[113,2,1,"","dnde_err"],[113,2,1,"","dnde_errn"],[113,2,1,"","dnde_errp"],[113,2,1,"","dnde_ref"],[113,2,1,"","dnde_ul"],[113,2,1,"","e2dnde"],[113,2,1,"","e2dnde_err"],[113,2,1,"","e2dnde_errn"],[113,2,1,"","e2dnde_errp"],[113,2,1,"","e2dnde_ref"],[113,2,1,"","e2dnde_ul"],[113,2,1,"","eflux"],[113,2,1,"","eflux_err"],[113,2,1,"","eflux_errn"],[113,2,1,"","eflux_errp"],[113,2,1,"","eflux_ref"],[113,2,1,"","eflux_ul"],[113,2,1,"","energy_axis"],[113,2,1,"","energy_max"],[113,2,1,"","energy_min"],[113,2,1,"","energy_ref"],[113,2,1,"","filter_success_nan"],[113,2,1,"","flux"],[113,2,1,"","flux_err"],[113,2,1,"","flux_errn"],[113,2,1,"","flux_errp"],[113,2,1,"","flux_ref"],[113,2,1,"","flux_sensitivity"],[113,2,1,"","flux_ul"],[113,3,1,"","from_hdulist"],[113,3,1,"","from_maps"],[113,3,1,"","from_stack"],[113,3,1,"","from_table"],[113,2,1,"","geom"],[113,3,1,"","get_flux_points"],[113,2,1,"","has_any_ts"],[113,2,1,"","has_stat_profiles"],[113,2,1,"","has_success"],[113,2,1,"","has_ul"],[113,2,1,"","is_convertible_to_flux_sed_type"],[113,2,1,"","is_ul"],[113,3,1,"","iter_by_axis"],[113,2,1,"","n_dof"],[113,2,1,"","n_sigma"],[113,2,1,"","n_sigma_ul"],[113,2,1,"","niter"],[113,2,1,"","norm"],[113,2,1,"","norm_err"],[113,2,1,"","norm_errn"],[113,2,1,"","norm_errp"],[113,2,1,"","norm_sensitivity"],[113,2,1,"","norm_ul"],[113,2,1,"","npred"],[113,2,1,"","npred_background"],[113,2,1,"","npred_excess"],[113,2,1,"","npred_excess_err"],[113,2,1,"","npred_excess_errn"],[113,2,1,"","npred_excess_errp"],[113,2,1,"","npred_excess_ref"],[113,2,1,"","npred_excess_ul"],[113,3,1,"","plot"],[113,3,1,"","plot_ts_profiles"],[113,3,1,"","read"],[113,3,1,"","recompute_ul"],[113,2,1,"","reference_model"],[113,2,1,"","reference_model_default"],[113,2,1,"","reference_spectral_model"],[113,2,1,"","sed_type_init"],[113,2,1,"","sed_type_plot_default"],[113,3,1,"","slice_by_coord"],[113,3,1,"","slice_by_energy"],[113,3,1,"","slice_by_idx"],[113,3,1,"","slice_by_time"],[113,2,1,"","sqrt_ts"],[113,2,1,"","sqrt_ts_threshold_ul"],[113,2,1,"","stat"],[113,2,1,"","stat_null"],[113,2,1,"","stat_scan"],[113,2,1,"","success"],[113,3,1,"","to_hdulist"],[113,3,1,"","to_maps"],[113,3,1,"","to_table"],[113,2,1,"","ts"],[113,2,1,"","ts_scan"],[113,3,1,"","write"]],"gammapy.estimators.FluxPointsEstimator":[[114,2,1,"","config_parameters"],[114,3,1,"","copy"],[114,3,1,"","estimate_best_fit"],[114,3,1,"","estimate_counts"],[114,3,1,"","estimate_errn_errp"],[114,3,1,"","estimate_flux_point"],[114,3,1,"","estimate_npred"],[114,3,1,"","estimate_npred_excess"],[114,3,1,"","estimate_scan"],[114,3,1,"","estimate_ts"],[114,3,1,"","estimate_ul"],[114,3,1,"","get_scale_model"],[114,2,1,"","n_jobs"],[114,2,1,"","norm_max"],[114,2,1,"","norm_min"],[114,2,1,"","norm_n_values"],[114,2,1,"","norm_values"],[114,2,1,"","parallel_backend"],[114,3,1,"","run"],[114,2,1,"","selection_optional"],[114,2,1,"","tag"]],"gammapy.estimators.FluxProfileEstimator":[[115,2,1,"","config_parameters"],[115,3,1,"","copy"],[115,3,1,"","estimate_best_fit"],[115,3,1,"","estimate_counts"],[115,3,1,"","estimate_errn_errp"],[115,3,1,"","estimate_flux_point"],[115,3,1,"","estimate_npred"],[115,3,1,"","estimate_npred_excess"],[115,3,1,"","estimate_scan"],[115,3,1,"","estimate_ts"],[115,3,1,"","estimate_ul"],[115,3,1,"","get_scale_model"],[115,2,1,"","n_jobs"],[115,2,1,"","norm_max"],[115,2,1,"","norm_min"],[115,2,1,"","norm_n_values"],[115,2,1,"","norm_values"],[115,2,1,"","parallel_backend"],[115,2,1,"","projected_distance_axis"],[115,3,1,"","run"],[115,2,1,"","selection_optional"],[115,2,1,"","tag"]],"gammapy.estimators.ImageProfile":[[116,3,1,"","normalize"],[116,3,1,"","peek"],[116,3,1,"","plot"],[116,3,1,"","plot_err"],[116,2,1,"","profile"],[116,2,1,"","profile_err"],[116,3,1,"","smooth"],[116,2,1,"","x_max"],[116,2,1,"","x_min"],[116,2,1,"","x_ref"]],"gammapy.estimators.ImageProfileEstimator":[[117,2,1,"","config_parameters"],[117,3,1,"","copy"],[117,3,1,"","run"],[117,2,1,"","selection_optional"],[117,2,1,"","tag"]],"gammapy.estimators.LightCurveEstimator":[[118,2,1,"","config_parameters"],[118,3,1,"","copy"],[118,3,1,"","estimate_best_fit"],[118,3,1,"","estimate_counts"],[118,3,1,"","estimate_errn_errp"],[118,3,1,"","estimate_flux_point"],[118,3,1,"","estimate_npred"],[118,3,1,"","estimate_npred_excess"],[118,3,1,"","estimate_scan"],[118,3,1,"","estimate_time_bin_flux"],[118,3,1,"","estimate_ts"],[118,3,1,"","estimate_ul"],[118,3,1,"","expand_map"],[118,3,1,"","get_scale_model"],[118,2,1,"","n_jobs"],[118,2,1,"","norm_max"],[118,2,1,"","norm_min"],[118,2,1,"","norm_n_values"],[118,2,1,"","norm_values"],[118,2,1,"","parallel_backend"],[118,3,1,"","run"],[118,2,1,"","selection_optional"],[118,2,1,"","tag"]],"gammapy.estimators.ParameterEstimator":[[119,2,1,"","config_parameters"],[119,3,1,"","copy"],[119,3,1,"","estimate_best_fit"],[119,3,1,"","estimate_counts"],[119,3,1,"","estimate_errn_errp"],[119,3,1,"","estimate_npred"],[119,3,1,"","estimate_scan"],[119,3,1,"","estimate_ts"],[119,3,1,"","estimate_ul"],[119,3,1,"","run"],[119,2,1,"","selection_optional"],[119,2,1,"","tag"]],"gammapy.estimators.SensitivityEstimator":[[120,2,1,"","config_parameters"],[120,3,1,"","copy"],[120,3,1,"","estimate_min_e2dnde"],[120,3,1,"","estimate_min_excess"],[120,3,1,"","run"],[120,2,1,"","selection_optional"],[120,2,1,"","tag"]],"gammapy.estimators.TSMapEstimator":[[121,2,1,"","config_parameters"],[121,3,1,"","copy"],[121,3,1,"","estimate_fit_input_maps"],[121,3,1,"","estimate_flux_default"],[121,3,1,"","estimate_flux_map"],[121,3,1,"","estimate_kernel"],[121,3,1,"","estimate_mask_default"],[121,3,1,"","estimate_pad_width"],[121,2,1,"","n_jobs"],[121,2,1,"","parallel_backend"],[121,3,1,"","run"],[121,2,1,"","selection_all"],[121,2,1,"","selection_optional"],[121,2,1,"","tag"]],"gammapy.estimators.utils":[[122,4,1,"","compute_lightcurve_doublingtime"],[123,4,1,"","compute_lightcurve_fpp"],[124,4,1,"","compute_lightcurve_fvar"],[125,4,1,"","estimate_exposure_reco_energy"],[126,4,1,"","find_peaks"],[127,4,1,"","find_peaks_in_flux_map"],[128,4,1,"","resample_energy_edges"]],"gammapy.irf":[[129,1,1,"","Background2D"],[130,1,1,"","Background3D"],[131,1,1,"","BackgroundIRF"],[132,1,1,"","EDispKernel"],[133,1,1,"","EDispKernelMap"],[134,1,1,"","EDispMap"],[135,1,1,"","EffectiveAreaTable2D"],[136,1,1,"","EnergyDependentMultiGaussPSF"],[137,1,1,"","EnergyDispersion2D"],[138,1,1,"","FoVAlignment"],[139,1,1,"","IRF"],[140,1,1,"","IRFMap"],[141,5,1,"","IRF_REGISTRY"],[142,1,1,"","PSF3D"],[143,1,1,"","PSFKernel"],[144,1,1,"","PSFKing"],[145,1,1,"","PSFMap"],[146,1,1,"","ParametricPSF"],[147,1,1,"","RadMax2D"],[148,1,1,"","RecoPSFMap"],[149,4,1,"","load_irf_dict_from_file"]],"gammapy.irf.Background2D":[[129,2,1,"","axes"],[129,3,1,"","cumsum"],[129,2,1,"","data"],[129,2,1,"","default_interp_kwargs"],[129,2,1,"","default_unit"],[129,3,1,"","evaluate"],[129,2,1,"","fov_alignment"],[129,3,1,"","from_hdulist"],[129,3,1,"","from_table"],[129,2,1,"","has_offset_axis"],[129,3,1,"","integral"],[129,3,1,"","integrate_log_log"],[129,3,1,"","interp_missing_data"],[129,3,1,"","is_allclose"],[129,2,1,"","is_pointlike"],[129,3,1,"","normalize"],[129,3,1,"","pad"],[129,3,1,"","peek"],[129,3,1,"","plot"],[129,3,1,"","plot_at_energy"],[129,3,1,"","plot_energy_dependence"],[129,3,1,"","plot_offset_dependence"],[129,3,1,"","plot_spectrum"],[129,2,1,"","quantity"],[129,3,1,"","read"],[129,2,1,"","required_axes"],[129,3,1,"","slice_by_idx"],[129,2,1,"","tag"],[129,3,1,"","to_3d"],[129,3,1,"","to_hdulist"],[129,3,1,"","to_table"],[129,3,1,"","to_table_hdu"],[129,3,1,"","to_unit"],[129,2,1,"","unit"],[129,3,1,"","write"]],"gammapy.irf.Background3D":[[130,2,1,"","axes"],[130,3,1,"","cumsum"],[130,2,1,"","data"],[130,2,1,"","default_interp_kwargs"],[130,2,1,"","default_unit"],[130,3,1,"","evaluate"],[130,2,1,"","fov_alignment"],[130,3,1,"","from_hdulist"],[130,3,1,"","from_table"],[130,2,1,"","has_offset_axis"],[130,3,1,"","integral"],[130,3,1,"","integrate_log_log"],[130,3,1,"","interp_missing_data"],[130,3,1,"","is_allclose"],[130,2,1,"","is_pointlike"],[130,3,1,"","normalize"],[130,3,1,"","pad"],[130,3,1,"","peek"],[130,3,1,"","plot_at_energy"],[130,2,1,"","quantity"],[130,3,1,"","read"],[130,2,1,"","required_axes"],[130,3,1,"","slice_by_idx"],[130,2,1,"","tag"],[130,3,1,"","to_2d"],[130,3,1,"","to_hdulist"],[130,3,1,"","to_table"],[130,3,1,"","to_table_hdu"],[130,3,1,"","to_unit"],[130,2,1,"","unit"],[130,3,1,"","write"]],"gammapy.irf.BackgroundIRF":[[131,2,1,"","axes"],[131,3,1,"","cumsum"],[131,2,1,"","data"],[131,2,1,"","default_interp_kwargs"],[131,3,1,"","evaluate"],[131,2,1,"","fov_alignment"],[131,3,1,"","from_hdulist"],[131,3,1,"","from_table"],[131,2,1,"","has_offset_axis"],[131,3,1,"","integral"],[131,3,1,"","integrate_log_log"],[131,3,1,"","interp_missing_data"],[131,3,1,"","is_allclose"],[131,2,1,"","is_pointlike"],[131,3,1,"","normalize"],[131,3,1,"","pad"],[131,2,1,"","quantity"],[131,3,1,"","read"],[131,2,1,"","required_axes"],[131,3,1,"","slice_by_idx"],[131,2,1,"","tag"],[131,3,1,"","to_hdulist"],[131,3,1,"","to_table"],[131,3,1,"","to_table_hdu"],[131,3,1,"","to_unit"],[131,2,1,"","unit"],[131,3,1,"","write"]],"gammapy.irf.EDispKernel":[[132,2,1,"","axes"],[132,3,1,"","cumsum"],[132,2,1,"","data"],[132,2,1,"","default_interp_kwargs"],[132,3,1,"","evaluate"],[132,2,1,"","fov_alignment"],[132,3,1,"","from_diagonal_response"],[132,3,1,"","from_gauss"],[132,3,1,"","from_hdulist"],[132,3,1,"","from_table"],[132,3,1,"","get_bias"],[132,3,1,"","get_bias_energy"],[132,3,1,"","get_mean"],[132,3,1,"","get_resolution"],[132,2,1,"","has_offset_axis"],[132,3,1,"","integral"],[132,3,1,"","integrate_log_log"],[132,3,1,"","interp_missing_data"],[132,3,1,"","is_allclose"],[132,2,1,"","is_pointlike"],[132,3,1,"","normalize"],[132,3,1,"","pad"],[132,3,1,"","pdf_in_safe_range"],[132,2,1,"","pdf_matrix"],[132,3,1,"","peek"],[132,3,1,"","plot_bias"],[132,3,1,"","plot_matrix"],[132,2,1,"","quantity"],[132,3,1,"","read"],[132,2,1,"","required_axes"],[132,3,1,"","slice_by_idx"],[132,2,1,"","tag"],[132,3,1,"","to_hdulist"],[132,3,1,"","to_image"],[132,3,1,"","to_table"],[132,3,1,"","to_table_hdu"],[132,3,1,"","to_unit"],[132,2,1,"","unit"],[132,3,1,"","write"]],"gammapy.irf.EDispKernelMap":[[133,3,1,"","copy"],[133,3,1,"","cutout"],[133,3,1,"","downsample"],[133,2,1,"","edisp_map"],[133,3,1,"","from_diagonal_response"],[133,3,1,"","from_edisp_kernel"],[133,3,1,"","from_gauss"],[133,3,1,"","from_geom"],[133,3,1,"","from_hdulist"],[133,3,1,"","get_edisp_kernel"],[133,2,1,"","mask_safe_image"],[133,3,1,"","peek"],[133,3,1,"","read"],[133,2,1,"","required_axes"],[133,3,1,"","resample_energy_axis"],[133,3,1,"","slice_by_idx"],[133,3,1,"","stack"],[133,2,1,"","tag"],[133,3,1,"","to_hdulist"],[133,3,1,"","to_image"],[133,3,1,"","to_region_nd_map"],[133,3,1,"","write"]],"gammapy.irf.EDispMap":[[134,3,1,"","copy"],[134,3,1,"","cutout"],[134,3,1,"","downsample"],[134,2,1,"","edisp_map"],[134,3,1,"","from_diagonal_response"],[134,3,1,"","from_geom"],[134,3,1,"","from_hdulist"],[134,3,1,"","get_edisp_kernel"],[134,2,1,"","mask_safe_image"],[134,3,1,"","normalize"],[134,3,1,"","peek"],[134,3,1,"","read"],[134,2,1,"","required_axes"],[134,3,1,"","sample_coord"],[134,3,1,"","slice_by_idx"],[134,3,1,"","stack"],[134,2,1,"","tag"],[134,3,1,"","to_edisp_kernel_map"],[134,3,1,"","to_hdulist"],[134,3,1,"","to_region_nd_map"],[134,3,1,"","write"]],"gammapy.irf.EffectiveAreaTable2D":[[135,2,1,"","axes"],[135,3,1,"","cumsum"],[135,2,1,"","data"],[135,2,1,"","default_interp_kwargs"],[135,2,1,"","default_unit"],[135,3,1,"","evaluate"],[135,2,1,"","fov_alignment"],[135,3,1,"","from_hdulist"],[135,3,1,"","from_parametrization"],[135,3,1,"","from_table"],[135,2,1,"","has_offset_axis"],[135,3,1,"","integral"],[135,3,1,"","integrate_log_log"],[135,3,1,"","interp_missing_data"],[135,3,1,"","is_allclose"],[135,2,1,"","is_pointlike"],[135,3,1,"","normalize"],[135,3,1,"","pad"],[135,3,1,"","peek"],[135,3,1,"","plot"],[135,3,1,"","plot_energy_dependence"],[135,3,1,"","plot_offset_dependence"],[135,2,1,"","quantity"],[135,3,1,"","read"],[135,2,1,"","required_axes"],[135,3,1,"","slice_by_idx"],[135,2,1,"","tag"],[135,3,1,"","to_hdulist"],[135,3,1,"","to_table"],[135,3,1,"","to_table_hdu"],[135,3,1,"","to_unit"],[135,2,1,"","unit"],[135,3,1,"","write"]],"gammapy.irf.EnergyDependentMultiGaussPSF":[[136,2,1,"","axes"],[136,3,1,"","containment"],[136,3,1,"","containment_radius"],[136,3,1,"","cumsum"],[136,2,1,"","data"],[136,2,1,"","default_interp_kwargs"],[136,3,1,"","evaluate"],[136,3,1,"","evaluate_containment"],[136,3,1,"","evaluate_direct"],[136,3,1,"","evaluate_parameters"],[136,2,1,"","fov_alignment"],[136,3,1,"","from_hdulist"],[136,3,1,"","from_table"],[136,2,1,"","has_offset_axis"],[136,3,1,"","info"],[136,3,1,"","integral"],[136,3,1,"","integrate_log_log"],[136,3,1,"","interp_missing_data"],[136,3,1,"","is_allclose"],[136,2,1,"","is_pointlike"],[136,3,1,"","normalize"],[136,3,1,"","pad"],[136,3,1,"","peek"],[136,3,1,"","plot_containment_radius"],[136,3,1,"","plot_containment_radius_vs_energy"],[136,3,1,"","plot_psf_vs_rad"],[136,2,1,"","quantity"],[136,3,1,"","read"],[136,2,1,"","required_axes"],[136,2,1,"","required_parameters"],[136,3,1,"","slice_by_idx"],[136,2,1,"","tag"],[136,3,1,"","to_hdulist"],[136,3,1,"","to_psf3d"],[136,3,1,"","to_table"],[136,3,1,"","to_table_hdu"],[136,3,1,"","to_unit"],[136,2,1,"","unit"],[136,3,1,"","write"]],"gammapy.irf.EnergyDispersion2D":[[137,2,1,"","axes"],[137,3,1,"","cumsum"],[137,2,1,"","data"],[137,2,1,"","default_interp_kwargs"],[137,2,1,"","default_unit"],[137,3,1,"","evaluate"],[137,2,1,"","fov_alignment"],[137,3,1,"","from_gauss"],[137,3,1,"","from_hdulist"],[137,3,1,"","from_table"],[137,2,1,"","has_offset_axis"],[137,3,1,"","integral"],[137,3,1,"","integrate_log_log"],[137,3,1,"","interp_missing_data"],[137,3,1,"","is_allclose"],[137,2,1,"","is_pointlike"],[137,3,1,"","normalize"],[137,3,1,"","pad"],[137,3,1,"","peek"],[137,3,1,"","plot_bias"],[137,3,1,"","plot_migration"],[137,2,1,"","quantity"],[137,3,1,"","read"],[137,2,1,"","required_axes"],[137,3,1,"","slice_by_idx"],[137,2,1,"","tag"],[137,3,1,"","to_edisp_kernel"],[137,3,1,"","to_hdulist"],[137,3,1,"","to_table"],[137,3,1,"","to_table_hdu"],[137,3,1,"","to_unit"],[137,2,1,"","unit"],[137,3,1,"","write"]],"gammapy.irf.FoVAlignment":[[138,2,1,"","ALTAZ"],[138,2,1,"","RADEC"]],"gammapy.irf.IRF":[[139,2,1,"","axes"],[139,3,1,"","cumsum"],[139,2,1,"","data"],[139,2,1,"","default_interp_kwargs"],[139,3,1,"","evaluate"],[139,2,1,"","fov_alignment"],[139,3,1,"","from_hdulist"],[139,3,1,"","from_table"],[139,2,1,"","has_offset_axis"],[139,3,1,"","integral"],[139,3,1,"","integrate_log_log"],[139,3,1,"","interp_missing_data"],[139,3,1,"","is_allclose"],[139,2,1,"","is_pointlike"],[139,3,1,"","normalize"],[139,3,1,"","pad"],[139,2,1,"","quantity"],[139,3,1,"","read"],[139,2,1,"","required_axes"],[139,3,1,"","slice_by_idx"],[139,2,1,"","tag"],[139,3,1,"","to_hdulist"],[139,3,1,"","to_table"],[139,3,1,"","to_table_hdu"],[139,3,1,"","to_unit"],[139,2,1,"","unit"],[139,3,1,"","write"]],"gammapy.irf.IRFMap":[[140,3,1,"","copy"],[140,3,1,"","cutout"],[140,3,1,"","downsample"],[140,3,1,"","from_hdulist"],[140,2,1,"","mask_safe_image"],[140,3,1,"","read"],[140,2,1,"","required_axes"],[140,3,1,"","slice_by_idx"],[140,3,1,"","stack"],[140,2,1,"","tag"],[140,3,1,"","to_hdulist"],[140,3,1,"","to_region_nd_map"],[140,3,1,"","write"]],"gammapy.irf.PSF3D":[[142,2,1,"","axes"],[142,3,1,"","containment"],[142,3,1,"","containment_radius"],[142,3,1,"","cumsum"],[142,2,1,"","data"],[142,2,1,"","default_interp_kwargs"],[142,2,1,"","default_unit"],[142,3,1,"","evaluate"],[142,2,1,"","fov_alignment"],[142,3,1,"","from_hdulist"],[142,3,1,"","from_table"],[142,2,1,"","has_offset_axis"],[142,3,1,"","info"],[142,3,1,"","integral"],[142,3,1,"","integrate_log_log"],[142,3,1,"","interp_missing_data"],[142,3,1,"","is_allclose"],[142,2,1,"","is_pointlike"],[142,3,1,"","normalize"],[142,3,1,"","pad"],[142,3,1,"","peek"],[142,3,1,"","plot_containment_radius"],[142,3,1,"","plot_containment_radius_vs_energy"],[142,3,1,"","plot_psf_vs_rad"],[142,2,1,"","quantity"],[142,3,1,"","read"],[142,2,1,"","required_axes"],[142,3,1,"","slice_by_idx"],[142,2,1,"","tag"],[142,3,1,"","to_hdulist"],[142,3,1,"","to_table"],[142,3,1,"","to_table_hdu"],[142,3,1,"","to_unit"],[142,2,1,"","unit"],[142,3,1,"","write"]],"gammapy.irf.PSFKernel":[[143,2,1,"","data"],[143,3,1,"","from_gauss"],[143,3,1,"","from_spatial_model"],[143,3,1,"","normalize"],[143,3,1,"","peek"],[143,3,1,"","plot_kernel"],[143,2,1,"","psf_kernel_map"],[143,3,1,"","read"],[143,3,1,"","slice_by_idx"],[143,3,1,"","to_image"],[143,3,1,"","write"]],"gammapy.irf.PSFKing":[[144,2,1,"","axes"],[144,3,1,"","containment"],[144,3,1,"","containment_radius"],[144,3,1,"","cumsum"],[144,2,1,"","data"],[144,2,1,"","default_interp_kwargs"],[144,3,1,"","evaluate"],[144,3,1,"","evaluate_containment"],[144,3,1,"","evaluate_direct"],[144,3,1,"","evaluate_parameters"],[144,2,1,"","fov_alignment"],[144,3,1,"","from_hdulist"],[144,3,1,"","from_table"],[144,2,1,"","has_offset_axis"],[144,3,1,"","info"],[144,3,1,"","integral"],[144,3,1,"","integrate_log_log"],[144,3,1,"","interp_missing_data"],[144,3,1,"","is_allclose"],[144,2,1,"","is_pointlike"],[144,3,1,"","normalize"],[144,3,1,"","pad"],[144,3,1,"","peek"],[144,3,1,"","plot_containment_radius"],[144,3,1,"","plot_containment_radius_vs_energy"],[144,3,1,"","plot_psf_vs_rad"],[144,2,1,"","quantity"],[144,3,1,"","read"],[144,2,1,"","required_axes"],[144,2,1,"","required_parameters"],[144,3,1,"","slice_by_idx"],[144,2,1,"","tag"],[144,3,1,"","to_hdulist"],[144,3,1,"","to_psf3d"],[144,3,1,"","to_table"],[144,3,1,"","to_table_hdu"],[144,3,1,"","to_unit"],[144,2,1,"","unit"],[144,3,1,"","write"]],"gammapy.irf.PSFMap":[[145,3,1,"","containment"],[145,3,1,"","containment_radius"],[145,3,1,"","containment_radius_map"],[145,3,1,"","copy"],[145,3,1,"","cutout"],[145,3,1,"","downsample"],[145,2,1,"","energy_name"],[145,3,1,"","from_gauss"],[145,3,1,"","from_geom"],[145,3,1,"","from_hdulist"],[145,3,1,"","get_psf_kernel"],[145,2,1,"","mask_safe_image"],[145,3,1,"","normalize"],[145,3,1,"","peek"],[145,3,1,"","plot_containment_radius_vs_energy"],[145,3,1,"","plot_psf_vs_rad"],[145,2,1,"","psf_map"],[145,3,1,"","read"],[145,2,1,"","required_axes"],[145,3,1,"","sample_coord"],[145,3,1,"","slice_by_idx"],[145,3,1,"","stack"],[145,2,1,"","tag"],[145,3,1,"","to_hdulist"],[145,3,1,"","to_image"],[145,3,1,"","to_region_nd_map"],[145,3,1,"","write"]],"gammapy.irf.ParametricPSF":[[146,2,1,"","axes"],[146,3,1,"","containment"],[146,3,1,"","containment_radius"],[146,3,1,"","cumsum"],[146,2,1,"","data"],[146,2,1,"","default_interp_kwargs"],[146,3,1,"","evaluate"],[146,3,1,"","evaluate_containment"],[146,3,1,"","evaluate_direct"],[146,3,1,"","evaluate_parameters"],[146,2,1,"","fov_alignment"],[146,3,1,"","from_hdulist"],[146,3,1,"","from_table"],[146,2,1,"","has_offset_axis"],[146,3,1,"","info"],[146,3,1,"","integral"],[146,3,1,"","integrate_log_log"],[146,3,1,"","interp_missing_data"],[146,3,1,"","is_allclose"],[146,2,1,"","is_pointlike"],[146,3,1,"","normalize"],[146,3,1,"","pad"],[146,3,1,"","peek"],[146,3,1,"","plot_containment_radius"],[146,3,1,"","plot_containment_radius_vs_energy"],[146,3,1,"","plot_psf_vs_rad"],[146,2,1,"","quantity"],[146,3,1,"","read"],[146,2,1,"","required_axes"],[146,2,1,"","required_parameters"],[146,3,1,"","slice_by_idx"],[146,2,1,"","tag"],[146,3,1,"","to_hdulist"],[146,3,1,"","to_psf3d"],[146,3,1,"","to_table"],[146,3,1,"","to_table_hdu"],[146,3,1,"","to_unit"],[146,2,1,"","unit"],[146,3,1,"","write"]],"gammapy.irf.RadMax2D":[[147,2,1,"","axes"],[147,3,1,"","cumsum"],[147,2,1,"","data"],[147,2,1,"","default_interp_kwargs"],[147,2,1,"","default_unit"],[147,3,1,"","evaluate"],[147,2,1,"","fov_alignment"],[147,3,1,"","from_hdulist"],[147,3,1,"","from_irf"],[147,3,1,"","from_table"],[147,2,1,"","has_offset_axis"],[147,3,1,"","integral"],[147,3,1,"","integrate_log_log"],[147,3,1,"","interp_missing_data"],[147,3,1,"","is_allclose"],[147,2,1,"","is_fixed_rad_max"],[147,2,1,"","is_pointlike"],[147,3,1,"","normalize"],[147,3,1,"","pad"],[147,3,1,"","plot_rad_max_vs_energy"],[147,2,1,"","quantity"],[147,3,1,"","read"],[147,2,1,"","required_axes"],[147,3,1,"","slice_by_idx"],[147,2,1,"","tag"],[147,3,1,"","to_hdulist"],[147,3,1,"","to_table"],[147,3,1,"","to_table_hdu"],[147,3,1,"","to_unit"],[147,2,1,"","unit"],[147,3,1,"","write"]],"gammapy.irf.RecoPSFMap":[[148,3,1,"","containment"],[148,3,1,"","containment_radius"],[148,3,1,"","containment_radius_map"],[148,3,1,"","copy"],[148,3,1,"","cutout"],[148,3,1,"","downsample"],[148,2,1,"","energy_name"],[148,3,1,"","from_gauss"],[148,3,1,"","from_geom"],[148,3,1,"","from_hdulist"],[148,3,1,"","get_psf_kernel"],[148,2,1,"","mask_safe_image"],[148,3,1,"","normalize"],[148,3,1,"","peek"],[148,3,1,"","plot_containment_radius_vs_energy"],[148,3,1,"","plot_psf_vs_rad"],[148,2,1,"","psf_map"],[148,3,1,"","read"],[148,2,1,"","required_axes"],[148,3,1,"","sample_coord"],[148,3,1,"","slice_by_idx"],[148,3,1,"","stack"],[148,2,1,"","tag"],[148,3,1,"","to_hdulist"],[148,3,1,"","to_image"],[148,3,1,"","to_region_nd_map"],[148,3,1,"","write"]],"gammapy.makers":[[150,1,1,"","AdaptiveRingBackgroundMaker"],[151,1,1,"","DatasetsMaker"],[152,1,1,"","FoVBackgroundMaker"],[153,5,1,"","MAKER_REGISTRY"],[154,1,1,"","Maker"],[155,1,1,"","MapDatasetMaker"],[156,1,1,"","PhaseBackgroundMaker"],[157,1,1,"","ReflectedRegionsBackgroundMaker"],[158,1,1,"","ReflectedRegionsFinder"],[159,1,1,"","RegionsFinder"],[160,1,1,"","RingBackgroundMaker"],[161,1,1,"","SafeMaskMaker"],[162,1,1,"","SpectrumDatasetMaker"],[163,1,1,"","WobbleRegionsFinder"],[8,0,0,"-","utils"]],"gammapy.makers.AdaptiveRingBackgroundMaker":[[150,3,1,"","kernels"],[150,3,1,"","make_cubes"],[150,3,1,"","run"],[150,2,1,"","tag"]],"gammapy.makers.DatasetsMaker":[[151,3,1,"","callback"],[151,3,1,"","error_callback"],[151,3,1,"","make_dataset"],[151,2,1,"","n_jobs"],[151,2,1,"","offset_max"],[151,2,1,"","parallel_backend"],[151,3,1,"","run"],[151,2,1,"","safe_mask_maker"],[151,2,1,"","tag"]],"gammapy.makers.FoVBackgroundMaker":[[152,2,1,"","available_methods"],[152,3,1,"","make_background_fit"],[152,3,1,"","make_background_scale"],[152,3,1,"","make_default_fov_background_model"],[152,3,1,"","make_exclusion_mask"],[152,2,1,"","method"],[152,3,1,"","run"],[152,2,1,"","tag"]],"gammapy.makers.Maker":[[154,3,1,"","run"],[154,2,1,"","tag"]],"gammapy.makers.MapDatasetMaker":[[155,2,1,"","available_selection"],[155,3,1,"","make_background"],[155,3,1,"","make_counts"],[155,3,1,"","make_edisp"],[155,3,1,"","make_edisp_kernel"],[155,3,1,"","make_exposure"],[155,3,1,"","make_exposure_irf"],[155,3,1,"","make_meta_table"],[155,3,1,"","make_psf"],[155,3,1,"","run"],[155,2,1,"","tag"]],"gammapy.makers.PhaseBackgroundMaker":[[156,3,1,"","make_counts"],[156,3,1,"","make_counts_off"],[156,3,1,"","run"],[156,2,1,"","tag"]],"gammapy.makers.ReflectedRegionsBackgroundMaker":[[157,3,1,"","make_counts_off"],[157,3,1,"","run"],[157,2,1,"","tag"]],"gammapy.makers.ReflectedRegionsFinder":[[158,3,1,"","run"]],"gammapy.makers.RegionsFinder":[[159,3,1,"","run"]],"gammapy.makers.RingBackgroundMaker":[[160,3,1,"","kernel"],[160,3,1,"","make_maps_off"],[160,3,1,"","run"],[160,2,1,"","tag"]],"gammapy.makers.SafeMaskMaker":[[161,2,1,"","available_methods"],[161,3,1,"","make_mask_bkg_invalid"],[161,3,1,"","make_mask_energy_aeff_default"],[161,3,1,"","make_mask_energy_aeff_max"],[161,3,1,"","make_mask_energy_bkg_peak"],[161,3,1,"","make_mask_energy_edisp_bias"],[161,3,1,"","make_mask_offset_max"],[161,3,1,"","run"],[161,2,1,"","tag"]],"gammapy.makers.SpectrumDatasetMaker":[[162,2,1,"","available_selection"],[162,3,1,"","make_background"],[162,3,1,"","make_counts"],[162,3,1,"","make_edisp"],[162,3,1,"","make_edisp_kernel"],[162,3,1,"","make_exposure"],[162,3,1,"","make_exposure_irf"],[162,3,1,"","make_meta_table"],[162,3,1,"","make_psf"],[162,3,1,"","run"],[162,2,1,"","tag"]],"gammapy.makers.WobbleRegionsFinder":[[163,3,1,"","run"]],"gammapy.makers.utils":[[164,4,1,"","make_counts_rad_max"],[165,4,1,"","make_edisp_kernel_map"],[166,4,1,"","make_edisp_map"],[167,4,1,"","make_effective_livetime_map"],[168,4,1,"","make_map_background_irf"],[169,4,1,"","make_map_exposure_true_energy"],[170,4,1,"","make_observation_time_map"],[171,4,1,"","make_psf_map"],[172,4,1,"","make_theta_squared_table"]],"gammapy.maps":[[173,1,1,"","Geom"],[174,1,1,"","HpxGeom"],[175,1,1,"","HpxMap"],[176,1,1,"","HpxNDMap"],[177,1,1,"","LabelMapAxis"],[178,1,1,"","Map"],[179,1,1,"","MapAxes"],[180,1,1,"","MapAxis"],[181,1,1,"","MapCoord"],[182,1,1,"","Maps"],[183,1,1,"","RegionGeom"],[184,1,1,"","RegionNDMap"],[185,1,1,"","TimeMapAxis"],[186,1,1,"","WcsGeom"],[187,1,1,"","WcsMap"],[188,1,1,"","WcsNDMap"],[189,4,1,"","containment_radius"],[190,4,1,"","containment_region"]],"gammapy.maps.Geom":[[173,2,1,"","as_energy_true"],[173,2,1,"","center_coord"],[173,2,1,"","center_pix"],[173,2,1,"","center_skydir"],[173,3,1,"","contains"],[173,3,1,"","contains_pix"],[173,3,1,"","coord_to_idx"],[173,3,1,"","coord_to_pix"],[173,3,1,"","copy"],[173,3,1,"","crop"],[173,3,1,"","data_nbytes"],[173,2,1,"","data_shape"],[173,3,1,"","downsample"],[173,3,1,"","drop"],[173,3,1,"","energy_mask"],[173,3,1,"","from_hdulist"],[173,3,1,"","get_coord"],[173,3,1,"","get_idx"],[173,2,1,"","has_energy_axis"],[173,2,1,"","is_allsky"],[173,2,1,"","is_flat"],[173,2,1,"","is_image"],[173,3,1,"","pad"],[173,3,1,"","pix_to_coord"],[173,3,1,"","pix_to_idx"],[173,3,1,"","rename_axes"],[173,3,1,"","replace_axis"],[173,3,1,"","resample_axis"],[173,3,1,"","slice_by_idx"],[173,3,1,"","solid_angle"],[173,3,1,"","squash"],[173,3,1,"","to_bands_hdu"],[173,3,1,"","to_cube"],[173,3,1,"","to_image"],[173,3,1,"","upsample"]],"gammapy.maps.HpxGeom":[[174,2,1,"","as_energy_true"],[174,2,1,"","axes"],[174,2,1,"","axes_names"],[174,2,1,"","center_coord"],[174,2,1,"","center_pix"],[174,2,1,"","center_skydir"],[174,3,1,"","contains"],[174,3,1,"","contains_pix"],[174,3,1,"","coord_to_idx"],[174,3,1,"","coord_to_pix"],[174,3,1,"","copy"],[174,3,1,"","create"],[174,3,1,"","crop"],[174,3,1,"","cutout"],[174,3,1,"","data_nbytes"],[174,2,1,"","data_shape"],[174,2,1,"","data_shape_axes"],[174,3,1,"","downsample"],[174,3,1,"","drop"],[174,3,1,"","energy_mask"],[174,2,1,"","frame"],[174,3,1,"","from_hdu"],[174,3,1,"","from_hdulist"],[174,3,1,"","from_header"],[174,3,1,"","get_coord"],[174,3,1,"","get_idx"],[174,3,1,"","get_index_list"],[174,3,1,"","global_to_local"],[174,2,1,"","has_energy_axis"],[174,3,1,"","interp_weights"],[174,2,1,"","ipix"],[174,3,1,"","is_aligned"],[174,3,1,"","is_allclose"],[174,2,1,"","is_allsky"],[174,2,1,"","is_flat"],[174,2,1,"","is_hpx"],[174,2,1,"","is_image"],[174,2,1,"","is_region"],[174,2,1,"","is_regular"],[174,3,1,"","local_to_global"],[174,2,1,"","ndim"],[174,2,1,"","nest"],[174,2,1,"","npix"],[174,2,1,"","npix_max"],[174,2,1,"","nside"],[174,2,1,"","order"],[174,2,1,"","ordering"],[174,3,1,"","pad"],[174,3,1,"","pix_to_coord"],[174,3,1,"","pix_to_idx"],[174,2,1,"","pixel_scales"],[174,2,1,"","projection"],[174,2,1,"","region"],[174,3,1,"","region_mask"],[174,3,1,"","rename_axes"],[174,3,1,"","replace_axis"],[174,3,1,"","resample_axis"],[174,3,1,"","separation"],[174,2,1,"","shape_axes"],[174,3,1,"","slice_by_idx"],[174,3,1,"","solid_angle"],[174,3,1,"","squash"],[174,3,1,"","to_bands_hdu"],[174,3,1,"","to_binsz"],[174,3,1,"","to_cube"],[174,3,1,"","to_header"],[174,3,1,"","to_image"],[174,3,1,"","to_nside"],[174,3,1,"","to_swapped"],[174,3,1,"","to_wcs_geom"],[174,3,1,"","to_wcs_tiles"],[174,3,1,"","upsample"],[174,2,1,"","width"]],"gammapy.maps.HpxMap":[[175,3,1,"","coadd"],[175,3,1,"","copy"],[175,3,1,"","create"],[175,3,1,"","crop"],[175,3,1,"","cumsum"],[175,2,1,"","data"],[175,3,1,"","dot"],[175,3,1,"","downsample"],[175,3,1,"","fill_by_coord"],[175,3,1,"","fill_by_idx"],[175,3,1,"","fill_by_pix"],[175,3,1,"","fill_events"],[175,3,1,"","from_geom"],[175,3,1,"","from_hdulist"],[175,3,1,"","from_stack"],[175,2,1,"","geom"],[175,3,1,"","get_by_coord"],[175,3,1,"","get_by_idx"],[175,3,1,"","get_by_pix"],[175,3,1,"","get_image_by_coord"],[175,3,1,"","get_image_by_idx"],[175,3,1,"","get_image_by_pix"],[175,3,1,"","get_spectrum"],[175,3,1,"","integral"],[175,3,1,"","interp_by_coord"],[175,3,1,"","interp_by_pix"],[175,3,1,"","interp_to_geom"],[175,3,1,"","is_allclose"],[175,2,1,"","is_mask"],[175,3,1,"","iter_by_axis"],[175,3,1,"","iter_by_image"],[175,3,1,"","iter_by_image_data"],[175,3,1,"","iter_by_image_index"],[175,3,1,"","mask_nearest_position"],[175,2,1,"","meta"],[175,3,1,"","normalize"],[175,3,1,"","pad"],[175,3,1,"","plot_grid"],[175,3,1,"","plot_interactive"],[175,2,1,"","quantity"],[175,3,1,"","read"],[175,3,1,"","reduce"],[175,3,1,"","reduce_over_axes"],[175,3,1,"","rename_axes"],[175,3,1,"","reorder_axes"],[175,3,1,"","reproject_by_image"],[175,3,1,"","reproject_to_geom"],[175,3,1,"","resample"],[175,3,1,"","resample_axis"],[175,3,1,"","sample_coord"],[175,3,1,"","set_by_coord"],[175,3,1,"","set_by_idx"],[175,3,1,"","set_by_pix"],[175,3,1,"","slice_by_idx"],[175,3,1,"","split_by_axis"],[175,3,1,"","sum_over_axes"],[175,2,1,"","tag"],[175,3,1,"","to_cube"],[175,3,1,"","to_hdu"],[175,3,1,"","to_hdulist"],[175,3,1,"","to_swapped"],[175,3,1,"","to_unit"],[175,3,1,"","to_wcs"],[175,2,1,"","unit"],[175,3,1,"","upsample"],[175,3,1,"","write"]],"gammapy.maps.HpxNDMap":[[176,3,1,"","coadd"],[176,3,1,"","convolve"],[176,3,1,"","convolve_full"],[176,3,1,"","convolve_wcs"],[176,3,1,"","copy"],[176,3,1,"","create"],[176,3,1,"","crop"],[176,3,1,"","cumsum"],[176,3,1,"","cutout"],[176,2,1,"","data"],[176,3,1,"","dot"],[176,3,1,"","downsample"],[176,3,1,"","fill_by_coord"],[176,3,1,"","fill_by_idx"],[176,3,1,"","fill_by_pix"],[176,3,1,"","fill_events"],[176,3,1,"","from_geom"],[176,3,1,"","from_hdu"],[176,3,1,"","from_hdulist"],[176,3,1,"","from_stack"],[176,3,1,"","from_wcs_tiles"],[176,2,1,"","geom"],[176,3,1,"","get_by_coord"],[176,3,1,"","get_by_idx"],[176,3,1,"","get_by_pix"],[176,3,1,"","get_image_by_coord"],[176,3,1,"","get_image_by_idx"],[176,3,1,"","get_image_by_pix"],[176,3,1,"","get_spectrum"],[176,3,1,"","integral"],[176,3,1,"","interp_by_coord"],[176,3,1,"","interp_by_pix"],[176,3,1,"","interp_to_geom"],[176,3,1,"","is_allclose"],[176,2,1,"","is_mask"],[176,3,1,"","iter_by_axis"],[176,3,1,"","iter_by_image"],[176,3,1,"","iter_by_image_data"],[176,3,1,"","iter_by_image_index"],[176,3,1,"","mask_nearest_position"],[176,2,1,"","meta"],[176,3,1,"","normalize"],[176,3,1,"","pad"],[176,3,1,"","plot"],[176,3,1,"","plot_grid"],[176,3,1,"","plot_interactive"],[176,3,1,"","plot_mask"],[176,2,1,"","quantity"],[176,3,1,"","read"],[176,3,1,"","reduce"],[176,3,1,"","reduce_over_axes"],[176,3,1,"","rename_axes"],[176,3,1,"","reorder_axes"],[176,3,1,"","reproject_by_image"],[176,3,1,"","reproject_to_geom"],[176,3,1,"","resample"],[176,3,1,"","resample_axis"],[176,3,1,"","sample_coord"],[176,3,1,"","set_by_coord"],[176,3,1,"","set_by_idx"],[176,3,1,"","set_by_pix"],[176,3,1,"","slice_by_idx"],[176,3,1,"","smooth"],[176,3,1,"","split_by_axis"],[176,3,1,"","stack"],[176,3,1,"","sum_over_axes"],[176,2,1,"","tag"],[176,3,1,"","to_cube"],[176,3,1,"","to_hdu"],[176,3,1,"","to_hdulist"],[176,3,1,"","to_nside"],[176,3,1,"","to_region_nd_map"],[176,3,1,"","to_swapped"],[176,3,1,"","to_unit"],[176,3,1,"","to_wcs"],[176,3,1,"","to_wcs_tiles"],[176,2,1,"","unit"],[176,3,1,"","upsample"],[176,3,1,"","write"]],"gammapy.maps.LabelMapAxis":[[177,2,1,"","as_plot_center"],[177,2,1,"","as_plot_edges"],[177,2,1,"","as_plot_labels"],[177,2,1,"","as_plot_xerr"],[177,3,1,"","assert_name"],[177,2,1,"","bin_width"],[177,2,1,"","center"],[177,3,1,"","concatenate"],[177,3,1,"","coord_to_idx"],[177,3,1,"","coord_to_pix"],[177,3,1,"","copy"],[177,3,1,"","downsample"],[177,2,1,"","edges"],[177,2,1,"","edges_max"],[177,2,1,"","edges_min"],[177,3,1,"","format_plot_xaxis"],[177,3,1,"","from_stack"],[177,3,1,"","from_table"],[177,3,1,"","is_allclose"],[177,2,1,"","name"],[177,2,1,"","nbin"],[177,2,1,"","node_type"],[177,3,1,"","pad"],[177,3,1,"","pix_to_coord"],[177,3,1,"","pix_to_idx"],[177,3,1,"","resample"],[177,3,1,"","slice"],[177,3,1,"","squash"],[177,3,1,"","to_header"],[177,2,1,"","unit"],[177,3,1,"","upsample"]],"gammapy.maps.Map":[[178,3,1,"","coadd"],[178,3,1,"","copy"],[178,3,1,"","create"],[178,3,1,"","crop"],[178,3,1,"","cumsum"],[178,2,1,"","data"],[178,3,1,"","dot"],[178,3,1,"","downsample"],[178,3,1,"","fill_by_coord"],[178,3,1,"","fill_by_idx"],[178,3,1,"","fill_by_pix"],[178,3,1,"","fill_events"],[178,3,1,"","from_geom"],[178,3,1,"","from_hdulist"],[178,3,1,"","from_stack"],[178,2,1,"","geom"],[178,3,1,"","get_by_coord"],[178,3,1,"","get_by_idx"],[178,3,1,"","get_by_pix"],[178,3,1,"","get_image_by_coord"],[178,3,1,"","get_image_by_idx"],[178,3,1,"","get_image_by_pix"],[178,3,1,"","get_spectrum"],[178,3,1,"","integral"],[178,3,1,"","interp_by_coord"],[178,3,1,"","interp_by_pix"],[178,3,1,"","interp_to_geom"],[178,3,1,"","is_allclose"],[178,2,1,"","is_mask"],[178,3,1,"","iter_by_axis"],[178,3,1,"","iter_by_image"],[178,3,1,"","iter_by_image_data"],[178,3,1,"","iter_by_image_index"],[178,3,1,"","mask_nearest_position"],[178,2,1,"","meta"],[178,3,1,"","normalize"],[178,3,1,"","pad"],[178,3,1,"","plot_grid"],[178,3,1,"","plot_interactive"],[178,2,1,"","quantity"],[178,3,1,"","read"],[178,3,1,"","reduce"],[178,3,1,"","reduce_over_axes"],[178,3,1,"","rename_axes"],[178,3,1,"","reorder_axes"],[178,3,1,"","reproject_by_image"],[178,3,1,"","reproject_to_geom"],[178,3,1,"","resample"],[178,3,1,"","resample_axis"],[178,3,1,"","sample_coord"],[178,3,1,"","set_by_coord"],[178,3,1,"","set_by_idx"],[178,3,1,"","set_by_pix"],[178,3,1,"","slice_by_idx"],[178,3,1,"","split_by_axis"],[178,3,1,"","sum_over_axes"],[178,2,1,"","tag"],[178,3,1,"","to_cube"],[178,3,1,"","to_unit"],[178,2,1,"","unit"],[178,3,1,"","upsample"],[178,3,1,"","write"]],"gammapy.maps.MapAxes":[[179,3,1,"","assert_names"],[179,3,1,"","bin_volume"],[179,2,1,"","center_coord"],[179,3,1,"","coord_to_idx"],[179,3,1,"","coord_to_pix"],[179,3,1,"","copy"],[179,3,1,"","count"],[179,3,1,"","downsample"],[179,3,1,"","drop"],[179,3,1,"","from_default"],[179,3,1,"","from_table"],[179,3,1,"","from_table_hdu"],[179,3,1,"","get_coord"],[179,3,1,"","index"],[179,3,1,"","index_data"],[179,3,1,"","is_allclose"],[179,2,1,"","is_flat"],[179,2,1,"","is_unidimensional"],[179,2,1,"","iter_with_reshape"],[179,2,1,"","names"],[179,3,1,"","pad"],[179,3,1,"","pix_to_coord"],[179,3,1,"","pix_to_idx"],[179,2,1,"","primary_axis"],[179,3,1,"","rename_axes"],[179,3,1,"","replace"],[179,3,1,"","resample"],[179,2,1,"","reverse"],[179,2,1,"","shape"],[179,3,1,"","slice_by_idx"],[179,3,1,"","squash"],[179,3,1,"","to_header"],[179,3,1,"","to_table"],[179,3,1,"","to_table_hdu"],[179,3,1,"","upsample"]],"gammapy.maps.MapAxis":[[180,2,1,"","as_plot_center"],[180,2,1,"","as_plot_edges"],[180,2,1,"","as_plot_labels"],[180,2,1,"","as_plot_scale"],[180,2,1,"","as_plot_xerr"],[180,3,1,"","assert_name"],[180,2,1,"","bin_width"],[180,2,1,"","bounds"],[180,2,1,"","center"],[180,3,1,"","concatenate"],[180,3,1,"","coord_to_idx"],[180,3,1,"","coord_to_pix"],[180,3,1,"","copy"],[180,3,1,"","downsample"],[180,2,1,"","edges"],[180,2,1,"","edges_max"],[180,2,1,"","edges_min"],[180,3,1,"","format_plot_xaxis"],[180,3,1,"","format_plot_yaxis"],[180,3,1,"","from_bounds"],[180,3,1,"","from_edges"],[180,3,1,"","from_energy_bounds"],[180,3,1,"","from_energy_edges"],[180,3,1,"","from_nodes"],[180,3,1,"","from_stack"],[180,3,1,"","from_table"],[180,3,1,"","from_table_hdu"],[180,3,1,"","group_table"],[180,2,1,"","interp"],[180,3,1,"","is_aligned"],[180,3,1,"","is_allclose"],[180,2,1,"","is_energy_axis"],[180,2,1,"","iter_by_edges"],[180,2,1,"","name"],[180,2,1,"","nbin"],[180,2,1,"","nbin_per_decade"],[180,2,1,"","node_type"],[180,3,1,"","pad"],[180,3,1,"","pix_to_coord"],[180,3,1,"","pix_to_idx"],[180,3,1,"","rename"],[180,3,1,"","round"],[180,3,1,"","slice"],[180,3,1,"","squash"],[180,3,1,"","to_header"],[180,3,1,"","to_node_type"],[180,3,1,"","to_table"],[180,3,1,"","to_table_hdu"],[180,2,1,"","unit"],[180,3,1,"","upsample"],[180,2,1,"","use_center_as_plot_labels"]],"gammapy.maps.MapCoord":[[181,3,1,"","apply_mask"],[181,2,1,"","axis_names"],[181,2,1,"","broadcasted"],[181,3,1,"","copy"],[181,3,1,"","create"],[181,2,1,"","flat"],[181,2,1,"","frame"],[181,2,1,"","lat"],[181,2,1,"","lon"],[181,2,1,"","match_by_name"],[181,2,1,"","ndim"],[181,2,1,"","phi"],[181,2,1,"","shape"],[181,2,1,"","size"],[181,2,1,"","skycoord"],[181,2,1,"","theta"],[181,3,1,"","to_frame"]],"gammapy.maps.Maps":[[182,3,1,"","clear"],[182,3,1,"","from_geom"],[182,3,1,"","from_hdulist"],[182,2,1,"","geom"],[182,3,1,"","get"],[182,3,1,"","items"],[182,3,1,"","keys"],[182,3,1,"","pop"],[182,3,1,"","popitem"],[182,3,1,"","read"],[182,3,1,"","setdefault"],[182,3,1,"","to_hdulist"],[182,3,1,"","update"],[182,3,1,"","values"],[182,3,1,"","write"]],"gammapy.maps.RegionGeom":[[183,2,1,"","as_energy_true"],[183,2,1,"","axes"],[183,2,1,"","axes_names"],[183,3,1,"","bin_volume"],[183,2,1,"","binsz_wcs"],[183,2,1,"","center_coord"],[183,2,1,"","center_pix"],[183,2,1,"","center_skydir"],[183,3,1,"","contains"],[183,3,1,"","contains_pix"],[183,3,1,"","contains_wcs_pix"],[183,3,1,"","coord_to_idx"],[183,3,1,"","coord_to_pix"],[183,3,1,"","copy"],[183,3,1,"","create"],[183,3,1,"","crop"],[183,3,1,"","data_nbytes"],[183,2,1,"","data_shape"],[183,2,1,"","data_shape_axes"],[183,3,1,"","downsample"],[183,3,1,"","drop"],[183,3,1,"","energy_mask"],[183,2,1,"","frame"],[183,3,1,"","from_hdulist"],[183,3,1,"","from_regions"],[183,3,1,"","get_coord"],[183,3,1,"","get_idx"],[183,3,1,"","get_wcs_coord_and_weights"],[183,2,1,"","has_energy_axis"],[183,2,1,"","is_all_point_sky_regions"],[183,3,1,"","is_allclose"],[183,2,1,"","is_allsky"],[183,2,1,"","is_flat"],[183,2,1,"","is_hpx"],[183,2,1,"","is_image"],[183,2,1,"","is_region"],[183,2,1,"","is_regular"],[183,2,1,"","npix"],[183,3,1,"","pad"],[183,3,1,"","pix_to_coord"],[183,3,1,"","pix_to_idx"],[183,3,1,"","plot_region"],[183,2,1,"","projection"],[183,2,1,"","region"],[183,3,1,"","rename_axes"],[183,3,1,"","replace_axis"],[183,3,1,"","resample_axis"],[183,3,1,"","separation"],[183,3,1,"","slice_by_idx"],[183,3,1,"","solid_angle"],[183,3,1,"","squash"],[183,3,1,"","to_bands_hdu"],[183,3,1,"","to_binsz"],[183,3,1,"","to_binsz_wcs"],[183,3,1,"","to_cube"],[183,3,1,"","to_hdulist"],[183,3,1,"","to_image"],[183,3,1,"","to_wcs_geom"],[183,3,1,"","union"],[183,3,1,"","upsample"],[183,2,1,"","wcs"],[183,2,1,"","width"]],"gammapy.maps.RegionNDMap":[[184,3,1,"","coadd"],[184,3,1,"","copy"],[184,3,1,"","create"],[184,3,1,"","crop"],[184,3,1,"","cumsum"],[184,3,1,"","cutout"],[184,2,1,"","data"],[184,3,1,"","dot"],[184,3,1,"","downsample"],[184,3,1,"","fill_by_coord"],[184,3,1,"","fill_by_idx"],[184,3,1,"","fill_by_pix"],[184,3,1,"","fill_events"],[184,3,1,"","from_geom"],[184,3,1,"","from_hdulist"],[184,3,1,"","from_stack"],[184,3,1,"","from_table"],[184,2,1,"","geom"],[184,3,1,"","get_by_coord"],[184,3,1,"","get_by_idx"],[184,3,1,"","get_by_pix"],[184,3,1,"","get_image_by_coord"],[184,3,1,"","get_image_by_idx"],[184,3,1,"","get_image_by_pix"],[184,3,1,"","get_spectrum"],[184,3,1,"","integral"],[184,3,1,"","interp_by_coord"],[184,3,1,"","interp_by_pix"],[184,3,1,"","interp_to_geom"],[184,3,1,"","is_allclose"],[184,2,1,"","is_mask"],[184,3,1,"","iter_by_axis"],[184,3,1,"","iter_by_axis_data"],[184,3,1,"","iter_by_image"],[184,3,1,"","iter_by_image_data"],[184,3,1,"","iter_by_image_index"],[184,3,1,"","mask_nearest_position"],[184,2,1,"","meta"],[184,3,1,"","normalize"],[184,3,1,"","pad"],[184,3,1,"","plot"],[184,3,1,"","plot_grid"],[184,3,1,"","plot_hist"],[184,3,1,"","plot_interactive"],[184,3,1,"","plot_mask"],[184,3,1,"","plot_region"],[184,2,1,"","quantity"],[184,3,1,"","read"],[184,3,1,"","reduce"],[184,3,1,"","reduce_over_axes"],[184,3,1,"","rename_axes"],[184,3,1,"","reorder_axes"],[184,3,1,"","reproject_by_image"],[184,3,1,"","reproject_to_geom"],[184,3,1,"","resample"],[184,3,1,"","resample_axis"],[184,3,1,"","sample_coord"],[184,3,1,"","set_by_coord"],[184,3,1,"","set_by_idx"],[184,3,1,"","set_by_pix"],[184,3,1,"","slice_by_idx"],[184,3,1,"","split_by_axis"],[184,3,1,"","stack"],[184,3,1,"","sum_over_axes"],[184,2,1,"","tag"],[184,3,1,"","to_cube"],[184,3,1,"","to_hdulist"],[184,3,1,"","to_region_nd_map"],[184,3,1,"","to_table"],[184,3,1,"","to_unit"],[184,2,1,"","unit"],[184,3,1,"","upsample"],[184,3,1,"","write"]],"gammapy.maps.TimeMapAxis":[[185,2,1,"","as_plot_center"],[185,2,1,"","as_plot_edges"],[185,2,1,"","as_plot_labels"],[185,2,1,"","as_plot_xerr"],[185,3,1,"","assert_name"],[185,2,1,"","bin_width"],[185,2,1,"","bounds"],[185,2,1,"","center"],[185,3,1,"","coord_to_idx"],[185,3,1,"","coord_to_pix"],[185,3,1,"","copy"],[185,3,1,"","downsample"],[185,2,1,"","edges"],[185,2,1,"","edges_max"],[185,2,1,"","edges_min"],[185,3,1,"","format_plot_xaxis"],[185,3,1,"","from_gti"],[185,3,1,"","from_gti_bounds"],[185,3,1,"","from_table"],[185,3,1,"","from_time_bounds"],[185,3,1,"","from_time_edges"],[185,3,1,"","group_table"],[185,2,1,"","interp"],[185,3,1,"","is_aligned"],[185,3,1,"","is_allclose"],[185,2,1,"","is_contiguous"],[185,2,1,"","iter_by_edges"],[185,2,1,"","name"],[185,2,1,"","nbin"],[185,2,1,"","node_type"],[185,3,1,"","pix_to_coord"],[185,3,1,"","pix_to_idx"],[185,2,1,"","reference_time"],[185,3,1,"","slice"],[185,3,1,"","squash"],[185,2,1,"","time_bounds"],[185,2,1,"","time_delta"],[185,2,1,"","time_edges"],[185,2,1,"","time_format"],[185,2,1,"","time_max"],[185,2,1,"","time_mid"],[185,2,1,"","time_min"],[185,3,1,"","to_contiguous"],[185,3,1,"","to_gti"],[185,3,1,"","to_header"],[185,2,1,"","unit"],[185,3,1,"","upsample"]],"gammapy.maps.WcsGeom":[[186,2,1,"","as_energy_true"],[186,2,1,"","axes"],[186,2,1,"","axes_names"],[186,3,1,"","bin_volume"],[186,3,1,"","binary_structure"],[186,3,1,"","boundary_mask"],[186,2,1,"","center_coord"],[186,2,1,"","center_pix"],[186,2,1,"","center_skydir"],[186,3,1,"","contains"],[186,3,1,"","contains_pix"],[186,3,1,"","coord_to_idx"],[186,3,1,"","coord_to_pix"],[186,3,1,"","copy"],[186,3,1,"","create"],[186,3,1,"","crop"],[186,3,1,"","cutout"],[186,3,1,"","cutout_slices"],[186,3,1,"","data_nbytes"],[186,2,1,"","data_shape"],[186,2,1,"","data_shape_axes"],[186,2,1,"","data_shape_image"],[186,3,1,"","downsample"],[186,3,1,"","drop"],[186,3,1,"","energy_mask"],[186,2,1,"","footprint"],[186,2,1,"","footprint_rectangle_sky_region"],[186,2,1,"","frame"],[186,3,1,"","from_aligned"],[186,3,1,"","from_hdulist"],[186,3,1,"","from_header"],[186,3,1,"","get_coord"],[186,3,1,"","get_idx"],[186,3,1,"","get_pix"],[186,2,1,"","has_energy_axis"],[186,3,1,"","is_aligned"],[186,3,1,"","is_allclose"],[186,2,1,"","is_allsky"],[186,2,1,"","is_flat"],[186,2,1,"","is_hpx"],[186,2,1,"","is_image"],[186,2,1,"","is_region"],[186,2,1,"","is_regular"],[186,2,1,"","ndim"],[186,2,1,"","npix"],[186,3,1,"","pad"],[186,3,1,"","pix_to_coord"],[186,3,1,"","pix_to_idx"],[186,2,1,"","pixel_area"],[186,2,1,"","pixel_scales"],[186,2,1,"","projection"],[186,3,1,"","region_mask"],[186,3,1,"","region_weights"],[186,3,1,"","rename_axes"],[186,3,1,"","replace_axis"],[186,3,1,"","resample_axis"],[186,3,1,"","separation"],[186,2,1,"","shape_axes"],[186,3,1,"","slice_by_idx"],[186,3,1,"","solid_angle"],[186,3,1,"","squash"],[186,3,1,"","to_bands_hdu"],[186,3,1,"","to_binsz"],[186,3,1,"","to_cube"],[186,3,1,"","to_even_npix"],[186,3,1,"","to_header"],[186,3,1,"","to_image"],[186,3,1,"","to_odd_npix"],[186,3,1,"","upsample"],[186,2,1,"","wcs"],[186,2,1,"","width"]],"gammapy.maps.WcsMap":[[187,3,1,"","coadd"],[187,3,1,"","copy"],[187,3,1,"","create"],[187,3,1,"","crop"],[187,3,1,"","cumsum"],[187,2,1,"","data"],[187,3,1,"","dot"],[187,3,1,"","downsample"],[187,3,1,"","fill_by_coord"],[187,3,1,"","fill_by_idx"],[187,3,1,"","fill_by_pix"],[187,3,1,"","fill_events"],[187,3,1,"","from_geom"],[187,3,1,"","from_hdulist"],[187,3,1,"","from_stack"],[187,2,1,"","geom"],[187,3,1,"","get_by_coord"],[187,3,1,"","get_by_idx"],[187,3,1,"","get_by_pix"],[187,3,1,"","get_image_by_coord"],[187,3,1,"","get_image_by_idx"],[187,3,1,"","get_image_by_pix"],[187,3,1,"","get_spectrum"],[187,3,1,"","integral"],[187,3,1,"","interp_by_coord"],[187,3,1,"","interp_by_pix"],[187,3,1,"","interp_to_geom"],[187,3,1,"","is_allclose"],[187,2,1,"","is_mask"],[187,3,1,"","iter_by_axis"],[187,3,1,"","iter_by_image"],[187,3,1,"","iter_by_image_data"],[187,3,1,"","iter_by_image_index"],[187,3,1,"","mask_nearest_position"],[187,2,1,"","meta"],[187,3,1,"","normalize"],[187,3,1,"","pad"],[187,3,1,"","plot_grid"],[187,3,1,"","plot_interactive"],[187,2,1,"","quantity"],[187,3,1,"","read"],[187,3,1,"","reduce"],[187,3,1,"","reduce_over_axes"],[187,3,1,"","rename_axes"],[187,3,1,"","reorder_axes"],[187,3,1,"","reproject_by_image"],[187,3,1,"","reproject_to_geom"],[187,3,1,"","resample"],[187,3,1,"","resample_axis"],[187,3,1,"","sample_coord"],[187,3,1,"","set_by_coord"],[187,3,1,"","set_by_idx"],[187,3,1,"","set_by_pix"],[187,3,1,"","slice_by_idx"],[187,3,1,"","split_by_axis"],[187,3,1,"","sum_over_axes"],[187,2,1,"","tag"],[187,3,1,"","to_cube"],[187,3,1,"","to_hdu"],[187,3,1,"","to_hdulist"],[187,3,1,"","to_unit"],[187,2,1,"","unit"],[187,3,1,"","upsample"],[187,3,1,"","write"]],"gammapy.maps.WcsNDMap":[[188,3,1,"","binary_dilate"],[188,3,1,"","binary_erode"],[188,3,1,"","coadd"],[188,3,1,"","convolve"],[188,3,1,"","copy"],[188,3,1,"","create"],[188,3,1,"","crop"],[188,3,1,"","cumsum"],[188,3,1,"","cutout"],[188,3,1,"","cutout_and_mask_region"],[188,2,1,"","data"],[188,3,1,"","dot"],[188,3,1,"","downsample"],[188,3,1,"","fill_by_coord"],[188,3,1,"","fill_by_idx"],[188,3,1,"","fill_by_pix"],[188,3,1,"","fill_events"],[188,3,1,"","from_geom"],[188,3,1,"","from_hdu"],[188,3,1,"","from_hdulist"],[188,3,1,"","from_stack"],[188,2,1,"","geom"],[188,3,1,"","get_by_coord"],[188,3,1,"","get_by_idx"],[188,3,1,"","get_by_pix"],[188,3,1,"","get_image_by_coord"],[188,3,1,"","get_image_by_idx"],[188,3,1,"","get_image_by_pix"],[188,3,1,"","get_spectrum"],[188,3,1,"","integral"],[188,3,1,"","interp_by_coord"],[188,3,1,"","interp_by_pix"],[188,3,1,"","interp_to_geom"],[188,3,1,"","is_allclose"],[188,2,1,"","is_mask"],[188,3,1,"","iter_by_axis"],[188,3,1,"","iter_by_image"],[188,3,1,"","iter_by_image_data"],[188,3,1,"","iter_by_image_index"],[188,3,1,"","mask_contains_region"],[188,3,1,"","mask_nearest_position"],[188,2,1,"","meta"],[188,3,1,"","normalize"],[188,3,1,"","pad"],[188,3,1,"","plot"],[188,3,1,"","plot_grid"],[188,3,1,"","plot_interactive"],[188,3,1,"","plot_mask"],[188,2,1,"","quantity"],[188,3,1,"","read"],[188,3,1,"","reduce"],[188,3,1,"","reduce_over_axes"],[188,3,1,"","rename_axes"],[188,3,1,"","reorder_axes"],[188,3,1,"","reproject_by_image"],[188,3,1,"","reproject_to_geom"],[188,3,1,"","resample"],[188,3,1,"","resample_axis"],[188,3,1,"","sample_coord"],[188,3,1,"","set_by_coord"],[188,3,1,"","set_by_idx"],[188,3,1,"","set_by_pix"],[188,3,1,"","slice_by_idx"],[188,3,1,"","smooth"],[188,3,1,"","split_by_axis"],[188,3,1,"","stack"],[188,3,1,"","sum_over_axes"],[188,2,1,"","tag"],[188,3,1,"","to_cube"],[188,3,1,"","to_hdu"],[188,3,1,"","to_hdulist"],[188,3,1,"","to_region_nd_map"],[188,3,1,"","to_region_nd_map_histogram"],[188,3,1,"","to_unit"],[188,2,1,"","unit"],[188,3,1,"","upsample"],[188,3,1,"","write"]],"gammapy.modeling":[[191,1,1,"","Covariance"],[192,1,1,"","Fit"],[193,1,1,"","Parameter"],[194,1,1,"","Parameters"],[195,1,1,"","PriorParameter"],[196,1,1,"","PriorParameters"],[10,0,0,"-","models"],[260,4,1,"","select_nested_models"],[261,4,1,"","stat_profile_ul_scipy"]],"gammapy.modeling.Covariance":[[191,2,1,"","correlation"],[191,2,1,"","data"],[191,3,1,"","from_factor_matrix"],[191,3,1,"","from_stack"],[191,3,1,"","get_subcovariance"],[191,3,1,"","plot_correlation"],[191,2,1,"","scipy_mvn"],[191,3,1,"","set_subcovariance"],[191,2,1,"","shape"]],"gammapy.modeling.Fit":[[192,3,1,"","confidence"],[192,3,1,"","covariance"],[192,3,1,"","optimize"],[192,3,1,"","run"],[192,3,1,"","stat_contour"],[192,3,1,"","stat_profile"],[192,3,1,"","stat_surface"]],"gammapy.modeling.Parameter":[[193,3,1,"","autoscale"],[193,3,1,"","check_limits"],[193,2,1,"","conf_max"],[193,2,1,"","conf_min"],[193,3,1,"","copy"],[193,2,1,"","error"],[193,2,1,"","factor"],[193,2,1,"","factor_max"],[193,2,1,"","factor_min"],[193,2,1,"","frozen"],[193,2,1,"","is_norm"],[193,2,1,"","max"],[193,2,1,"","min"],[193,2,1,"","name"],[193,2,1,"","norm_parameters"],[193,2,1,"","prior"],[193,3,1,"","prior_stat_sum"],[193,2,1,"","quantity"],[193,2,1,"","scale"],[193,2,1,"","scale_method"],[193,2,1,"","scan_max"],[193,2,1,"","scan_min"],[193,2,1,"","scan_n_sigma"],[193,2,1,"","scan_values"],[193,3,1,"","to_dict"],[193,2,1,"","type"],[193,2,1,"","unit"],[193,3,1,"","update_from_dict"],[193,2,1,"","value"]],"gammapy.modeling.Parameters":[[194,3,1,"","autoscale"],[194,3,1,"","check_limits"],[194,3,1,"","copy"],[194,3,1,"","count"],[194,2,1,"","free_parameters"],[194,3,1,"","freeze_all"],[194,3,1,"","from_dict"],[194,3,1,"","from_stack"],[194,3,1,"","index"],[194,2,1,"","max"],[194,2,1,"","min"],[194,2,1,"","names"],[194,2,1,"","norm_parameters"],[194,2,1,"","prior"],[194,3,1,"","prior_stat_sum"],[194,3,1,"","restore_status"],[194,3,1,"","select"],[194,3,1,"","set_parameter_factors"],[194,3,1,"","to_dict"],[194,3,1,"","to_table"],[194,2,1,"","types"],[194,3,1,"","unfreeze_all"],[194,2,1,"","unique_parameters"],[194,2,1,"","value"]],"gammapy.modeling.PriorParameter":[[195,3,1,"","autoscale"],[195,3,1,"","check_limits"],[195,2,1,"","conf_max"],[195,2,1,"","conf_min"],[195,3,1,"","copy"],[195,2,1,"","error"],[195,2,1,"","factor"],[195,2,1,"","factor_max"],[195,2,1,"","factor_min"],[195,2,1,"","frozen"],[195,2,1,"","is_norm"],[195,2,1,"","max"],[195,2,1,"","min"],[195,2,1,"","name"],[195,2,1,"","norm_parameters"],[195,2,1,"","prior"],[195,3,1,"","prior_stat_sum"],[195,2,1,"","quantity"],[195,2,1,"","scale"],[195,2,1,"","scale_method"],[195,2,1,"","scan_max"],[195,2,1,"","scan_min"],[195,2,1,"","scan_n_sigma"],[195,2,1,"","scan_values"],[195,3,1,"","to_dict"],[195,2,1,"","type"],[195,2,1,"","unit"],[195,3,1,"","update_from_dict"],[195,2,1,"","value"]],"gammapy.modeling.PriorParameters":[[196,3,1,"","autoscale"],[196,3,1,"","check_limits"],[196,3,1,"","copy"],[196,3,1,"","count"],[196,2,1,"","free_parameters"],[196,3,1,"","freeze_all"],[196,3,1,"","from_dict"],[196,3,1,"","from_stack"],[196,3,1,"","index"],[196,2,1,"","max"],[196,2,1,"","min"],[196,2,1,"","names"],[196,2,1,"","norm_parameters"],[196,2,1,"","prior"],[196,3,1,"","prior_stat_sum"],[196,3,1,"","restore_status"],[196,3,1,"","select"],[196,3,1,"","set_parameter_factors"],[196,3,1,"","to_dict"],[196,3,1,"","to_table"],[196,2,1,"","types"],[196,3,1,"","unfreeze_all"],[196,2,1,"","unique_parameters"],[196,2,1,"","value"]],"gammapy.modeling.models":[[197,1,1,"","BrokenPowerLawSpectralModel"],[198,1,1,"","CompoundSpectralModel"],[199,1,1,"","ConstantFluxSpatialModel"],[200,1,1,"","ConstantSpatialModel"],[201,1,1,"","ConstantSpectralModel"],[202,1,1,"","ConstantTemporalModel"],[203,1,1,"","DatasetModels"],[204,1,1,"","DiskSpatialModel"],[205,1,1,"","EBLAbsorptionNormSpectralModel"],[206,5,1,"","EBL_DATA_BUILTIN"],[207,1,1,"","ExpCutoffPowerLaw3FGLSpectralModel"],[208,1,1,"","ExpCutoffPowerLawNormSpectralModel"],[209,1,1,"","ExpCutoffPowerLawSpectralModel"],[210,1,1,"","ExpDecayTemporalModel"],[211,1,1,"","FoVBackgroundModel"],[212,1,1,"","GaussianSpatialModel"],[213,1,1,"","GaussianSpectralModel"],[214,1,1,"","GaussianTemporalModel"],[215,1,1,"","GeneralizedGaussianSpatialModel"],[216,1,1,"","GeneralizedGaussianTemporalModel"],[217,1,1,"","LightCurveTemplateTemporalModel"],[218,1,1,"","LinearTemporalModel"],[219,1,1,"","LogParabolaNormSpectralModel"],[220,1,1,"","LogParabolaSpectralModel"],[221,5,1,"","MODEL_REGISTRY"],[222,1,1,"","MeyerCrabSpectralModel"],[223,1,1,"","Model"],[224,1,1,"","ModelBase"],[225,1,1,"","Models"],[226,1,1,"","NaimaSpectralModel"],[227,1,1,"","PiecewiseNormSpatialModel"],[228,1,1,"","PiecewiseNormSpectralModel"],[229,1,1,"","PointSpatialModel"],[230,1,1,"","PowerLaw2SpectralModel"],[231,1,1,"","PowerLawNormSpectralModel"],[232,1,1,"","PowerLawSpectralModel"],[233,1,1,"","PowerLawTemporalModel"],[234,5,1,"","SPATIAL_MODEL_REGISTRY"],[235,5,1,"","SPECTRAL_MODEL_REGISTRY"],[236,1,1,"","ScaleSpectralModel"],[237,1,1,"","Shell2SpatialModel"],[238,1,1,"","ShellSpatialModel"],[239,1,1,"","SineTemporalModel"],[240,1,1,"","SkyModel"],[241,1,1,"","SmoothBrokenPowerLawSpectralModel"],[242,1,1,"","SpatialModel"],[243,1,1,"","SpectralModel"],[244,1,1,"","SuperExpCutoffPowerLaw3FGLSpectralModel"],[245,1,1,"","SuperExpCutoffPowerLaw4FGLDR3SpectralModel"],[246,1,1,"","SuperExpCutoffPowerLaw4FGLSpectralModel"],[247,5,1,"","TEMPORAL_MODEL_REGISTRY"],[248,1,1,"","TemplateNDSpatialModel"],[249,1,1,"","TemplateNDSpectralModel"],[250,1,1,"","TemplateNPredModel"],[251,1,1,"","TemplatePhaseCurveTemporalModel"],[252,1,1,"","TemplateSpatialModel"],[253,1,1,"","TemplateSpectralModel"],[254,1,1,"","TemporalModel"],[255,4,1,"","create_cosmic_ray_spectral_model"],[256,4,1,"","create_crab_spectral_model"],[257,4,1,"","create_fermi_isotropic_diffuse_model"],[258,4,1,"","integrate_spectrum"],[259,4,1,"","scale_plot_flux"]],"gammapy.modeling.models.BrokenPowerLawSpectralModel":[[197,3,1,"","__call__"],[197,2,1,"","amplitude"],[197,3,1,"","copy"],[197,2,1,"","covariance"],[197,2,1,"","default_parameters"],[197,2,1,"","ebreak"],[197,3,1,"","energy_flux"],[197,3,1,"","energy_flux_error"],[197,3,1,"","evaluate"],[197,3,1,"","evaluate_error"],[197,3,1,"","freeze"],[197,3,1,"","from_dict"],[197,3,1,"","from_parameters"],[197,2,1,"","frozen"],[197,2,1,"","index1"],[197,2,1,"","index2"],[197,3,1,"","integral"],[197,3,1,"","integral_error"],[197,3,1,"","inverse"],[197,3,1,"","inverse_all"],[197,2,1,"","is_norm_spectral_model"],[197,2,1,"","parameters"],[197,2,1,"","pivot_energy"],[197,3,1,"","plot"],[197,3,1,"","plot_error"],[197,3,1,"","reassign"],[197,3,1,"","reference_fluxes"],[197,3,1,"","spectral_index"],[197,3,1,"","spectral_index_error"],[197,2,1,"","tag"],[197,3,1,"","to_dict"],[197,2,1,"","type"],[197,3,1,"","unfreeze"]],"gammapy.modeling.models.CompoundSpectralModel":[[198,3,1,"","__call__"],[198,3,1,"","copy"],[198,2,1,"","covariance"],[198,2,1,"","default_parameters"],[198,3,1,"","energy_flux"],[198,3,1,"","energy_flux_error"],[198,3,1,"","evaluate"],[198,3,1,"","evaluate_error"],[198,3,1,"","freeze"],[198,3,1,"","from_dict"],[198,3,1,"","from_parameters"],[198,2,1,"","frozen"],[198,3,1,"","integral"],[198,3,1,"","integral_error"],[198,3,1,"","inverse"],[198,3,1,"","inverse_all"],[198,2,1,"","is_norm_spectral_model"],[198,2,1,"","parameters"],[198,2,1,"","pivot_energy"],[198,3,1,"","plot"],[198,3,1,"","plot_error"],[198,3,1,"","reassign"],[198,3,1,"","reference_fluxes"],[198,3,1,"","spectral_index"],[198,3,1,"","spectral_index_error"],[198,2,1,"","tag"],[198,3,1,"","to_dict"],[198,2,1,"","type"],[198,3,1,"","unfreeze"]],"gammapy.modeling.models.ConstantFluxSpatialModel":[[199,3,1,"","__call__"],[199,3,1,"","copy"],[199,2,1,"","covariance"],[199,2,1,"","default_parameters"],[199,3,1,"","evaluate"],[199,3,1,"","evaluate_geom"],[199,2,1,"","evaluation_bin_size_min"],[199,2,1,"","evaluation_radius"],[199,2,1,"","evaluation_region"],[199,2,1,"","frame"],[199,3,1,"","freeze"],[199,3,1,"","from_dict"],[199,3,1,"","from_parameters"],[199,3,1,"","from_position"],[199,2,1,"","frozen"],[199,3,1,"","integrate_geom"],[199,2,1,"","is_energy_dependent"],[199,2,1,"","parameters"],[199,2,1,"","phi_0"],[199,3,1,"","plot"],[199,3,1,"","plot_error"],[199,3,1,"","plot_grid"],[199,3,1,"","plot_interactive"],[199,3,1,"","plot_position_error"],[199,2,1,"","position"],[199,2,1,"","position_error"],[199,2,1,"","position_lonlat"],[199,3,1,"","reassign"],[199,2,1,"","tag"],[199,3,1,"","to_dict"],[199,3,1,"","to_region"],[199,2,1,"","type"],[199,3,1,"","unfreeze"]],"gammapy.modeling.models.ConstantSpatialModel":[[200,3,1,"","__call__"],[200,3,1,"","copy"],[200,2,1,"","covariance"],[200,2,1,"","default_parameters"],[200,3,1,"","evaluate"],[200,3,1,"","evaluate_geom"],[200,2,1,"","evaluation_bin_size_min"],[200,2,1,"","evaluation_radius"],[200,2,1,"","evaluation_region"],[200,2,1,"","frame"],[200,3,1,"","freeze"],[200,3,1,"","from_dict"],[200,3,1,"","from_parameters"],[200,3,1,"","from_position"],[200,2,1,"","frozen"],[200,3,1,"","integrate_geom"],[200,2,1,"","is_energy_dependent"],[200,2,1,"","parameters"],[200,2,1,"","phi_0"],[200,3,1,"","plot"],[200,3,1,"","plot_error"],[200,3,1,"","plot_grid"],[200,3,1,"","plot_interactive"],[200,3,1,"","plot_position_error"],[200,2,1,"","position"],[200,2,1,"","position_error"],[200,2,1,"","position_lonlat"],[200,3,1,"","reassign"],[200,2,1,"","tag"],[200,3,1,"","to_dict"],[200,3,1,"","to_region"],[200,2,1,"","type"],[200,3,1,"","unfreeze"],[200,2,1,"","value"]],"gammapy.modeling.models.ConstantSpectralModel":[[201,3,1,"","__call__"],[201,2,1,"","const"],[201,3,1,"","copy"],[201,2,1,"","covariance"],[201,2,1,"","default_parameters"],[201,3,1,"","energy_flux"],[201,3,1,"","energy_flux_error"],[201,3,1,"","evaluate"],[201,3,1,"","evaluate_error"],[201,3,1,"","freeze"],[201,3,1,"","from_dict"],[201,3,1,"","from_parameters"],[201,2,1,"","frozen"],[201,3,1,"","integral"],[201,3,1,"","integral_error"],[201,3,1,"","inverse"],[201,3,1,"","inverse_all"],[201,2,1,"","is_norm_spectral_model"],[201,2,1,"","parameters"],[201,2,1,"","pivot_energy"],[201,3,1,"","plot"],[201,3,1,"","plot_error"],[201,3,1,"","reassign"],[201,3,1,"","reference_fluxes"],[201,3,1,"","spectral_index"],[201,3,1,"","spectral_index_error"],[201,2,1,"","tag"],[201,3,1,"","to_dict"],[201,2,1,"","type"],[201,3,1,"","unfreeze"]],"gammapy.modeling.models.ConstantTemporalModel":[[202,3,1,"","__call__"],[202,3,1,"","copy"],[202,2,1,"","covariance"],[202,2,1,"","default_parameters"],[202,3,1,"","evaluate"],[202,3,1,"","freeze"],[202,3,1,"","from_dict"],[202,3,1,"","from_parameters"],[202,2,1,"","frozen"],[202,3,1,"","integral"],[202,2,1,"","is_energy_dependent"],[202,2,1,"","parameters"],[202,3,1,"","plot"],[202,3,1,"","reassign"],[202,2,1,"","reference_time"],[202,3,1,"","sample_time"],[202,2,1,"","tag"],[202,3,1,"","time_sum"],[202,3,1,"","to_dict"],[202,2,1,"","type"],[202,3,1,"","unfreeze"]],"gammapy.modeling.models.DatasetModels":[[203,3,1,"","copy"],[203,3,1,"","count"],[203,2,1,"","covariance"],[203,3,1,"","freeze"],[203,3,1,"","from_dict"],[203,3,1,"","from_yaml"],[203,2,1,"","frozen"],[203,3,1,"","index"],[203,2,1,"","names"],[203,2,1,"","parameters"],[203,2,1,"","parameters_unique_names"],[203,3,1,"","plot_positions"],[203,3,1,"","plot_regions"],[203,2,1,"","positions"],[203,3,1,"","read"],[203,3,1,"","read_covariance"],[203,3,1,"","reassign"],[203,3,1,"","restore_status"],[203,3,1,"","select"],[203,3,1,"","select_from_geom"],[203,3,1,"","select_mask"],[203,3,1,"","select_region"],[203,3,1,"","selection_mask"],[203,3,1,"","set_parameters_bounds"],[203,3,1,"","to_dict"],[203,3,1,"","to_parameters_table"],[203,3,1,"","to_regions"],[203,3,1,"","to_template_sky_model"],[203,3,1,"","to_template_spectral_model"],[203,3,1,"","to_yaml"],[203,3,1,"","unfreeze"],[203,3,1,"","update_link_label"],[203,3,1,"","update_parameters_from_table"],[203,2,1,"","wcs_geom"],[203,3,1,"","write"],[203,3,1,"","write_covariance"]],"gammapy.modeling.models.DiskSpatialModel":[[204,3,1,"","__call__"],[204,3,1,"","copy"],[204,2,1,"","covariance"],[204,2,1,"","default_parameters"],[204,2,1,"","e"],[204,2,1,"","edge_width"],[204,3,1,"","evaluate"],[204,3,1,"","evaluate_geom"],[204,2,1,"","evaluation_bin_size_min"],[204,2,1,"","evaluation_radius"],[204,2,1,"","evaluation_region"],[204,3,1,"","freeze"],[204,3,1,"","from_dict"],[204,3,1,"","from_parameters"],[204,3,1,"","from_position"],[204,3,1,"","from_region"],[204,2,1,"","frozen"],[204,3,1,"","integrate_geom"],[204,2,1,"","is_energy_dependent"],[204,2,1,"","lat_0"],[204,2,1,"","lon_0"],[204,2,1,"","parameters"],[204,2,1,"","phi"],[204,2,1,"","phi_0"],[204,3,1,"","plot"],[204,3,1,"","plot_error"],[204,3,1,"","plot_grid"],[204,3,1,"","plot_interactive"],[204,3,1,"","plot_position_error"],[204,2,1,"","position"],[204,2,1,"","position_error"],[204,2,1,"","position_lonlat"],[204,2,1,"","r_0"],[204,3,1,"","reassign"],[204,2,1,"","tag"],[204,3,1,"","to_dict"],[204,3,1,"","to_region"],[204,2,1,"","type"],[204,3,1,"","unfreeze"]],"gammapy.modeling.models.EBLAbsorptionNormSpectralModel":[[205,3,1,"","__call__"],[205,2,1,"","alpha_norm"],[205,3,1,"","copy"],[205,2,1,"","covariance"],[205,2,1,"","default_parameters"],[205,3,1,"","energy_flux"],[205,3,1,"","energy_flux_error"],[205,3,1,"","evaluate"],[205,3,1,"","evaluate_error"],[205,3,1,"","freeze"],[205,3,1,"","from_dict"],[205,3,1,"","from_parameters"],[205,2,1,"","frozen"],[205,3,1,"","integral"],[205,3,1,"","integral_error"],[205,3,1,"","inverse"],[205,3,1,"","inverse_all"],[205,2,1,"","is_norm_spectral_model"],[205,2,1,"","parameters"],[205,2,1,"","pivot_energy"],[205,3,1,"","plot"],[205,3,1,"","plot_error"],[205,3,1,"","read"],[205,3,1,"","read_builtin"],[205,3,1,"","reassign"],[205,2,1,"","redshift"],[205,3,1,"","reference_fluxes"],[205,3,1,"","spectral_index"],[205,3,1,"","spectral_index_error"],[205,2,1,"","tag"],[205,3,1,"","to_dict"],[205,2,1,"","type"],[205,3,1,"","unfreeze"]],"gammapy.modeling.models.ExpCutoffPowerLaw3FGLSpectralModel":[[207,3,1,"","__call__"],[207,2,1,"","amplitude"],[207,3,1,"","copy"],[207,2,1,"","covariance"],[207,2,1,"","default_parameters"],[207,2,1,"","ecut"],[207,3,1,"","energy_flux"],[207,3,1,"","energy_flux_error"],[207,3,1,"","evaluate"],[207,3,1,"","evaluate_error"],[207,3,1,"","freeze"],[207,3,1,"","from_dict"],[207,3,1,"","from_parameters"],[207,2,1,"","frozen"],[207,2,1,"","index"],[207,3,1,"","integral"],[207,3,1,"","integral_error"],[207,3,1,"","inverse"],[207,3,1,"","inverse_all"],[207,2,1,"","is_norm_spectral_model"],[207,2,1,"","parameters"],[207,2,1,"","pivot_energy"],[207,3,1,"","plot"],[207,3,1,"","plot_error"],[207,3,1,"","reassign"],[207,2,1,"","reference"],[207,3,1,"","reference_fluxes"],[207,3,1,"","spectral_index"],[207,3,1,"","spectral_index_error"],[207,2,1,"","tag"],[207,3,1,"","to_dict"],[207,2,1,"","type"],[207,3,1,"","unfreeze"]],"gammapy.modeling.models.ExpCutoffPowerLawNormSpectralModel":[[208,3,1,"","__call__"],[208,2,1,"","alpha"],[208,3,1,"","copy"],[208,2,1,"","covariance"],[208,2,1,"","default_parameters"],[208,3,1,"","energy_flux"],[208,3,1,"","energy_flux_error"],[208,3,1,"","evaluate"],[208,3,1,"","evaluate_error"],[208,3,1,"","freeze"],[208,3,1,"","from_dict"],[208,3,1,"","from_parameters"],[208,2,1,"","frozen"],[208,2,1,"","index"],[208,3,1,"","integral"],[208,3,1,"","integral_error"],[208,3,1,"","inverse"],[208,3,1,"","inverse_all"],[208,2,1,"","is_norm_spectral_model"],[208,2,1,"","lambda_"],[208,2,1,"","norm"],[208,2,1,"","parameters"],[208,2,1,"","pivot_energy"],[208,3,1,"","plot"],[208,3,1,"","plot_error"],[208,3,1,"","reassign"],[208,2,1,"","reference"],[208,3,1,"","reference_fluxes"],[208,3,1,"","spectral_index"],[208,3,1,"","spectral_index_error"],[208,2,1,"","tag"],[208,3,1,"","to_dict"],[208,2,1,"","type"],[208,3,1,"","unfreeze"]],"gammapy.modeling.models.ExpCutoffPowerLawSpectralModel":[[209,3,1,"","__call__"],[209,2,1,"","alpha"],[209,2,1,"","amplitude"],[209,3,1,"","copy"],[209,2,1,"","covariance"],[209,2,1,"","default_parameters"],[209,2,1,"","e_peak"],[209,3,1,"","energy_flux"],[209,3,1,"","energy_flux_error"],[209,3,1,"","evaluate"],[209,3,1,"","evaluate_error"],[209,3,1,"","freeze"],[209,3,1,"","from_dict"],[209,3,1,"","from_parameters"],[209,2,1,"","frozen"],[209,2,1,"","index"],[209,3,1,"","integral"],[209,3,1,"","integral_error"],[209,3,1,"","inverse"],[209,3,1,"","inverse_all"],[209,2,1,"","is_norm_spectral_model"],[209,2,1,"","lambda_"],[209,2,1,"","parameters"],[209,2,1,"","pivot_energy"],[209,3,1,"","plot"],[209,3,1,"","plot_error"],[209,3,1,"","reassign"],[209,2,1,"","reference"],[209,3,1,"","reference_fluxes"],[209,3,1,"","spectral_index"],[209,3,1,"","spectral_index_error"],[209,2,1,"","tag"],[209,3,1,"","to_dict"],[209,2,1,"","type"],[209,3,1,"","unfreeze"]],"gammapy.modeling.models.ExpDecayTemporalModel":[[210,3,1,"","__call__"],[210,3,1,"","copy"],[210,2,1,"","covariance"],[210,2,1,"","default_parameters"],[210,3,1,"","evaluate"],[210,3,1,"","freeze"],[210,3,1,"","from_dict"],[210,3,1,"","from_parameters"],[210,2,1,"","frozen"],[210,3,1,"","integral"],[210,2,1,"","is_energy_dependent"],[210,2,1,"","parameters"],[210,3,1,"","plot"],[210,3,1,"","reassign"],[210,2,1,"","reference_time"],[210,3,1,"","sample_time"],[210,2,1,"","t0"],[210,2,1,"","t_ref"],[210,2,1,"","tag"],[210,3,1,"","time_sum"],[210,3,1,"","to_dict"],[210,2,1,"","type"],[210,3,1,"","unfreeze"]],"gammapy.modeling.models.FoVBackgroundModel":[[211,3,1,"","contributes"],[211,3,1,"","copy"],[211,2,1,"","covariance"],[211,2,1,"","default_parameters"],[211,3,1,"","evaluate"],[211,3,1,"","evaluate_geom"],[211,3,1,"","freeze"],[211,3,1,"","from_dict"],[211,3,1,"","from_parameters"],[211,2,1,"","frozen"],[211,2,1,"","name"],[211,2,1,"","parameters"],[211,3,1,"","reassign"],[211,3,1,"","reset_to_default"],[211,2,1,"","spatial_model"],[211,2,1,"","spectral_model"],[211,2,1,"","tag"],[211,3,1,"","to_dict"],[211,2,1,"","type"],[211,3,1,"","unfreeze"]],"gammapy.modeling.models.GaussianSpatialModel":[[212,3,1,"","__call__"],[212,3,1,"","copy"],[212,2,1,"","covariance"],[212,2,1,"","default_parameters"],[212,2,1,"","e"],[212,3,1,"","evaluate"],[212,3,1,"","evaluate_geom"],[212,2,1,"","evaluation_bin_size_min"],[212,2,1,"","evaluation_radius"],[212,2,1,"","evaluation_region"],[212,3,1,"","freeze"],[212,3,1,"","from_dict"],[212,3,1,"","from_parameters"],[212,3,1,"","from_position"],[212,2,1,"","frozen"],[212,3,1,"","integrate_geom"],[212,2,1,"","is_energy_dependent"],[212,2,1,"","lat_0"],[212,2,1,"","lon_0"],[212,2,1,"","parameters"],[212,2,1,"","phi"],[212,2,1,"","phi_0"],[212,3,1,"","plot"],[212,3,1,"","plot_error"],[212,3,1,"","plot_grid"],[212,3,1,"","plot_interactive"],[212,3,1,"","plot_position_error"],[212,2,1,"","position"],[212,2,1,"","position_error"],[212,2,1,"","position_lonlat"],[212,3,1,"","reassign"],[212,2,1,"","sigma"],[212,2,1,"","tag"],[212,3,1,"","to_dict"],[212,3,1,"","to_region"],[212,2,1,"","type"],[212,3,1,"","unfreeze"]],"gammapy.modeling.models.GaussianSpectralModel":[[213,3,1,"","__call__"],[213,2,1,"","amplitude"],[213,3,1,"","copy"],[213,2,1,"","covariance"],[213,2,1,"","default_parameters"],[213,3,1,"","energy_flux"],[213,3,1,"","energy_flux_error"],[213,3,1,"","evaluate"],[213,3,1,"","evaluate_error"],[213,3,1,"","freeze"],[213,3,1,"","from_dict"],[213,3,1,"","from_parameters"],[213,2,1,"","frozen"],[213,3,1,"","integral"],[213,3,1,"","integral_error"],[213,3,1,"","inverse"],[213,3,1,"","inverse_all"],[213,2,1,"","is_norm_spectral_model"],[213,2,1,"","mean"],[213,2,1,"","parameters"],[213,2,1,"","pivot_energy"],[213,3,1,"","plot"],[213,3,1,"","plot_error"],[213,3,1,"","reassign"],[213,3,1,"","reference_fluxes"],[213,2,1,"","sigma"],[213,3,1,"","spectral_index"],[213,3,1,"","spectral_index_error"],[213,2,1,"","tag"],[213,3,1,"","to_dict"],[213,2,1,"","type"],[213,3,1,"","unfreeze"]],"gammapy.modeling.models.GaussianTemporalModel":[[214,3,1,"","__call__"],[214,3,1,"","copy"],[214,2,1,"","covariance"],[214,2,1,"","default_parameters"],[214,3,1,"","evaluate"],[214,3,1,"","freeze"],[214,3,1,"","from_dict"],[214,3,1,"","from_parameters"],[214,2,1,"","frozen"],[214,3,1,"","integral"],[214,2,1,"","is_energy_dependent"],[214,2,1,"","parameters"],[214,3,1,"","plot"],[214,3,1,"","reassign"],[214,2,1,"","reference_time"],[214,3,1,"","sample_time"],[214,2,1,"","sigma"],[214,2,1,"","t_ref"],[214,2,1,"","tag"],[214,3,1,"","time_sum"],[214,3,1,"","to_dict"],[214,2,1,"","type"],[214,3,1,"","unfreeze"]],"gammapy.modeling.models.GeneralizedGaussianSpatialModel":[[215,3,1,"","__call__"],[215,3,1,"","copy"],[215,2,1,"","covariance"],[215,2,1,"","default_parameters"],[215,2,1,"","e"],[215,2,1,"","eta"],[215,3,1,"","evaluate"],[215,3,1,"","evaluate_geom"],[215,2,1,"","evaluation_bin_size_min"],[215,2,1,"","evaluation_radius"],[215,2,1,"","evaluation_region"],[215,3,1,"","freeze"],[215,3,1,"","from_dict"],[215,3,1,"","from_parameters"],[215,3,1,"","from_position"],[215,2,1,"","frozen"],[215,3,1,"","integrate_geom"],[215,2,1,"","is_energy_dependent"],[215,2,1,"","lat_0"],[215,2,1,"","lon_0"],[215,2,1,"","parameters"],[215,2,1,"","phi"],[215,2,1,"","phi_0"],[215,3,1,"","plot"],[215,3,1,"","plot_error"],[215,3,1,"","plot_grid"],[215,3,1,"","plot_interactive"],[215,3,1,"","plot_position_error"],[215,2,1,"","position"],[215,2,1,"","position_error"],[215,2,1,"","position_lonlat"],[215,2,1,"","r_0"],[215,3,1,"","reassign"],[215,2,1,"","tag"],[215,3,1,"","to_dict"],[215,3,1,"","to_region"],[215,2,1,"","type"],[215,3,1,"","unfreeze"]],"gammapy.modeling.models.GeneralizedGaussianTemporalModel":[[216,3,1,"","__call__"],[216,3,1,"","copy"],[216,2,1,"","covariance"],[216,2,1,"","default_parameters"],[216,2,1,"","eta"],[216,3,1,"","evaluate"],[216,3,1,"","freeze"],[216,3,1,"","from_dict"],[216,3,1,"","from_parameters"],[216,2,1,"","frozen"],[216,3,1,"","integral"],[216,2,1,"","is_energy_dependent"],[216,2,1,"","parameters"],[216,3,1,"","plot"],[216,3,1,"","reassign"],[216,2,1,"","reference_time"],[216,3,1,"","sample_time"],[216,2,1,"","t_decay"],[216,2,1,"","t_ref"],[216,2,1,"","t_rise"],[216,2,1,"","tag"],[216,3,1,"","time_sum"],[216,3,1,"","to_dict"],[216,2,1,"","type"],[216,3,1,"","unfreeze"]],"gammapy.modeling.models.LightCurveTemplateTemporalModel":[[217,3,1,"","__call__"],[217,3,1,"","copy"],[217,2,1,"","covariance"],[217,2,1,"","default_parameters"],[217,3,1,"","evaluate"],[217,3,1,"","freeze"],[217,3,1,"","from_dict"],[217,3,1,"","from_parameters"],[217,3,1,"","from_table"],[217,2,1,"","frozen"],[217,3,1,"","integral"],[217,2,1,"","is_energy_dependent"],[217,2,1,"","parameters"],[217,3,1,"","plot"],[217,3,1,"","read"],[217,3,1,"","reassign"],[217,2,1,"","reference_time"],[217,3,1,"","sample_time"],[217,2,1,"","t_ref"],[217,2,1,"","tag"],[217,3,1,"","time_sum"],[217,3,1,"","to_dict"],[217,3,1,"","to_table"],[217,2,1,"","type"],[217,3,1,"","unfreeze"],[217,3,1,"","write"]],"gammapy.modeling.models.LinearTemporalModel":[[218,3,1,"","__call__"],[218,2,1,"","alpha"],[218,2,1,"","beta"],[218,3,1,"","copy"],[218,2,1,"","covariance"],[218,2,1,"","default_parameters"],[218,3,1,"","evaluate"],[218,3,1,"","freeze"],[218,3,1,"","from_dict"],[218,3,1,"","from_parameters"],[218,2,1,"","frozen"],[218,3,1,"","integral"],[218,2,1,"","is_energy_dependent"],[218,2,1,"","parameters"],[218,3,1,"","plot"],[218,3,1,"","reassign"],[218,2,1,"","reference_time"],[218,3,1,"","sample_time"],[218,2,1,"","t_ref"],[218,2,1,"","tag"],[218,3,1,"","time_sum"],[218,3,1,"","to_dict"],[218,2,1,"","type"],[218,3,1,"","unfreeze"]],"gammapy.modeling.models.LogParabolaNormSpectralModel":[[219,3,1,"","__call__"],[219,2,1,"","alpha"],[219,2,1,"","beta"],[219,3,1,"","copy"],[219,2,1,"","covariance"],[219,2,1,"","default_parameters"],[219,3,1,"","energy_flux"],[219,3,1,"","energy_flux_error"],[219,3,1,"","evaluate"],[219,3,1,"","evaluate_error"],[219,3,1,"","freeze"],[219,3,1,"","from_dict"],[219,3,1,"","from_log10"],[219,3,1,"","from_parameters"],[219,2,1,"","frozen"],[219,3,1,"","integral"],[219,3,1,"","integral_error"],[219,3,1,"","inverse"],[219,3,1,"","inverse_all"],[219,2,1,"","is_norm_spectral_model"],[219,2,1,"","norm"],[219,2,1,"","parameters"],[219,2,1,"","pivot_energy"],[219,3,1,"","plot"],[219,3,1,"","plot_error"],[219,3,1,"","reassign"],[219,2,1,"","reference"],[219,3,1,"","reference_fluxes"],[219,3,1,"","spectral_index"],[219,3,1,"","spectral_index_error"],[219,2,1,"","tag"],[219,3,1,"","to_dict"],[219,2,1,"","type"],[219,3,1,"","unfreeze"]],"gammapy.modeling.models.LogParabolaSpectralModel":[[220,3,1,"","__call__"],[220,2,1,"","alpha"],[220,2,1,"","amplitude"],[220,2,1,"","beta"],[220,3,1,"","copy"],[220,2,1,"","covariance"],[220,2,1,"","default_parameters"],[220,2,1,"","e_peak"],[220,3,1,"","energy_flux"],[220,3,1,"","energy_flux_error"],[220,3,1,"","evaluate"],[220,3,1,"","evaluate_error"],[220,3,1,"","freeze"],[220,3,1,"","from_dict"],[220,3,1,"","from_log10"],[220,3,1,"","from_parameters"],[220,2,1,"","frozen"],[220,3,1,"","integral"],[220,3,1,"","integral_error"],[220,3,1,"","inverse"],[220,3,1,"","inverse_all"],[220,2,1,"","is_norm_spectral_model"],[220,2,1,"","parameters"],[220,2,1,"","pivot_energy"],[220,3,1,"","plot"],[220,3,1,"","plot_error"],[220,3,1,"","reassign"],[220,2,1,"","reference"],[220,3,1,"","reference_fluxes"],[220,3,1,"","spectral_index"],[220,3,1,"","spectral_index_error"],[220,2,1,"","tag"],[220,3,1,"","to_dict"],[220,2,1,"","type"],[220,3,1,"","unfreeze"]],"gammapy.modeling.models.MeyerCrabSpectralModel":[[222,3,1,"","__call__"],[222,2,1,"","coefficients"],[222,3,1,"","copy"],[222,2,1,"","covariance"],[222,2,1,"","default_parameters"],[222,3,1,"","energy_flux"],[222,3,1,"","energy_flux_error"],[222,3,1,"","evaluate"],[222,3,1,"","evaluate_error"],[222,3,1,"","freeze"],[222,3,1,"","from_dict"],[222,3,1,"","from_parameters"],[222,2,1,"","frozen"],[222,3,1,"","integral"],[222,3,1,"","integral_error"],[222,3,1,"","inverse"],[222,3,1,"","inverse_all"],[222,2,1,"","is_norm_spectral_model"],[222,2,1,"","norm"],[222,2,1,"","parameters"],[222,2,1,"","pivot_energy"],[222,3,1,"","plot"],[222,3,1,"","plot_error"],[222,3,1,"","reassign"],[222,3,1,"","reference_fluxes"],[222,3,1,"","spectral_index"],[222,3,1,"","spectral_index_error"],[222,3,1,"","to_dict"],[222,2,1,"","type"],[222,3,1,"","unfreeze"]],"gammapy.modeling.models.Model":[[223,3,1,"","create"],[223,3,1,"","from_dict"]],"gammapy.modeling.models.ModelBase":[[224,3,1,"","copy"],[224,2,1,"","covariance"],[224,3,1,"","freeze"],[224,3,1,"","from_dict"],[224,3,1,"","from_parameters"],[224,2,1,"","frozen"],[224,2,1,"","parameters"],[224,3,1,"","reassign"],[224,3,1,"","to_dict"],[224,2,1,"","type"],[224,3,1,"","unfreeze"]],"gammapy.modeling.models.Models":[[225,3,1,"","append"],[225,3,1,"","clear"],[225,3,1,"","copy"],[225,3,1,"","count"],[225,2,1,"","covariance"],[225,3,1,"","extend"],[225,3,1,"","freeze"],[225,3,1,"","from_dict"],[225,3,1,"","from_yaml"],[225,2,1,"","frozen"],[225,3,1,"","index"],[225,3,1,"","insert"],[225,2,1,"","names"],[225,2,1,"","parameters"],[225,2,1,"","parameters_unique_names"],[225,3,1,"","plot_positions"],[225,3,1,"","plot_regions"],[225,3,1,"","pop"],[225,2,1,"","positions"],[225,3,1,"","read"],[225,3,1,"","read_covariance"],[225,3,1,"","reassign"],[225,3,1,"","remove"],[225,3,1,"","restore_status"],[225,3,1,"","reverse"],[225,3,1,"","select"],[225,3,1,"","select_from_geom"],[225,3,1,"","select_mask"],[225,3,1,"","select_region"],[225,3,1,"","selection_mask"],[225,3,1,"","set_parameters_bounds"],[225,3,1,"","set_prior"],[225,3,1,"","to_dict"],[225,3,1,"","to_parameters_table"],[225,3,1,"","to_regions"],[225,3,1,"","to_template_sky_model"],[225,3,1,"","to_template_spectral_model"],[225,3,1,"","to_yaml"],[225,3,1,"","unfreeze"],[225,3,1,"","update_link_label"],[225,3,1,"","update_parameters_from_table"],[225,2,1,"","wcs_geom"],[225,3,1,"","write"],[225,3,1,"","write_covariance"]],"gammapy.modeling.models.NaimaSpectralModel":[[226,3,1,"","__call__"],[226,3,1,"","copy"],[226,2,1,"","covariance"],[226,2,1,"","default_parameters"],[226,3,1,"","energy_flux"],[226,3,1,"","energy_flux_error"],[226,3,1,"","evaluate"],[226,3,1,"","evaluate_error"],[226,3,1,"","freeze"],[226,3,1,"","from_dict"],[226,3,1,"","from_parameters"],[226,2,1,"","frozen"],[226,2,1,"","include_ssc"],[226,3,1,"","integral"],[226,3,1,"","integral_error"],[226,3,1,"","inverse"],[226,3,1,"","inverse_all"],[226,2,1,"","is_norm_spectral_model"],[226,2,1,"","parameters"],[226,2,1,"","particle_distribution"],[226,2,1,"","pivot_energy"],[226,3,1,"","plot"],[226,3,1,"","plot_error"],[226,3,1,"","reassign"],[226,3,1,"","reference_fluxes"],[226,3,1,"","spectral_index"],[226,3,1,"","spectral_index_error"],[226,2,1,"","ssc_model"],[226,2,1,"","tag"],[226,3,1,"","to_dict"],[226,2,1,"","type"],[226,3,1,"","unfreeze"]],"gammapy.modeling.models.PiecewiseNormSpatialModel":[[227,3,1,"","__call__"],[227,2,1,"","coords"],[227,3,1,"","copy"],[227,2,1,"","covariance"],[227,2,1,"","default_parameters"],[227,3,1,"","evaluate"],[227,3,1,"","evaluate_geom"],[227,2,1,"","evaluation_bin_size_min"],[227,2,1,"","evaluation_radius"],[227,2,1,"","evaluation_region"],[227,3,1,"","freeze"],[227,3,1,"","from_dict"],[227,3,1,"","from_parameters"],[227,3,1,"","from_position"],[227,2,1,"","frozen"],[227,3,1,"","integrate_geom"],[227,2,1,"","is_energy_dependent"],[227,2,1,"","norms"],[227,2,1,"","parameters"],[227,2,1,"","phi_0"],[227,3,1,"","plot"],[227,3,1,"","plot_error"],[227,3,1,"","plot_grid"],[227,3,1,"","plot_interactive"],[227,3,1,"","plot_position_error"],[227,2,1,"","position"],[227,2,1,"","position_error"],[227,2,1,"","position_lonlat"],[227,3,1,"","reassign"],[227,2,1,"","tag"],[227,3,1,"","to_dict"],[227,2,1,"","type"],[227,3,1,"","unfreeze"]],"gammapy.modeling.models.PiecewiseNormSpectralModel":[[228,3,1,"","__call__"],[228,3,1,"","copy"],[228,2,1,"","covariance"],[228,2,1,"","default_parameters"],[228,2,1,"","energy"],[228,3,1,"","energy_flux"],[228,3,1,"","energy_flux_error"],[228,3,1,"","evaluate"],[228,3,1,"","evaluate_error"],[228,3,1,"","freeze"],[228,3,1,"","from_dict"],[228,3,1,"","from_parameters"],[228,2,1,"","frozen"],[228,3,1,"","integral"],[228,3,1,"","integral_error"],[228,3,1,"","inverse"],[228,3,1,"","inverse_all"],[228,2,1,"","is_norm_spectral_model"],[228,2,1,"","norms"],[228,2,1,"","parameters"],[228,2,1,"","pivot_energy"],[228,3,1,"","plot"],[228,3,1,"","plot_error"],[228,3,1,"","reassign"],[228,3,1,"","reference_fluxes"],[228,3,1,"","spectral_index"],[228,3,1,"","spectral_index_error"],[228,2,1,"","tag"],[228,3,1,"","to_dict"],[228,2,1,"","type"],[228,3,1,"","unfreeze"]],"gammapy.modeling.models.PointSpatialModel":[[229,3,1,"","__call__"],[229,3,1,"","copy"],[229,2,1,"","covariance"],[229,2,1,"","default_parameters"],[229,3,1,"","evaluate_geom"],[229,2,1,"","evaluation_bin_size_min"],[229,2,1,"","evaluation_radius"],[229,2,1,"","evaluation_region"],[229,3,1,"","freeze"],[229,3,1,"","from_dict"],[229,3,1,"","from_parameters"],[229,3,1,"","from_position"],[229,2,1,"","frozen"],[229,3,1,"","integrate_geom"],[229,2,1,"","is_energy_dependent"],[229,2,1,"","lat_0"],[229,2,1,"","lon_0"],[229,2,1,"","parameters"],[229,2,1,"","phi_0"],[229,3,1,"","plot"],[229,3,1,"","plot_error"],[229,3,1,"","plot_grid"],[229,3,1,"","plot_interactive"],[229,3,1,"","plot_position_error"],[229,2,1,"","position"],[229,2,1,"","position_error"],[229,2,1,"","position_lonlat"],[229,3,1,"","reassign"],[229,2,1,"","tag"],[229,3,1,"","to_dict"],[229,3,1,"","to_region"],[229,2,1,"","type"],[229,3,1,"","unfreeze"]],"gammapy.modeling.models.PowerLaw2SpectralModel":[[230,3,1,"","__call__"],[230,2,1,"","amplitude"],[230,3,1,"","copy"],[230,2,1,"","covariance"],[230,2,1,"","default_parameters"],[230,2,1,"","emax"],[230,2,1,"","emin"],[230,3,1,"","energy_flux"],[230,3,1,"","energy_flux_error"],[230,3,1,"","evaluate"],[230,3,1,"","evaluate_error"],[230,3,1,"","evaluate_integral"],[230,3,1,"","freeze"],[230,3,1,"","from_dict"],[230,3,1,"","from_parameters"],[230,2,1,"","frozen"],[230,2,1,"","index"],[230,3,1,"","integral"],[230,3,1,"","integral_error"],[230,3,1,"","inverse"],[230,3,1,"","inverse_all"],[230,2,1,"","is_norm_spectral_model"],[230,2,1,"","parameters"],[230,2,1,"","pivot_energy"],[230,3,1,"","plot"],[230,3,1,"","plot_error"],[230,3,1,"","reassign"],[230,3,1,"","reference_fluxes"],[230,3,1,"","spectral_index"],[230,3,1,"","spectral_index_error"],[230,2,1,"","tag"],[230,3,1,"","to_dict"],[230,2,1,"","type"],[230,3,1,"","unfreeze"]],"gammapy.modeling.models.PowerLawNormSpectralModel":[[231,3,1,"","__call__"],[231,3,1,"","copy"],[231,2,1,"","covariance"],[231,2,1,"","default_parameters"],[231,3,1,"","energy_flux"],[231,3,1,"","energy_flux_error"],[231,3,1,"","evaluate"],[231,3,1,"","evaluate_energy_flux"],[231,3,1,"","evaluate_error"],[231,3,1,"","evaluate_integral"],[231,3,1,"","freeze"],[231,3,1,"","from_dict"],[231,3,1,"","from_parameters"],[231,2,1,"","frozen"],[231,3,1,"","integral"],[231,3,1,"","integral_error"],[231,3,1,"","inverse"],[231,3,1,"","inverse_all"],[231,2,1,"","is_norm_spectral_model"],[231,2,1,"","norm"],[231,2,1,"","parameters"],[231,2,1,"","pivot_energy"],[231,3,1,"","plot"],[231,3,1,"","plot_error"],[231,3,1,"","reassign"],[231,2,1,"","reference"],[231,3,1,"","reference_fluxes"],[231,3,1,"","spectral_index"],[231,3,1,"","spectral_index_error"],[231,2,1,"","tag"],[231,2,1,"","tilt"],[231,3,1,"","to_dict"],[231,2,1,"","type"],[231,3,1,"","unfreeze"]],"gammapy.modeling.models.PowerLawSpectralModel":[[232,3,1,"","__call__"],[232,2,1,"","amplitude"],[232,3,1,"","copy"],[232,2,1,"","covariance"],[232,2,1,"","default_parameters"],[232,3,1,"","energy_flux"],[232,3,1,"","energy_flux_error"],[232,3,1,"","evaluate"],[232,3,1,"","evaluate_energy_flux"],[232,3,1,"","evaluate_error"],[232,3,1,"","evaluate_integral"],[232,3,1,"","freeze"],[232,3,1,"","from_dict"],[232,3,1,"","from_parameters"],[232,2,1,"","frozen"],[232,2,1,"","index"],[232,3,1,"","integral"],[232,3,1,"","integral_error"],[232,3,1,"","inverse"],[232,3,1,"","inverse_all"],[232,2,1,"","is_norm_spectral_model"],[232,2,1,"","parameters"],[232,2,1,"","pivot_energy"],[232,3,1,"","plot"],[232,3,1,"","plot_error"],[232,3,1,"","reassign"],[232,2,1,"","reference"],[232,3,1,"","reference_fluxes"],[232,3,1,"","spectral_index"],[232,3,1,"","spectral_index_error"],[232,2,1,"","tag"],[232,3,1,"","to_dict"],[232,2,1,"","type"],[232,3,1,"","unfreeze"]],"gammapy.modeling.models.PowerLawTemporalModel":[[233,3,1,"","__call__"],[233,2,1,"","alpha"],[233,3,1,"","copy"],[233,2,1,"","covariance"],[233,2,1,"","default_parameters"],[233,3,1,"","evaluate"],[233,3,1,"","freeze"],[233,3,1,"","from_dict"],[233,3,1,"","from_parameters"],[233,2,1,"","frozen"],[233,3,1,"","integral"],[233,2,1,"","is_energy_dependent"],[233,2,1,"","parameters"],[233,3,1,"","plot"],[233,3,1,"","reassign"],[233,2,1,"","reference_time"],[233,3,1,"","sample_time"],[233,2,1,"","t0"],[233,2,1,"","t_ref"],[233,2,1,"","tag"],[233,3,1,"","time_sum"],[233,3,1,"","to_dict"],[233,2,1,"","type"],[233,3,1,"","unfreeze"]],"gammapy.modeling.models.ScaleSpectralModel":[[236,3,1,"","__call__"],[236,3,1,"","copy"],[236,2,1,"","covariance"],[236,2,1,"","default_parameters"],[236,3,1,"","energy_flux"],[236,3,1,"","energy_flux_error"],[236,3,1,"","evaluate"],[236,3,1,"","evaluate_error"],[236,3,1,"","freeze"],[236,3,1,"","from_dict"],[236,3,1,"","from_parameters"],[236,2,1,"","frozen"],[236,3,1,"","integral"],[236,3,1,"","integral_error"],[236,3,1,"","inverse"],[236,3,1,"","inverse_all"],[236,2,1,"","is_norm_spectral_model"],[236,2,1,"","norm"],[236,2,1,"","parameters"],[236,2,1,"","pivot_energy"],[236,3,1,"","plot"],[236,3,1,"","plot_error"],[236,3,1,"","reassign"],[236,3,1,"","reference_fluxes"],[236,3,1,"","spectral_index"],[236,3,1,"","spectral_index_error"],[236,2,1,"","tag"],[236,3,1,"","to_dict"],[236,2,1,"","type"],[236,3,1,"","unfreeze"]],"gammapy.modeling.models.Shell2SpatialModel":[[237,3,1,"","__call__"],[237,3,1,"","copy"],[237,2,1,"","covariance"],[237,2,1,"","default_parameters"],[237,2,1,"","eta"],[237,3,1,"","evaluate"],[237,3,1,"","evaluate_geom"],[237,2,1,"","evaluation_bin_size_min"],[237,2,1,"","evaluation_radius"],[237,2,1,"","evaluation_region"],[237,3,1,"","freeze"],[237,3,1,"","from_dict"],[237,3,1,"","from_parameters"],[237,3,1,"","from_position"],[237,2,1,"","frozen"],[237,3,1,"","integrate_geom"],[237,2,1,"","is_energy_dependent"],[237,2,1,"","lat_0"],[237,2,1,"","lon_0"],[237,2,1,"","parameters"],[237,2,1,"","phi_0"],[237,3,1,"","plot"],[237,3,1,"","plot_error"],[237,3,1,"","plot_grid"],[237,3,1,"","plot_interactive"],[237,3,1,"","plot_position_error"],[237,2,1,"","position"],[237,2,1,"","position_error"],[237,2,1,"","position_lonlat"],[237,2,1,"","r_0"],[237,2,1,"","r_in"],[237,3,1,"","reassign"],[237,2,1,"","tag"],[237,3,1,"","to_dict"],[237,3,1,"","to_region"],[237,2,1,"","type"],[237,3,1,"","unfreeze"]],"gammapy.modeling.models.ShellSpatialModel":[[238,3,1,"","__call__"],[238,3,1,"","copy"],[238,2,1,"","covariance"],[238,2,1,"","default_parameters"],[238,3,1,"","evaluate"],[238,3,1,"","evaluate_geom"],[238,2,1,"","evaluation_bin_size_min"],[238,2,1,"","evaluation_radius"],[238,2,1,"","evaluation_region"],[238,3,1,"","freeze"],[238,3,1,"","from_dict"],[238,3,1,"","from_parameters"],[238,3,1,"","from_position"],[238,2,1,"","frozen"],[238,3,1,"","integrate_geom"],[238,2,1,"","is_energy_dependent"],[238,2,1,"","lat_0"],[238,2,1,"","lon_0"],[238,2,1,"","parameters"],[238,2,1,"","phi_0"],[238,3,1,"","plot"],[238,3,1,"","plot_error"],[238,3,1,"","plot_grid"],[238,3,1,"","plot_interactive"],[238,3,1,"","plot_position_error"],[238,2,1,"","position"],[238,2,1,"","position_error"],[238,2,1,"","position_lonlat"],[238,2,1,"","radius"],[238,3,1,"","reassign"],[238,2,1,"","tag"],[238,3,1,"","to_dict"],[238,3,1,"","to_region"],[238,2,1,"","type"],[238,3,1,"","unfreeze"],[238,2,1,"","width"]],"gammapy.modeling.models.SineTemporalModel":[[239,3,1,"","__call__"],[239,2,1,"","amp"],[239,3,1,"","copy"],[239,2,1,"","covariance"],[239,2,1,"","default_parameters"],[239,3,1,"","evaluate"],[239,3,1,"","freeze"],[239,3,1,"","from_dict"],[239,3,1,"","from_parameters"],[239,2,1,"","frozen"],[239,3,1,"","integral"],[239,2,1,"","is_energy_dependent"],[239,2,1,"","omega"],[239,2,1,"","parameters"],[239,3,1,"","plot"],[239,3,1,"","reassign"],[239,2,1,"","reference_time"],[239,3,1,"","sample_time"],[239,2,1,"","t_ref"],[239,2,1,"","tag"],[239,3,1,"","time_sum"],[239,3,1,"","to_dict"],[239,2,1,"","type"],[239,3,1,"","unfreeze"]],"gammapy.modeling.models.SkyModel":[[240,3,1,"","__call__"],[240,3,1,"","contributes"],[240,3,1,"","copy"],[240,2,1,"","covariance"],[240,3,1,"","create"],[240,2,1,"","default_parameters"],[240,3,1,"","evaluate"],[240,3,1,"","evaluate_geom"],[240,2,1,"","evaluation_bin_size_min"],[240,2,1,"","evaluation_radius"],[240,2,1,"","evaluation_region"],[240,2,1,"","frame"],[240,3,1,"","freeze"],[240,3,1,"","from_dict"],[240,3,1,"","from_parameters"],[240,2,1,"","frozen"],[240,3,1,"","integrate_geom"],[240,2,1,"","name"],[240,2,1,"","parameters"],[240,2,1,"","position"],[240,2,1,"","position_lonlat"],[240,3,1,"","reassign"],[240,2,1,"","spatial_model"],[240,2,1,"","spectral_model"],[240,2,1,"","tag"],[240,2,1,"","temporal_model"],[240,3,1,"","to_dict"],[240,2,1,"","type"],[240,3,1,"","unfreeze"]],"gammapy.modeling.models.SmoothBrokenPowerLawSpectralModel":[[241,3,1,"","__call__"],[241,2,1,"","amplitude"],[241,2,1,"","beta"],[241,3,1,"","copy"],[241,2,1,"","covariance"],[241,2,1,"","default_parameters"],[241,2,1,"","ebreak"],[241,3,1,"","energy_flux"],[241,3,1,"","energy_flux_error"],[241,3,1,"","evaluate"],[241,3,1,"","evaluate_error"],[241,3,1,"","freeze"],[241,3,1,"","from_dict"],[241,3,1,"","from_parameters"],[241,2,1,"","frozen"],[241,2,1,"","index1"],[241,2,1,"","index2"],[241,3,1,"","integral"],[241,3,1,"","integral_error"],[241,3,1,"","inverse"],[241,3,1,"","inverse_all"],[241,2,1,"","is_norm_spectral_model"],[241,2,1,"","parameters"],[241,2,1,"","pivot_energy"],[241,3,1,"","plot"],[241,3,1,"","plot_error"],[241,3,1,"","reassign"],[241,2,1,"","reference"],[241,3,1,"","reference_fluxes"],[241,3,1,"","spectral_index"],[241,3,1,"","spectral_index_error"],[241,2,1,"","tag"],[241,3,1,"","to_dict"],[241,2,1,"","type"],[241,3,1,"","unfreeze"]],"gammapy.modeling.models.SpatialModel":[[242,3,1,"","__call__"],[242,3,1,"","copy"],[242,2,1,"","covariance"],[242,2,1,"","default_parameters"],[242,3,1,"","evaluate_geom"],[242,2,1,"","evaluation_bin_size_min"],[242,2,1,"","evaluation_radius"],[242,2,1,"","evaluation_region"],[242,3,1,"","freeze"],[242,3,1,"","from_dict"],[242,3,1,"","from_parameters"],[242,3,1,"","from_position"],[242,2,1,"","frozen"],[242,3,1,"","integrate_geom"],[242,2,1,"","is_energy_dependent"],[242,2,1,"","parameters"],[242,2,1,"","phi_0"],[242,3,1,"","plot"],[242,3,1,"","plot_error"],[242,3,1,"","plot_grid"],[242,3,1,"","plot_interactive"],[242,3,1,"","plot_position_error"],[242,2,1,"","position"],[242,2,1,"","position_error"],[242,2,1,"","position_lonlat"],[242,3,1,"","reassign"],[242,3,1,"","to_dict"],[242,2,1,"","type"],[242,3,1,"","unfreeze"]],"gammapy.modeling.models.SpectralModel":[[243,3,1,"","__call__"],[243,3,1,"","copy"],[243,2,1,"","covariance"],[243,2,1,"","default_parameters"],[243,3,1,"","energy_flux"],[243,3,1,"","energy_flux_error"],[243,3,1,"","evaluate_error"],[243,3,1,"","freeze"],[243,3,1,"","from_dict"],[243,3,1,"","from_parameters"],[243,2,1,"","frozen"],[243,3,1,"","integral"],[243,3,1,"","integral_error"],[243,3,1,"","inverse"],[243,3,1,"","inverse_all"],[243,2,1,"","is_norm_spectral_model"],[243,2,1,"","parameters"],[243,2,1,"","pivot_energy"],[243,3,1,"","plot"],[243,3,1,"","plot_error"],[243,3,1,"","reassign"],[243,3,1,"","reference_fluxes"],[243,3,1,"","spectral_index"],[243,3,1,"","spectral_index_error"],[243,3,1,"","to_dict"],[243,2,1,"","type"],[243,3,1,"","unfreeze"]],"gammapy.modeling.models.SuperExpCutoffPowerLaw3FGLSpectralModel":[[244,3,1,"","__call__"],[244,2,1,"","amplitude"],[244,3,1,"","copy"],[244,2,1,"","covariance"],[244,2,1,"","default_parameters"],[244,2,1,"","ecut"],[244,3,1,"","energy_flux"],[244,3,1,"","energy_flux_error"],[244,3,1,"","evaluate"],[244,3,1,"","evaluate_error"],[244,3,1,"","freeze"],[244,3,1,"","from_dict"],[244,3,1,"","from_parameters"],[244,2,1,"","frozen"],[244,2,1,"","index_1"],[244,2,1,"","index_2"],[244,3,1,"","integral"],[244,3,1,"","integral_error"],[244,3,1,"","inverse"],[244,3,1,"","inverse_all"],[244,2,1,"","is_norm_spectral_model"],[244,2,1,"","parameters"],[244,2,1,"","pivot_energy"],[244,3,1,"","plot"],[244,3,1,"","plot_error"],[244,3,1,"","reassign"],[244,2,1,"","reference"],[244,3,1,"","reference_fluxes"],[244,3,1,"","spectral_index"],[244,3,1,"","spectral_index_error"],[244,2,1,"","tag"],[244,3,1,"","to_dict"],[244,2,1,"","type"],[244,3,1,"","unfreeze"]],"gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLDR3SpectralModel":[[245,3,1,"","__call__"],[245,2,1,"","amplitude"],[245,3,1,"","copy"],[245,2,1,"","covariance"],[245,2,1,"","default_parameters"],[245,3,1,"","energy_flux"],[245,3,1,"","energy_flux_error"],[245,3,1,"","evaluate"],[245,3,1,"","evaluate_error"],[245,2,1,"","expfactor"],[245,3,1,"","freeze"],[245,3,1,"","from_dict"],[245,3,1,"","from_parameters"],[245,2,1,"","frozen"],[245,2,1,"","index_1"],[245,2,1,"","index_2"],[245,3,1,"","integral"],[245,3,1,"","integral_error"],[245,3,1,"","inverse"],[245,3,1,"","inverse_all"],[245,2,1,"","is_norm_spectral_model"],[245,2,1,"","parameters"],[245,2,1,"","pivot_energy"],[245,3,1,"","plot"],[245,3,1,"","plot_error"],[245,3,1,"","reassign"],[245,2,1,"","reference"],[245,3,1,"","reference_fluxes"],[245,3,1,"","spectral_index"],[245,3,1,"","spectral_index_error"],[245,2,1,"","tag"],[245,3,1,"","to_dict"],[245,2,1,"","type"],[245,3,1,"","unfreeze"]],"gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLSpectralModel":[[246,3,1,"","__call__"],[246,2,1,"","amplitude"],[246,3,1,"","copy"],[246,2,1,"","covariance"],[246,2,1,"","default_parameters"],[246,3,1,"","energy_flux"],[246,3,1,"","energy_flux_error"],[246,3,1,"","evaluate"],[246,3,1,"","evaluate_error"],[246,2,1,"","expfactor"],[246,3,1,"","freeze"],[246,3,1,"","from_dict"],[246,3,1,"","from_parameters"],[246,2,1,"","frozen"],[246,2,1,"","index_1"],[246,2,1,"","index_2"],[246,3,1,"","integral"],[246,3,1,"","integral_error"],[246,3,1,"","inverse"],[246,3,1,"","inverse_all"],[246,2,1,"","is_norm_spectral_model"],[246,2,1,"","parameters"],[246,2,1,"","pivot_energy"],[246,3,1,"","plot"],[246,3,1,"","plot_error"],[246,3,1,"","reassign"],[246,2,1,"","reference"],[246,3,1,"","reference_fluxes"],[246,3,1,"","spectral_index"],[246,3,1,"","spectral_index_error"],[246,2,1,"","tag"],[246,3,1,"","to_dict"],[246,2,1,"","type"],[246,3,1,"","unfreeze"]],"gammapy.modeling.models.TemplateNDSpatialModel":[[248,3,1,"","__call__"],[248,3,1,"","copy"],[248,2,1,"","covariance"],[248,2,1,"","default_parameters"],[248,3,1,"","evaluate"],[248,3,1,"","evaluate_geom"],[248,2,1,"","evaluation_bin_size_min"],[248,2,1,"","evaluation_radius"],[248,2,1,"","evaluation_region"],[248,3,1,"","freeze"],[248,3,1,"","from_dict"],[248,3,1,"","from_parameters"],[248,3,1,"","from_position"],[248,2,1,"","frozen"],[248,3,1,"","integrate_geom"],[248,2,1,"","is_energy_dependent"],[248,2,1,"","map"],[248,2,1,"","parameters"],[248,2,1,"","phi_0"],[248,3,1,"","plot"],[248,3,1,"","plot_error"],[248,3,1,"","plot_grid"],[248,3,1,"","plot_interactive"],[248,3,1,"","plot_position_error"],[248,2,1,"","position"],[248,2,1,"","position_error"],[248,2,1,"","position_lonlat"],[248,3,1,"","reassign"],[248,2,1,"","tag"],[248,3,1,"","to_dict"],[248,2,1,"","type"],[248,3,1,"","unfreeze"],[248,3,1,"","write"]],"gammapy.modeling.models.TemplateNDSpectralModel":[[249,3,1,"","__call__"],[249,3,1,"","copy"],[249,2,1,"","covariance"],[249,2,1,"","default_parameters"],[249,3,1,"","energy_flux"],[249,3,1,"","energy_flux_error"],[249,3,1,"","evaluate"],[249,3,1,"","evaluate_error"],[249,3,1,"","freeze"],[249,3,1,"","from_dict"],[249,3,1,"","from_parameters"],[249,2,1,"","frozen"],[249,3,1,"","integral"],[249,3,1,"","integral_error"],[249,3,1,"","inverse"],[249,3,1,"","inverse_all"],[249,2,1,"","is_norm_spectral_model"],[249,2,1,"","map"],[249,2,1,"","parameters"],[249,2,1,"","pivot_energy"],[249,3,1,"","plot"],[249,3,1,"","plot_error"],[249,3,1,"","reassign"],[249,3,1,"","reference_fluxes"],[249,3,1,"","spectral_index"],[249,3,1,"","spectral_index_error"],[249,2,1,"","tag"],[249,3,1,"","to_dict"],[249,2,1,"","type"],[249,3,1,"","unfreeze"],[249,3,1,"","write"]],"gammapy.modeling.models.TemplateNPredModel":[[250,3,1,"","copy"],[250,2,1,"","covariance"],[250,3,1,"","cutout"],[250,2,1,"","default_parameters"],[250,2,1,"","energy_center"],[250,3,1,"","evaluate"],[250,2,1,"","evaluation_radius"],[250,3,1,"","freeze"],[250,3,1,"","from_dict"],[250,3,1,"","from_parameters"],[250,2,1,"","frozen"],[250,2,1,"","map"],[250,2,1,"","name"],[250,2,1,"","parameters"],[250,2,1,"","position"],[250,3,1,"","reassign"],[250,3,1,"","slice_by_energy"],[250,2,1,"","spectral_model"],[250,3,1,"","stack"],[250,2,1,"","tag"],[250,3,1,"","to_dict"],[250,2,1,"","type"],[250,3,1,"","unfreeze"],[250,3,1,"","write"]],"gammapy.modeling.models.TemplatePhaseCurveTemporalModel":[[251,3,1,"","__call__"],[251,3,1,"","copy"],[251,2,1,"","covariance"],[251,2,1,"","default_parameters"],[251,3,1,"","evaluate"],[251,2,1,"","f0"],[251,2,1,"","f1"],[251,2,1,"","f2"],[251,3,1,"","freeze"],[251,3,1,"","from_dict"],[251,3,1,"","from_parameters"],[251,2,1,"","frozen"],[251,3,1,"","integral"],[251,2,1,"","is_energy_dependent"],[251,2,1,"","parameters"],[251,2,1,"","phi_ref"],[251,3,1,"","plot"],[251,3,1,"","plot_phasogram"],[251,3,1,"","read"],[251,3,1,"","reassign"],[251,2,1,"","reference_time"],[251,3,1,"","sample_time"],[251,2,1,"","t_ref"],[251,2,1,"","tag"],[251,3,1,"","time_sum"],[251,3,1,"","to_dict"],[251,2,1,"","type"],[251,3,1,"","unfreeze"],[251,3,1,"","write"]],"gammapy.modeling.models.TemplateSpatialModel":[[252,3,1,"","__call__"],[252,3,1,"","copy"],[252,2,1,"","covariance"],[252,2,1,"","default_parameters"],[252,3,1,"","evaluate"],[252,3,1,"","evaluate_geom"],[252,2,1,"","evaluation_bin_size_min"],[252,2,1,"","evaluation_radius"],[252,2,1,"","evaluation_region"],[252,3,1,"","freeze"],[252,3,1,"","from_dict"],[252,3,1,"","from_parameters"],[252,3,1,"","from_position"],[252,2,1,"","frozen"],[252,3,1,"","integrate_geom"],[252,2,1,"","is_energy_dependent"],[252,2,1,"","lat_0"],[252,2,1,"","lon_0"],[252,2,1,"","map"],[252,2,1,"","map_center"],[252,2,1,"","parameters"],[252,2,1,"","phi_0"],[252,3,1,"","plot"],[252,3,1,"","plot_error"],[252,3,1,"","plot_grid"],[252,3,1,"","plot_interactive"],[252,3,1,"","plot_position_error"],[252,2,1,"","position"],[252,2,1,"","position_error"],[252,2,1,"","position_lonlat"],[252,3,1,"","read"],[252,3,1,"","reassign"],[252,2,1,"","tag"],[252,3,1,"","to_dict"],[252,3,1,"","to_region"],[252,2,1,"","type"],[252,3,1,"","unfreeze"],[252,3,1,"","write"]],"gammapy.modeling.models.TemplateSpectralModel":[[253,3,1,"","__call__"],[253,3,1,"","copy"],[253,2,1,"","covariance"],[253,2,1,"","default_parameters"],[253,3,1,"","energy_flux"],[253,3,1,"","energy_flux_error"],[253,3,1,"","evaluate"],[253,3,1,"","evaluate_error"],[253,3,1,"","freeze"],[253,3,1,"","from_dict"],[253,3,1,"","from_parameters"],[253,3,1,"","from_region_map"],[253,2,1,"","frozen"],[253,3,1,"","integral"],[253,3,1,"","integral_error"],[253,3,1,"","inverse"],[253,3,1,"","inverse_all"],[253,2,1,"","is_norm_spectral_model"],[253,2,1,"","parameters"],[253,2,1,"","pivot_energy"],[253,3,1,"","plot"],[253,3,1,"","plot_error"],[253,3,1,"","read_xspec_model"],[253,3,1,"","reassign"],[253,3,1,"","reference_fluxes"],[253,3,1,"","spectral_index"],[253,3,1,"","spectral_index_error"],[253,2,1,"","tag"],[253,3,1,"","to_dict"],[253,2,1,"","type"],[253,3,1,"","unfreeze"]],"gammapy.modeling.models.TemporalModel":[[254,3,1,"","__call__"],[254,3,1,"","copy"],[254,2,1,"","covariance"],[254,2,1,"","default_parameters"],[254,3,1,"","freeze"],[254,3,1,"","from_dict"],[254,3,1,"","from_parameters"],[254,2,1,"","frozen"],[254,3,1,"","integral"],[254,2,1,"","is_energy_dependent"],[254,2,1,"","parameters"],[254,3,1,"","plot"],[254,3,1,"","reassign"],[254,2,1,"","reference_time"],[254,3,1,"","sample_time"],[254,3,1,"","time_sum"],[254,3,1,"","to_dict"],[254,2,1,"","type"],[254,3,1,"","unfreeze"]],"gammapy.stats":[[262,1,1,"","CashCountsStatistic"],[263,1,1,"","WStatCountsStatistic"],[264,4,1,"","cash"],[265,4,1,"","cash_sum_cython"],[266,4,1,"","compute_chisq"],[267,4,1,"","compute_flux_doubling"],[268,4,1,"","compute_fpp"],[269,4,1,"","compute_fvar"],[270,4,1,"","cstat"],[271,4,1,"","f_cash_root_cython"],[272,4,1,"","get_wstat_gof_terms"],[273,4,1,"","get_wstat_mu_bkg"],[274,4,1,"","norm_bounds_cython"],[275,4,1,"","wstat"]],"gammapy.stats.CashCountsStatistic":[[262,3,1,"","compute_errn"],[262,3,1,"","compute_errp"],[262,3,1,"","compute_upper_limit"],[262,2,1,"","error"],[262,3,1,"","info_dict"],[262,2,1,"","n_bkg"],[262,2,1,"","n_sig"],[262,3,1,"","n_sig_matching_significance"],[262,2,1,"","p_value"],[262,2,1,"","sqrt_ts"],[262,2,1,"","stat_max"],[262,2,1,"","stat_null"],[262,3,1,"","sum"],[262,2,1,"","ts"]],"gammapy.stats.WStatCountsStatistic":[[263,3,1,"","compute_errn"],[263,3,1,"","compute_errp"],[263,3,1,"","compute_upper_limit"],[263,2,1,"","error"],[263,3,1,"","info_dict"],[263,2,1,"","n_bkg"],[263,2,1,"","n_sig"],[263,3,1,"","n_sig_matching_significance"],[263,2,1,"","p_value"],[263,2,1,"","sqrt_ts"],[263,2,1,"","stat_max"],[263,2,1,"","stat_null"],[263,3,1,"","sum"],[263,2,1,"","ts"]],"gammapy.utils":[[13,0,0,"-","cluster"],[13,0,0,"-","coordinates"],[13,0,0,"-","fits"],[13,0,0,"-","integrate"],[13,0,0,"-","interpolation"],[13,0,0,"-","parallel"],[13,0,0,"-","random"],[13,0,0,"-","regions"],[13,0,0,"-","scripts"],[13,0,0,"-","table"],[13,0,0,"-","testing"],[13,0,0,"-","time"],[13,0,0,"-","units"]],"gammapy.utils.cluster":[[276,4,1,"","hierarchical_clustering"],[277,4,1,"","standard_scaler"]],"gammapy.utils.coordinates":[[278,5,1,"","D_SUN_TO_GALACTIC_CENTER"],[279,4,1,"","cartesian"],[280,4,1,"","fov_to_sky"],[281,4,1,"","galactic"],[282,4,1,"","motion_since_birth"],[283,4,1,"","polar"],[284,4,1,"","sky_to_fov"],[285,4,1,"","velocity_glon_glat"]],"gammapy.utils.fits":[[286,1,1,"","HDULocation"],[287,1,1,"","LazyFitsData"],[288,4,1,"","earth_location_from_dict"]],"gammapy.utils.fits.HDULocation":[[286,3,1,"","get_hdu"],[286,3,1,"","info"],[286,3,1,"","load"],[286,3,1,"","path"]],"gammapy.utils.integrate":[[289,4,1,"","trapz_loglog"]],"gammapy.utils.interpolation":[[290,1,1,"","ScaledRegularGridInterpolator"],[291,4,1,"","interpolate_profile"],[292,4,1,"","interpolation_scale"]],"gammapy.utils.interpolation.ScaledRegularGridInterpolator":[[290,3,1,"","__call__"]],"gammapy.utils.parallel":[[293,5,1,"","BACKEND_DEFAULT"],[294,5,1,"","METHOD_DEFAULT"],[295,5,1,"","METHOD_KWARGS_DEFAULT"],[296,5,1,"","N_JOBS_DEFAULT"],[297,5,1,"","POOL_KWARGS_DEFAULT"],[298,1,1,"","multiprocessing_manager"],[299,4,1,"","run_multiprocessing"]],"gammapy.utils.random":[[300,1,1,"","InverseCDFSampler"],[301,4,1,"","draw"],[302,4,1,"","get_random_state"],[303,4,1,"","normalize"],[304,4,1,"","pdf"],[305,4,1,"","sample_powerlaw"],[306,4,1,"","sample_sphere"],[307,4,1,"","sample_sphere_distance"],[308,4,1,"","sample_times"]],"gammapy.utils.random.InverseCDFSampler":[[300,3,1,"","sample"],[300,3,1,"","sample_axis"]],"gammapy.utils.regions":[[309,4,1,"","compound_region_to_regions"],[310,4,1,"","make_concentric_annulus_sky_regions"],[311,4,1,"","make_orthogonal_rectangle_sky_regions"],[312,4,1,"","region_to_frame"],[313,4,1,"","regions_to_compound_region"]],"gammapy.utils.scripts":[[314,4,1,"","get_images_paths"],[315,4,1,"","make_path"],[316,4,1,"","read_yaml"],[317,4,1,"","recursive_merge_dicts"],[318,4,1,"","write_yaml"]],"gammapy.utils.table":[[319,4,1,"","hstack_columns"],[320,4,1,"","table_row_to_dict"],[321,4,1,"","table_standardise_units_copy"],[322,4,1,"","table_standardise_units_inplace"]],"gammapy.utils.testing":[[323,1,1,"","Checker"],[324,4,1,"","assert_quantity_allclose"],[325,4,1,"","assert_skycoord_allclose"],[326,4,1,"","assert_time_allclose"],[327,4,1,"","mpl_plot_check"],[328,4,1,"","requires_data"],[329,4,1,"","requires_dependency"]],"gammapy.utils.testing.Checker":[[323,3,1,"","run"]],"gammapy.utils.time":[[330,4,1,"","absolute_time"],[331,4,1,"","time_ref_from_dict"],[332,4,1,"","time_ref_to_dict"],[333,4,1,"","time_relative_to_ref"]],"gammapy.utils.units":[[334,4,1,"","standardise_unit"],[335,4,1,"","unit_from_fits_image_hdu"]],"gammapy.visualization":[[336,1,1,"","MapPanelPlotter"],[337,4,1,"","add_colorbar"],[338,4,1,"","annotate_heatmap"],[339,4,1,"","colormap_hess"],[340,4,1,"","colormap_milagro"],[341,4,1,"","plot_contour_line"],[342,4,1,"","plot_distribution"],[343,4,1,"","plot_heatmap"],[344,4,1,"","plot_map_rgb"],[345,4,1,"","plot_npred_signal"],[346,4,1,"","plot_spectrum_datasets_off_regions"],[347,4,1,"","plot_theta_squared_table"]],"gammapy.visualization.MapPanelPlotter":[[336,3,1,"","plot"],[336,3,1,"","plot_panel"]],gammapy:[[0,0,0,"-","analysis"],[2,0,0,"-","catalog"],[3,0,0,"-","data"],[4,0,0,"-","datasets"],[5,0,0,"-","estimators"],[7,0,0,"-","irf"],[8,0,0,"-","makers"],[9,0,0,"-","maps"],[10,0,0,"-","modeling"],[12,0,0,"-","stats"],[14,0,0,"-","visualization"],[11,6,1,"cmdoption-gammapy-ignore-warnings","--ignore-warnings"],[11,6,1,"cmdoption-gammapy-log-level","--log-level"],[11,6,1,"cmdoption-gammapy-version","--version"]]},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","attribute","Python attribute"],"3":["py","method","Python method"],"4":["py","function","Python function"],"5":["py","data","Python data"],"6":["std","cmdoption","program option"]},objtypes:{"0":"py:module","1":"py:class","2":"py:attribute","3":"py:method","4":"py:function","5":"py:data","6":"std:cmdoption"},terms:{"0":[11,13,16,17,18,19,20,21,22,23,24,25,26,27,28,29,31,33,34,35,38,39,42,47,50,51,52,53,65,69,72,79,81,82,83,84,85,86,89,91,97,98,99,102,103,104,105,106,107,109,111,112,113,114,116,118,120,121,129,130,131,132,134,135,136,137,139,142,143,144,145,146,147,148,150,152,155,158,159,163,173,174,175,176,177,178,180,183,184,185,186,187,188,189,190,193,195,197,198,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,248,249,251,252,253,254,259,260,262,263,264,267,268,269,270,296,300,307,308,326,337,339,340,344,346,349,350,352,353,356,360,361,363,364,365,366,367,368,369,371,372,373,374,375,376,377,378,382,385,414,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,461,463,464,465,466,467,471,473,477,481,483,486,488,489,490,491,492,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,538,539,540,541],"00":[65,83,84,85,86,96,350,364,416,417,419,420,421,422,423,425,427,428,429,432,433,435,436,439,440,442,444,445,446,447,448,449,451,452,454,455,456,457,459,461,463,464,465,466,503,523,524,534,542],"000":[65,83,84,86,113,364,418,420,421,423,428,429,430,432,433,436,439,440,444,445,449,451,452,456,463,465],"0000":375,"000000":444,"000000000000002":449,"00000000000001":423,"00000000000003":441,"00000000000004":444,"0000000000018":89,"000000000002":432,"000000000006":432,"000000000007":444,"00000000001":444,"00000000e":[446,447],"0000000e":447,"00000143":[350,542],"0000e":[96,417,420,421,422,423,425,428,436,440,446,452,464,523],"0001":[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,340,430],"00010298":445,"000150":418,"000179":510,"0002":[418,465],"00020":418,"0002000":418,"0003":430,"00050":418,"000500":418,"0005e":436,"0006":418,"00074287037":[89,433],"000742870370370241":89,"0008":444,"0009":418,"000e":[420,423,429,436,440,444,452,465,523],"000true":418,"001":[50,129,130,131,132,135,136,137,139,142,144,146,147,175,176,178,184,187,188,326,432,446,501],"0016288e":447,"001e":65,"002018":456,"0025508e":447,"0028272e":447,"0029":374,"0029490222317034775":463,"002e":65,"003":[441,451,456],"003026327991562108":429,"003131946268913696":463,"0033":540,"0036925550381217":423,"004":65,"00422666667":437,"00449161":222,"00490":430,"00490483":430,"0049409":455,"005":444,"00521472221220211":429,"0057582256122":440,"005914854792576181":431,"0064830e":447,"0068115544":217,"007":444,"0071144081":217,"0074388942":217,"0076540e":447,"008":[444,539],"008164325487530225":431,"008898002182656187":431,"00894":465,"009":444,"009431203058496632":431,"009e":436,"00e":[79,416,421,432,436,440,441,445,447,448,456,463],"01":[39,52,72,79,83,84,86,89,97,99,103,104,105,115,121,158,159,163,204,210,214,216,218,233,239,350,374,385,416,420,422,424,425,428,429,432,436,440,441,442,443,444,445,446,447,448,449,451,452,454,456,457,458,463,464,465,466,471,476,486,488,489,492,495,497,499,503,521,522,526,527,528,534,539,542],"010":451,"010e":65,"011":451,"011872336272724":463,"012":451,"0120e":440,"0122385e":447,"01235137e":447,"012733796525585":453,"013":428,"0139252e":447,"014":[81,97,99,103,104,155,421,444,448,463,464,488],"0143764":455,"01449":79,"0145":450,"01450":[438,464],"0149044e":447,"015":444,"01551196351647377":217,"0164":430,"01648855015875024":538,"01700709977114979":437,"017442925431194484":437,"018":65,"018182745349064267":429,"0183519e":447,"01960784313726":434,"019899368286133":429,"01e":[155,385,416,444],"01t00":[83,86,89,350,424,432,542],"01t01":86,"01t02":86,"02":[16,65,79,89,97,99,103,104,143,150,155,175,176,178,180,184,185,187,188,385,386,416,418,420,421,425,426,428,429,430,431,432,433,435,436,438,440,441,444,446,447,448,449,450,451,452,454,456,463,464,465,486,488,489,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],"020":[429,444],"020074":513,"020420144596410953":453,"021":[65,444],"0225e":444,"02287888":217,"023":444,"023473560586078527":463,"023e":424,"024":444,"02432":444,"024375":531,"024551293715163":463,"024e":465,"025":[444,456],"0251191219844263":430,"026":[53,65,444],"02653":[424,430],"026891":444,"026914":444,"027":65,"0276e":440,"028":420,"0288e":440,"029e":444,"02e":79,"02t09":[421,452,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],"02t23":82,"03":[17,19,20,21,22,24,25,26,27,65,83,85,86,362,377,416,418,429,430,432,435,436,440,444,447,449,451,453,454,458,459,461,464,498],"0306e":436,"030e":436,"031":436,"032":444,"0322":65,"0322775e":447,"033":[65,444,454,459],"03383":455,"034":539,"0344":65,"034e":418,"0354700e":447,"0356":416,"0356551":416,"036":65,"036e":444,"037":451,"03745318352059925":532,"0375512e":447,"0376213e":447,"039":[428,429],"039215686274545":434,"03921700077803329":429,"0395135e":447,"03978226e":452,"0399e":440,"04":[30,65,89,419,421,423,424,426,429,432,440,441,444,447,449,452,454,455,456],"040":[463,466],"041":456,"0415":465,"041882":444,"042":444,"0423761":416,"042e":444,"043":65,"04357249662280083":420,"044":421,"04454":456,"0447":424,"0454683":455,"046":65,"0462798e":447,"047":65,"0473174":222,"0474750e":447,"048":[428,456],"0482342e":447,"048e":65,"049":[418,428],"049676":444,"04d":432,"04e":448,"04t15":82,"04t22":82,"05":[19,20,26,29,42,65,69,83,86,111,120,186,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,310,377,416,417,418,419,420,424,427,428,429,430,433,436,443,444,445,446,447,448,451,455,457,459,463,464,491,495,524],"050":451,"0503641":416,"0505949e":447,"05075":447,"0508075688763":444,"05088486522436142":420,"051":[19,20,26,435,451],"051c":[17,21,22,24,25,27],"052":444,"0520119e":447,"0521842481248":431,"05227":444,"053":428,"053212009682775":453,"054363":507,"054833602905273e":429,"05487060546875":420,"0548e":429,"054e":[65,436],"055":444,"055e":418,"0560":465,"056130":444,"05628243":465,"05673":465,"057":444,"05762513693893088":429,"058":65,"058201":444,"05853":424,"058823529411775":434,"058e":424,"059":[65,435,454],"05901956e":447,"0598579":416,"05deg":186,"06":[129,130,131,132,133,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188,374,428,429,430,435,442,444,445,446,447,448,449,454,456,459,466],"060":466,"061":[421,465],"062":[432,451,452,456],"0625":452,"0628":465,"063":65,"0631757e":447,"06334488877417636":453,"064108e":444,"06430":430,"0643032":430,"065071":444,"065119":465,"066":420,"066442":444,"0674":424,"068245":444,"0689":446,"068e":418,"069":65,"07":[97,155,324,364,385,418,419,421,428,430,439,441,444,445,447,449,451,456,459],"070483":444,"070e":424,"071":[448,454],"0711412":416,"072":65,"073":65,"0739282e":447,"074":[444,456],"07454639":430,"07455":430,"0746":465,"0748":[444,465],"075":65,"07512322002655547":429,"076":465,"077":416,"078":418,"07843137254903":434,"07943648658692837":453,"07944657407":444,"079464e":465,"0799109224230051":453,"07e":441,"08":[82,344,385,422,423,425,426,428,429,436,444,445,446,448,454,456,463,464,504],"080":420,"0800792e":447,"08075":447,"08081469527619482":423,"08088":[161,448],"081":420,"0811551760882139":453,"08142":443,"08191603310406206":453,"08192":430,"08192101":430,"082":444,"082691868487906":437,"08269984":465,"082e":113,"083":[65,444],"08328557573258877":453,"0833333358168602":420,"0833333432674408":420,"08388624433428049":453,"084":[65,421],"08447355125099419":453,"0845515":416,"085":444,"08529426":92,"0855013383552432":453,"08675":445,"086e":444,"087":465,"08795162606984375":453,"087e":444,"088742":444,"08880368117243051":453,"08894569035619496":453,"089":122,"0894640e":447,"0897868126630783":453,"089881":444,"08e":[436,451],"09":[33,113,155,421,424,426,428,435,444,445,447,448,463,464,465,540],"090":[421,534],"0902437e":447,"0907128e":447,"0910":[231,232],"0914":[52,53],"092":420,"093":534,"093477":430,"09348":430,"094":436,"09426693227142095":453,"094834":444,"095":534,"095232":444,"09562941":465,"095707":465,"096":[421,534],"0960":465,"09607":465,"09610314778983592":453,"09623312838375568":453,"097":534,"09740295372903346":453,"097e":65,"098903":444,"09907043184188653":453,"09e":[448,456],"0b100":296,"0d":[115,145,434,445,499],"0e":[372,421,423,425,429,432,436,440,445,447,449,451,452,456,463,494,495,496,497,499,500,501,502,505,506,508,511,512,514,515,516,517,519,520,521,522,523,525,526,527,528,529,530,531,532,533],"0f":[446,456,465],"0rc":378,"0rc1":378,"0s":115,"0true":430,"0x105fd0cf8":349,"0x105fe3b70":349,"0x129602550":349,"0x7f279abe5f70":453,"0x7f279bf83760":453,"0x7f27a01c6970":453,"0x7f27a114de80":455,"0x7f27a1160100":455,"0x7f27a119e700":450,"0x7f27a119e790":450,"0x7f27a119e940":450,"0x7f27a119eb80":450,"0x7f27a14e84f0":455,"0x7f27a14e8df0":455,"0x7f27a1591f10":434,"0x7f27a1591fa0":434,"0x7f27a192c5b0":452,"0x7f27a2040310":453,"0x7f27a21c7550":453,"0x7f27a21cf2b0":445,"0x7f27a21cf670":445,"0x7f27a21cf760":445,"0x7f27a2587700":445,"0x7f27a29ac130":453,"1":[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,44,45,46,47,48,49,50,51,52,53,54,57,59,62,64,65,69,70,71,72,74,79,82,83,84,86,90,96,97,99,103,104,107,111,113,114,115,116,118,119,121,122,126,127,129,130,131,132,134,135,136,137,142,143,144,145,146,148,150,155,158,172,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,192,193,195,197,198,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,223,226,228,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,251,252,253,254,255,256,260,262,263,267,268,289,290,296,297,298,307,308,310,311,334,336,339,340,344,346,349,350,352,353,356,357,359,360,361,363,364,366,369,371,372,373,374,375,376,378,379,385,386,389,390,392,393,397,399,400,401,404,405,406,407,408,409,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,471,472,473,476,477,479,481,482,483,484,485,488,489,490,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,536,537,539,540,541],"10":[13,16,28,29,30,31,32,35,36,37,39,40,50,51,52,53,54,64,65,82,83,84,85,86,97,98,99,102,103,104,107,111,114,115,120,121,129,130,132,134,136,142,143,144,145,146,148,155,161,174,175,176,178,183,184,186,187,188,192,193,195,204,207,219,220,222,223,244,256,268,296,298,308,337,342,344,346,349,350,352,353,354,355,356,357,358,359,360,365,366,371,372,373,377,379,385,390,392,403,405,408,412,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,467,473,477,483,486,488,489,490,491,500,501,504,506,509,510,512,513,514,515,517,518,520,521,522,526,527,528,538,539,542],"100":[19,20,26,46,47,71,89,113,121,134,135,145,186,188,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,256,258,308,349,350,352,357,368,388,416,417,420,423,428,429,430,432,433,434,436,437,441,443,444,445,447,448,449,452,455,456,457,465,469,471,472,473,477,488,491,492,494,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,539],"1000":[28,29,30,31,32,35,36,37,39,40,176,181,349,352,418,444,445,447,456,465,491],"10000":[17,18,21,22,23,24,25,27,158,444,456],"100000":[71,444,463],"1000000":[51,52,54,444,523],"10000000":523,"1001":[407,432,433],"1002":407,"10045":[63,246,522],"10049":416,"1006":407,"101":[393,441,444],"1012":443,"1013":408,"1014":408,"101430":441,"10172":452,"102":[155,424,539,540],"1021":408,"1025":408,"1026":408,"10262943822890519":453,"1027":408,"102877228833871":453,"1029":408,"10295505":465,"102e":444,"103":[388,411],"103000133":457,"1031":408,"10317325958321796":463,"1032":408,"1034":465,"1035":408,"10350021860740599":421,"1036":424,"1038":408,"104":430,"1040":408,"10409":430,"10409446":430,"1043":408,"104317":[97,445,451],"1044":424,"1045":408,"1046":367,"10470702368766069":453,"10477":465,"105":[78,420,421,458,534],"1051":408,"1052":444,"1053":408,"1054":408,"1054498":122,"1057":408,"10592":542,"105953":465,"1061971e":447,"106217":79,"1062535e":447,"1064":444,"1065":408,"1067":408,"1069":408,"107":[416,449],"1070":[408,465],"1072542e":447,"1073":408,"10752883769757363":453,"1076":408,"1078":408,"107e":444,"108":[405,534],"108034597491956e":452,"108043":428,"1082":408,"1083":408,"1084":408,"1085":408,"1085000":428,"1086":268,"1087":408,"1088":408,"1089":408,"109":[388,449],"1090":408,"1092":[408,424],"1093":[408,424],"1095":440,"1098":408,"1099306e":447,"109e":430,"10d":434,"10e":[155,444,447],"10k":176,"10th":[376,387],"11":[65,83,86,89,113,114,118,193,310,353,356,358,366,373,377,388,389,410,416,417,418,420,421,422,423,424,425,426,430,432,433,434,436,438,439,440,441,444,445,446,448,451,454,456,463,464,465,488,490,540],"110":[444,456],"1100":408,"110000":[445,448],"1102":408,"1102e":417,"1103":408,"110380":[79,365,425,428,430,455],"1104":408,"1105":408,"1107":408,"1108":408,"111":[337,356,408,428,444],"1110":408,"1111":[444,465],"111140":[365,425,428,430],"111159":[365,425,428,430,455],"1115":408,"111507416":441,"111630":[85,441,455],"111797":444,"11184":[63,245,521],"112":416,"11208":63,"1127":408,"11291820875721864":453,"113":465,"1131":357,"1133":408,"1134":408,"1136":408,"113989":500,"114416978060046":440,"1149":445,"115":65,"1150":408,"11517":465,"11553325504064559":453,"116":388,"1160":444,"11610":465,"1162":408,"1166":408,"1167":[356,363],"1169":408,"116e":65,"117":[388,420,504],"1170":408,"1172":363,"1173775":444,"1176":408,"117877e":444,"1179":408,"118":428,"1183":408,"118355":444,"118e":440,"119":[419,423,424,428],"1190":408,"1193777560333226e":438,"1193e":422,"119432":416,"1195":408,"11af4c":388,"11e":[426,444],"12":[17,38,42,65,82,83,86,97,99,105,113,145,148,174,175,176,178,184,187,188,197,201,207,209,213,220,230,232,241,244,245,246,256,353,355,356,357,358,360,361,366,369,372,388,392,393,394,406,411,416,417,418,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,466,477,488,491,492,494,495,496,497,499,500,501,502,504,505,506,508,511,512,515,516,517,519,520,521,522,525,526,527,528,529,530,531,532,533],"120":[53,364,422,456,498],"120000":425,"120154":444,"1204":408,"1207":408,"120e":[65,465],"121":[65,430,451],"1210":408,"1211":[408,444],"121241":428,"12148":424,"1215":408,"1216":417,"12186":465,"1219":444,"122":[65,388,418,451],"1220":408,"1226":408,"1227":408,"12276676166802643":453,"123":[83,86,361,420,424],"1231":409,"1234":84,"123456789":[350,542],"1235":408,"1237":357,"1238":408,"123890826":82,"123892513":82,"1239":354,"123944":79,"124":[361,420,424,444,451],"1240":408,"12423250e":447,"1243":465,"1246":408,"12493874":447,"124e":65,"125":[65,113,420,430,449,456,465,539],"12518":429,"12525306":437,"12546":63,"125e":429,"126":[65,418,444,446],"1264500e":447,"126585":416,"1266":408,"1268":408,"12688":79,"1269263e":447,"12697":429,"127":424,"1271v":269,"12751":416,"1277":355,"1278":356,"12794487":452,"128":[388,441,467],"12809":[97,445,451],"1281":408,"12816":465,"12856":456,"1287":408,"1289":408,"128e":418,"129":414,"1290":408,"1291":408,"1294":408,"1299":444,"129e":424,"12nan5":418,"12r_":53,"12th":[374,387],"13":[65,96,113,353,354,358,363,368,377,393,416,418,420,421,422,424,428,430,436,440,444,445,446,449,451,452,454,463,465,473,540],"130":488,"1300":408,"1301v":38,"13030":465,"1305":408,"13061":452,"131":[418,430],"1310":465,"1312":408,"13133":465,"13152":430,"1316":408,"1317":409,"1318":408,"1319":[89,408],"13197":428,"132":424,"1321e":429,"13226":465,"132472":430,"1331":409,"1334":409,"1337":409,"1339":409,"133e":[418,424],"134":[421,424,430],"1341":409,"1342a":135,"1343":409,"1344":444,"1345":409,"1346":409,"1347":409,"135":[38,96,418,444,446],"13500212963":444,"13500566998758723":431,"1351e":444,"1354":409,"135498046875":420,"1357":409,"1359316":465,"135e":113,"136":444,"1360":409,"1361":444,"1362":409,"1367":[409,510],"1369":[357,409],"137":[421,424,431],"1372":409,"137254901960785":434,"1373":409,"1374":409,"1376":409,"1377":409,"1378":409,"137990":444,"137e":424,"138":[388,418,427,432,465],"1381":409,"1386":409,"1387":409,"138e":430,"139":[420,424,456],"13911":465,"1395":409,"1396":[349,421],"13960":465,"1397":409,"1397412321592923":453,"13e":445,"13nan6":418,"13th":387,"14":[28,63,65,82,350,353,358,361,366,368,369,407,418,421,424,428,441,444,445,446,450,451,452,464,465,494,495,496,539],"140":[420,457],"1401":409,"1406":409,"140779935183259e":438,"1408":[409,465],"141":[275,430,444],"1411180":428,"1412":409,"14121":430,"1412536400000000":465,"14149953611195087":453,"14150":430,"1419":[357,410],"141945":416,"142":[65,388,418,444,465],"1421":409,"14210":418,"1426":409,"142e":444,"143":424,"1432":409,"1433":409,"1435":409,"1438":158,"1438465e":447,"1439110308062257":453,"144":[418,451,465],"144033":518,"14419991":92,"1442739329466746e":452,"1443":409,"1444":409,"1445":363,"14457":465,"1446":409,"144638":421,"1447":409,"145":444,"1451":364,"14531053887243":430,"1456":409,"1456479e":447,"146":465,"14610":542,"146472":444,"14671140315352":431,"147":[407,444,449],"1470":[409,465],"147180":494,"1474":409,"1475":409,"1476":409,"14773":456,"147e":444,"148":[420,424],"1482":444,"1485314":92,"1486415e":447,"1489":409,"149":[420,448,451],"1491":430,"1492":409,"1494":430,"1495":409,"1496e":425,"149e":444,"14e":[425,443],"14msts37sst":[432,433],"14nan3":418,"14nan5":418,"14th":[373,376,387],"14yr_catalog":63,"15":[39,42,65,83,84,86,132,133,134,135,136,137,142,143,144,146,339,340,344,358,366,388,392,397,402,405,406,407,409,416,419,420,421,424,426,427,428,429,430,432,433,434,436,437,440,441,444,446,448,449,451,452,456,465,488,495,497,498,499],"150":[119,388,418,420,432,433,449,465,503],"1503":440,"1505":409,"15076259":92,"151":[388,451],"1510":122,"1510240e":447,"15140":424,"1515":409,"15154854":92,"1517":409,"152":[424,430,464],"1520":467,"1521":430,"15228678433255e":463,"1523":432,"15246":432,"152477":456,"1527":409,"153":444,"1530":445,"15319":432,"153600":445,"154":[388,416,444],"1543":409,"154e":430,"155":388,"15518":465,"1552":426,"1553":[444,465],"1554":409,"1554106e":447,"1556":[409,444,465],"1556008e":447,"1558":409,"156":[388,421,424,430,451],"1562":409,"15621":465,"1564":409,"156525":444,"1567629e":447,"1568":409,"15686274509804":434,"157":[388,465],"1573":409,"1576":409,"158":[416,421,428],"1582":409,"1586":89,"158919":527,"15899":424,"1594":409,"1597317":92,"159t":52,"15h14m00":444,"15nan8":418,"16":[16,24,53,65,89,103,104,174,353,357,366,369,370,393,408,413,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,443,444,445,446,448,449,450,451,452,454,455,456,457,458,463,464,465,490,500,501,502,531,539,540],"160":[31,113,388,397,434,440,451,534],"1600":433,"1605":409,"16056":424,"1606":409,"1607":443,"160e":65,"161":[357,420,430,444],"1610e":444,"161250":436,"1613279491744304":453,"1616":409,"1618850e":447,"1619e":96,"162":65,"16227766":449,"1622776601683795":[448,449,463],"16240":464,"16287":465,"1629219e":447,"163":[434,539],"1630":[409,465],"16303":430,"16303044":430,"1634":409,"164":444,"1642":416,"165":451,"1650":465,"16506":416,"16511":430,"16511148":430,"1658":409,"166":[388,430,444],"1660":409,"16650390625":417,"1665478":92,"167":[388,430,436],"167219":444,"1675":[409,513],"167e":424,"168":[444,465,524],"1681":[409,513],"1685":409,"1686":444,"1687":82,"168702":416,"169":[420,430],"1691":416,"1695":409,"169517":436,"1696":409,"1697":409,"169871":436,"16th":387,"17":[20,21,40,65,82,360,363,366,397,414,416,430,431,434,435,441,444,445,446,447,448,449,451,456,457,465,504,540],"170":417,"17016482e":446,"1702":409,"17020":424,"171":424,"1710":410,"1711":409,"1713":417,"1715":363,"1717":465,"171749":465,"1719502":92,"1719610":92,"1719670":92,"171b":255,"172":434,"17229679":92,"173":[444,503],"1731":[409,451],"1732":444,"17320":444,"1737799900000000":465,"1742":65,"17445":465,"1746":[409,465],"1748":[409,451],"1750":409,"1751":409,"1753":465,"1755":[409,424],"1759":409,"175e":444,"176":[388,441,444],"1760":409,"1761":409,"1762":467,"1763":[410,444],"1764":[409,430],"176470588235294":434,"1766":410,"1768896e":447,"177":[388,456,457],"17776":416,"177e":444,"178":408,"178226800727":440,"178442":65,"1785":[409,416],"179":440,"1791":409,"179475":222,"1799":409,"17a":444,"17e":451,"17g":50,"17th":403,"18":[11,83,86,353,368,374,394,400,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,505,506],"180":[363,381,383,388,444,449],"1800":[409,433,449,455],"180000":[432,433],"1804":444,"180458":428,"1805":363,"1807":410,"1808":[409,444,465],"181":424,"1811":423,"1812":409,"1813":444,"1818":409,"182":503,"1821":409,"1822":409,"1825":444,"18257":424,"183":[420,428],"1830e":420,"183139597":82,"1834":417,"1835":89,"1836":410,"1836544903987521":453,"1837":410,"18385658":430,"18386":430,"18392464":479,"184":[82,89,402,406,424,432,439,450,451],"18400002":439,"1841":358,"1845":410,"1846":410,"18465":465,"1849":410,"184989894219835":437,"185":450,"1854":[410,444],"1855":410,"1857":410,"1859":410,"186":[401,430,444],"1861":410,"1862":410,"186484131475074":308,"1866":448,"186643":465,"186e":424,"187":[394,401,430,459],"1871":410,"1877":359,"188":[401,416,444],"1881":440,"1883":410,"1884":410,"18842983819716610":430,"1888":410,"188e":418,"189":[447,524],"1890":410,"1891":410,"18921591":447,"1893":410,"1893e":444,"1894":410,"1895":410,"1898":410,"18988":465,"1899":440,"1899070e":447,"18a":61,"18h43m48":65,"19":[51,53,54,65,353,365,367,369,382,388,396,397,399,411,417,421,424,434,437,440,441,442,444,445,449,451,507,508,509],"190":[421,444],"1902":[63,246,522],"1903":410,"1904":410,"1905":429,"1908":410,"1909":410,"191":[401,436,440],"1910":[161,448],"1912":410,"1917":465,"1918":410,"1919":410,"1920":465,"1921":[410,440],"19214093":92,"1922":410,"1926":410,"1926520e":447,"1927":410,"1928":444,"1929":410,"193":[424,456],"1930":410,"1933":410,"1934":410,"19354":430,"1936925":92,"1937":[410,444],"194":[401,420,443,454,524],"1943186":92,"1947565":92,"1949":410,"195":217,"1950rspsa":52,"1951":389,"1953830":92,"1955810e":447,"1958e":446,"196":[65,416,451],"1960784313725492":434,"1962":389,"1963":444,"19646":456,"1965tralm":21,"1966":389,"1969":389,"196991563774588":256,"197":[65,430,503],"1971":360,"19735897928723367":431,"1975":389,"1976572e":447,"1978":444,"1979":[264,270,389,537],"1979892":430,"1980":444,"1982":37,"1983":537,"1986":361,"1986027":465,"1987":430,"19879005":158,"1988":389,"1989":389,"199":[430,451],"1990":[37,389],"1990apj":[36,37],"1991":389,"1991mnra":22,"19932878":447,"1994":[389,537],"1994a":[52,53],"1995":[388,389],"1995apj":17,"1996":[27,424,437,537],"1996mnra":27,"1997":463,"1997apj":25,"1998":[83,86,389,537],"1998apj":28,"1999":[53,350,542],"19991":463,"199999809265137":444,"19999999999999998":423,"1999apj":53,"19e":448,"19th":387,"1d":[16,28,29,30,31,32,35,36,37,39,40,86,103,104,115,133,134,143,157,174,176,303,342,355,359,360,362,363,364,365,368,369,370,381,391,393,394,395,396,400,402,405,409,411,412,416,417,418,419,420,422,424,428,435,440,445,446,448,450,452,453,455,456,463,475,477,479,484,487,492,535,537],"1dc":[78,79,85,97,99,103,104,107,111,130,134,135,136,145,337,342,344,357,359,365,369,390,416,423,425,428,430,436,440,441,445,447,451,477],"1deg":186,"1e":[19,20,26,82,95,118,119,121,129,130,131,132,133,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188,197,198,201,205,207,208,209,213,219,220,222,223,226,228,230,231,232,236,241,243,244,245,246,249,253,256,264,270,310,324,326,349,360,418,420,422,424,426,428,430,432,433,436,438,440,441,444,446,452,456,457,473,477,481,504,505,506,508,511,512,516,517,519,520,521,522],"1e0":471,"1e10":[51,135],"1e11":446,"1e12":[471,481],"1e2":[418,471,473],"1e3":[456,481],"1e30":514,"1e4":[446,456,457],"1e40":472,"1e5":[422,456,473,491,492],"1e51":52,"1e6":[45,456,469,523],"1e7":[115,523],"1f":421,"1fhl":[394,407],"1fhl_name":69,"1h":[114,145],"1k":[97,103],"1kpc":473,"1lhaaso":[57,68,444],"1lhaaso_catalog":57,"1rc1":378,"1tev":[52,53,433],"2":[11,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,35,36,37,38,39,40,46,50,51,52,53,54,59,62,65,66,69,70,71,72,74,76,79,80,81,82,83,84,85,86,90,96,97,99,103,104,106,111,112,113,114,115,116,118,119,120,121,125,132,133,134,135,137,143,145,148,155,158,172,174,175,176,178,180,181,182,186,188,193,194,195,196,197,201,205,207,209,213,215,216,220,223,230,231,232,237,238,240,241,244,245,246,251,255,256,260,262,263,264,269,270,296,298,334,337,342,344,346,349,350,353,354,358,360,361,363,364,365,366,369,372,373,374,375,376,378,385,386,388,389,390,391,392,393,400,405,406,407,408,409,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,473,476,477,479,484,485,486,488,489,491,492,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,537,538,539,540,541],"20":[16,38,79,83,85,86,97,99,103,104,136,137,142,144,146,155,175,176,178,184,187,188,350,353,354,355,357,362,364,367,369,374,411,416,420,421,422,423,424,425,426,428,430,431,432,434,435,437,438,439,440,441,443,444,446,448,449,451,452,455,458,463,464,465,466,467,486,488,489,490,495,496,497,500,501,510,511,512,513,518,539],"200":[52,83,86,121,186,373,401,420,421,424,430,434,436,444,449,452,465,524,539],"2000":[84,97,99,103,104,115,210,214,216,218,233,239,389,432,433,434,448,456,465,537],"2000000":428,"20000000000000004":423,"20009124":447,"2000apj":256,"2000e":452,"2001":[89,389,424,537],"2002":[83,86,268,437],"2003":[269,437],"2003mnra":269,"2004":[82,89,437,458],"2004a":[39,40],"2004aph":[79,84],"2004mnra":24,"2005":[63,537],"200503":416,"2005a":444,"2006":[31,33,364,424,431,439],"200638":465,"2006a":256,"2006apj":[30,31,32,33],"2006ara":50,"2006mnra":[35,107],"2007":[367,537],"20072608":447,"2008":[38,82,205,253,456,467,504],"2008aj":38,"2009":[121,271,390,424,537],"20097159":447,"2009851":447,"20099855":447,"201":[52,449],"2010":[115,135,205,222,350,504,537,542],"2010a":[222,256],"2010mnra":135,"2011":[205,467,504],"2011jcap":[17,19,20,21,22,24,25,26,27],"2012":[86,390,537],"2013":[122,369,375,379,388,437],"20136":[78,458],"20137":458,"2013aph":255,"2014":[387,467],"2015":[52,82,363,366,387,456],"2015apj":[60,114],"2015jheap":256,"2016":[26,363,366,387,390,437,448],"2016apj":58,"2017":[205,354,356,366,369,385,387,390,430,455,504],"2017apj":[59,61],"2017icrc":455,"2018":[52,354,355,356,357,358,359,360,364,366,368,369,387,414,455,458,537],"2018a":114,"2019":[356,358,359,360,361,362,363,364,365,366,367,368,369,387,409,410,431,455,537],"202":430,"2020":[358,369,370,371,372,373,387,431,432,440,449,526,527,528],"2021":[85,205,371,373,387,414,452,504],"2021345e":447,"2022":[374,375,387,390,457],"2023":[361,376,377,387,390],"2023arxiv230517030c":57,"2024":[386,421,452,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],"2024e":464,"2026":[361,390],"2028":390,"203":[420,524],"2030":[361,390],"2031":390,"20326":417,"20327":417,"2033":390,"2034":390,"20349":417,"2035":390,"20350":417,"2037":390,"20372":455,"2038":390,"2039":390,"20396":417,"20397":417,"2040469e":447,"2041222e":447,"20421":417,"20422":417,"2045":361,"2046":390,"2049":[390,444,465],"205":[401,430,449],"2050":390,"20508075688775":444,"2051":390,"20517":417,"20518":417,"20519":417,"205192":444,"20521":417,"2052879308667":440,"2053315944536949e":455,"205357":444,"2054":390,"20559":465,"2058705e":447,"206":[424,440,444],"2061":444,"2062580e":447,"2064":390,"2064335":92,"2065":390,"2066":390,"2068682e":447,"2069":390,"207":[430,434,451,503],"2071":[361,390],"2075":377,"207520865":439,"207521465":439,"2076":390,"2077":390,"2079930e":447,"2085":390,"2089":[363,392],"20898":417,"20899":417,"209":430,"20900":417,"2093":390,"2095":430,"2097":[390,416,423,425,428,430,436,440,455],"2097e":420,"2098":390,"20deg":[432,433],"20e":447,"20th":375,"21":[28,29,30,31,32,35,36,37,39,40,96,115,130,352,353,397,403,412,416,420,424,426,430,439,443,444,447,449,465,492,513,514,515,539],"210":[401,444],"2103":444,"2104":391,"2104353e":447,"2106":391,"2108":391,"210e":440,"211":[444,445],"2111":391,"2112":[391,464],"2114":391,"2115":391,"211770556360534":441,"2118":391,"2119":391,"211e":444,"212":[65,401,420,427,444],"2121":391,"2121164e":447,"2123":391,"2124":391,"2126":391,"2128":391,"2129":[363,392],"213":422,"2130":391,"2131":[391,444],"2132":391,"21325":456,"2133":391,"2136":[362,393],"2139":391,"214":[418,424],"2140":391,"2141":391,"2142":391,"2145":391,"2146":391,"21464892":465,"215":[65,401,444],"21500000000003":498,"2151":391,"2152":391,"21525376976022406":431,"2153":[391,444],"2154":[391,444],"2155":[395,437,439,440,444,453,465,504],"215686274509824":434,"2157":391,"2159e":96,"215e":444,"216":[217,420,421,449,451,533],"2160":391,"2162670e":447,"2163":391,"2164425e":447,"2166":391,"2169":391,"217":444,"2171":391,"21731921e":449,"21733761e":449,"21735587e":449,"218":[60,114,503,524],"2190":367,"2192":392,"21t19":89,"21t20":89,"22":[65,79,81,84,97,99,103,104,121,150,155,158,353,387,400,420,421,422,423,424,429,438,440,444,445,448,449,450,457,458,459,463,464,465,476,483,486,488,489,492,516,517],"220":[428,444,451,539,540],"2200":392,"2201":[63,245,444,465,521],"2202e":465,"2204":392,"2206":392,"220e":444,"221":[363,401,420],"22149":424,"2217":392,"2217412e":447,"2218":[366,393],"2219":[365,393],"222":[58,444,451,459],"2221":444,"22245374e":113,"2227134679628":440,"22271346796282":440,"22271346796283":440,"2229":[362,392],"223":451,"2230":392,"2231":444,"2235":392,"2237":[392,465],"2238":392,"2239":392,"224":524,"2240":392,"2243":392,"2244":392,"224436":465,"225":[373,401,444,503],"2250":392,"22500":426,"2254":392,"2255":[367,453],"225575051666":444,"2255890":[439,453],"2257":392,"2259":392,"226":[430,456],"22608":445,"2262":392,"22635140877790516":446,"2264":[361,392],"22646133647326874":446,"2264827111476982":446,"22648881839710966":446,"2265163003209506":446,"22662622801631419":446,"227":420,"2270":366,"2272":392,"2274":[368,393,416],"2276":392,"2277":392,"2278":392,"2278975306934438":446,"2279":[366,393],"227e":444,"228":[264,270,357,363,420,421,426,444,448,458],"2287":392,"2289":392,"229":[65,444],"2290":368,"2292":393,"2294":392,"2296":392,"2297":392,"22974080e":456,"2298":392,"22e":448,"22nd":387,"23":[89,158,349,353,375,387,411,417,422,423,424,440,444,446,449,451,453,465,488,518,519,520],"230":[401,424],"2300":392,"2304":367,"2305":392,"230542e":444,"2307":63,"2308":393,"231":401,"2310":392,"2313":393,"2314":393,"232":61,"2320":[393,444,445],"2321":393,"2323":393,"2326":393,"2327":[444,451],"23273":456,"233":421,"2330":393,"23306":424,"2332":451,"2334":393,"2335":393,"2338":393,"2339":[417,444,465],"234":[401,441],"234132519034915":449,"23413252":449,"2342":393,"2343":393,"234359264373779":448,"2343e":451,"2344":393,"2345":393,"2346":393,"2347":393,"235":[401,420,524],"2350":394,"2351":393,"23523":[155,385,420,421,429,438,445,446,448,458,463,464,476,479,538],"23526":[420,421,429,438,445,446,448,458,463,464,538],"235294117647083":434,"2354":393,"23559":[420,421,438,445,448,463,464,486,488,489,538],"2356":393,"2357":451,"2358":393,"2359":393,"23592":[420,421,438,445,448,463,464,486,488,489,538],"236":[401,444],"2360":393,"2362506e":447,"23628":456,"2365":393,"2366":393,"2367":393,"2368":393,"237":[416,424,427,524],"23734":465,"2375":393,"2377":393,"2378":393,"2379":393,"2381":393,"238298":416,"2384":416,"2385":393,"239":[65,430],"23905561":447,"239146":532,"239439":465,"239557417":82,"2399":444,"239e":444,"23a":[60,114],"24":[25,27,52,53,82,83,86,89,352,353,366,370,404,409,416,424,440,444,445,449,451,455,456,463,488,504,511,520,521,522,523],"240":[97,99,103,104,111,444,445,477],"2400":393,"2401":393,"2404":393,"2405":394,"240e":436,"241":444,"2412":393,"2414":444,"241795":497,"2419":416,"242835":65,"2431":444,"2433":394,"2435":394,"244":[65,401,420],"2440":444,"2441":394,"244140625":451,"2443672e":447,"2444":[394,424],"2446":[394,451],"2448":394,"2449":394,"245":[401,421],"2450":[394,451],"245152":430,"2454":394,"2455":394,"2459":394,"246":401,"2461":394,"24611324074":444,"2463":[369,394],"2464":394,"2465055e":447,"2468":394,"24685677e":447,"247":[65,401,421],"2470":394,"2472":394,"2475":394,"2476":394,"2477":394,"2478":394,"2479":[394,464],"248":401,"2481":394,"248122":444,"2483":394,"2485":463,"2486":394,"249":[22,401],"2490":394,"2491":394,"2492":394,"2493":394,"2496":394,"24968":416,"2497":394,"2498":394,"2499":394,"249965667724609":448,"24e":[444,451],"25":[33,52,83,86,96,134,145,158,264,270,353,366,373,387,408,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,496,501,525,526],"250":[449,537],"2501":394,"250185":448,"2502":[394,430],"2505":394,"2505121":92,"2505703":441,"2509":444,"251":[424,428],"2510":394,"251185":465,"2511884200000000":465,"2518":444,"251932":444,"252":[401,420,430,444],"2520":394,"2521":394,"2523":394,"2525":394,"2528":394,"253":[423,451],"2535":394,"2536":[394,451],"2537":451,"2538":394,"254":401,"2540":394,"2546":394,"254901960784338":434,"25496":465,"2551":394,"2552":[394,444],"2553":394,"2555":370,"2557":394,"255750516626":444,"2558":394,"255820":521,"2559":394,"256":[65,404],"2560538e":447,"2561":394,"2562":394,"2563":394,"2564":394,"2567":394,"2568720263723087":431,"257":423,"2574":394,"25743553e":446,"25763":424,"257642":444,"2579999":455,"258":[423,502],"2580":394,"258300":505,"2585":394,"2587":394,"2589254117941673":463,"259":[423,463,465],"2591e":444,"2594":394,"2595":394,"25b":17,"25e":451,"25t_":53,"25th":375,"26":[19,83,86,353,387,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,467,514,527,528,529,530,532],"260":[404,465],"2604":394,"2609":451,"261":[404,465],"2610e":428,"2616":394,"26173":424,"2619":394,"262":[404,424,451,465],"2620":394,"2625818241224747":446,"2627":394,"262728":455,"26272868097919794":453,"2628525e":447,"263":[424,451],"2634e":429,"2635":394,"2635108e":447,"2637":394,"26392":426,"2639554729438709":453,"264":[404,430],"2645":394,"264516271942103":463,"2648150":92,"2649e":446,"265":[32,363,416,424,430,451,465],"2651":394,"2654":394,"266":[363,423,424,430,432,436,449,451,465],"2660":394,"266192":416,"26665050077722524":453,"2667":395,"267":[65,423,424,430,451,455],"2672":395,"2673":395,"26739753":92,"2674":395,"268":[375,424,430,444,451,465],"2681":395,"2684":395,"2685":395,"268663733018811":453,"2687":395,"26883694":465,"26887783978974283":453,"269":[465,524],"2692":395,"269385":444,"2695":430,"269627":455,"2697":395,"2699878e":447,"26a":[39,40,50,52,53,114,222,256,444],"26e":[444,451],"26th":371,"27":[355,424,430,432,435,439,442,445,465,531,532,533,539],"270":[417,424,444,451,465,524],"2703":395,"2705":395,"27057337686547633":453,"2707":395,"2708":222,"2709":395,"27093776e":447,"271":[423,424,465],"2711":395,"2712":395,"2713":395,"2715":395,"271777777777796":417,"27177778":89,"2718":395,"2719":395,"271e":424,"272":[423,424,428,444,451],"2720":[370,396],"27209":465,"2723":395,"2725":395,"2726":395,"2726e":465,"2727":395,"2727693":455,"2727e":420,"2728":395,"2729":395,"273":[79,404,418,424,465],"2730":395,"2731":395,"2733":395,"2734":113,"2735":395,"2737":395,"2738":395,"2739":395,"274":449,"27409496735322464":453,"2741":395,"2742":395,"2743":395,"274509803921596":434,"2746":395,"2747":395,"27473":430,"275":[423,444,532],"2750":395,"2751":395,"2752":395,"2753":395,"2755":395,"2756":395,"2759":396,"276":404,"2761":396,"2762":396,"2764":396,"2765":396,"2767":396,"2768":396,"277":423,"2771":396,"2772":396,"27727":451,"2775":396,"277522957147003":431,"2776":396,"2777":396,"2777074437073429":453,"2778":396,"2779":396,"278":[27,404,423,436,444,451],"2781":396,"2782":396,"2783":396,"2784":396,"2785":396,"2785e":420,"2787":396,"2788":396,"2789":396,"279":404,"2790":396,"2791":396,"2792":396,"2793":396,"2794":396,"2796":396,"2797":396,"2798":396,"2799":396,"27e":444,"27t20":85,"28":[21,24,65,89,358,387,418,421,422,423,424,430,432,436,440,444,448,449,451,452,455,465],"280":[65,404,420,423,449],"2800":[432,451,465],"2801":396,"2802":396,"2803":396,"2804":396,"2805":396,"2808":396,"2809":396,"281":[423,444],"2810":396,"2811":396,"28118133544922":444,"2812":396,"28120079":444,"2815":396,"2816":[396,451],"2817":396,"2818":396,"2818047723094509":453,"2820":396,"2822":[396,451],"2823":396,"2825456e":447,"2827":396,"2827988e":447,"2828":396,"2829":396,"282e":444,"283":[404,420,423],"2832":396,"283218":416,"283487":444,"2837":396,"28382603":447,"2838398":455,"28385358839966657":453,"2839":396,"284":[423,444,542],"2841":396,"2842":396,"28429":430,"2845":396,"2846":[396,430],"285":[404,423],"2852":451,"285f":[79,84],"286":[404,419,423],"2861432787940619":453,"286e":444,"287":[52,53],"2872":397,"28720322":92,"2874":[397,465],"28755283551095173":453,"287e":424,"288":[113,423],"2880470e":447,"2885":397,"288e":418,"289":[404,423],"28905":456,"2891":397,"28958":424,"2896":397,"2897":397,"28e":[97,418,428,430,445],"29":[65,251,364,374,387,416,418,421,423,424,430,436,439,443,444,449,451,452,454,455,465],"290":[405,420,423,431],"2900":451,"2903":[397,451],"2903e":422,"2907":397,"291":404,"2912":397,"29170324":445,"291e":465,"2922477":92,"2924":397,"2927":397,"2929":397,"293":423,"2930":444,"2931":397,"2932":397,"29355238360800506":453,"2938":397,"2939":397,"293e":424,"294":440,"2942":371,"2943":397,"2944":[372,397],"2945":397,"2947":397,"2948":397,"295":404,"2950":397,"2951":397,"2953":430,"2956":397,"29585273e":456,"2959":451,"295e":[424,444],"296":[404,421],"2965":397,"2966":397,"2967":397,"297":416,"2971e":444,"2974":397,"2976":397,"298":[423,430,444],"2981":397,"2984":397,"29882214027996945":453,"298917477885":529,"29891972811":530,"29892283673":531,"299":[404,423,440,444],"2990":397,"2991":397,"2992":397,"2993":397,"2995484265169":437,"2996":465,"2998":397,"2999":[397,444],"299940468335294":430,"299995937905366":430,"299e":444,"299t":53,"29t20":439,"2_":19,"2d":[28,29,30,31,32,35,36,37,39,40,126,127,129,130,131,132,133,135,136,137,139,142,143,144,145,146,147,148,155,165,166,173,174,175,176,178,183,184,186,187,188,192,212,355,360,365,368,369,370,381,389,395,408,409,410,424,426,427,430,449,450,465,475,478,489,490,491,502],"2degx2deg":432,"2e":[180,416,417,418,432,433,436,439,444,446,451],"2e3":449,"2e6":456,"2f":[338,416,421,453,464,540],"2fhl":[58,69,394,406,407,444,465,474],"2hwc":[59,70,394,400,408,444,474],"2k":[97,103],"2m":[222,256],"2nd":374,"2s":433,"3":[19,20,27,28,31,32,33,37,38,42,45,46,50,51,52,53,54,59,62,65,76,79,81,82,83,86,89,97,99,103,104,107,113,129,130,131,132,134,135,136,137,139,142,143,144,145,146,147,158,161,175,176,178,181,184,186,187,188,194,196,205,212,215,223,245,251,253,255,256,262,263,268,276,298,307,326,337,342,344,346,349,350,352,353,355,360,361,363,364,365,366,368,373,374,375,380,385,388,389,390,392,393,398,400,402,405,406,407,408,409,410,411,413,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,469,472,473,476,477,481,483,485,486,488,489,492,495,497,498,500,501,504,509,510,512,513,514,515,517,518,521,523,527,528,532,536,537,539,540],"30":[24,52,65,79,97,105,135,174,356,357,362,369,376,387,389,416,417,420,421,424,425,430,433,436,439,440,441,444,445,446,449,451,452,453,455,456,465,477,483,488,489,495,496,510,513,514,515,518],"300":[71,83,86,423,425,429,432,433,436,440,444,456],"3000":[359,444],"30000":444,"3000000":523,"30000000":523,"3000020211954284":430,"3001":397,"3002":397,"3003":451,"300451666228708":463,"3004625872247901":429,"3005":397,"3006":465,"3006942":92,"3007":397,"301":[404,423,440],"3011061699260256":453,"3012":397,"3013":444,"301668796295":444,"302":[423,429],"30287":424,"3028e":451,"302e":444,"303":[420,423,444],"3030":397,"3032":397,"3034":444,"3035":397,"3035897658854436":431,"3037":397,"3037632e":447,"3038":[397,465],"3039":397,"304":[437,439,440,444,453,465,504],"3041":397,"3042":397,"3043":451,"3045":397,"3046875":[445,451],"305":[65,423],"3051":397,"3051827":92,"3051852":92,"3051856":92,"3052":397,"3053":397,"30535345877453707":453,"3054":397,"3058":397,"3058422e":447,"305e":444,"306":[404,539],"3060":397,"306196370000000":465,"3063":397,"3069":397,"306e":444,"307":423,"3070":397,"3071":444,"3072":397,"3074":397,"3075":373,"3076":397,"307e":444,"308":[423,430,454,498,503],"3080":397,"3081":397,"3083":397,"3085":397,"3086":397,"3088":397,"3089":397,"309":440,"3091":397,"3092":397,"3097e":436,"30997":465,"30a":256,"30d00m00":376,"30e":[426,447,451],"30th":361,"31":[358,359,372,373,385,412,418,420,423,424,428,431,434,435,440,444,445,448,449,451,457,463,465],"310":421,"3100":397,"3106":397,"31067517":444,"3107":[444,465],"310844":516,"311":[420,440,498,540],"3110":398,"3111":398,"3112":398,"3113":398,"31139074e":446,"3114":398,"311489174710791e":465,"3116":398,"3117988e":447,"31186857659616535":453,"3119611261122878":453,"312":[404,423,434,435],"3122":399,"3123":399,"3124":399,"3125":399,"3126":399,"3127":399,"3129":399,"312e":424,"313":423,"3130":399,"3131":[400,451],"3135914081482271":453,"3136":400,"313714614138":445,"3138":400,"314":[409,524],"3140":400,"3141":400,"3145":400,"3148":400,"315":444,"3152":400,"3153":400,"3155":400,"3158":400,"316":[423,456,457],"3162":400,"316227":444,"316227766016838":448,"3165":400,"3168":400,"3169":400,"317":[404,423],"3173":400,"3178":400,"317a":256,"317e":444,"318":[404,420],"3180":400,"3182":400,"3185":400,"319":[405,456,524],"3191":400,"3195":465,"3197":400,"319725":455,"3199":400,"31e":436,"32":[79,174,424,426,428,445,448,449,465],"320":[97,99,103,104,111,444,445,451,477],"3202":400,"3207":400,"3208":400,"32095":465,"321":434,"3211":400,"3216":400,"3217":400,"3219":400,"322":[423,524],"3222":400,"3228":400,"323":[421,423,430],"3230":400,"3232943":317,"3233356":317,"323779":268,"3237948931463171":453,"3238":400,"3241":400,"3243":400,"324424288934":445,"3246":400,"32465247":452,"3254":400,"3257":400,"3258":400,"326":[404,419],"3262":400,"32684":465,"32684833":455,"327":430,"3272":400,"3276":400,"3277":400,"3278":400,"3279":400,"3279955e":447,"328":430,"3281":400,"3283":400,"3284":400,"32843":465,"32847":416,"3285":400,"329":[439,444,453,479],"3293":400,"3299":444,"329e":[420,444],"33":[421,427,437,440,443,445,446,449,465,479],"330":[405,423,451,524],"3301":400,"3302":400,"3302565e":447,"3303":400,"330376":65,"3304":400,"3305":400,"330505":455,"3306":400,"3307":400,"3308":400,"3309":400,"3310":400,"3314":400,"33164865722698683":453,"3319":400,"332":[65,405],"3320":400,"3323":[400,445],"332525":444,"3328":400,"332e":430,"332f":[30,31,32,33],"333002":511,"3330487":92,"3331":465,"3331761":92,"3333":400,"33333333":349,"3333333333333344":434,"3335":400,"3337":400,"3338":400,"334":[113,456],"3342":400,"3343":400,"3346":400,"3347":400,"33484":416,"3349":400,"334e":444,"335":405,"3353":400,"3357":400,"3358":400,"335e":418,"336":[434,444],"3363":400,"3364130e":447,"336444e":444,"336606":416,"3368855e":447,"3369":400,"337":[405,423,503],"3374":400,"3377":400,"33787":453,"33788":453,"33789":453,"3379":400,"33790":453,"33791":453,"33792":453,"33793":453,"33794":453,"33795":453,"33796":453,"33797":453,"33798":453,"33799":453,"338":[405,444],"33800":453,"33800122":92,"33801":453,"3380311e":447,"3381":400,"339":[405,434],"3390":400,"3392":400,"3393":400,"33930120224331":440,"3395":400,"3396e":428,"3397":400,"339835555384604":453,"3398360":447,"3399":400,"33e":441,"34":[52,53,65,388,416,420,421,430,445,449,451,463,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],"34005":416,"3402":400,"3403":400,"340391":465,"3404":400,"34047":416,"3406":400,"3409":[89,400],"341":416,"3413":400,"3416":400,"3418":400,"342":405,"3420":400,"3423":400,"3426":400,"3428":400,"3434":400,"3438":400,"3439":400,"343e":418,"344":444,"344238":465,"3443842":455,"3445":400,"3446":400,"3447":400,"3449":400,"344e":65,"345":[269,416,432,435,451,459],"3453":400,"3454":400,"345692":465,"3458":400,"3458e":422,"346":451,"34613004113985":431,"346488e":444,"3466":400,"3468":400,"347":[405,417],"3471":400,"3474":400,"347e":424,"348":[36,37,405,420],"3480":400,"3481e":428,"3485e":464,"3488":400,"348e":[65,444],"3491":400,"349530550405035":446,"349530725254468":446,"34953073943366":446,"34953075819191":446,"34953077463306":446,"34953079334042":446,"349530807529028":446,"349535814693404":446,"349536723056637":446,"349537158300407":446,"349537804239922":446,"34953807814367":446,"34953910575007":446,"34953932636892":446,"349542158419318":446,"349559366703698":446,"34971209244579":446,"349724940685938":446,"3499075e":447,"34e":[444,451],"35":[65,366,373,385,421,439,444,446,455],"350":[434,441],"3501":424,"350105":430,"3502":444,"35030398537787":446,"3503706026275275":453,"3504":465,"35052105086856":446,"350556388466543":446,"350d":434,"351":[405,444,465],"3515":400,"352":[405,444,466],"3521":417,"3523":400,"3529":400,"3529411764705888":434,"353":[24,405,465],"3535":402,"3536":416,"353e":430,"354":434,"3544":400,"355":442,"35569283":447,"355804":465,"3559":400,"356":465,"3561":400,"356263170943497e":463,"3568":400,"357":[444,465],"3570e":425,"35722435185":444,"3576e":417,"357e":424,"358":[430,444,465],"3584":400,"3585":430,"359":[405,430,444,465],"3590188e":447,"3592":400,"3599":432,"359e":465,"36":[65,82,130,296,430,432,444,445,447,465],"360":[363,449,467],"3600":[423,432,433,449],"36014":428,"36073833513766157":453,"361":[65,405],"3619e":464,"36228879":465,"36273":465,"362801":528,"363472509034498":453,"3639946":441,"364":[405,420],"365170":508,"3659253e":447,"366":464,"36669663417038234":453,"3669":402,"367":[405,434,451],"3674884":444,"368":107,"36834038301420274":453,"3684":402,"3689322e":447,"369":405,"3690":465,"3699":402,"36e":[443,444],"37":[416,421,423,446,456,540],"370":[434,444,451],"371":[405,421],"3710784e":447,"3712":402,"3713":402,"3715810e":447,"3718745":92,"372":[35,113,465],"3720":402,"3722":402,"3725490196078436":434,"3728":402,"373":[420,430],"3733":402,"3739292e":447,"374":[432,434],"3740":402,"37455141":465,"3748":402,"375":[405,449],"3750":430,"37506":465,"37517":424,"3752":402,"3759377929871826":453,"376":65,"3760":402,"3761":402,"3765":416,"3777":402,"37773":424,"3779":465,"3783":402,"379":405,"3792":451,"3796":402,"3797":402,"38":[22,65,416,417,444,449,451,465,523],"3802":402,"3804":402,"3806":402,"381":[420,451],"3810":402,"3812":[444,465],"3812120e":447,"3812160e":447,"38143003":92,"3817":402,"3829":465,"382e":420,"383":[65,405,444,449],"3833":402,"3837":402,"383e":65,"3842":402,"3846":402,"3848912826152664e":465,"3856":402,"3860":402,"3862":411,"387":[405,465],"3872":444,"3873":402,"3874":402,"3876":402,"387834":465,"388":502,"388405":465,"3885947175689592":453,"3886270e":447,"3887":402,"389":354,"3892":402,"3895":402,"3898":402,"389e":465,"39":[17,18,21,22,24,25,27,59,443,444,449,456,502,523],"390":400,"3904":402,"39042":82,"3905":402,"3906":402,"391":[444,524],"3915":402,"39151":426,"3918":402,"3919677734375":420,"392":[405,421,454],"392156862745098":434,"39224":424,"3925":411,"393":[189,190],"3933":402,"3935":417,"3936":402,"394":[405,420],"3941":402,"3945":[417,444],"3947637541758":440,"3948":403,"395":405,"3950":[374,411],"395004":465,"3956":411,"3959":403,"396":405,"3962942e":447,"3966":403,"3970":375,"39728":465,"3975":403,"3979":[403,538],"397918129147546":[385,538],"39791813":[385,538],"398":[405,428],"3981":465,"3981075200000000":465,"3983":403,"3986":403,"3987":403,"3988":403,"398e":444,"3990":403,"39e":444,"3d":[28,29,30,31,32,35,36,37,39,40,46,47,130,136,143,144,146,155,355,358,359,360,364,365,368,369,370,381,389,390,391,393,394,395,396,407,408,409,416,418,420,421,424,425,426,430,431,432,433,434,435,439,440,445,446,448,449,450,451,452,453,455,456,457,463,464,475,477,478,479,484,486,487,491,535,537],"3d33m15":65,"3dataset":429,"3e":[20,113,430,433,438,441,444,451],"3e4":456,"3e5":456,"3e6":523,"3e7":523,"3f":[113,431,539,540],"3fgl":[60,65,71,207,244,372,401,404,406,407,408,418,444,452,465,474,493,524],"3fgl_name":69,"3fhl":[61,72,82,115,117,121,260,369,407,408,418,424,432,434,444,449,450,451,452,456,465,474,476],"3fhl_data_fermi":429,"3fhl_dataset":[260,429,450],"3fhl_model":[260,429,451],"3g":[443,444],"3hwc":[62,73,400,411,444,474],"3ml":[367,456],"4":[19,20,22,26,28,29,30,31,32,33,35,36,37,38,39,40,52,54,60,65,79,83,86,96,97,99,103,104,116,121,132,135,143,155,158,174,175,176,178,184,187,188,197,198,201,205,207,208,209,213,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,255,260,261,296,336,349,350,352,353,361,363,366,369,373,374,385,388,397,399,400,401,404,406,407,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,467,472,473,474,488,491,492,495,496,499,504,509,522,523,531,537,538,539,540,541],"40":[59,103,104,356,401,417,418,420,421,428,430,439,440,449,452,455,465,488,510,513,518,539],"400":[121,425,430,434,444,449,465,532],"4000":411,"40000":[155,464],"400023002295445":463,"400056":416,"40050506591797":444,"40051":426,"40051035":444,"40071076":92,"400x200":434,"401":421,"40112":465,"4013":411,"4014":411,"4015":411,"4017":411,"4018":411,"402":[135,421],"4022":411,"40235":428,"4024":411,"4025":411,"4026":411,"402712":444,"403":[405,430,451],"4035":465,"4037":411,"404":419,"404277":501,"4043":411,"4044":411,"40481":428,"405":357,"4051":411,"40525":428,"4054":411,"4058":411,"406":[428,435,465],"40611":465,"4067":411,"407":444,"4071":411,"4073":411,"4073799600000000":465,"4075":411,"4076":411,"4079":411,"408":[420,449],"4080":411,"4080942e":447,"40822469e":452,"4083":411,"4084":411,"4088":411,"4089":411,"409":420,"40919":424,"4093":411,"409416":465,"4095":411,"4098":411,"40a":59,"41":[65,82,89,363,444,445,449,452,454,456,465],"410":434,"41009347393684":445,"4103":411,"4105":411,"4106":411,"4107":411,"4108":411,"411":465,"4110e":444,"4112":[113,411],"4113":411,"4115":411,"41176470588239":434,"4119":411,"411e":418,"4120719e":447,"412165":430,"412779907405":444,"413":430,"414":[405,428],"41405230487":431,"41415047":92,"4142135623730951":107,"41449":424,"4144e":428,"415":[405,514],"4155":[444,465],"41584196":437,"416":[65,444,448],"417":444,"418007850646973":385,"41866":456,"419":451,"4191":414,"4198250e":447,"41995":424,"419e":444,"41e19":[19,20],"42":[25,27,89,135,317,363,421,423,430,444,447,448,449,453,455,492,494],"420":420,"42050348":445,"4208":414,"4209":414,"421":[405,434,465,537],"4210":414,"4212":414,"4212028e":447,"4213":414,"4215":414,"4216":414,"4219":414,"422":[39,40],"4220":428,"4221":412,"4225498e":447,"4225631e":447,"42267":430,"4226731":430,"4231":[412,414],"4236":424,"42361":424,"42399798":430,"423e":113,"42400":430,"4242":414,"4243":414,"4245":414,"42463":456,"424649":445,"42474":465,"424e":424,"425":465,"4250e":436,"4252":414,"426":444,"4264":414,"4268":412,"427":[421,431,435],"4275":[412,414],"4277":414,"4280":414,"4281":444,"428190":452,"4282":414,"4288":414,"429":420,"4294":414,"42e":[446,451],"43":[255,317,363,420,421,430,440,445,449,465,492],"430":444,"43000":[52,53],"4301":[412,414],"4303606e":447,"4305":414,"431":[122,357,434,445],"43113":416,"43137254901962":434,"4313847458879893":453,"4319":465,"43197":424,"4324":[412,414],"4326":414,"432878":444,"432e":444,"433":424,"4336":[412,414],"43366":532,"434":[420,444],"43416595":441,"4344":412,"4346":414,"435":405,"4350":414,"4351637481047363":453,"4352":414,"4359":[412,414],"435l":444,"436":[405,420],"4360750e":447,"4369":414,"437":[444,451],"4370":414,"4373240195300975":453,"438":451,"4380":[413,414],"4381":377,"4382":413,"439":420,"4393":[413,414],"439306769641669e":463,"4394":413,"4395":414,"4397":[413,414],"439e":444,"43e":451,"44":[21,50,82,317,423,439,441,449],"4402":414,"44055555555555603":89,"4406":414,"4409":414,"4412":[413,414],"4417":414,"4418":414,"4420073e":447,"4420222e":447,"4428":414,"4428634e":447,"442e":424,"4430":414,"44318":445,"4435":[413,414],"4444":414,"445":424,"4450":465,"44528685":465,"4453":[413,414],"44573":89,"4458":414,"4459":414,"446":[451,540],"446444535838364":440,"4466":[414,428],"4466832000000000":465,"447":405,"44742":465,"44749e":416,"447552":416,"447e":[430,444],"447l":17,"448":434,"4480056e":447,"44802852":465,"4481":444,"4486":[413,414],"448e":429,"4491":376,"4495":414,"44e":385,"45":[51,54,419,420,423,429,440,441,445,449,450,452,467,492,496,497],"450":[421,451],"4500":[413,414],"4504":414,"4506":414,"4508":414,"4509803921569":434,"451":420,"4510":[414,428,465],"4515":443,"451600":533,"4517490659800822":438,"4520":413,"4521":414,"4524":413,"453":451,"454":420,"4545":414,"454e":440,"455":[405,418],"45515263080596924":417,"4558750":430,"455e":65,"456":405,"45646095":441,"457":[256,405,451],"457251":465,"4574":413,"4575":89,"4578":413,"458":[434,444],"45856":465,"459":[405,445,451],"4593":413,"45935":465,"45\u00ba":457,"46":[53,65,103,104,363,423,444,449,456],"460250000":82,"461":405,"4618695378303528":417,"4619":413,"462":[405,420],"4620":377,"4620e":444,"46225":424,"463":465,"4631":413,"464":436,"4642048e":447,"4647544e":447,"465":[444,451],"4653":413,"4657":413,"465784":465,"46711":424,"4677":413,"468":[441,444],"4681":413,"4684":417,"468805426856864e":52,"468e":65,"46e":[79,425,430],"47":[65,440,444,449,465],"470588235294144":434,"4711":465,"4721":413,"4728":413,"473":405,"4732":424,"474":405,"474e":444,"475":[405,451],"4753":413,"475468":416,"4755":413,"4772":413,"47797":424,"477e":444,"478":405,"47802":453,"47803":453,"47804":453,"47827":453,"47828":453,"47829":[78,453,458],"479":454,"47e":444,"48":[33,155,388,428,429,449,451,456],"480":[417,444,451],"480554966147":428,"48068":424,"480e":444,"481":[354,405],"4814":465,"4819444e":447,"482":416,"48215685":92,"48248":444,"4825":[444,465],"483":420,"4834488e":447,"484":405,"48442":251,"4848653":444,"4849":[444,465],"485":405,"485p":[36,37],"48602294921875":417,"487":[405,463],"4875723e":447,"4876":413,"4881":[231,232],"48871":416,"4888969467051004e":463,"488z":27,"489e":444,"48e":[444,451,464],"49":[53,424,428,444,451,456,463,491],"490":25,"4904078e":447,"491":420,"4913":413,"49152":456,"493":[25,420],"4930435940405":428,"4933657e":447,"4936":413,"4937":413,"49417615":82,"49447596":426,"4958277":92,"496021":455,"4963":465,"4966":465,"4968236e":447,"497":420,"4971704e":447,"498":465,"498784":444,"498e":[444,465],"499":[65,444],"49919925926":533,"49972277488662115":453,"4999833830074":430,"4d":368,"4e":[441,444,451,523],"4f":[538,539,540],"4fgl":[63,74,245,246,372,392,394,400,402,429,444,450,452,474,493,524],"4th":[361,387],"4yr_catalog":60,"5":[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,50,52,53,65,79,83,86,97,98,99,102,103,104,107,111,113,114,116,118,120,132,133,134,135,136,137,142,143,144,145,146,155,158,175,176,178,180,184,186,187,188,197,198,201,204,205,207,208,209,212,213,215,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,256,278,310,339,340,344,346,349,353,354,356,360,361,363,364,365,366,368,372,373,374,380,385,388,390,392,393,400,402,404,405,407,408,409,413,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,472,473,476,483,486,488,489,490,491,492,495,496,497,498,500,504,505,510,512,513,514,518,519,526,527,528,529,531,537,539,540],"50":[83,86,89,317,356,376,416,421,422,428,436,439,440,441,444,445,447,449,451,452,453,455,456,458,463,464,465,488,491,498,540],"500":[175,176,178,184,187,188,419,420,424,430,432,433,449,455,456,465,495],"5000":[19,20,83,86,467],"5000056568267741":430,"5000e":423,"50022222":89,"500249":444,"5004":430,"502":405,"502969":498,"5029747":422,"503":405,"5030":465,"504":28,"5049":465,"505":[65,444,445],"505523195905":428,"506":405,"5066":444,"507":405,"5074834":92,"5078068":92,"50807568877":444,"509":421,"509e":444,"50e":[423,451],"51":[52,53,65,420,428,434,463],"510":405,"5106":465,"51095676":441,"511":[65,405],"51179":[350,542],"512":420,"5126":65,"513":[385,449],"51312":430,"5144":[89,416],"514854":455,"51544":[423,432,433,436],"5162628e":447,"518":[405,451],"5188338e":447,"51910":89,"5192420e":447,"5194769e":447,"51948705e":452,"52":[53,113,155,416,417,424,426,428,440,444,455,458,465],"5205":456,"52074074074":79,"521":406,"523":[406,449],"5230376e":447,"52318414":92,"5237647004325865":453,"523891018514":444,"523a":[222,256],"523b":22,"524":[406,444,451],"5248":465,"524807800000000":465,"52587":424,"526":406,"52607":465,"527":[406,456],"528":451,"52826166":444,"5283":[444,465],"52839183495354":440,"5287e":422,"529":406,"5292":445,"529411764705883":434,"5297030e":447,"52e":[441,463],"53":[28,430,495,504],"530":406,"53025":89,"531":[406,434],"53213":430,"5324402":92,"5326744":92,"5326841":92,"5326859":92,"533":444,"533419":514,"53343":[385,438],"53344":438,"53345":438,"53346":438,"53347":438,"53348":438,"5345275e":447,"535":[406,420,444],"535058216604496":256,"53566":416,"536":[419,420],"53616":222,"539":[256,451],"5390438":92,"539397":444,"53945":439,"53946":437,"539e":444,"53e":[385,423],"54":[65,420,444,447],"5400":445,"5407363826067":476,"5407363826070":476,"541":406,"5411":416,"5427520e":447,"54282":424,"5438860e":447,"544":[406,444,456],"545":[406,420],"54566271":539,"545y":[39,40],"546":406,"5461745":92,"54676837e":446,"54682":[424,444,456,465],"547":[406,416,444],"5477":444,"54772":444,"54892":424,"548e":444,"549":406,"549019607843138":434,"54e":451,"55":[39,42,83,86,440,441,446,450],"550":420,"55026401977972e":463,"55045":444,"551":[444,502],"55197":[350,542],"552":444,"55275":456,"553":444,"553011":522,"553337":465,"5538":465,"5538942e":447,"554":65,"55410":444,"5545130e":447,"554e":418,"556":[406,420,435,540],"5561760e":447,"5563052715230388":463,"557":[406,451],"55775":444,"558":406,"558169":529,"559":406,"5594":79,"56":[416,441,449,457],"560":[37,444],"5606985":441,"5607778e":447,"56093766":92,"56141":444,"562":444,"5622482":92,"562295":436,"56353481":539,"56393115380234":431,"563e":[420,430],"564":[268,406,420,451],"56413952067279":431,"5644":445,"565":406,"56506":444,"565095":416,"566e":420,"56711":465,"5686274509803928":434,"56871":444,"569":406,"56922612":539,"5692809e":447,"569338":495,"56973":465,"57":[33,420,424,426,430,441,449],"570":461,"57011":430,"571":444,"57185":476,"5719922e":447,"571e":444,"572":421,"57233":465,"57236":[424,444,456,465],"572e":418,"573":[65,420,465],"57300957":158,"5754970e":447,"576":451,"5760":465,"57602":444,"5763635e":447,"576569507447626":440,"5768262e":447,"577398":456,"5779092e":447,"578":[444,539],"579":444,"57944657407":444,"57967":444,"57e":444,"58":[385,388,423,428,431,444,448,449,451,458,463],"580":540,"581":421,"5819e":422,"582":406,"58332":444,"5833e":444,"5835918e":447,"5842497e":447,"5847743781128":440,"585":444,"58540702":92,"5867488e":447,"58693695":441,"58698":444,"586e":424,"587":459,"5882352941176467":434,"588e":444,"58909":440,"58926":424,"5892966e":447,"5895":417,"58e":[436,444],"59":[79,426,436,444,448,458,465],"590":420,"59000":[217,533],"59001":217,"590324":519,"59063":444,"5908":444,"590835686434463":453,"591":[406,444],"59100":[532,533],"59123":[526,527,528],"5915030546513255":437,"5915e":[444,464],"59200":532,"59233":452,"59235":[79,455],"59240":452,"59250":452,"59265":416,"593":406,"59300":441,"59344":465,"59348":465,"59365":533,"594":[406,420],"59400008":92,"59428":444,"59451":424,"5951631e":447,"596":451,"59696":424,"596e":444,"597":456,"597774":447,"59793":444,"598":465,"5985":465,"5987726":92,"599":[406,434,439,451],"599625":455,"59976":444,"599999904632568":444,"599e":424,"59d09m41":444,"59e":[444,451,456],"5a":58,"5e":[423,433,444,451],"5y0fpygp":452,"6":[16,28,29,30,31,32,35,36,37,38,39,40,50,52,53,65,80,82,83,86,95,97,103,113,118,129,130,131,132,133,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188,217,256,337,340,353,356,361,365,366,369,374,382,385,398,400,402,408,409,413,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,467,471,488,492,497,501,521,537,539],"60":[65,86,137,413,421,424,444,446,456],"600":[421,424,429],"6000000000000001":452,"6002e":464,"600661":447,"60075":447,"60090769e":452,"600e":420,"6018166e":447,"601e":444,"602":420,"603":[451,465],"6033":416,"60342":[529,530,531],"60350":418,"603625":447,"604":420,"6046689e":447,"60603928":452,"607843137254942":434,"609e":424,"60e":444,"61":[65,395,421,436,444,451,540],"610":451,"61051":456,"6105760e":447,"611":[424,539],"6116853":444,"611e":444,"6125":458,"612a":114,"613114":437,"613942":452,"61422433":92,"61489":447,"614e":424,"615316":465,"617":421,"617835":447,"6181862e":447,"61862":217,"619":444,"6194453e":447,"6194e":440,"619794257232":463,"62":[420,426,444,457,464],"620":444,"620398":447,"6205":465,"62111":424,"621499":465,"6218742e":447,"6219":418,"622":[406,418],"62258":444,"6227766":449,"62277660168379":449,"6228e":418,"623":[444,465],"62320":418,"623397":447,"62341325":449,"623413251903492":449,"624":451,"624122":430,"624d":24,"62503":444,"62514628":447,"6253652e":447,"6259962e":447,"6266":465,"6267247":465,"627450980392158":434,"628":406,"62842028":445,"628e":440,"63":[416,420,422,445,448,457,458,463,464,486,488,489,492],"630":[78,451,458,463],"6309576500000000":465,"630e":65,"631":[406,428],"631155605":432,"631159205":432,"631170005":432,"631173605":432,"631177205":432,"631180805":432,"6318811e":447,"632627":465,"633":[81,97,99,103,104,155,421,429,448,463,464,488],"63307":79,"63308":[438,464],"633083":450,"63310241699219":429,"63326":424,"6333":89,"63342":465,"633600":451,"635":406,"63500212963":444,"6354":465,"63541":455,"636688324856333":440,"638":451,"639":444,"6390":416,"63902":416,"6397":465,"63e":445,"64":[39,65,79,113,174,388,444,456],"640":406,"6402822e":447,"641":[406,465],"64103":455,"6413":430,"641635917844372":431,"6417":430,"6419578e":447,"642":465,"6429005895278312":453,"643":[30,31,32,33],"64323":424,"64438":456,"6444":416,"645":[445,534],"6451":430,"6464":416,"647":406,"647058823529452":434,"6471115e":447,"647267":512,"64794383e":452,"648":406,"648e":65,"649":406,"64987376":92,"64e":421,"65":[62,373,388,390,445],"650":445,"6509":416,"651":444,"651058":465,"6514":465,"652":429,"6522806":465,"652368617859867":429,"653":[406,417],"65357608e":447,"653e":424,"654":[416,444],"65412":430,"654e":444,"655":424,"655283":424,"6554088e":447,"6556":424,"6556248e":447,"655e":65,"656":539,"65603222222":456,"65603794185":444,"6577182894355391":453,"658":451,"658909145253801e":465,"6589622747787678":453,"659":[420,424],"65e":107,"66":[52,53,388,391,423,436,445,446,451],"660":406,"6604475":430,"660e":465,"660fals":418,"661":406,"66104":416,"662":444,"6623e":428,"663":539,"663742400000000":465,"664502403":455,"664502405":455,"664502408":455,"664502409":455,"664502414":455,"6652219e":447,"6654036168695552":431,"6659":424,"66650390625":417,"6666666666666666":528,"666666666666696":434,"668":466,"66813":430,"669":421,"66984341":447,"66e":[428,445],"67":[17,388,444,465],"670":444,"671616":416,"6720e":440,"6728":[444,465],"673":[432,458,526],"67304":92,"67375":416,"67457342435522e":465,"675573":509,"676836990188792":421,"6768e":421,"677":406,"6772235e":447,"67759236e":447,"678":[82,431],"67824":445,"6784":539,"67861":447,"678684049503813e":421,"679":406,"679478012854058e":421,"6795e":421,"67992517":92,"67e21":443,"68":[65,79,91,136,142,144,145,146,148,212,388,416,444,446,447,449,455,465,540],"680":[421,451],"6803":465,"6812310184489":440,"68125":447,"6823":416,"683":420,"684":155,"68542112":92,"686":421,"68628538586":445,"687":451,"687214":448,"687500":448,"687685":444,"689":[420,426,427,454],"68e":[428,444],"69":[97,424,444,445],"690":65,"690311850083152":431,"690557685186":444,"6909290e":447,"691":444,"691316283079":440,"69138":424,"691680":[97,445,451],"692":424,"693940":428,"694":421,"6953125":445,"69543812":92,"6959369197218669":453,"697317":456,"69735":447,"697e":418,"697fals":418,"6985":417,"6992":430,"6995":440,"699e":424,"6e":[418,444,451],"6h":457,"6th":387,"7":[30,31,38,52,53,65,83,86,113,155,158,215,339,340,349,353,354,361,365,366,369,385,389,390,392,393,399,400,405,406,407,409,410,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,492,495,496,532,539,540],"70":[65,86,97,430,444,445,539],"700":[357,433,450],"70000000e":452,"7000e":452,"70016":430,"7007":430,"701":488,"701283":506,"702":[438,442,444,464],"703":385,"70358483e":452,"704":451,"70428":465,"70437":447,"705":465,"70546":424,"706e":444,"707e":429,"708":[420,421],"708e":424,"709":406,"7097381e":447,"70e":452,"71":[33,423,438,451,540],"710":406,"71067811865478":444,"7116851":452,"712":431,"71220672":445,"7123895e":447,"712e":[438,464],"713":[406,444],"7132e":465,"714":444,"714e":424,"715":465,"716":449,"716062":455,"71693826":[439,453,479],"717":444,"71795506":465,"7184":465,"719":[406,420,451],"7190994e":447,"7195":444,"719e":444,"72":[392,444,448,465],"720":[433,444],"7200":436,"721e":424,"722":451,"72217":465,"722557505166":444,"723":424,"723e":444,"7240965e":447,"725":444,"725490196078432":434,"727":451,"72775":465,"7284447e":447,"73":[416,465],"7303":465,"731":406,"732e":[65,444],"733":[65,406,442],"733360190578827e":463,"734":465,"7350250533013533":453,"7350380e":447,"7351418e":447,"735e":444,"736":[539,540],"737":420,"738":[406,444],"7385727e":447,"738627":502,"739":[406,420],"7395744e":447,"739e":65,"73e":[444,463],"74":[416,426,465],"740":406,"740e":424,"742":451,"743e":444,"744":430,"74427":430,"74465974e":447,"74479":424,"745098039215687":434,"746":406,"7471700e":447,"7479085e":447,"748":444,"748259":428,"75":[65,342,420,465],"750":540,"750552":525,"75267735":465,"753":[406,421],"7537086e":447,"754":406,"75408483":465,"7555":448,"7559":465,"756":444,"7567":416,"7580410e":447,"759":406,"759238":517,"7596682e":447,"75e":[444,464],"76":[431,449],"7613":385,"7613e":425,"761c":28,"762":[406,524],"762199399999986":502,"763":406,"7637308880733709":453,"764":419,"76419591747674":440,"7642":424,"7647":465,"764705882352942":434,"76473":424,"7652512e":447,"765e":424,"766":[406,424],"7660168382":444,"7660365375951":463,"766d":455,"767":406,"76739":444,"768000":[97,445],"768048":92,"7681656e":447,"76837444":441,"7684028":465,"7692170e":447,"76e":451,"77":420,"770":65,"771667":458,"77174":424,"771e":444,"772":[406,416],"77206":465,"77218":424,"773":444,"7733e":444,"77351":424,"77358627319336":417,"774":[406,436],"7743835449219":420,"774e":[424,444],"775":[65,451],"7752244878226383":430,"7755386e":447,"776":456,"7760":465,"7765957e":447,"77678":416,"7769775":455,"777":406,"77751797":92,"777e":[65,418],"777l":35,"778":[406,420,444],"77827941":449,"778279410038923":449,"779":[421,444],"7796942":465,"77e":[423,444],"78":[449,450,457,464],"780":[31,113],"7800e":420,"7804888e":447,"780e":113,"78188":424,"78188096":92,"782":456,"7827941":449,"78279410038923":449,"783":[406,444,465],"78332719":430,"78333":430,"783587001383003":455,"783e":430,"784":[407,421],"7843137254901955":434,"78499999999997":498,"785":498,"7853981633974483":531,"787":[65,155],"7872234642813915e":438,"7875405607868806":453,"7876233e":447,"788":444,"7887840e":447,"788e":444,"789":406,"78910994":92,"7894":430,"78952750835169":440,"78e":451,"79":[417,444],"790":[406,420],"791":407,"7913e":420,"792":[430,435],"7922":416,"793":407,"79432823":452,"79469899":430,"7947":424,"79470":430,"795":420,"796":[407,451],"797":407,"7972":448,"798":407,"798218":416,"798e":440,"7990194e":447,"7997221e":447,"799999952316284":444,"7c":449,"7d":444,"7e":[444,451,452],"7e955f":388,"8":[17,18,21,22,24,25,27,38,40,50,65,83,85,86,97,99,103,104,116,129,130,186,215,217,278,349,353,356,357,366,389,390,393,395,396,400,401,402,405,406,407,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,472,474,483,488,492,495,504,515,523,539],"80":[158,420,422,423,424,445,449,456,488,514],"800932":444,"801":[465,488,534],"801668796295":444,"802":[451,465],"803":[424,502],"8031431e":447,"803195":504,"8037638e":447,"803921568627494":434,"804":451,"804492":436,"806":442,"8062607e":447,"80683246":447,"8069e":428,"807201":465,"8075":[444,465],"8075185":444,"8086":424,"808687936570502e":446,"80871364":92,"8090746":455,"809505":444,"80982039":447,"81":[396,438,504],"810":[407,444],"810000":436,"810e":444,"811":407,"8115337251905373e":446,"812":407,"812075194992371e":446,"8122169596532167e":446,"8122425483643125e":446,"8122e":446,"812358724314062e":446,"8129257829574434e":446,"812951371538087e":446,"813":407,"814":407,"8150":465,"8157971601581226e":446,"816":[407,431],"816e":444,"818388e":465,"81847286":441,"818e":418,"819":444,"81e":504,"82":[65,388,444,492],"820":407,"8205513":455,"820645":499,"820832045863":440,"8222980e":447,"822435":530,"823":420,"82352941176471":434,"824":[122,407,451],"8241471833009617":453,"825":[407,416,444],"8256":465,"826":407,"826414166666":89,"8266":436,"827":407,"8272":467,"82739":424,"8290458e":447,"8293":465,"82946153":465,"82e":429,"83":[30,65,79,81,89,97,99,103,104,155,158,420,421,422,424,429,438,445,448,449,450,457,458,463,464,483,486,488,489,492],"830":407,"8300":465,"831":407,"832":407,"83242471":447,"833":[407,421],"833333333336":441,"833e":424,"834":407,"8341884287660133":453,"8349780e":447,"835":407,"835e":430,"835fals":418,"836":[407,424,440,441,444],"836731":444,"8369650e":447,"836995":523,"837":[407,451],"8377268e":447,"838":424,"83fongt4":448,"84":[24,388,420,422,430,444,451,492],"840":[407,424],"841":444,"84196311":92,"842":[407,444],"84233":424,"843":[59,416,441],"843137254902004":434,"843e":65,"8441040e":447,"844770648146":89,"845":408,"84529":444,"8455480e":447,"845693":416,"846":[424,444,539],"847":407,"8475576e":447,"8475650e":447,"84e":428,"85":[83,86,414,423,430,495,496],"850":[439,442],"851":407,"85157506":465,"8515948e":447,"85188496e":447,"85202":465,"85287":456,"852e":444,"854":407,"854166666664":441,"85416667":439,"85469291":92,"855":407,"85527":430,"85527359":430,"8555500e":447,"855887646638273e":463,"85624":425,"85625":425,"8568":465,"856e":444,"857":440,"8570719e":447,"85722435185":444,"858":[407,440],"858e":444,"859":[407,420],"85900":430,"85900392":430,"85925":465,"8593054":444,"85e":444,"86":[418,420,421,424,449,465,476],"860":444,"861":465,"86111111":439,"861150":418,"8613613e":447,"8620":436,"8623":[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],"862745098039234":434,"864":[407,420,465],"865":[407,424],"86676":456,"8669":416,"8673":430,"868":[407,444],"86831929":92,"8699":416,"8699165e":447,"87":[65,430,449,464],"870":[65,407],"871":407,"872":407,"872e":424,"873":421,"8733348":455,"873581766271":431,"873659477745188":453,"874":[417,419],"875":407,"876":451,"8767":424,"8769240e":447,"87710186":92,"877563":444,"878":[444,451],"87897":430,"87897418":430,"8799800e":447,"87e":21,"88":[388,410,420,422,430,431,444,449,465],"881":[407,416,424],"88113384":426,"8815212313941426":453,"882":[65,424],"882352941176466":434,"883":407,"8834862e":447,"883e":65,"884":407,"88470839":452,"885":407,"885694":515,"886":444,"8865":465,"88781":424,"888":407,"8885138e":447,"889":444,"8893600e":447,"889e":424,"88e":[418,444],"89":[33,421,449],"8908866e":447,"8909e":440,"890e":65,"892":[420,451],"89243456":465,"8926":465,"89287":416,"893":407,"894":418,"8943121e":447,"89492144e":446,"895":441,"8954039e":447,"89595846":452,"897":454,"89709472":465,"897271":496,"898":407,"8986348363207728":453,"89873":430,"8989213":430,"898e":444,"899":[65,426],"8999":430,"899a":256,"89e":445,"8e":[418,428,431,433,451,456,523],"9":[31,33,35,65,79,83,86,215,217,308,314,346,353,354,358,366,385,391,393,404,407,409,412,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,491,497,501,502,510,513,526,539],"90":[57,65,372,423,429,430,444,449,452,467],"900":444,"9002269877996247":441,"900269":447,"9023670e":447,"90242058e":445,"9032163":82,"904":465,"905":444,"9053655e":447,"9053906e":447,"906":[407,444],"90605275e":456,"90685":424,"907":444,"9074812e":447,"9077294":455,"9085e":436,"908700583573673":463,"90e":[97,421,428,445],"91":[423,449,492],"910":420,"911":407,"912":444,"912525e":465,"912779907405":444,"912868843587422e":438,"913":420,"913196574074":438,"914":65,"915":444,"91507":[97,445],"9163195e":447,"91719":445,"918":[65,446,454],"918365":444,"919":407,"919e":[440,444],"91e":451,"92":[423,424,449,455],"920":420,"9205875e":447,"921":421,"9215375e":447,"92234009259":[385,438],"923e":424,"924":421,"9240e":452,"92490":424,"925106":430,"925e":424,"9269494e":447,"9277492e":447,"928":444,"9280475e":447,"929":[416,421],"93":[65,423,424,449,455],"93026":444,"9303":[444,465],"932":407,"93271046296":438,"933":407,"9332549000000":465,"9343":416,"935826709880043":437,"93702":456,"937e":436,"9382336444241555":453,"938e":[430,444],"939":[264,270,524],"9391360e":447,"93988308":92,"93e":444,"94":[423,436,444,449,455,463,465],"940e":444,"940fals":418,"94111838":92,"941176470588236":434,"94186555556":[385,438],"943282347242818":463,"943742":520,"9445e":425,"9453950989269149":453,"945e":424,"9462":430,"946923":251,"947":435,"94722599":430,"94723":430,"948683":416,"9489822e":447,"949":451,"9499210e":447,"94e":[430,444],"95":[33,65,136,142,144,145,146,148,199,200,204,212,215,227,229,237,238,242,248,252,423,424,430,436,444,445,446,449,450,455,495,540],"950":407,"95024543e":446,"950268":463,"952":65,"952427":526,"95288427209348":440,"9529719e":447,"953":451,"954":[445,454],"95421509259":438,"95451985e":113,"9546285068162436":453,"95615":416,"957":65,"9580e":422,"95883":465,"959":[440,442],"959198":444,"959d":[52,53],"96":[388,423,445,449,504],"9606540e":447,"960784313725491":434,"9608912e":447,"96198129629":438,"965e":424,"966":407,"96602":425,"967546":424,"96814":465,"96833546296":[444,456],"969":[430,444],"96e":418,"96r":449,"97":[423,444,447,453,463,464],"97003":465,"97054":424,"970e":444,"97116":430,"973":444,"97369425926":438,"974":421,"9741e":429,"974e":444,"975":407,"97596":424,"976":407,"97749":430,"97749371":430,"9776920e":447,"979":[65,407,449],"97934":424,"97978":79,"97e":444,"98":[79,317,422,423,424,428,437,438,440,447,463],"980":65,"9803921568627443":434,"98049":424,"98149518518":438,"9816452e":447,"982075849517389e":452,"98258":424,"9833462074166":444,"9834338e":447,"98359208475904647":430,"98429":424,"9845":416,"9847406e":447,"985":[407,418],"985502122122975":453,"9864771491419372":463,"9876":416,"988":[407,444,451],"988409870698051e":52,"9890":465,"98e":444,"99":[317,423,424,425,436,464,465],"991":444,"9910796e":447,"9912648e":447,"9912712e":447,"993":417,"9931":465,"994":407,"994e":444,"995":451,"9952623149688797":463,"9969731e":447,"997":407,"9977859e":447,"9978":465,"998":[431,503],"99848e":456,"999":[50,145,148,444],"99996948242188":420,"9999912037958":430,"999999":444,"9999999995":444,"9999999997835":417,"999999999997":432,"9999999999977":444,"9999999999978":439,"9999999999998":444,"99999999999994":444,"99999999999999":[423,444],"99e":444,"9e":[418,444,523],"\u00e0":406,"\u0261\u00e6m\u0259pa\u026a":479,"\u03b3":[122,467,537],"\u03c3":431,"abstract":[56,57,59,94,110,146,154,159,173,175,178,187,360,396,491],"b\u00fchler":388,"boolean":[28,29,30,31,32,35,36,37,39,40,79,83,86,112,114,115,118,119,174,175,176,178,181,183,184,186,187,188,192,203,225,240,365,397,428,444,449,450,451],"br\u00fcgge":[408,409],"break":[197,241,355,363,365,374,394,395,396,505,519],"byte":[16,80,83,86,296,327,349],"carr\u00e9":186,"case":[15,28,29,30,31,32,35,36,37,39,40,65,79,83,86,132,151,163,174,176,182,183,186,188,192,193,195,215,226,248,250,252,261,270,291,308,344,349,350,352,354,357,358,360,361,362,363,364,365,366,368,369,370,371,372,373,375,376,378,379,381,389,390,393,396,402,403,408,414,416,417,420,421,422,423,425,426,428,432,433,436,437,438,440,441,444,446,447,448,449,450,451,452,453,456,458,460,463,465,474,477,478,479,489,492,495,496,497,500,501,505,514,521,536,538,540],"class":[6,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,96,97,98,99,100,101,102,103,104,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,262,263,286,287,290,298,300,323,336,352,355,358,361,362,363,364,365,367,368,369,370,371,372,377,381,385,388,390,391,392,393,394,395,396,397,400,401,402,404,405,406,407,408,409,410,411,413,414,416,418,420,421,422,423,424,425,426,430,432,433,436,438,441,444,445,446,447,448,449,452,455,456,457,463,465,470,474,475,476,477,478,479,481,482,483,484,487,489,490,491,492,493,514,523,535,536,537,538,543],"const":[199,200,201,202,372,433,452,507,525],"default":[11,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,45,46,47,63,65,74,76,78,79,80,81,82,83,84,85,86,87,88,89,91,94,95,96,97,98,99,101,102,103,104,105,106,107,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,150,151,152,155,156,158,159,161,162,163,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,264,268,269,270,275,276,278,289,290,291,296,298,299,305,306,307,308,310,311,318,320,326,331,332,336,338,339,340,342,343,345,346,349,355,361,365,366,372,375,379,385,391,393,394,395,397,400,402,408,409,411,412,413,414,421,422,424,426,428,432,433,439,440,444,445,446,447,448,449,450,451,452,456,463,464,465,475,477,479,486,489,490,491,492,495,496,497,504,510,513,514,538,542],"do":[13,16,19,20,28,29,30,31,32,35,36,37,39,40,79,80,90,95,132,143,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,302,342,350,352,354,355,356,359,363,364,365,366,367,368,369,372,373,376,378,379,394,418,420,421,423,424,425,426,428,430,431,432,436,440,441,443,444,445,446,448,449,450,451,452,455,456,463,464,465,475,479,491,535,538,541,542],"enum":[90,138,293,294],"export":[80,83,86,97,99,112,113,352,373,376,381,383,394,404,411,412,421,452,457,458,463],"final":[118,349,350,356,357,359,362,363,365,366,368,370,372,374,375,379,381,383,394,395,396,416,417,418,420,428,430,432,433,438,439,441,443,445,446,448,450,453,456,460,463,464,465,475,476,477],"float":[19,20,26,28,29,30,31,32,35,36,37,39,40,42,50,51,79,83,84,86,91,97,99,103,104,106,107,111,113,114,116,118,119,120,121,126,127,129,130,131,132,133,135,136,137,139,142,144,145,146,147,148,150,152,161,174,175,176,178,180,183,184,186,187,188,189,190,192,193,195,197,198,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,250,251,252,253,254,260,261,262,263,266,271,278,289,296,305,307,338,339,340,448,455,456,538,542],"function":[6,15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,46,78,79,81,83,84,86,95,96,97,98,99,102,103,104,107,112,118,121,122,123,124,127,135,136,137,139,140,142,144,145,146,148,175,176,178,180,184,187,188,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,239,240,241,243,244,245,246,249,253,258,262,263,271,291,299,300,302,303,307,308,317,334,337,338,342,344,346,348,352,355,359,360,361,362,363,364,367,368,369,370,372,373,374,376,377,381,385,386,388,390,391,392,393,394,396,397,400,401,402,404,405,406,407,408,409,410,413,414,416,420,421,422,423,424,428,430,431,432,433,434,445,446,447,448,449,450,451,452,458,460,463,464,465,467,468,469,474,475,476,478,479,488,490,492,496,497,499,526,535,536,537,538,539,541,543],"gr\u00e9aux":414,"import":[19,20,26,28,29,30,31,32,35,36,37,39,40,64,65,78,79,80,81,82,83,84,85,86,89,96,97,99,103,104,107,111,113,115,117,121,130,132,134,135,136,137,143,145,155,158,174,175,176,178,181,184,186,187,188,194,196,197,198,201,205,207,208,209,213,217,219,220,222,223,226,228,230,231,232,236,241,243,244,245,246,249,253,256,260,268,269,298,308,317,328,329,334,337,339,340,342,344,350,352,354,355,356,358,359,360,361,362,363,364,365,368,370,371,372,373,374,375,376,377,378,384,385,396,406,408,413,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,468,469,471,472,473,475,476,477,479,481,482,483,485,486,488,489,490,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,536,538,539,540,542],"int":[16,17,18,19,20,21,22,24,25,26,27,33,34,38,42,45,46,47,56,57,58,59,60,61,62,63,64,65,67,78,79,80,81,83,84,86,88,89,97,98,99,102,103,104,105,107,109,113,114,115,118,119,121,126,127,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,152,155,158,162,163,168,173,174,175,176,177,178,179,180,183,184,185,186,187,188,192,193,194,196,197,198,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,254,258,259,260,262,263,267,268,269,278,289,290,296,300,302,305,306,307,308,310,311,336,342,349,363,407,426,446,469],"jos\u00e9":[357,365,369,389,390,391,392,393,394,395,396,397,400,408,409,410],"kh\u00e9lifi":[375,411,413,414],"l\u00e9a":[390,392,393,394,397,405,406,407,408,409],"l\u00f3pez":408,"lemi\u00e8r":408,"long":[349,352,354,356,363,365,368,369,371,374,376,402,411,444,460,491],"n\u00f6the":[400,402,403],"new":[16,28,29,30,31,32,35,36,37,39,40,78,79,80,82,83,84,86,87,96,97,99,103,104,112,113,114,118,129,130,131,132,135,137,139,142,147,158,159,163,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,203,225,240,250,278,302,327,334,352,354,355,356,357,358,359,361,362,363,366,367,368,369,370,371,372,374,375,376,378,379,380,381,383,384,385,386,387,388,401,404,428,444,445,449,451,452,476,477,479,523,537],"null":[112,113,114,115,118,119,260,262,263,421,425,426,428,431,452,463,477,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,540],"public":[6,339,340,352,354,363,368,371,374,379,404,417,429,438,439,536,543],"r\u00e9gi":[355,358,359,363,364,366,368,370,371,372,373,374,376,388,389,390,391,392,393,394,395,396,397,398,399,400,402,403,404,406,407,408,409,410,411,412,413,414],"r\u00e9my":[367,400,402,403,411],"return":[16,19,20,26,28,29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,56,57,58,59,60,61,62,63,64,65,76,78,79,80,81,82,83,84,85,86,87,88,89,91,94,95,96,97,98,99,100,101,102,103,104,106,107,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,152,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,257,259,260,261,262,263,264,266,267,268,269,270,275,276,277,278,280,282,284,285,289,291,296,300,302,305,306,307,308,309,310,311,312,313,316,317,319,320,321,330,331,332,333,334,337,339,340,342,344,345,355,359,360,361,362,363,364,372,373,376,377,393,394,397,400,403,409,411,420,422,430,434,439,440,444,445,446,448,449,450,452,465,469,491,492,523,540],"rub\u00e9n":408,"short":[349,350,353,354,358,363,366,369,372,375,397,437,439,456,479,480,537,540,543],"sip\u0151cz":411,"static":[17,21,22,24,25,27,28,29,30,31,32,35,36,37,39,40,98,100,101,102,107,111,112,113,114,115,118,119,121,136,144,155,161,162,174,175,176,178,184,185,187,188,197,199,200,201,202,204,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,230,231,232,233,237,238,239,241,244,245,246,251,253,254,346,357,360,379,391,408],"super":[174,176,244,245,246,432,458,493,524,526],"switch":[260,349,356,359,402,406],"true":[15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,37,39,40,45,76,78,79,80,82,83,84,86,88,91,95,96,97,98,99,101,102,103,104,105,106,111,112,113,114,118,119,121,125,129,130,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,155,161,162,165,166,168,169,171,174,175,176,178,179,180,181,182,183,184,186,187,188,190,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,275,278,286,287,290,308,318,320,337,342,346,349,355,362,363,364,365,372,373,376,391,395,396,407,409,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,456,457,462,463,464,465,469,475,477,479,484,489,491,492,494,495,496,499,500,502,523,537,540,542],"try":[16,80,175,176,178,184,187,188,349,350,359,363,369,378,379,385,390,418,420,422,432,433,438,444,446,449,465,538],"var":[269,381,383],"vin\u00edciu":407,"while":[83,86,99,175,176,178,180,184,187,188,349,352,354,355,356,358,361,362,364,368,370,371,373,374,375,378,379,381,416,420,422,425,433,440,441,445,447,448,449,451,452,475,477,479,490,492,538],"z\u00e9":407,A:[16,19,20,28,29,30,31,32,35,36,37,39,40,78,79,80,83,84,85,86,87,94,95,96,97,99,102,103,104,112,113,121,126,127,173,174,175,176,178,180,181,182,183,184,185,186,187,188,193,194,196,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,229,230,231,232,233,236,237,238,239,241,244,245,246,248,249,250,251,252,253,262,263,271,278,287,338,339,340,342,343,350,352,354,355,357,358,359,360,361,362,363,364,365,366,367,368,370,372,373,374,375,376,377,378,387,389,393,394,395,396,397,400,402,403,406,407,408,409,411,413,414,416,417,420,422,424,428,430,431,434,437,438,439,440,441,443,444,445,446,448,449,450,451,452,453,455,456,457,458,460,464,465,467,475,476,477,479,480,488,489,491,492,495,532,533,536,537,540],AND:[450,451],And:[256,349,352,367,369,375,380,417,418,420,421,428,432,434,440,445,446,449,450,452,455,457,463,464,465],As:[79,278,308,349,350,352,357,361,362,363,365,367,375,376,378,385,390,409,416,417,420,421,422,424,425,426,430,432,433,437,438,439,440,443,444,445,446,448,449,452,456,458,463,465,479,488,540],At:[240,363,366,375,376,379,393,432,449,455,484,536],But:[349,354,357,363,368,376,379,382,385,409,420,421,446,455,463,467,538],By:[19,20,26,50,63,83,86,96,97,99,103,104,111,114,118,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,152,155,162,172,174,175,176,178,184,187,188,197,198,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,230,231,232,236,237,238,241,242,243,244,245,246,248,249,252,253,346,349,375,376,377,394,395,397,432,433,437,446,449,464,486,490,495,496,497,541],For:[11,28,29,30,31,32,35,36,37,39,40,42,78,83,84,86,90,94,96,97,99,103,104,107,109,111,112,113,114,115,118,119,120,121,132,133,134,140,145,148,155,160,162,165,166,168,169,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,192,197,198,199,200,201,202,203,204,205,207,209,210,212,213,214,215,216,217,218,220,225,226,227,228,229,230,232,233,237,238,239,241,242,244,245,246,248,252,253,264,268,270,275,281,296,348,349,350,352,354,355,357,358,359,360,361,362,363,364,365,366,368,369,370,372,374,375,376,377,378,379,380,381,382,383,385,387,390,391,392,394,395,396,397,400,407,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,432,434,436,437,438,439,440,443,444,445,446,447,448,449,450,451,452,453,455,456,457,460,463,464,465,467,474,475,477,479,489,491,492,496,501,533,537,538,540,541,542],IN:[87,95,225],If:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,45,76,78,79,80,81,82,83,84,86,88,89,91,95,97,98,99,101,102,103,104,105,106,109,111,112,113,114,116,118,121,125,126,132,133,134,140,143,145,148,149,151,152,155,157,158,161,162,165,166,168,169,170,173,174,175,176,177,178,179,180,181,182,183,184,186,187,188,192,193,195,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,261,275,278,290,291,296,335,338,342,343,344,345,349,350,351,352,354,356,357,362,363,365,366,367,370,371,372,374,375,378,379,380,381,382,383,384,385,389,390,391,408,409,410,416,417,418,420,422,423,425,428,430,433,436,438,439,440,441,444,445,446,448,449,450,451,452,455,456,457,465,477,479,490,492,497,499,512,538,539,540,541],In:[15,28,29,30,31,32,35,36,37,39,40,65,79,83,84,86,89,96,98,102,113,132,151,174,176,179,182,188,193,195,252,261,291,349,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,369,370,371,372,373,374,375,376,377,378,379,381,382,385,390,391,392,393,394,395,396,397,400,411,414,416,417,418,420,421,422,423,424,426,428,429,431,432,433,434,436,437,438,439,440,441,443,444,445,446,448,449,450,451,452,453,456,457,463,464,465,475,477,479,484,487,488,489,491,492,493,495,496,501,514,533,536,537,538,539,540,541,542],Is:[363,492],It:[15,19,20,26,27,28,29,30,31,32,35,36,37,39,40,86,97,99,103,104,112,126,132,136,143,144,145,146,148,158,161,165,166,171,175,176,178,180,183,184,187,188,190,197,198,201,204,205,207,208,209,213,217,219,220,222,226,228,230,236,240,241,243,244,245,246,249,253,266,268,269,286,300,305,349,350,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,373,374,375,376,377,379,380,386,390,391,392,393,397,400,402,403,404,409,411,413,414,416,421,426,429,431,433,436,437,441,444,445,446,448,449,450,452,455,456,457,458,463,464,465,467,468,475,476,478,479,483,484,486,488,492,505,508,509,511,512,516,517,519,520,521,522,535,536,537,538,539,540,542],Its:[132,361,375,376,400,402,434,439,464,481,482,483,485],NOT:[450,479],No:[28,29,30,31,32,35,36,37,39,40,82,360,370,373,374,408,410,415,434,444,446,448,449,465],Not:[99,103,104,177,183,185,357],ON:[97,99,120,162,163,164,172,347,355,402,416,420,423,426,430,438,439,441,446,448,479,488,537,539,541],OR:[97,103,445,450,451],Of:[349,352,385,428,445,449,456,538,541],On:[59,150,156,157,160,269,349,350,355,357,364,365,378,381,382,383,404,428,429,446,460,540],One:[31,32,37,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,96,97,99,103,104,203,225,304,349,350,355,357,358,359,360,363,365,366,367,375,414,417,421,426,438,448,449,450,463,465,488,492,514,538,540],Ones:278,Or:[350,368,369,382,421,428,445,449,455,456,477],Such:[361,483],That:[19,20,192,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,349,350,354,363,366,369,446,465,538],The:[11,15,16,19,20,23,26,27,28,29,30,31,32,35,36,37,39,40,42,52,53,57,59,62,67,76,78,79,80,81,82,83,84,85,86,87,89,90,95,97,99,100,101,102,103,104,107,111,112,113,114,115,116,118,119,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,152,156,161,162,165,166,167,170,171,172,173,174,175,176,177,178,180,182,183,184,185,186,187,188,192,193,194,195,196,197,198,199,200,201,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,255,256,260,262,263,264,266,267,268,269,270,278,290,296,298,299,302,317,332,333,335,337,338,339,340,342,343,344,345,346,348,349,350,351,352,353,354,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,381,382,383,386,389,390,392,393,394,395,396,397,400,402,403,404,408,409,410,411,412,413,414,416,417,418,420,421,422,423,424,425,426,428,430,432,433,434,436,437,438,439,440,441,443,444,445,447,448,449,450,451,452,453,455,456,457,458,460,463,464,465,467,468,469,470,474,475,477,478,479,481,482,483,484,485,486,487,489,490,491,492,493,495,497,499,500,501,504,510,512,513,514,523,533,535,536,537,538,539,540,541,542,543],Their:450,Then:[65,97,101,103,352,354,359,362,364,365,366,367,373,417,420,428,429,432,436,438,446,450,452,464],There:[83,86,126,349,350,354,355,356,358,363,364,365,366,367,368,369,370,373,376,379,382,408,430,434,437,443,444,445,446,448,450,451,457,467,475,476,479,492],These:[90,180,255,349,350,354,355,360,362,363,364,365,369,370,375,392,394,395,396,400,408,414,416,429,431,432,437,440,443,445,449,452,453,457,460,467,484,489,491,492,539,540,541],To:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,79,80,83,86,95,102,111,114,118,174,186,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,255,339,340,351,352,356,357,360,361,362,364,365,370,371,372,373,374,375,379,380,382,384,385,386,390,391,392,395,396,400,402,408,409,411,414,416,417,418,420,421,422,423,425,426,428,430,431,432,433,434,436,437,438,439,440,444,445,446,447,448,449,450,451,452,453,455,456,460,463,465,475,476,477,480,484,486,488,489,495,536,538,539,540],With:[79,349,358,359,375,396,409,475,540],_0:[50,51],_1:[99,104,476],_2:[99,104],_:[97,103,116,213,232,349,363,373,375,423,426,443,444,446,451,475,488],__:378,__all__:349,__array__:278,__array_ufunc__:[432,458,526],__attributes__:[83,86],__call__:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,35,36,37,39,40,197,198,199,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,254,290,355,360,377,396],__class__:[349,373,443,473],__dict__:[16,80,349],__enter__:327,__eq__:402,__exit__:327,__fields__:[16,80,376],__getitem__:[359,360,361],__init__:[16,80,183,252,349,355,361,373,411],__int__:296,__len__:359,__main__:[235,349,462,538],__name__:[349,426,438,439,440,443,462,473,538],__neq__:402,__pydantic_fields_set__:[16,80],__repr__:[349,395,409],__str__:[349,361,376,392],__subclasses__:443,__version__:384,_basemodel__context:[16,80],_build:[350,379],_check_interv:414,_compute_flux_spati:400,_covari:[203,225],_data:373,_dom_class:[428,436,449,463,464],_energy_t:373,_errn:[114,115,118,119],_errp:[114,115,118,119],_evaluate_timevar_sourc:414,_f_cash_root_cython:274,_factr:446,_fields_set:[16,80],_i:116,_k:[97,103,475],_l:475,_lat:349,_lon:349,_map:342,_model:112,_new_attribut:349,_old_attribut:349,_parameter_units_for_data_unit:[28,29,30,31,32,35,36,37,39,40],_parent_namespace_depth:[16,80],_phi:349,_prior:377,_propagate_error:399,_reco:349,_repr_html_:349,_row_index:67,_sample_coord_time_energi:414,_scan:446,_time_group:373,_time_t:373,_true:349,_type:377,_types_namespac:[16,80],_was_:[16,80],_wc:502,_weight:377,a_:[99,104,135,481,484,540],a_off:540,a_on:540,aa:[83,86,278,375],aaguasca:411,ab:[28,30,31,32,33,35,36,37,38,39,40,50,52,53,57,58,60,61,63,79,84,107,114,135,188,193,195,222,255,256,269,443,444],abc:[18,56,87,94,95,110,154,173,178,179,182,194,203,225,448],abcmeta:448,abdalla2018:[488,489,537],abeysekara:59,abil:373,abl:[28,29,30,31,32,35,36,37,39,40,359,364,367,417,436,438,439,460,538],about:[11,13,16,80,130,135,212,217,308,349,352,354,358,365,366,368,369,370,374,375,377,378,379,382,384,385,404,405,409,410,411,418,424,425,426,429,430,432,444,449,452,456,464,465,467,475,476,538,541],abov:[29,44,52,53,79,111,113,116,120,121,126,150,185,338,340,349,350,355,358,359,361,363,365,366,367,368,369,373,381,382,385,416,430,432,433,434,438,441,446,448,449,450,452,453,455,456,457,463,473,475,476,483,492,537,538,539,540,541],abramowski:135,abruptli:[349,374],abs_path:286,absenc:[364,426,448,450,488,539],absolut:[78,86,100,129,130,131,132,135,137,139,142,147,175,176,178,180,184,187,188,282,308,326,330,477],absolute_tim:542,absopt:367,absorb:[253,359,372,407,504],absorbedspectralmodel:[394,407],absorbt:372,absorpt:[205,367,397,407,493,524],abstractsetintstr:[16,80],acada:375,academ:122,accept:[16,28,29,30,31,32,35,36,37,39,40,79,80,83,86,99,100,104,150,167,172,174,175,176,178,186,187,188,203,225,263,347,353,354,355,356,357,358,361,362,363,365,366,367,368,369,370,372,374,375,376,377,401,405,414,416,421,422,423,426,430,433,445,448,449,456,475,491,496,514,539,540],acceptance_off:[99,100,104,150,160,361,416,417,420,423,426,475,540],access:[28,29,30,31,32,35,36,37,39,40,56,58,60,61,63,64,65,78,79,83,84,86,97,143,173,174,183,186,269,286,349,357,358,359,360,362,365,373,379,381,389,390,397,404,405,407,408,414,418,420,421,422,428,444,446,447,451,452,455,458,463,464,465,474,479,490,491,492,536],accessor:449,accident:[456,538],accord:[15,28,29,30,31,32,35,36,37,39,40,53,70,83,86,97,99,103,104,107,112,133,143,150,174,180,193,195,275,338,359,360,363,364,367,373,375,394,403,426,438,445,448,452,453,460,475,476,479],accordingli:[361,375,391,397,450],account:[97,99,103,104,111,152,168,203,225,240,262,263,269,324,357,362,365,373,375,396,413,416,417,422,426,428,434,440,441,446,448,450,464,475,477,539,540],accur:[367,410,428,446,486],accuraci:[363,446,479],aceptance_off:361,acero:[367,390,392,394,397,400,402,407,409],achiev:[16,80,107,150,339,340,349,358,359,360,361,362,363,365,372,375,397,449,452,453,489],acknowledg:[352,375,386],acquir:385,acquisit:537,across:[28,29,30,31,32,35,36,37,39,40,95,107,145,148,349,358,361,379,431,440,451,456,475,491,499,537],act:[86,365,451,501],action:[150,354,359,365,375,379,400,440],activ:[86,269,352,366,380,381,383,384,385,394,411,437,479],actual:[163,324,325,326,348,349,350,354,358,360,362,364,365,373,374,376,378,423,433,436,439,445,446,448,449,450,456,457,464,465,486,488,537,538,540,542],ad:[28,29,30,31,32,35,36,37,39,40,41,59,78,79,83,86,97,99,103,104,113,175,176,178,183,184,187,188,349,350,352,354,355,357,358,359,361,362,363,364,365,366,368,369,373,375,389,390,391,393,394,395,397,400,402,404,405,406,407,408,409,410,411,413,414,422,428,429,447,448,451,452,453,457,475,492,541],adapt:[107,150,192,358,359,362,363,368,369,371,372,375,378,385,390,391,393,394,395,397,398,400,403,406,407,409,411,413,414,445,447,449,450,489],adaptiveringbackgroundestim:[160,355],adaptiveringbackgroundmak:[153,394,489],adass:369,add:[13,15,16,28,29,30,31,32,35,36,37,39,40,41,42,43,44,75,79,80,83,84,86,94,95,96,97,98,99,101,102,103,104,112,113,129,130,132,133,134,135,136,137,140,142,143,144,145,146,148,152,175,176,178,182,184,187,188,203,225,240,275,337,346,348,349,350,352,354,357,358,359,361,362,363,364,365,366,367,368,369,372,373,375,377,378,388,389,390,391,392,393,394,395,396,397,400,401,402,404,405,406,407,408,409,410,411,412,413,414,416,417,423,428,429,432,436,438,441,445,447,448,449,450,452,455,465,469,470,479,492,506,538,541],add_artist:[452,495,496],add_cbar:[97,99,103,104,113,129,130,132,135,136,137,142,143,144,146,175,176,178,184,187,188,337,424,425,426,428,430,436,441,443,445,447,448,449,451,452,456,457,463,464,492,494,495,496,499,500,502],add_column:[83,86],add_enabled_unit:[416,423,425,428,430,436,440,455],add_index:[83,86],add_loc:349,add_row:[83,86],add_subplot:337,addit:[16,19,20,26,43,80,83,84,86,97,99,103,104,111,114,119,147,175,176,178,181,184,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,352,353,354,358,359,360,361,363,364,365,366,368,369,370,373,374,375,376,378,379,380,381,382,383,391,392,394,396,397,400,401,408,409,411,414,418,422,434,441,444,445,446,449,451,452,455,456,464,465,475,477,479,486,491,492,535,541],addition:[119,361,445,446,449,451,452],address:[358,361,362,363,365,375,478],adequ:183,adher:352,adjac:[180,400,449,488],adjust:[16,65,175,176,178,184,187,188,358,360,372,421,445,452,453,463,479,486],admit:369,adonath:355,adopt:[37,362,365,370,422,432,433,443],adsab:[28,30,31,32,33,35,36,37,38,39,40,50,52,53,57,58,60,61,79,84,107,114,135,222,255,256,269],adult:349,advanc:[361,365,366,369,377,381,447,449,479,537,538],advantag:[357,363,366,373,400,449,514,538],advanteg:361,advertis:378,advic:[349,375],advis:[350,375,446,460],advoc:349,aeff2d:134,aeff:[16,78,83,84,99,104,135,161,169,359,361,362,396,397,417,420,421,422,425,426,428,430,439,447,448,455,457,458,463,464,481,486,488,489,537],aeff_2d:[78,83,135,455,458],aeff_3d:447,aeff_ev:447,aeff_new:447,aeff_perc:[161,417,420,421,430,439,448,457,488],aegi:205,af:345,affect:[349,357,361,363,374,391,392,403,412],affili:[363,375,411],afmhot:[451,465],aforement:375,after:[16,45,50,51,52,53,80,86,95,97,99,103,145,148,269,290,308,330,333,349,352,354,357,358,360,362,363,364,365,367,368,369,371,372,373,374,375,376,378,379,380,385,389,396,398,399,400,402,408,410,411,412,418,428,437,439,446,449,451,455,457,458,479,538,542],ag:[20,43,44,45,50,51,52,53,54,282,349,469],again:[97,99,103,104,145,352,359,361,363,365,370,376,380,395,396,399,406,411,418,420,421,428,433,434,449,452,456,463,465,492,538],against:[16,80,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188,350,352,366,372,379,444,456,463,474,477],agent:365,agglom:13,aggreg:376,agil:362,agn:[122,267,363,420,437,438,440,455],agnost:446,ago:356,agre:[177,180,352,354,363,375],agreement:[349,352,370,441],aguasca:[402,411,412,413,414],aharonian:431,ahead:[363,389],ahelp:192,aim:[358,359,375,428,432,443,453,467,537],air:455,ait:[174,175,176,462],aitoff:363,aka:465,al:[26,33,59,122,135,205,268,269,359,424,431,437,467,537],albert2007:537,albert:537,alexi:[397,400],algorithm:[28,29,30,31,32,35,36,37,39,40,59,83,86,107,121,150,192,349,355,361,362,363,368,376,392,397,405,406,407,424,437,446,457,477,491,536,540],alia:[16,56,80,352,465],alias:[16,56,80,446],align:[83,86,95,129,130,131,132,135,136,137,138,139,142,144,146,147,174,175,176,178,180,184,186,187,188,349,447,450,452],alisha:402,all:[6,16,19,20,26,28,29,30,31,32,35,36,37,39,40,69,70,71,72,73,74,75,76,78,79,80,83,84,85,86,87,90,91,95,97,99,101,103,104,111,112,113,114,118,119,121,129,130,131,132,133,134,135,136,137,139,142,144,145,146,147,148,149,155,162,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,192,193,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,260,321,322,323,324,325,326,336,345,348,349,350,352,354,355,356,357,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,379,380,381,382,384,389,390,391,392,393,394,395,396,397,400,402,403,405,406,407,408,409,410,411,412,413,414,417,420,421,422,425,426,428,430,431,432,436,438,440,441,444,445,446,447,449,450,451,452,455,456,457,458,460,462,463,464,465,469,475,477,479,488,490,491,492,493,514,535,538,539,540],all_quant:[112,113],allclos:[129,130,131,132,135,136,137,139,142,144,146,147,175,176,177,178,180,184,185,187,188,324],alloc:[176,184,188],allow:[16,26,28,29,30,31,32,35,36,37,39,40,56,80,83,86,107,112,113,120,121,145,148,174,301,349,352,354,355,356,359,360,361,362,363,365,366,367,368,371,372,373,374,375,376,377,378,379,380,381,382,391,393,394,395,396,397,400,402,409,410,411,414,416,420,431,440,445,446,447,448,449,450,464,475,477,479,486,491,492,535,536,538,543],allow_pickl:[16,80],allowed_channel:[26,443],allski:[79,449],alma:368,almeida:397,almost:[348,350,352,363,456,465],alon:354,along:[66,96,112,113,117,129,130,131,132,135,136,137,139,142,143,144,146,147,175,176,178,184,186,187,188,267,268,269,289,290,300,310,311,358,359,373,411,414,425,434,444,445,447,448,451,452,476,491,492,507,537],alpha:[21,27,28,48,97,99,103,104,150,172,208,209,218,219,220,233,263,273,275,346,347,361,372,374,400,407,416,417,418,420,422,423,426,428,429,433,441,444,446,495,504,506,508,510,512,513,514,529,530,539,540,541],alpha_1:[99,104],alpha_2:[99,104],alpha_:[99,104],alpha_norm:[205,372,504],alphabet:[366,375,390,391,392,393,394,395,396,397,400],alreadi:[15,16,26,28,29,30,31,32,35,36,37,39,40,80,83,86,192,248,249,250,252,349,355,356,357,360,361,362,363,364,366,369,370,371,373,376,378,379,409,418,422,424,433,441,443,444,445,449,450,451,452,455,456,457,465,467,492,502],also:[15,19,20,26,28,29,30,31,32,35,36,37,39,40,83,86,90,107,111,112,113,114,126,147,152,158,173,180,182,183,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,261,278,286,291,349,350,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,369,370,371,372,373,375,376,377,378,379,380,381,382,383,384,385,386,390,391,392,393,394,395,396,397,400,408,409,410,414,416,417,420,421,422,423,424,428,430,431,432,433,434,437,441,443,444,445,446,447,448,449,450,451,452,455,456,463,464,467,475,476,477,478,479,486,488,491,492,514,517,535,537,538,539,540,542],alt:[79,81,84,89,90,349,542],alt_pnt:86,altaz:[79,81,89,138,349,447,542],altaz_fram:[79,89],altaz_from_t:[79,89],altaz_interpol:89,altern:[78,260,348,349,352,354,358,382,400,420,422,424,431,444,446,447,449,451,455,475,476,538],although:[349,362,363,364,366,369,373,446,455,500,501,535,542],altitud:417,alwai:[79,83,86,132,180,183,190,193,195,211,349,350,352,355,356,357,359,360,361,363,366,374,375,382,389,396,411,412,414,423,424,428,436,443,446,448,449,451,453,460,477,491,492],am:358,ambigu:[363,408],amend:352,among:[78,83,86,97,99,103,104,365,369,370,372,377,397,446,537],amount:[356,363,377,479],amp:[28,29,30,31,32,35,36,37,39,40,239,531],ampl_2:[136,447],ampl_3:[136,447],amplitud:[28,29,30,31,32,35,36,37,39,40,48,49,66,96,114,121,175,176,178,187,188,197,204,207,209,213,220,223,230,231,232,239,241,244,245,246,256,260,271,360,361,364,372,417,418,420,421,422,423,424,425,428,429,430,431,432,433,436,437,438,439,440,441,444,445,446,451,452,455,456,463,464,465,477,494,495,496,497,499,500,501,502,504,505,506,508,509,511,512,514,515,516,517,519,520,521,522,525,526,527,528,529,530,531,532,533,540],amplitude_maximum_signific:437,amplitude_maximum_vari:437,amplitude_ref:441,an:[6,15,19,20,28,29,30,31,32,35,36,37,39,40,47,50,64,67,68,69,70,71,72,73,74,75,76,77,78,79,82,83,84,85,86,87,88,89,97,98,99,102,103,104,106,112,113,114,115,116,118,119,121,125,126,127,130,132,133,134,135,137,140,143,145,147,148,151,155,158,160,163,165,166,169,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,192,193,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,229,230,231,232,233,236,237,238,239,240,241,242,244,245,246,248,251,252,253,258,267,269,276,278,282,296,307,311,327,333,339,340,342,345,348,350,352,354,355,356,357,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,378,379,380,381,382,385,386,389,390,393,394,395,396,397,400,402,403,404,407,408,409,411,412,414,417,418,420,421,422,423,424,425,426,428,429,430,431,434,436,437,438,439,440,441,444,446,448,449,451,452,453,455,456,457,458,460,462,463,464,465,467,469,474,475,476,477,479,480,481,482,483,484,485,486,488,490,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,537,538,539,540,541],anaconda:[366,380,381],analog:[83,86,175,176,178,184,187,188,370,492],analys:[78,348,349,358,359,360,361,363,367,369,371,372,377,385,386,392,393,394,396,397,407,409,412,420,421,428,439,440,443,444,450,452,455,456,463,464,467,475,538],analysi:[6,16,57,65,68,70,71,79,97,99,103,104,157,161,348,349,350,353,359,360,361,362,363,364,365,367,368,369,370,371,372,376,378,379,380,381,382,385,386,389,390,391,393,394,395,400,402,404,405,406,407,408,409,410,411,414,418,419,424,425,426,431,432,434,435,436,440,442,443,444,445,446,448,449,450,451,452,453,455,456,457,458,464,465,467,476,477,479,480,484,486,487,488,489,491,492,517,535,537,538,540],analysis3d:410,analysis_1:[463,466],analysis_1d:438,analysis_2:[350,464,466],analysis_3d:[409,428,435,438],analysis_joint:428,analysis_mwl:[429,435],analysis_stack:428,analysisconfig:[15,350,421,425,426,428,438,463],analyt:[19,20,26,28,29,30,31,32,35,36,37,39,40,135,136,144,146,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,362,367,447,452,477,497,541],analyz:[359,457,537],andrea:362,andrew:409,angl:[16,17,18,21,22,24,25,27,33,34,38,66,79,85,86,91,97,99,107,111,117,121,129,133,134,135,136,137,140,142,143,144,145,146,148,151,158,159,161,163,173,174,176,181,183,186,188,189,200,204,212,215,227,229,237,238,240,242,248,250,252,255,306,336,349,355,363,365,372,376,388,390,391,392,409,416,417,420,423,429,432,433,439,444,449,450,452,453,455,456,479,484,488,491,492,495,496,497,500,501,537],angle_incr:158,angular:[23,97,99,116,133,134,140,145,148,151,176,183,186,188,204,212,215,250,282,285,349,365,413,422,433,441,484,485,537],angular_extens:41,angular_s:492,angular_separ:[372,413,452],ani:[16,28,29,30,31,32,35,36,37,39,40,78,79,80,83,86,109,118,134,157,175,176,178,183,184,186,187,188,278,301,334,348,349,350,352,354,355,356,357,360,361,362,363,364,365,366,367,368,370,372,375,376,378,381,382,383,384,385,389,390,408,409,410,421,430,431,434,438,441,445,448,449,451,452,455,456,457,458,463,464,465,467,476,477,489,491,492,506,538,542],ann:[23,408],anna:349,annihil:[17,18,19,20,21,22,23,24,25,26,27,411,452,467],annoi:[349,538],annot:[16,28,29,30,31,32,35,36,37,39,40,80,338,376,446,495],announc:[349,354,356,363,365,368,370,372,374,375,378,379],annuli:[434,492],annulu:[115,310,492],anonym:352,anoth:[19,20,26,79,82,83,86,97,99,103,104,133,134,135,140,145,147,148,177,180,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,349,363,364,365,367,369,370,373,376,380,385,394,409,441,445,449,450,452,492,538],another_posit:488,answer:[446,479],anti:[449,450],anticip:358,antigrav:382,anymor:411,anyon:[354,356,455],anyth:[132,365,538],anytim:[352,391],anywai:[352,363],anywher:[363,366,368,475],ap:[354,366,374],apart:364,ape18:374,apertur:537,api:[211,353,355,358,359,360,361,362,363,365,368,369,370,374,375,386,387,389,390,391,392,394,395,396,397,400,404,408,409,417,420,421,424,430,432,439,445,449,450,451,452,455,456,463,465,466,475,476,477,478,486,487,491,535,536,537,538],apj:[264,270],aplpi:409,apologis:[389,390,409],app:[83,86,379,385,408],appear:[83,86,349,350,357,363,376,403,414,444],append:[83,86,87,95,173,174,175,176,178,183,184,186,187,188,225,361,362,364,395,414,417,420,422,423,428,429,430,432,437,439,440,441,445,446,448,451,452,453,488],append_ax:[129,130,132,135,136,137,142,144,146,188,337],appendix:[30,121,135,222,256,271,424],appl:[381,382,383,385],appli:[28,29,30,31,32,35,36,37,39,40,79,82,83,85,86,96,97,98,99,103,104,107,111,113,114,118,121,132,133,134,140,145,147,148,152,158,161,162,175,176,178,179,183,184,186,187,188,193,195,203,211,225,240,253,261,262,263,290,291,334,338,346,349,355,356,359,360,362,364,367,373,374,375,397,402,407,408,409,410,414,416,420,422,432,439,440,441,445,448,449,450,451,452,455,458,464,465,477,479,523,536,539],applic:[28,29,30,31,32,35,36,37,39,40,66,83,86,349,360,375,377,396,437,446,491,537],apply_async:[298,299],apply_hysteresis_threshold:450,apply_irf:[240,396],apply_mask:181,apply_psf:[360,393],apply_standard_scal:91,apply_threshold_sensit:111,apply_union:190,approach:[83,86,121,349,355,357,361,365,370,373,374,376,414,416,420,448,460,537,540],appropri:[28,29,30,31,32,35,36,37,39,40,79,83,86,174,175,176,178,187,188,278,286,350,422,426,428,449,538],approv:[355,356,357],approx:[52,53],approxim:[121,161,162,174,175,176,200,204,212,215,227,237,238,242,248,252,262,263,289,360,363,391,416,446,455,477,488,496,497,500,501,537],appveyor:405,apr:[371,387],april:[369,376,396],apt:382,ar:[6,11,15,16,19,20,23,26,27,28,29,30,31,32,33,35,36,37,39,40,46,57,65,68,71,75,76,78,79,80,81,82,83,84,86,91,95,96,97,99,102,103,104,105,107,109,111,112,113,114,115,116,118,119,121,122,126,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,151,152,155,156,161,162,163,168,172,173,174,175,176,178,179,180,182,183,184,185,186,187,188,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,260,267,278,290,296,298,310,311,324,338,340,345,348,349,350,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,381,382,383,384,389,390,391,392,393,394,395,396,397,400,402,403,405,406,407,408,409,410,411,412,413,414,416,417,418,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,463,464,465,467,468,469,470,474,475,476,477,479,481,482,483,484,485,486,489,490,491,492,493,495,496,504,514,533,535,536,537,538,539,540,541,542,543],arakelian:268,arang:[107,364,424,439],arbitrari:[181,183,184,360,372,395,408,432,445,449,491,492],arbitrary_types_allow:[16,80,376],arbitrarytypemetadata:376,architectur:[381,382,383],archiv:[375,458,464],arcsec:158,arctan:363,area:[78,84,99,101,134,135,150,161,162,169,176,184,186,188,349,350,360,404,406,416,420,432,441,448,457,458,484,491,492,537],areasc:[407,409],aren:[325,349,363,368,369,381,383],arf:[100,101,104,179,180,183,184,420,492],arf_ob:100,arffil:100,arg:[11,16,28,29,30,31,32,35,36,37,39,40,53,80,83,86,103,104,129,130,131,135,136,137,139,142,143,144,146,147,176,177,184,198,211,223,230,231,232,301,538],arg_in_kwarg:349,argmax:437,argmin:437,argpars:[354,538],argsort:[83,86],argument:[11,16,19,20,23,26,28,29,30,31,32,35,36,37,39,40,66,79,80,82,83,84,86,87,88,95,96,97,99,102,103,104,113,114,116,118,128,129,130,131,132,135,136,137,139,142,143,144,145,146,147,148,151,161,173,174,175,176,178,179,180,182,183,184,185,186,187,188,191,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,257,261,276,278,290,296,298,299,336,337,338,342,343,344,345,346,352,355,361,364,396,397,400,402,408,414,424,428,433,446,448,449,452,453,464,477,479,490,491,492,514,538],aris:[354,365],arithmet:[198,360,410,449,450,452,506],arjun:[407,408],arm64:[381,382,383],arm:[33,34,38,45,404],armstrong:408,arnau:[402,411,412,413,414],around:[56,126,151,174,176,186,188,290,363,364,422,441,443,446,450,457,465,479,488,491,492],arpit:407,arr:[28,29,30,31,32,35,36,37,39,40],arrai:[19,20,28,29,30,31,32,33,35,36,37,38,39,40,78,79,81,83,86,87,89,94,95,96,97,103,104,107,112,113,114,115,118,119,121,126,127,129,130,131,132,135,136,137,139,142,143,144,145,146,147,148,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,191,193,197,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,227,228,229,230,231,232,233,236,237,238,239,240,241,244,245,246,250,251,252,253,254,261,262,263,265,278,289,290,291,305,306,307,311,342,343,348,349,362,363,367,373,376,385,395,408,411,413,423,432,433,441,444,445,446,447,449,451,452,455,457,458,465,491,492,498,523,526,539,540],array_lik:[97,103,129,130,131,132,135,136,137,139,142,144,146,147,173,174,175,176,178,183,184,186,187,188,264,270,275],array_shap:413,arriba:[401,404,405],arriv:[202,210,214,216,217,218,233,239,251,254,354,362,394,395,396,432,537,541],arrow:536,arrowprop:495,arrowstyl:495,artefact:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],arthmet:360,articl:[122,268,354,417,439],artifact:[111,176],artifici:432,artist:[183,203,225,495,496],arxiv:[63,161,231,232,245,246,429,443,444,448,521,522],as_arrai:[83,86],as_artist:[183,184,452,492,495,496],as_energy_tru:[173,174,183,186],as_plot_cent:[177,180,185],as_plot_edg:[177,180,185],as_plot_label:[177,180,185],as_plot_scal:180,as_plot_xerr:[177,180,185],asanyarrai:349,ascii:[83,86,113,349],asinh:424,asinha:78,ask:[350,352,354,356,363,365,366,369,375,384,438,465,479,480,538],asmooth:[107,108,368,395,406,409],asmoothestim:370,asmoothmapestim:[108,370,395,397,400,424,479],aspect:[352,375,480,538,543],assert:[177,179,180,185,324,325,326,352,360,372,449],assert_allclos:349,assert_equ:349,assert_nam:[177,179,180,185],assert_quantity_allclos:[349,404],assess:[420,422,437],assign:[28,29,30,31,32,35,36,37,39,40,97,98,102,103,174,240,250,345,349,358,361,364,376,378,417,436,438,445,449,452,464,465,491],assist:365,asso:[69,71,72,74],assoc1:[71,72,74,444,465],assoc2:[71,72,74,465],assoc:69,assoc_fgl:74,assoc_fhl:74,assoc_gam1:[71,74],assoc_gam2:[71,74],assoc_gam3:[71,74],assoc_gam:72,assoc_prob_bai:444,assoc_prob_lr:444,assoc_tev:[71,72,74],associ:[28,29,30,31,32,35,36,37,39,40,65,76,83,86,95,97,112,120,122,123,124,133,134,145,148,165,166,171,184,251,278,355,365,373,374,375,376,377,414,417,418,420,424,429,444,445,448,449,451,452,457,465,476,477,479,492,540],association_catalog:[65,444],association_nam:[65,444],assum:[23,50,51,52,53,65,78,79,81,90,111,112,113,121,125,135,147,158,172,174,175,176,178,181,185,187,188,192,246,252,255,260,305,308,349,352,361,362,364,372,373,377,385,386,416,417,420,422,423,426,432,433,434,436,439,443,447,449,452,456,469,475,477,484,535,540],assumpt:[70,90,97,99,103,104,107,120,363,373,484,488,539],astri:92,astrisim:362,astro:[6,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,114,168,175,176,178,187,188,235,253,349,350,361,368,369,373,378,392,401,405,409,411,422,443,447,449,455,468,469,471,472,473,476,537],astro_dark_matt:[369,443,454],astromodel:467,astronom:[13,363,370,408,537],astronomi:[11,256,348,359,363,367,379,386,407,417,420,426,430,448,455,479,488,489,535,536,537,538,539,540,542,543],astrophys:[6,23,282,364,479,536,537],astropi:[13,16,19,20,26,27,28,29,30,31,32,35,36,37,39,40,52,64,79,81,82,83,84,85,86,87,89,97,99,103,104,107,112,113,115,117,118,121,134,143,145,158,172,175,176,178,181,183,184,185,186,187,188,197,198,201,205,207,208,209,213,216,217,219,220,222,226,228,230,231,232,233,236,239,240,241,243,244,245,246,249,251,253,254,256,278,308,325,326,335,339,340,344,348,350,351,352,354,355,356,360,362,363,364,366,367,368,369,370,372,373,375,376,377,378,385,386,388,392,393,394,395,399,401,402,404,405,406,407,408,409,410,411,413,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,463,464,465,469,471,472,473,475,476,477,479,481,483,486,488,489,490,491,492,495,496,497,498,499,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,539,542],astropy_healpix:358,astropy_help:[349,390,391,392],astropy_introduct:391,astropy_timeseri:364,astropy_vers:349,astropydeprecationwarn:432,astyp:[83,86],asymmetr:[111,114,115,118,119,121,367,390,396,463,477,496],asymptot:[540,541],atmospher:[364,381,386,455],atnf:408,atol:[82,95,118,180,185,324,326,349],atol_ax:[129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188],atom:365,atproduction_gamma:26,atreye:[361,364,389,390,391,392,393,394,395,396,397,399,400,402,403,408,409,410,411,412,413,414],attach:[28,29,30,31,32,35,36,37,39,40,81,89,203,211,225,240,250,360,370,413,440,446,451,452,538],attempt:[16,80,352,363,366],attr:349,attract:369,attribut:[15,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,52,53,54,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,99,100,101,103,104,107,109,110,111,112,113,114,115,116,117,118,119,120,121,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,150,151,152,154,155,156,157,160,161,162,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,278,359,361,371,376,377,390,391,394,395,396,397,400,402,404,406,408,413,414,418,422,432,446,448,449,450,452,465,475,491,492,540],attributeerror:349,attrribut:449,aug:[362,365,366,368,387],august:[356,362,365,368,430],author:[28,29,30,31,32,35,36,37,39,40,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378],authoris:375,authorship:353,auto:[175,176,178,187,188,350,352,360,369,395,409,446,538],autodiff:367,autogener:369,autograd:[360,367],autom:[11,357,365,375,378,379,402,446,538],automat:[16,28,29,30,31,32,35,36,37,39,40,79,80,105,114,118,145,148,200,204,212,215,227,237,238,242,248,252,348,349,350,352,356,357,359,360,366,369,371,375,378,389,390,396,422,430,432,446,449,538,542],automatis:478,autopep8:349,autoscal:[193,194,195,196],avail:[11,13,26,28,29,30,31,32,35,36,37,39,40,57,65,68,70,74,79,83,84,86,96,97,99,103,104,111,112,113,114,118,119,121,128,149,155,161,162,192,193,195,199,200,204,205,212,215,227,229,237,238,242,248,250,252,256,302,337,349,352,355,356,357,358,360,361,362,363,366,367,369,376,379,381,382,383,390,394,395,396,400,403,407,409,411,414,420,421,424,446,448,450,452,455,456,460,463,465,467,469,470,476,478,479,481,482,483,485,493,504,536,538,540],available_hdu:84,available_irf:84,available_method:[152,161],available_quant:[112,113],available_select:[155,162],averag:[19,97,99,103,104,155,162,165,166,168,169,400,417,420,437,475,537],averageaz:[432,433],avoid:[19,20,26,28,29,30,31,32,35,36,37,39,40,83,86,111,155,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,350,355,356,357,359,363,367,368,371,372,374,375,377,400,402,411,413,414,450,476,488,538],awai:[28,29,30,31,32,35,36,37,39,40,262,263],awar:[349,354,361,369,375],ax1:[416,424,426,430,441,451],ax2:[416,424,426,430,441,451],ax3:[424,430],ax:[16,19,20,26,64,65,79,96,97,99,103,104,105,111,112,113,115,116,121,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,155,162,165,166,171,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,191,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,252,253,254,262,263,336,337,341,342,343,344,345,346,349,358,368,391,395,400,406,407,408,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,450,451,452,453,455,456,457,463,464,465,475,477,479,481,486,488,489,490,491,495,496,497,501,504,532,533,537],ax_crab_3fhl:465,ax_ebl:504,ax_excess:[417,420],ax_model:504,ax_residu:[96,103,104,417,420,421,422,441,463],ax_s:[421,463],ax_spati:[97,99,103,104],ax_spectr:[97,99,103,104],ax_spectrum:[96,103,104,417,420,421,422,441],ax_sqrt_t:[417,420],axcols1:449,axcols2:449,axel:[358,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],axes0:[175,176,178,184,187,188],axes_loc:[129,130,132,135,136,137,142,144,146,188,337],axes_nam:[174,175,176,178,183,184,186,187,188],axesimag:[337,338],axesn:[175,176,178,184,187,188],axessubplot:[64,65],axi:[19,20,26,28,29,30,31,32,35,36,37,39,40,41,79,95,96,97,99,103,104,105,106,107,111,112,113,114,115,117,118,121,122,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,169,172,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,191,197,198,201,202,203,204,205,207,208,209,210,213,214,216,217,218,219,220,222,225,226,228,230,231,232,233,236,239,241,243,244,245,246,249,250,251,253,254,259,262,263,267,268,269,289,290,300,337,342,343,344,345,355,358,371,373,392,395,396,397,400,402,407,409,410,411,414,416,417,421,422,423,425,426,428,430,432,433,434,436,439,440,444,445,447,448,449,455,456,457,463,464,465,475,477,479,483,488,491,492,533,537],axis0:491,axis1:449,axis2:449,axis_edg:342,axis_nam:[96,97,99,103,104,112,113,122,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,181,183,184,186,187,188,434,438,440,445],axis_rgb:344,axis_tru:430,axvlin:[423,443,453],axvspan:[184,441],az:[79,81,84,89,90,349,542],azimuth:456,azur:396,b1509:444,b1h3biim:448,b:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,48,51,52,54,80,83,86,135,192,317,349,350,363,372,375,431,443,444,445,446,449,450,452,456,465,471,475,492],b_0:[495,496],b_1:[83,86],b_mean:42,b_psr:43,b_stdv:42,back:[28,29,30,31,32,35,36,37,39,40,67,83,86,176,290,352,359,360,363,369,420,421,423,449,452,463,538],backend:[88,96,109,114,115,118,119,121,151,192,260,293,298,299,348,358,360,390,409,410,414,417,418,420,421,422,428,429,430,441,446,456,463,464,535,536],backend_default:[115,118,121],background2d:[130,131,141,396,403,411,413,482],background3d:[84,129,141,168,355,396,400,408,409,410,447,455,482],background:[16,65,78,79,84,88,97,98,99,100,102,103,104,105,106,107,111,112,113,120,129,130,131,141,150,152,153,155,156,157,158,160,161,162,163,168,205,211,250,257,262,263,271,272,273,274,275,345,349,355,358,361,362,363,365,369,370,373,381,386,389,390,391,393,394,395,396,397,400,401,402,404,405,406,407,408,409,410,412,414,416,417,420,421,422,423,424,425,427,428,430,433,434,436,438,439,440,441,444,445,446,447,449,450,457,458,460,464,475,477,478,491,536,537,538,540,541],background_estim:368,background_interp_missing_data:155,background_map:[250,360],background_min:128,background_model:[97,99,103,104,121,361,362,369,371,396,425,464,482],background_oversampl:[155,162,448],background_pad_offset:155,background_r:[368,445],backgroundconfig:16,backgroundestim:[364,394],backgroundevalu:360,backgroundirf:[129,130],backgroundirfmodel:371,backgroundmodel:[361,371,372,393,395,396,397,400],backgroundtempl:360,backport:[356,374,378],backround:358,backscal:184,backward:[349,354,363,372,373,374,392,477],bad:[82,349,363],badli:379,balanc:475,band:[19,20,26,66,79,85,109,112,113,116,133,134,137,140,145,148,173,174,175,176,178,179,182,183,184,186,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,355,367,368,372,373,381,389,418,420,421,429,430,431,441,443,444,452,456,458,474,475,477,536],bandshdu:449,banner:379,bar:[15,78,83,86,97,99,103,104,107,118,121,129,130,188,192,213,269,299,343,366,400,403,404,410,441,479,511],bar_radiu:38,barcelona:374,base:[15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,98,99,100,101,102,103,104,107,109,110,111,112,113,114,115,116,117,118,119,120,121,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160,161,162,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,286,287,290,296,298,300,323,336,344,349,350,352,355,356,358,359,360,361,362,363,364,365,367,368,370,372,377,379,381,382,389,391,392,394,396,397,400,402,405,406,407,408,409,420,422,423,425,428,429,430,431,432,434,437,441,444,447,449,450,452,453,455,456,464,465,467,476,477,479,489,491,502,512,536,537,539,540],base_dir:[78,83,286,455,457,458,467],baselin:[78,79,218,455],basement:391,basemodel:[16,80,376],baseradi:226,bash:[381,383,538],basi:[354,355,365,368,378,402,404,441,443],basic:[45,46,65,69,70,71,72,73,74,75,76,99,104,113,217,352,355,359,360,361,362,363,365,369,373,376,385,397,407,409,417,420,422,435,437,438,443,444,450,460,465,467,469,470,475,476,477,487,488,491,535,537,538],basicconfig:[16,430,462],bayesian:367,bayesian_block:437,bayesian_edg:437,bayesian_flux:437,bayesian_x:437,baysian:358,bb:[83,86,375],bbar:[19,20],bbox_with_unit:[28,29,30,31,32,35,36,37,39,40],bcf:[130,134,135,136,145,416,423,436,440,447,455],bd16x3mh:448,becam:356,becaus:[175,176,178,182,184,187,188,349,350,352,354,356,360,361,363,364,368,372,373,376,379,400,402,417,418,421,434,441,448,449,450,451,455,456,457,463,464,465,475,479,538,541],becom:[349,357,359,360,363,368,376,432,439,452,479,538,541],been:[16,19,20,28,29,30,31,32,35,36,37,39,40,80,95,111,147,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,278,354,355,356,357,358,360,363,364,365,366,367,368,370,371,372,373,374,376,377,381,382,383,396,397,400,402,403,409,410,411,412,413,414,421,431,439,440,441,449,452,453,455,457,463,476,523,542],befor:[13,16,17,18,19,20,21,22,24,25,27,52,53,80,83,86,87,95,112,175,176,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,290,344,349,350,352,354,356,357,358,359,363,364,365,367,368,374,378,379,385,403,409,421,423,438,439,446,449,452,457,460,463,514,538],begin:[52,83,86,97,103,112,113,121,369,372,375,420,422,449,452,495,500,501,505,521,540],behav:[16,80,349,359,414,425,541],behavior:[83,86,90,373,399,403,414,457],behaviour:[324,349,371,372,397,402,408,439,450,456,475,539],being:[111,120,176,349,354,357,363,370,373,379,422,431,437,450,468,492,538],belong:[82,373,396],below:[52,53,83,86,174,178,185,186,338,339,340,344,346,350,352,353,358,359,363,365,366,369,372,373,375,376,377,379,380,389,390,391,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,411,412,413,414,416,420,424,441,444,446,448,450,452,453,455,456,476,479,496,540],benchmark:[365,375,379],benefit:366,benn:365,berg:537,berge2007:[363,488,489,537],besancon:469,besid:[111,121,363,364,373,421,422,449,456,463,464,492],best:[65,69,71,72,74,76,96,112,113,114,115,118,119,126,260,262,263,342,349,352,359,362,367,375,381,383,418,420,421,422,425,428,431,441,444,446,463,477,479,481,504,510,513,514,518,540,541,542],best_fit_model:422,beta:[27,28,48,218,219,220,241,372,374,396,418,422,429,444,446,506,512,513,514,519,529],better:[349,352,354,355,356,357,358,362,363,368,369,370,373,390,407,408,428,429,432,441,446,449,450,456,475],between:[19,20,26,65,83,84,86,89,99,104,109,115,116,118,126,127,136,142,144,145,146,148,158,172,174,175,176,177,178,180,183,184,185,186,187,188,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,256,260,275,308,339,340,347,349,350,357,359,360,361,362,363,365,366,368,369,370,373,374,376,377,387,397,400,403,414,416,422,424,429,431,434,437,440,441,446,448,449,450,451,456,457,465,475,477,484,485,488,496,497,537,540,542],bewar:[251,417,439],bexcub:179,bexpcub:[174,175,176,178,187,188,449],beyond:[363,373,376,396,448,467],bfg:446,bgstat:406,bi:[407,410],bia:[91,132,133,137,161,408,414,448,483],bias:[422,539],bias_energi:132,bias_perc:161,bibliographi:537,biederbeck:377,big:[356,359,366,378,410,456,539,541],bigger:176,biggest:368,billion:349,bimod:31,bin:[79,82,84,97,99,102,103,104,105,107,109,111,112,113,114,116,117,118,120,121,122,123,124,128,132,133,135,137,143,145,147,148,155,158,159,161,163,172,173,174,175,176,177,178,179,180,183,184,185,186,187,188,200,202,203,204,210,212,214,215,216,217,218,225,227,229,233,237,238,239,240,242,248,250,251,252,254,258,264,270,275,342,344,347,355,360,361,362,363,365,368,369,373,380,381,391,392,394,395,397,399,400,402,405,406,407,408,409,414,417,420,421,422,423,424,425,426,428,429,430,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,475,477,479,483,487,536,537,538,539,541],bin_cent:441,bin_edg:441,bin_volum:[179,183,186,492],bin_width:[177,180,185,441],binari:[186,188,357,363,366,375,379,400],binary_dil:[188,450],binary_erod:[188,450],binary_eros:[188,400],binary_structur:186,bind:352,binder:[357,378,408,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],binlik:113,binned_likelihood:114,binneddataaxi:[391,407],binnedtimeseri:[113,364],bins_axi:188,binsiz:[16,421,425,426,428,438,463,464],binsize_irf:[16,421,425,426,428,438,463],binsz:[97,99,103,104,134,143,145,155,158,159,163,174,175,176,178,183,184,186,187,188,365,420,430,431,432,433,436,441,443,445,447,448,449,450,452,456,457,464,486,488,489,491,492,494,496,497,498,499],binsz_irf:[97,99,103,104,106,445,448,479],binsz_irf_default:[97,99,103,104,448],binsz_wc:[183,184],bintabl:[174,175,176,178,187,188],bintablehdu:[79,82,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,179,180,186,187,188,432,449,475],birth:[29,30,36,50,51,52,53],bit:[79,126,350,352,356,357,363,367,368,376,441,449,492],bitpix:449,bkg:[16,78,83,84,97,100,101,103,104,129,130,131,161,168,211,371,395,397,402,416,420,421,425,426,428,429,432,433,436,441,445,447,448,451,455,457,458,463,464,475,482,537,539,540,541],bkg_2d:[83,129],bkg_3d:[78,83,130,455,458],bkg_:[97,103],bkg_err:441,bkg_maker:[371,417,420,422,430,439,488],bkg_model:[361,371,377,428,432,433,436,451,464,498],bkg_ob:100,bkg_sy:120,bkg_syst_fract:[120,416],bkg_syst_fraction_sensit:111,bkgfile:100,black:[103,104,338,339,346,367,409,411,416,441,443,448,453,488],blackground:416,blanch:[408,409],blanklin:[385,477,492],blind:[411,479],bll:465,blob:[374,388],block:[350,352,355,362,369,388,408],block_reduc:409,blue:[96,97,99,103,104,339,420,426,428,431,453,488],blur:33,board:[358,369],bodi:[28,29,30,31,32,35,36,37,39,40],boilerpl:349,boller:437,boni:[400,403],bool:[15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,35,36,37,39,40,45,76,78,79,80,82,83,84,86,88,91,95,96,97,98,99,101,102,103,104,106,111,112,113,114,118,119,121,125,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,155,162,165,166,168,169,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,190,192,193,194,195,196,197,200,201,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,240,241,244,245,246,248,249,250,251,252,275,278,287,290,308,318,320,346,349,363,430,444,448,449],boost:432,bootstrap:[83,86],border:86,bose:391,bot:355,both:[28,29,30,31,32,35,36,37,39,40,57,68,78,79,83,84,86,95,96,97,99,101,103,104,133,134,140,145,148,172,175,176,178,180,182,183,184,186,187,188,193,195,349,354,355,360,361,362,363,364,369,374,378,390,394,396,397,400,403,421,422,432,436,445,449,450,451,453,476,477,479,491,492,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,540],bother:425,bottom:[369,371,432,437,438,440,444],bound:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,95,97,99,103,104,112,113,114,115,118,180,183,185,192,197,198,201,202,203,205,207,208,209,210,213,214,216,217,218,219,220,222,225,226,228,230,231,232,233,236,239,241,243,244,245,246,249,250,251,253,254,274,358,449],boundari:[186,252,377,405,446,452,491],boundary_mask:[186,450],bounding_box:[28,29,30,31,32,35,36,37,39,40],bounds_error:[129,130,131,132,135,136,137,139,142,144,146,147,349],box:[28,29,30,31,32,35,36,37,39,40,86,97,99,115,116,183,186,188,310,311,358,363,367,373,407,450,452,492],bpl:[197,372,452],bpwl_norm:372,bqs8qi05:448,bracket:[132,192,412,414],brake:51,branch:[349,352,356,363,374,379,388],branchnam:349,bratio:467,brent:424,brentq:[19,20,26,113,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,261],breviti:[428,479],brief:542,briefli:[457,458],bright:[66,115,240,255,426,438,439,450,452,473,488],brighter:432,brightest:444,brigitta:[366,390,392,394,396,405,406,407,408,409,410,411],bring:354,broadcast:[28,29,30,31,32,35,36,37,39,40,83,86,175,176,178,181,184,187,188,240,290,433,447,449,491],broadcasted_shap:[28,29,30,31,32,35,36,37,39,40],broken:[197,241,375,493,524],brokenpowerlaw:372,brokenpowerlawspectralmodel:[235,241,372,397,452,505],brown2013:122,brown:[122,437],brows:[83,86,350,385,465],browser:[83,86,352,379,385,405,408,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],bruno:[375,392,394,397,400,403,407,408,409,411,412,413,414],bsd:375,bst:[83,86],buchner:400,budget:479,buffer:327,bug:[349,352,355,356,374,375,378,387,389,390,391,392,393,394,395,396,397,398,399,400,401,403,405,406,407,408,409,410,412,413],bugfix:[356,358,374,407,408],build:[16,80,174,205,349,355,356,357,362,363,365,369,373,374,375,376,378,396,402,411,424,428,441,448,450,476,479,538],build_doc:[314,350,352,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,510,513,526],built:[10,162,205,317,333,348,349,350,360,361,363,365,366,368,376,379,386,409,414,444,451,456,460,475],builtin:465,bullet:354,bump:[363,407],bunch:[350,538],bundl:[96,97,99,103,104,358,361,379,401,409,430,445,448,475,492,536,537],bunit:[335,409,449],bureaucrat:354,burkert:[17,467],burst:437,butterfli:[408,446,465],button:[411,449],bx:[28,29,30,31,32,35,36,37,39,40],by_alia:[16,80],bytearrai:[16,80,296],bytestr:[83,86],c0:[28,29,30,31,32,35,36,37,39,40],c1:[28,29,30,31,32,35,36,37,39,40],c:[26,28,29,30,31,32,35,36,37,39,40,48,83,86,181,191,207,244,264,270,278,317,348,349,366,381,382,384,401,408,441,443,446,456,467,491,509,520,538,539,541],c_0:[173,174,183,186],c_:191,c_i:[173,174,183,186],c_n:[173,174,183,186],cach:[83,84,86,95,97,99,103,104,250,286,287,358,359,361,368,371,379,393,397,400],cahil:402,cal_gen_92_002:[132,180],cal_gen_92_002_summari:132,calcul:[13,15,19,20,26,91,99,104,122,123,124,161,197,198,201,205,207,208,209,213,219,220,222,226,228,230,236,241,243,244,245,246,249,252,253,266,268,269,275,277,300,331,339,340,359,362,390,396,400,401,402,408,413,416,437,441,443,463,464,467,479,537,541],caldb:[78,130,132,134,135,136,145,180,402,416,423,432,433,436,440,447,455],calendar:[374,378],calib_vers:[456,465],call:[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,79,82,83,86,96,97,99,103,104,122,123,124,129,130,131,132,135,136,137,139,142,144,146,147,157,192,197,198,199,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,229,230,231,232,236,237,238,240,241,242,243,244,245,246,248,249,252,253,290,302,321,327,335,338,346,349,350,352,354,355,358,361,362,363,364,365,367,369,371,373,375,377,379,381,385,396,400,414,420,421,430,444,445,446,448,449,452,456,458,463,464,465,475,479,488,489,490,491,492,538,539,540,541],callabl:[16,45,80,258],callback:[151,538],caller:[349,360],camera:[440,447,448],can:[15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,46,47,50,56,65,66,67,78,79,80,83,86,88,97,99,102,103,104,107,112,113,118,119,121,126,130,135,143,145,148,152,158,161,173,174,175,176,178,180,181,183,184,185,186,187,188,190,192,194,196,197,198,200,201,203,204,205,207,208,209,212,213,215,217,219,220,222,225,226,227,228,230,231,232,236,237,238,241,242,243,244,245,246,248,249,252,253,261,267,278,290,291,296,299,308,325,327,342,346,348,349,350,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,388,390,392,394,396,397,400,402,403,407,408,409,410,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,463,464,465,467,469,470,475,476,477,479,482,483,484,485,486,488,489,490,491,492,512,514,523,533,535,536,537,538,539,540,541],candel:205,candid:[374,402,444],candl:[256,537],cannot:[16,65,80,83,86,90,105,112,113,190,270,317,346,352,362,363,414,451,452,477,492],cap:[51,54],capabl:[359,456,467],captur:[349,365],car:[97,99,103,104,155,186,187,188,203,225,363,392,430,447,448,449,464,465],card:[79,84,95,96,97,99,101,103,104,133,134,140,145,148,175,176,178,182,184,187,188,449],care:[278,349,358,365,374,417,422,428,449,538],carefulli:[375,432,433],carina:[33,38],carlo:[367,484],carri:[364,372,374,376,400,418,464],cartesian:[41,46,176,187,188,281,283,413,465,491],casebattacharya1998:[29,30,35,36,39,40,48],cash1979:[537,540],cash:[97,99,103,104,155,265,270,349,361,400,423,425,428,436,440,445,448,451,463,464,475,537],cashcountsstatist:[385,538,540],cast:86,cat:[64,65,75,357,379,407,408,418,444,452,474,537,538],catalog:[6,45,46,47,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,111,114,363,369,388,392,394,396,400,401,402,405,406,407,408,409,411,418,424,429,445,452,454,456,460,469,502,536,537],catalog_3fgl:418,catalog_3fhl:[418,444],catalog_3fhl_bright:444,catalog_4fgl:444,catalog_4fgl_roi:444,catalog_gammacat:[418,444],catalog_hgp:444,catalog_registri:[418,444,450],catalogimageestim:409,catalogu:[74,400,407],catch_warn:479,categori:[349,360,373,400,450,452,493],caus:[356,363,409,412,479],cautious:431,caveat:[192,496],cax:447,cb98:48,cbar:337,cbar_kw:343,cbarlabel:343,cc:[358,363,365,368,370,372,375,377],ccube:[174,175,176,178,179,180,186,187,188,449],cd:[349,350,352,365,381,382,383],cdelt1:449,cdelt2:449,cdelt:[186,188],cdf:[300,362,432,446],cdot:[51,52,53,54,97,103,230,244,372,452,475,495,500,501,505,508,509,516,517,519,520,521,522,527,528,529,531,539],celesti:[449,491,495,499,542],celfix:502,cell:[357,385,411,429,441,449,455,456,465],center:[17,18,21,22,23,24,25,27,41,79,83,86,91,97,99,103,104,112,113,115,116,117,121,132,133,134,135,136,137,140,144,145,146,148,155,158,159,161,162,163,165,166,168,169,174,175,176,177,178,179,180,183,184,185,186,187,188,189,199,200,203,204,212,215,225,227,229,237,238,240,242,248,250,252,280,284,310,349,350,363,365,372,373,390,391,400,402,416,417,420,422,423,424,425,426,428,430,432,433,434,439,440,441,443,447,448,449,450,451,452,455,456,464,465,481,482,483,484,485,486,488,489,491,492,495,496,499],center_coord:[173,174,179,183,186],center_pix:[173,174,183,186],center_ski:492,center_skydir:[173,174,183,186,448,449,456,457,486,488,489],centr:[443,450,467],central:[361,370,418,465],cern:467,certain:[50,79,83,86,192,267,348,363,365,367,373,416,443,448,449,456,474,492],certainli:352,certif:375,certifi:375,cfa:[192,446],cff:378,cg:471,ch:53,chain:[151,362,365,394,448,479,489],chainer:367,chakraborti:[406,407],challeng:[356,358,362,407,426,428,430,455],chanc:354,chang:[16,19,20,26,80,82,83,86,113,174,183,186,197,198,201,205,207,208,209,213,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,324,334,350,352,353,354,356,357,358,359,360,361,362,363,364,366,367,368,369,371,373,374,375,378,379,387,389,390,391,392,393,394,395,396,397,400,402,406,407,408,409,410,412,415,422,423,424,430,432,433,437,438,445,446,450,452,455,463,475,479,486,488,492,502,510,513,538],changelog:[349,378,401,409],channel0:467,channel1:467,channel:[19,20,26,348,351,352,366,408,433,443,449,458,467],channel_registri:[19,20,26],chapter:443,charact:[83,86,349,451],character:[269,373,432],characterist:[21,25,27,51,52,53,54,122,267,360,414,437,537],charg:[375,514],chatti:[349,430],cheat:384,check:[28,29,30,31,32,35,36,37,39,40,78,79,83,84,86,112,113,133,173,174,177,179,180,183,185,186,188,194,196,203,225,240,323,325,352,365,371,375,378,379,381,382,383,386,395,400,408,418,436,447,460,467,479,483,492,535,538,539],check_limit:[193,194,195,196],check_random_st:349,check_tutorials_setup:[416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],checker:[406,409],checklist:379,checkout:[349,352,391,428,432,452],checksum:[79,84,95,96,97,99,101,103,104,133,134,140,145,148,175,176,178,182,184,187,188],chen:409,cherenkov:[135,362,381,386,417,420,426,438,448,455,457,488,489,537],cherri:[349,356,363,374],chi2:[96,361,391,431,440,446,475,540],chi2assym:394,chi:[266,364,539,540,541],child:359,children:[428,436,449,463,464],chime:352,chisq:266,chisquar:266,chmod:538,choic:[362,366,368,375,420,421,423,425,446,457,463,480,535,538],choos:[45,173,174,177,179,180,183,186,253,292,349,361,363,365,369,381,400,418,420,424,428,430,440,445,446,448,449,451,452,453,456,464,479,538],chose:[432,456,457,540,542],chosen:[26,132,145,148,174,175,176,184,187,188,203,212,225,349,352,364,365,368,421,439,448,449,453,457,463,477,487,488,492],christoph:[354,355,356,357,358,359,360,361,363,365,366,367,368,369,388,389,390,391,392,393,394,395,401,404,405,406,407,408,409,410],chrome:[83,86],chromei:402,ci:[349,352,356,375,379,394,400,402,405,411],circl:[79,163,346,350,363,402,420,430,440,443,448,450,453,455,464,465,476,486,488,489,492],circle_area:350,circleannulusskyregion:[237,238,488],circledast:475,circlepixelregion:363,circleskyregion:[97,99,103,104,157,158,162,186,204,350,363,416,417,420,422,423,426,428,430,432,433,439,443,445,448,450,451,464,486,488,489,492],circular:[86,97,99,162,174,176,186,360,368,370,417,422,445,453,488,492],circumv:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],cirelli:[26,467],citat:378,cite:[352,375],cl:[16,80,97,103,376],clabel:446,clang:385,clarif:354,clarifi:[373,414],class1:444,class2:444,classic:[358,367,381,390,417,420,426,430,445,448,477,479,488,489,537,540],classifi:457,classmethod:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,56,78,79,80,81,82,83,84,86,87,89,95,96,97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,376],classproperti:400,classvar:[16,80],claudio:413,claus:[349,375],clean:[349,350,352,357,358,363,365,367,388,390,391,392,393,394,395,396,397,400,407,408,409,410],cleaner:411,cleanup:[356,368,379,388,393,394,399,400,401,405,406,408],clear:[87,95,182,225,349,354,356,360,363,364,368,369,370,408,431,542],clearer:393,clearli:[122,349,354,355,363,366,374],cli:[11,365,410,536],click:[348,365,366,385,393,408,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,538],clip:[19,20,26,173,174,177,179,180,183,185,186,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,252,253,290,393,394,424],clockwis:[204,212,215,495],clone:[352,382,409],close:[129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,177,178,179,180,183,184,185,186,187,188,252,324,325,326,358,363,378,403,414,446,523],closer:465,closest:[107,111,114,118,121,174,175,176,178,184,187,188,450,477],cloud:[379,460],cluster:[6,91,276,277,362,414,454,460,476,479],clutter:[428,479],cm2:[51,54,64,65,101,113,135,188,256,334,416,418,421,423,424,428,429,430,432,433,436,438,439,440,441,443,444,445,449,451,452,456,463,464,465,477,492,507,510,513,518,523],cm3:[17,18,19,21,22,24,25,27,52,443],cm5:443,cm:[19,20,28,29,30,31,32,35,36,37,39,40,45,51,52,53,54,65,96,113,121,197,201,207,209,213,220,223,230,232,240,241,244,245,246,255,334,360,372,417,418,420,421,422,423,424,425,428,429,430,431,432,433,436,440,441,443,444,446,452,455,456,463,465,472,473,477,479,494,495,496,497,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,537],cmap:[97,99,103,104,339,340,422,428,443,449,451,456,457,463,464,488],cmb:514,co:[53,181,374,375,416,495,496,497],coadd:[175,176,178,184,187,188],coars:445,coarser:[180,185,445],codaci:379,codata:52,code:[19,20,26,78,79,83,86,132,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,344,352,353,354,356,357,359,362,363,364,365,366,367,368,369,370,372,373,374,375,376,382,385,388,391,392,394,395,396,397,400,402,405,406,407,408,409,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,467,479,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,538],codebas:[350,366,388,407,409],codemeta:402,codespel:400,codestyl:352,coeffici:[116,218,222,504],coerce_unit:[28,29,30,31,32,35,36,37,39,40],col0:[83,86],col1:[83,86],col2:[83,86],col:[83,86,400],col_b:[83,86],col_c:[83,86],col_d:[83,86],col_fit_deriv:[28,29,30,31,32,35,36,37,39,40],col_label:343,collabor:[339,340,354,356,358,362,402,431,456,537],colleagu:[352,538],collect:[87,95,179,182,194,203,225,349,351,376,379,407,408,421,445,451,467,476,480,484,537,542],collis:50,colnam:[83,86,175,176,178,184,187,188,456,465],color:[96,103,104,129,130,188,338,339,340,343,346,350,416,418,420,421,422,423,424,426,428,430,431,434,437,438,441,443,446,448,451,453,479,488,492,495,496,514],colorbar:[113,129,130,132,135,136,137,142,143,144,146,188,337,343,446,449],colorblind10:479,colorblind:479,colormap:[338,339,340,388,401,465],colormap_hess:[370,543],colormap_milagro:543,colour:411,column:[41,43,44,46,47,56,79,83,86,98,102,112,113,116,126,129,130,132,156,175,176,177,178,179,180,184,185,187,188,251,269,276,319,320,321,322,342,343,346,347,349,362,364,373,411,414,416,432,433,441,444,449,452,455,476,479],column_nam:447,column_prefix:180,columnclass:[83,86],columnspac:346,com:[19,20,26,64,122,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,305,306,317,349,352,369,374,378,379,382,407,542],combin:[94,96,97,99,103,104,161,169,175,176,178,183,184,187,188,198,240,349,355,359,360,361,362,363,364,369,372,381,393,408,414,418,423,428,429,436,440,445,446,447,448,449,450,452,457,464,465,467,469,479,486,491,506,536,537],combined_ev:476,combining_and_defin:[416,423,425,428,430,436,440,455],come:[67,352,355,356,357,358,359,363,364,365,366,368,369,374,376,378,379,396,397,400,409,410,414,420,428,436,452,455,463,538],comma:[69,70,71,72,73,74,75,76,444],command:[6,13,89,96,113,136,142,144,146,348,350,352,357,358,360,365,366,379,380,381,382,383,384,390,394,405,408,409,411,432,478,536],commensur:188,comment:[113,349,350,354,358,362,363,365,366,368,370,372,374,375],commit:[349,352,357,363,374,375,387,388,411],committe:[354,356,374,375],commod:375,common:[90,348,349,350,352,354,355,363,365,369,370,372,373,375,382,384,385,400,402,421,422,434,444,447,450,452,463,464,467,474,477,478,492,496,538],common_irf_head:447,commonli:[29,79,363,367,409,434,467,535,536,538,540,543],commun:[365,371,375,378,380,386,458],comp:444,compact:[16,80,83,86],compar:[83,86,114,115,118,119,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188,192,260,349,363,366,369,397,413,414,416,417,420,424,428,431,434,436,439,444,446,448,456,463,474,537,539],comparison:[82,83,86,95,118,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,180,183,184,186,187,188,308,405,469],compat:[28,29,30,31,32,35,36,37,39,40,83,86,175,176,178,187,188,211,354,356,360,363,372,374,376,377,385,388,390,392,409,449,491],compil:[352,401],complain:352,complaint:367,complement:369,complet:[13,16,80,308,349,355,359,360,361,362,363,366,367,369,373,374,375,387,389,390,391,392,393,394,395,396,397,400,402,405,406,407,408,409,410,428,433,446,453,460,479,484],complex:[349,350,355,359,363,364,365,371,373,385,417,420,430,433,437,440,445,449,450,452,453,456,488],complianc:[375,411],compliant:[175,176,178,187,188,537],complic:[363,492],compon:[15,28,29,30,31,32,35,36,37,39,40,65,76,77,84,97,98,99,102,103,104,118,122,147,149,183,203,225,226,240,255,360,361,362,365,371,372,390,394,396,400,408,409,421,422,423,425,428,429,430,431,432,433,436,438,439,440,444,445,451,452,455,456,463,464,467,475,477,479,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,537],component_1:360,component_2:360,component_class:444,components_model:76,components_statu:65,compos:[28,29,30,31,32,35,36,37,39,40,355,375],composit:[57,68,76,289,375,407],compound:[183,190,198,309,313,363,372,434,493,524],compoundmodel:[28,29,30,31,32,35,36,37,39,40,402],compoundpixelregion:313,compoundskymodel:360,compoundskyregion:[190,309,313],compoundsourcemodel:360,compoundspectralmodel:[235,372,414,452,456,504,506,510,513,515,518,523],compress:357,compris:457,compromis:[349,354,362],compton:[226,396,514],compulsori:452,comput:[16,19,20,23,26,28,29,30,31,32,33,34,35,36,37,38,39,40,79,80,82,84,89,91,95,96,97,99,103,104,107,109,111,112,113,114,115,117,118,119,120,121,122,123,124,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,150,161,162,164,167,168,169,170,172,174,175,176,178,180,183,184,185,186,187,188,189,192,197,198,201,203,205,207,208,209,213,217,219,220,222,225,226,228,230,231,232,236,241,243,244,245,246,249,251,253,255,256,260,261,262,263,266,267,268,269,274,277,281,282,285,349,358,359,360,361,362,363,364,367,369,370,371,372,373,377,379,381,382,386,388,390,391,392,393,396,397,399,400,401,403,405,406,407,408,409,410,411,412,413,414,417,422,424,428,429,433,434,437,438,439,441,443,445,448,451,452,453,456,457,458,463,465,467,475,477,479,484,488,514,536,537,538,539,540,541,542],computation:[28,29,30,31,32,35,36,37,39,40,192,362,363,475],compute_chisq:407,compute_differential_jfactor:23,compute_errn:[262,263,411,540],compute_errp:[262,263,540],compute_flux_doubl:122,compute_fpp:123,compute_fvar:[124,268],compute_jfactor:[23,443],compute_lightcurve_doublingtim:437,compute_lightcurve_fpp:437,compute_lightcurve_fvar:437,compute_lima_map:396,compute_npr:362,compute_upper_limit:[262,263],computedfieldinfo:[16,80],con:[349,365],concaten:[79,82,87,177,180,361,365,371,414,449],concentr:310,concept:[16,80,369,370,376,386,443,449,480],conception:[362,371],concern:[352,354,363,365,366,368,370,372,375,400,410,457,540],conclud:358,concret:[16,80,366,369],conda:[348,352,356,357,366,369,374,378,379,381,382,383,384,385,390,392,408,409,538],condit:[52,53,128,194,196,203,225,373,377,397,416,420,423,433,444,450,451,453,457,475,484],conduct:[411,440],cone:[86,363,421,453,463,464,479],conesearch:365,conf:[83,86,349,350,379,391,406],conf_1d:438,conf_3d:438,conf_max:[193,195],conf_min:[193,195],confid:[111,192,193,195,262,263,360,367,391,396,410,537,540],confidence_opt:192,config:[15,16,80,348,350,355,357,358,365,366,369,376,381,383,393,394,395,400,408,421,428,463,535],config_dict:463,config_joint:428,config_paramet:[107,109,110,111,114,115,117,118,119,120,121],config_stack:428,config_str:16,configdict:[16,80],configpars:406,configur:[11,15,16,46,80,83,86,96,103,104,107,109,110,111,114,115,117,118,119,120,121,298,349,350,352,358,360,364,365,369,370,376,379,385,393,395,396,400,402,411,414,420,422,430,432,433,455,460,478,484,537,538],confirm:352,conflict:[83,86,349,352,375],confluenc:458,conform:[16,80,449],confus:[349,350,355,368],connect:[359,420,434,436,450,464,535],consant:[175,176,178,184,187,188],consciou:354,consecut:[158,308,349,374],consensu:[354,375],consent:349,consequ:[375,433,492],conserv:[475,499],consid:[19,20,59,91,155,162,165,166,168,169,176,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,260,345,354,355,360,361,363,364,365,366,367,368,369,371,375,377,417,420,422,428,432,433,437,450,476,484,541],consider:[365,390,400,408,428],consist:[71,86,90,112,113,133,134,145,148,175,176,178,187,188,212,215,349,359,360,362,363,364,369,376,393,394,395,396,397,404,408,409,411,413,414,421,422,423,424,431,436,440,446,448,449,452,463,512,514,539],consol:[349,538],consortium:[376,455],const3d:[28,29,30,31,32,35,36,37,39,40],const_norm:372,constant:[50,51,52,53,97,103,107,135,175,176,178,184,186,187,188,199,200,201,202,204,216,218,307,362,363,368,408,438,456,472,475,493,503,524,534,537,541],constant_model:525,constantmodel:410,constantnormspectralmodel:372,constantspatialmodel:[234,372,452,456,494],constantspectralmodel:[235,372,433,452,507],constanttemporalmodel:[247,372,393,452,525],constitu:[28,29,30,31,32,35,36,37,39,40],constitut:445,constrain:[28,29,30,31,32,35,36,37,39,40,375,425,429,448],constraint:[28,29,30,31,32,35,36,37,39,40,479],construct:[16,80,180,219,220,315,492,537],constructor:[173,174,175,176,178,180,183,184,185,186,187,188,414,464,490],consum:[446,479],contact:[351,356,358,375,384,386,389,390,391,405,408],contain:[13,16,19,20,26,57,59,62,65,78,79,80,82,83,84,86,87,90,91,95,96,97,99,102,103,104,105,112,113,121,126,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,150,155,157,160,162,167,170,172,173,174,175,176,178,179,181,182,183,184,185,186,187,188,189,190,192,194,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,223,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,254,267,276,277,342,344,346,347,349,352,353,355,357,358,359,362,363,364,365,366,368,369,370,371,373,375,378,379,386,390,394,395,396,397,399,400,402,403,406,407,408,409,410,414,416,418,420,421,422,425,428,429,432,433,436,438,439,441,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,468,470,475,476,477,479,483,487,488,491,492,493,535,537,539,540,541],containment_correct:[16,97,99,162,416,420,421,422,425,426,428,430,438,439,441,445,448,463],containment_fract:91,containment_radiu:[136,142,144,145,146,148,416,445,447,450],containment_radius_map:[145,148],contains_pix:[173,174,183,186],contains_wcs_pix:183,contamin:[65,426,444,450,488],content:[80,113,175,176,178,184,187,188,316,349,352,354,358,364,369,376,379,394,403,408,417,449,450,455,457,476,479,490,491],content_typ:[16,80],context:[16,80,83,86,194,196,203,225,298,327,349,364,375,379,449,469],contigu:[180,185,400],continu:[180,356,358,359,362,363,365,366,368,369,374,385,388,389,392,400,405,406,407,409,420,433,450,491,537],continuous_upd:[428,436,449,463,464],contour:[190,192,341,358,410],contour_:446,contour_alpha_amplitud:446,contour_alpha_beta:446,contour_beta_amplitud:446,contourf:188,contract:375,contrari:[350,357],contrast:[369,537],contrera:410,contribut:[95,203,211,225,240,345,349,351,358,363,371,373,379,386,389,400,402,404,448,480,514,535,538,539],contributes_to_stat:95,contributor:[349,352,369,379,387,398,399],control:[79,83,86,97,99,103,104,349,362,380,382,416,443,449,479,540],controversi:[349,354,355,369],conveni:[13,112,348,349,352,359,363,371,373,380,381,383,390,392,397,400,402,407,430,443,444,445,449,450,451,452,455,457,465,474,478,536],convent:[28,29,30,31,32,35,36,37,39,40,79,174,175,176,178,186,187,188,371,373,392,393,396,397,411,445,448,449,452,475,477,484,491,540],converg:[377,391,412,420,422,428,446,475,479,495],convers:[80,83,86,112,113,354,373,376,381,383,400,413,414,416,492],conversion_typ:[456,465],convert:[16,19,23,28,29,30,31,32,35,36,37,39,40,50,79,81,82,83,86,94,96,97,99,101,103,104,112,113,116,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,158,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,193,194,195,196,203,217,225,260,275,278,279,283,296,312,330,332,333,350,355,363,364,373,376,379,401,413,414,416,426,431,439,440,445,446,450,451,455,465,477,483,488,491,540,542],convert_bytestring_to_unicod:[83,86],convert_unicode_to_bytestr:[83,86],convinc:465,convolut:[107,111,116,121,143,176,188,348,361,367,388,395,397,406,408,409,426,449,475,492],convolution_method:176,convolv:[99,121,143,176,188,360,388,397,400,409,423,424,426,449,485,514],convolve_ful:176,convolve_wc:176,cookiecutt:365,coolwarm:[428,456,457,464],coord:[13,28,29,30,31,32,35,36,37,39,40,79,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,227,267,360,393,433,449,450,488,491,492,498],coord_to_idx:[173,174,177,179,180,183,185,186,449],coord_to_pix:[173,174,177,179,180,183,185,186,449],coordiant:447,coordin:[6,28,29,30,31,32,35,36,37,39,40,41,46,47,79,81,83,84,85,86,89,90,97,98,99,102,103,104,112,113,115,116,117,122,126,129,130,131,132,133,134,135,136,137,138,139,142,144,145,146,147,148,158,168,172,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,203,204,212,215,217,225,227,229,237,238,240,252,267,278,279,280,281,282,283,284,285,290,300,306,310,311,325,350,354,355,356,358,362,363,368,369,372,374,375,388,390,393,395,406,408,409,411,416,417,420,422,423,426,430,431,432,433,434,436,438,439,440,441,443,445,447,448,449,450,451,452,453,455,456,457,458,464,465,475,483,488,490,491,495,496,499,536,537,542],coordsi:395,copi:[11,16,19,20,26,28,29,30,31,32,35,36,37,39,40,78,79,80,82,83,84,85,86,87,94,95,96,97,99,102,103,104,107,109,110,111,114,115,117,118,119,120,121,133,134,140,145,148,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,278,321,349,354,357,359,363,365,371,378,379,385,400,402,409,410,411,414,417,420,422,423,428,430,436,439,440,444,446,448,452,456,479,488,492,502,538],copy_data:[83,86,203,211,225,240,248,250,252],copy_indic:[83,86],copy_ob:[78,479],copy_on_getitem:[83,86],copyright:385,core:[16,28,29,30,31,32,35,36,37,39,40,53,57,58,59,60,61,62,63,64,65,68,75,76,77,80,96,97,107,109,111,113,117,119,120,121,131,132,133,134,135,137,141,142,145,146,147,150,151,152,155,156,157,160,161,175,176,184,187,188,211,225,240,242,243,250,254,348,349,356,362,363,370,374,375,386,389,406,410,414,416,422,423,425,428,430,432,434,436,440,451,455,467,477,538],corner:[363,366,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],corr_coord:[145,148],correct:[28,29,30,31,32,35,36,37,39,40,65,79,84,97,98,99,134,145,148,162,167,168,211,227,228,252,349,361,362,374,375,376,378,392,395,397,398,399,400,403,406,407,409,411,412,413,414,416,420,421,422,423,432,436,438,444,445,446,448,450,451,452,457,463,465,476,477,486,498,510,513,515,518,523],correctli:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,352,375,376,390,392,397,402,403,412,447,448,449,450,451,496],correl:[19,20,26,111,116,191,197,198,201,205,207,208,209,213,219,220,222,226,228,230,236,241,243,244,245,246,249,253,367,372,373,400,410,431,434,446,450,452,463,477,535],correlate_off:111,correlation_radiu:[16,111,421,425,426,428,441,457,463,477],correspond:[16,19,20,26,28,29,30,31,32,33,35,36,37,39,40,45,80,83,85,86,95,97,99,103,104,112,113,114,115,116,118,119,121,132,133,134,140,143,145,147,148,149,173,174,175,176,178,179,180,182,183,184,185,186,187,188,190,197,198,201,205,207,208,209,212,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,342,359,360,361,362,369,370,373,375,377,394,397,417,418,420,421,422,428,432,433,438,444,446,448,449,452,453,455,456,457,463,465,475,476,477,479,491,492,501,504,536,537,542],cosimo:[397,400,402,408,409,411,414],cosmic:[52,205,255,367,455],cost:537,coto:408,could:[16,80,350,352,354,355,358,360,361,362,363,364,365,366,367,368,369,370,373,375,376,379,384,417,420,428,430,444,455,456,463,478],count:[16,79,87,95,97,99,100,101,102,103,104,106,107,111,112,113,114,115,117,118,119,120,121,125,150,152,155,156,157,162,164,168,172,175,176,178,179,180,184,187,188,194,196,203,225,262,263,264,265,270,271,274,275,300,334,336,345,347,355,357,360,361,362,364,365,369,373,391,392,395,397,400,402,403,409,410,414,416,417,420,421,422,423,424,425,426,428,430,432,434,436,438,439,440,441,445,446,448,449,450,457,462,463,464,465,477,479,483,486,487,488,489,492,537,538,539,541],count_bkg:441,count_statist:540,counter:[204,212,215,495],counts_3d:449,counts_imag:[434,445],counts_min:128,counts_off:[97,99,100,103,104,150,156,157,160,347,361,402,413,414,421,422,423,426,430,441,445,475,540],counts_on:391,counts_rat:445,counts_statist:[262,263],countspredictor:360,countsspectrum:[361,364,391,392,394,396,405],countsstatist:[262,263,373,396,397,400,411],coupl:[357,363,368,379,397,409,449],cours:[349,352,356,359,366,385,421,428,445,449,456,463,538,541],cousin:[391,397,405,407,537],cousins2007:[537,540],coutinho:[397,400],cov:[231,232,379],cov_matrix:[28,29,30,31,32,35,36,37,39,40],covar:[191,342,410],covar_list:191,covari:[15,19,20,26,28,29,30,31,32,35,36,37,39,40,95,114,115,118,119,192,194,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,342,367,377,396,402,410,411,414,421,463,540],covariance_data:[203,211,225,240,250],covariance_opt:192,covariance_typ:377,covariancegaussianprior:377,covarianceresult:[96,192,417,418,420,421,422,428,429,430,441,446,456,463,464],cover:[251,349,351,363,364,365,373,417,438,439,445,449,460,465,480],coverag:[358,364,379,388,392,400,406,409,439,446],coveral:[379,388],cpu:[114,115,118,121,298,299,362],cpython:354,crab:[65,79,103,104,222,256,260,357,361,369,388,394,406,408,420,421,422,429,430,438,444,445,446,450,456,457,458,463,464,465,477,488,492,537],crab_10gev_100tev_dataset:429,crab_3fhl:465,crab_3fhl_spec:465,crab_events_pass4:457,crab_fp:421,crab_fp_tabl:421,crab_hess_ecpl:256,crab_magic_lp:422,crab_model:446,crab_posit:488,crab_spec:429,crab_spectrum:446,crabnebula:438,crabspectrum:392,creat:[11,13,16,19,20,26,28,29,30,31,32,35,36,37,39,40,56,57,58,59,60,61,62,63,64,65,68,78,79,80,82,83,84,86,87,88,94,96,97,99,103,104,105,106,107,112,113,114,115,118,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,155,157,158,159,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,256,260,278,288,309,313,327,336,338,343,349,350,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,383,385,392,393,394,397,400,402,408,409,411,412,413,414,416,418,421,422,423,428,430,431,432,434,436,438,439,440,441,443,444,446,448,451,452,453,455,456,457,458,462,463,465,467,474,475,476,479,483,486,488,489,490,491,494,496,497,498,499,504,514,523,535,536,538,543],create_crab_spectral_model:[420,422,429],create_fermi_isotropic_diffuse_model:[451,456],create_map_dataset_from_observ:[88,102],creation:[28,29,30,31,32,35,36,37,39,40,80,115,186,358,359,363,372,375,394,400,437,452,458],creator:[352,376,421,452,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],creatormedadata:376,creatormetadata:[80,376],credit:385,crimson:422,criteria:[15,86,402,448,453,460],criterion:[86,121,276,416,479],criticis:340,crop:[82,173,174,175,176,178,183,184,186,187,188],crop_width:[173,174,175,176,178,183,184,186,187,188],cross:[19,355,369,467],crowd:444,crpix1:449,crpix2:449,crpix:186,crucial:[376,432,433,445],cruft:379,crux:[33,38],crval1:449,crval2:449,cryptic:360,csh:538,csobsselect:359,css:[83,86,379],cstat:[361,394],csv:113,ct:[334,409,446],cta:[78,79,85,97,99,103,104,107,111,130,134,135,136,145,155,205,255,337,342,344,349,353,356,357,358,362,365,368,369,378,381,386,389,390,400,406,407,408,409,416,421,423,425,428,430,432,433,436,440,441,445,447,451,453,457,458,459,460,463,467,476,477,479,481,484,536,537,542],cta_data_analysi:[369,430,435],cta_dataset:451,cta_north:92,cta_sensist:369,cta_sensit:[416,419],cta_simul:389,cta_south:[92,416,423,432,433,436,440],cta_util:409,ctadata:455,ctao:[369,375,455,479],ctapip:[352,356,358,365,366,368,369,370],ctaspectrumobserv:409,ctobssim:[78,362],ctool:[359,362,365,369,512],cts_sigma:446,ctselect:359,ctype1:449,ctype2:449,cube:[46,97,99,121,150,168,175,176,178,184,187,188,221,240,349,360,361,362,368,369,370,372,381,388,392,393,396,401,404,405,406,407,408,409,424,425,430,434,456,465,475,484,486,491,492,537],cubic:449,cumbersom:[359,367],cumsum:[129,130,131,132,135,136,137,139,142,144,146,147,175,176,178,184,187,188],cumul:[95,129,130,131,132,135,136,137,139,142,144,146,147,175,176,178,184,187,188,300,362,420,432,451,479],cunit1:449,cunit2:449,curat:[379,389],curl:[65,366,381,383,455],current:[11,15,19,20,26,28,29,30,31,32,35,36,37,39,40,79,81,82,83,84,85,86,94,95,96,97,99,103,104,113,114,118,138,161,173,174,175,176,178,184,185,186,187,188,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,327,343,349,350,352,355,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,377,381,382,383,392,410,421,443,447,448,449,451,455,457,458,463,464,468,475,476,477,492,535,537,538],curv:[15,19,20,26,79,118,122,197,198,201,205,207,208,209,213,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,269,341,353,360,362,365,369,373,381,390,394,396,397,401,404,405,407,409,411,414,416,437,442,460,475,476,477,478,487,488,493,534,536],curve_fit:342,cuspi:467,custom:[16,28,29,30,31,32,35,36,37,39,40,78,80,85,117,358,359,360,365,367,372,376,380,394,395,397,409,416,423,425,428,430,436,440,445,447,449,455,479,523],custom_model:[28,29,30,31,32,35,36,37,39,40],customari:452,customis:[369,447],cut:[86,111,147,161,162,359,408,414,416,419,423,441,445,448,449,453,455,460,464,465,475,476,487,488,491,535],cutoff:[207,208,209,244,245,246,260,394,414,423,428,493,524],cutout2d:[97,99,133,134,140,145,148,151,186,188,250,355],cutout:[97,99,103,104,133,134,140,145,148,151,174,176,184,186,188,250,355,361,390,395,400,406,409,425,426,428,430,434,445,448,456,464,465,475],cutout_and_mask_region:[188,414],cutout_info:394,cutout_mod:151,cutout_slic:186,cutout_width:151,cval:[175,176,178,184,187,188],cwd:357,cwt:[369,394,406,409],cx:446,cxc:[192,369,446],cy:446,cyan:346,cycl:[346,352,353,354,366,368,382,407,411],cycler:[346,416],cython:[352,391,401],d8uepfp:452,d:[19,20,23,83,86,182,185,217,222,233,251,256,317,352,367,369,402,411,418,432,433,440,449,452,453,484,491,495,525,526,527,528,529,530,531,532,533,538,541],dai:[83,86,185,210,214,216,233,239,352,363,369,378,379,449,531,538],daniel:[410,413],dark:[1,17,18,19,20,21,22,23,24,25,26,27,369,377,409,414,454,460,468,491,536],dark_matter_spectra:26,darkbit:467,darkmatt:[6,17,18,19,20,21,22,23,24,25,26,27,235,350,369,409,443,468],darkmatterannihilationspectralmodel:[20,235,411,443,452],darkmatterdecayspectralmodel:[235,443,452],darkorang:[420,421],darksusi:467,darwin:385,dash:[441,443],dashboard:379,dat:[26,83,86,203,225,421,463,467],data:[6,11,15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,112,113,114,115,116,117,126,127,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,152,155,156,157,161,168,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,191,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,264,269,270,272,273,275,286,287,290,308,316,319,320,328,337,338,339,340,342,343,348,350,353,356,359,360,361,362,363,365,368,369,370,371,372,373,375,377,378,381,385,386,388,389,390,391,392,394,395,396,397,400,401,402,403,405,406,407,408,409,410,411,414,416,418,423,424,425,426,430,432,433,436,440,443,444,446,447,450,451,452,453,454,455,456,458,462,466,467,474,475,477,479,481,482,483,484,485,486,488,489,491,492,497,498,510,513,515,517,518,523,535,536,537,540,541,542],data_extend:[67,68,69,70,71,72,73,74,75,76],data_nbyt:[173,174,183,186],data_path:457,data_reduct:365,data_shap:[96,97,99,103,104,173,174,183,186,445,492],data_shape_ax:[174,183,186],data_shape_imag:186,data_stor:[78,155,365,385,422,430,432,439,441,448,453,455,457,458,462,464,476,486,488,489],data_storag:476,data_summari:406,dataaxi:391,databas:[355,479],dataclass:349,datafram:[83,86],dataset1:475,dataset2:475,dataset:[6,15,16,19,20,26,62,89,93,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,115,118,119,120,121,125,128,133,134,140,145,148,150,151,152,155,156,157,160,161,162,182,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,298,342,345,346,352,353,355,357,362,364,365,366,368,369,373,377,378,379,381,383,388,389,390,391,392,393,394,395,396,397,400,401,402,403,404,407,409,410,411,412,413,414,418,420,423,424,430,431,432,434,436,441,443,444,449,452,453,454,455,456,458,460,462,465,476,477,479,484,486,487,488,489,491,498,502,504,532,533,535,536,537,538,539,540],dataset_1:477,dataset_2:477,dataset_3fgl:418,dataset_3fhl:418,dataset_cta:445,dataset_empti:[417,420,422,423,430,439,445,448,457,488],dataset_energy_depend:431,dataset_fak:423,dataset_fp:440,dataset_gammacat:418,dataset_hawc:429,dataset_hess:[429,446],dataset_imag:[430,445],dataset_kwarg:[88,102],dataset_lc:440,dataset_mak:[420,422,430,439,448,488],dataset_nam:[102,105,118,203,211,225,371,377,428,432,433,436,445,451,464,498],dataset_on_off1:416,dataset_on_off:[150,156,157,160,416,420,422,423,426,430,439,448,488,489],dataset_onoff:361,dataset_simul:422,dataset_stack:[420,428],datasetmodel:[225,240,371,397,432,433,436],datasetread:100,datasets1:346,datasets2:346,datasets3:346,datasets_fil:[16,421,425,426,428,463],datasets_hess:429,datasets_in_phase_bin_3:373,datasets_mak:448,datasets_nam:[19,20,26,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,396,429,451,463,498],datasets_read:[451,456],datasets_sl:445,datasetsconfig:16,datasetsmak:[153,402,414,448,453,479],datasetsmetadata:376,datasetwrit:101,datastor:[16,85,155,355,359,364,381,385,391,402,403,405,406,408,414,417,420,421,422,425,426,428,430,432,436,439,441,448,453,457,458,462,463,479,486,488,489,538],datastorecheck:409,datastoreindex:359,datastoreinmemori:359,datastoremak:[391,402],datastoremetadata:376,datastoreobserv:[156,157,355,359,395,408],datastorexml:359,datasum:[79,84,95,96,97,99,101,103,104,133,134,140,145,148,175,176,178,182,184,187,188],datat:[83,86],date:[83,86,330,366,374,375,376,378,386,408,421,424,452,458,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,542],datefmt:[16,421,425,426,428,463,538],dateref:424,datetim:376,datetime64:[83,86],datfix:424,daughter:376,david:[359,364,389,409,410],dc1:[358,369,410,432,441,447,451,455],dc2:358,dc:[428,455],ddof:437,de:[19,20,26,65,95,197,198,201,205,207,208,209,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,275,375,397,400,403,443,458,537],deactiv:380,dead:[79,82,84,308,359],dead_tim:[79,84,308],deadc:359,deadlin:[358,362],deadtim:[84,168,423,432,436,455],deadtime_fract:84,deal:[82,349,355,364,365,423,432,460,479],debanjan:391,debian:[366,382,404],debug:[11,349,355,360,365,411,420,449,479,538],dec:[65,79,81,83,84,86,89,126,158,349,350,354,358,360,362,365,366,369,387,413,416,420,422,424,426,430,433,438,439,441,444,448,450,455,456,457,458,464,465,467,479,483,488,542],dec_pnt:458,dec_tru:362,decad:[17,18,21,22,24,25,27,105,180,258,432],decai:[17,18,20,21,22,23,24,25,27,210,216,233,372,432,437,440,452,467,528],decemb:387,decid:[349,355,358,359,360,361,363,364,368,371,372,373,378,421,453,463,542],decim:[83,86],decis:[349,350],declar:[15,83,86,240,328,329,352,356,357,360,365,366,372,379,396,478],decor:[328,329,349,376,538],decorrel:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],decoupl:67,dedic:[352,363,364,373,375,376,379,395,396,397,420,421,422,428,441,446,463,464,476],deduc:373,deep:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,80,82,83,86,94,95,96,97,99,103,104,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,253,254,428],deepcopi:[28,29,30,31,32,35,36,37,39,40,83,86,248,250,252],def:[16,28,29,30,31,32,35,36,37,39,40,80,328,329,349,350,360,361,362,363,372,373,376,377,428,446,452,462,488,538,540],def_unit:[416,423,425,428,430,436,440,455],default_alpha:[21,27],default_beta:27,default_css:[83,86],default_css_nb:[83,86],default_epoch:332,default_gamma:27,default_hdu_t:78,default_interp_kwarg:[129,130,131,132,135,136,137,139,142,144,146,147,407],default_nam:[83,86],default_notebook_table_class:[83,86],default_obs_t:78,default_paramet:[19,20,26,197,198,199,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,377],default_scale_radiu:[17,21,22,24,25,27],default_unit:[129,130,135,137,142,147,447],defer:[99,104],defin:[15,16,19,20,26,28,29,30,31,32,33,35,36,37,39,40,42,43,44,45,46,47,52,53,79,80,83,84,86,90,96,97,98,99,102,103,104,111,112,113,114,115,117,118,121,132,133,134,136,140,143,144,145,146,148,151,152,156,161,173,174,175,176,178,179,180,183,184,185,186,187,188,192,193,195,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,264,270,271,290,300,305,306,307,308,311,339,340,349,350,352,354,355,358,360,361,362,363,364,365,366,370,371,373,374,375,376,377,381,382,383,390,391,394,397,400,403,407,408,413,414,421,423,424,425,426,428,429,431,434,436,437,440,441,444,445,446,447,448,449,451,452,453,455,456,457,463,465,475,476,477,479,481,484,488,489,491,495,497,499,500,501,504,505,508,509,511,512,514,516,517,519,520,521,522,523,533,535,536,537,538,539,540,541],definit:[79,80,82,84,95,97,99,103,104,152,183,275,289,349,358,359,363,370,371,372,373,376,392,396,397,413,422,425,434,439,447,448,463,475,477,484,485,490,492,495,496,540],deform:492,deg2:458,deg:[16,33,34,38,47,65,79,81,83,86,89,97,99,103,104,105,106,107,111,115,116,121,134,136,137,142,143,144,145,146,147,148,150,158,159,161,163,174,175,176,178,181,183,184,186,187,188,203,204,212,215,225,229,237,238,240,310,344,349,350,360,363,365,372,373,376,385,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,447,448,449,450,451,452,453,455,456,457,458,463,464,465,476,477,479,481,483,486,488,489,490,491,492,495,496,497,498,499,500,501,502],degre:[28,29,30,31,32,35,36,37,39,40,97,99,103,104,105,106,109,112,113,174,175,176,178,181,186,187,188,203,225,229,240,251,416,417,421,426,431,439,444,448,449,450,455,463,477,491,492,540,541],deil:[354,355,356,357,358,359,360,361,363,365,366,367,368,369,388,389,390,391,392,393,394,395,401,404,405,406,407,408,409,410],deiml:408,dej2000:[444,465],del:[28,29,30,31,32,35,36,37,39,40,83,86,360],delai:[370,374],deleg:365,delet:[28,29,30,31,32,35,36,37,39,40,82,349,360,379,381,382,383,451],delete_interv:82,delimit:113,deliv:365,delta:[19,20,23,83,86,111,112,116,119,121,137,185,231,232,261,414,446,477,484,485,496,497,499,540],delta_t:[109,261,431],demonstr:[365,390,393,394,395,396,397,402,414,437,438,449,451,460,491],denot:[97,103,373,475],densiti:[17,18,21,22,24,25,27,28,30,35,36,39,40,45,52,113,137,188,304,307,342,362,426,428,443,444,467,469,473,483,484,485,537],dep:414,depend:[11,28,29,30,31,32,35,36,37,39,40,79,84,95,97,98,102,103,109,112,113,129,130,131,132,135,136,137,139,142,144,145,146,147,148,162,173,174,183,186,188,203,217,225,240,278,329,349,351,352,353,355,360,361,362,363,364,367,368,373,375,376,377,378,379,380,381,382,383,387,389,393,394,397,404,406,409,410,412,414,416,419,423,425,426,435,439,444,446,447,448,449,450,451,453,455,456,460,475,476,479,483,484,487,488,491,504,535],deploy:375,deposit:375,deprec:[16,79,80,81,84,114,115,118,193,195,391,400,413,414,502],deprecated_argument_funct:349,deprecated_argument_function_kwarg:349,deprecated_attribut:349,deprecated_funct:349,deprecated_renamed_argu:349,deprecatedparseprotocol:[16,80],deprecation_polici:374,depriv:486,depth:[16,80,317,381,386,437,504],deriv:[17,18,21,22,24,25,27,28,29,30,31,32,35,36,37,39,40,50,51,54,95,111,114,118,121,251,349,361,362,367,370,373,424,455,457,477,491,539,540],describ:[27,28,29,30,31,32,35,36,37,39,40,78,90,113,114,116,121,144,184,192,253,271,350,352,354,355,358,359,361,362,363,365,366,368,369,372,373,374,375,386,392,400,408,409,421,424,432,433,437,446,452,455,457,458,463,475,479,483,492,493,537,538,539,540],descript:[56,57,58,59,60,61,62,63,64,65,83,86,115,192,350,354,355,363,369,374,375,386,411,428,436,444,446,449,455,457,463,464,479],description_width:[428,436,449,463,464],descriptionstyl:[428,436,449,463,464],descriptor:[83,84,86,97,99,103,104,250,287,350,396],desi:458,design:[354,355,358,359,362,363,365,369,371,373,374,388,408],desir:[16,80,83,86,143,173,174,183,186,324,325,326,449,465,492],desktop:386,destin:11,detail:[19,20,28,29,30,31,32,35,36,37,39,40,79,83,86,95,97,99,104,113,114,133,134,140,145,148,151,174,186,188,192,193,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,250,251,252,349,350,352,354,357,358,359,362,363,364,368,369,370,374,375,378,380,384,386,387,394,398,399,416,420,422,423,424,425,430,431,432,435,436,440,445,446,448,449,450,451,452,455,457,458,460,465,475,476,478,484,488,489,491,535,536,537,538,542],detect:[59,126,127,260,339,340,350,365,368,369,371,388,394,395,396,406,408,409,427,444,455,457,460,475,491,537,540],detect_t:369,detector:[79,84,98,102,137,450,457,484,537],determin:[19,20,26,28,29,30,31,32,35,36,37,39,40,83,86,105,120,136,142,144,146,158,159,161,163,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,278,300,360,364,367,375,402,414,416,422,425,426,431,438,448,450,469,536],determinist:349,deti:[79,98,102,362,455],detx:[79,98,102,362,455],dev1863:[386,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],dev:[11,16,78,80,349,351,352,365,375,378,379,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,504,532,533],develop:[350,354,355,357,358,359,360,362,363,365,366,368,369,370,371,372,374,375,377,378,379,382,386,388,401,408,409,410,455],deviat:[28,29,30,31,32,35,36,37,39,40,42,114,176,188,192,266,446],devoid:[420,482],devop:375,devot:460,dex:278,df:[83,86,109,431,446,540],diagnosi:358,diagnost:365,diagon:[132,133,134,367,377,456],diagram:542,dialog:[381,383],diamet:[174,175,176,417],diamond:453,dict:[15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,66,67,78,79,80,82,83,84,85,86,87,88,94,96,97,98,99,100,101,102,103,104,106,107,109,112,113,114,115,116,118,119,121,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,150,160,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,191,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,257,260,261,262,263,267,276,290,298,299,316,317,318,320,330,331,332,333,336,337,338,342,343,344,345,346,349,364,366,370,373,376,393,397,400,408,421,428,438,439,444,446,449,453,463,464,491,495,504],dict_kei:504,dictionari:[15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,80,83,84,85,86,87,96,97,98,99,100,101,102,103,104,106,109,112,113,114,115,118,119,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,149,150,160,173,174,175,176,178,179,181,182,183,184,186,187,188,192,193,195,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,262,263,267,288,316,317,318,320,330,333,343,366,368,373,376,377,420,422,428,446,447,453,533],dictionnari:342,did:[356,363,368,369,370,372,375,391,416,423,425,428,430,436,440,446,455],didn:[79,84,356,359,363,366,467],diff:[96,97,99,103,104,349,352,357,361,428,436,437,464],diff_flux:443,diff_flux_point:[96,445],differ:[26,28,29,30,31,32,35,36,37,39,40,46,59,65,76,82,83,86,89,95,109,112,113,114,115,118,119,121,126,129,130,131,132,135,137,139,142,147,157,175,176,178,181,182,183,184,186,187,188,260,261,262,263,308,312,324,325,340,349,350,352,354,355,357,359,360,361,362,363,365,366,367,369,370,371,372,373,375,377,379,381,383,392,395,397,407,410,411,412,414,416,420,421,422,425,428,431,432,433,434,437,438,440,444,445,446,448,450,451,452,453,456,457,460,463,465,467,475,477,479,484,491,492,496,497,536,538,539,540],different:357,differenti:[23,75,112,113,120,175,176,178,180,184,187,188,226,240,255,256,305,355,360,367,373,407,449,452,456,465,477,537],differential_flux:113,difficult:[360,363,379],diffus:[66,175,176,178,184,187,188,257,349,365,368,409,410,428,432,444,449,451,452,455,535],diffuse_cub:452,diffuse_galactic_fermi:451,diffuse_iem:[451,456],diffuse_iso:[451,456],diffuse_model:257,difrsp0:[456,465],difrsp1:[456,465],difrsp2:[456,465],difrsp3:[456,465],difrsp4:[456,465],digit:349,dilat:[188,400],dim:[142,307,405,406,430,537],dimens:[46,53,97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,181,183,184,186,187,188,248,249,252,278,290,342,365,397,408,410,414,446,447,449,452,460,475,491,492,496],dimension:[31,32,37,66,83,86,173,174,175,176,178,181,183,184,186,187,188,212,215,258,291,304,355,363,377,381,406,424,446,447,449,452,465,483,485,491,492,536,537],dimensionless:[28,29,30,31,32,35,36,37,39,40,79,137,245,246,277,434,452],dimitri:[400,402],dipol:[51,54],dirac:19,direct:[86,147,165,166,169,171,180,204,212,215,282,285,350,355,361,363,368,370,373,376,400,419,423,448,460,475,476,484,485,487,488,491,495,535,536,537],directional_offset_bi:[416,423],directli:[13,28,29,30,31,32,35,36,37,39,40,56,67,79,83,84,86,125,147,162,175,176,178,184,187,188,248,250,252,349,351,352,354,356,357,360,361,362,363,367,369,376,381,383,388,390,391,392,394,408,418,420,421,423,428,429,430,433,434,436,437,439,440,444,445,446,449,450,451,452,453,455,456,463,464,465,467,475,479,484,488,491,514,540],directori:[11,78,83,349,365,421,431,458,463,465,476,479,538],dirk:[391,405,407],disabl:[28,29,30,31,32,35,36,37,39,40,349,400],disable_unicode_literals_warn:349,disadvantag:538,disagr:354,disambigu:354,disc:[425,426,428,433],discard:[376,444],discard_on_copi:[83,86],discarded_ind:444,discarded_spati:444,discarded_t:444,disccus:358,discourag:349,discov:538,discret:[86,362,446,491],discuss:[13,59,253,349,352,353,354,355,356,357,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,377,379,386,408,458,467,468,542],disjoint:363,disk:[78,104,134,137,176,186,188,204,215,217,327,348,349,359,360,361,365,372,373,416,420,428,429,449,450,451,452,490,493,497,501,503],disk_inc:363,diskspatialmodel:[70,234,372,393,414,451,452,495],dismiss:95,disp:[483,484],dispatch:360,dispers:[78,84,97,98,99,101,102,103,104,106,132,133,134,137,155,161,162,165,166,169,349,355,360,361,362,394,396,406,407,408,410,416,417,420,421,428,432,448,457,458,463,464,475,484,487,537],displac:282,displai:[11,15,78,83,86,107,118,121,192,267,299,342,346,349,350,379,384,400,403,414,416,417,420,421,422,423,424,425,428,429,430,431,432,434,436,438,440,441,444,445,446,448,449,451,452,455,456,457,458,464,479,538],display_length:[83,86],disrupt:[389,390],dissolv:393,dist:[301,379],distanc:[17,18,21,22,23,24,25,27,41,46,47,115,126,127,183,226,252,281,307,363,406,413,422,424,434,443,444,446,473,488,514],distance_gc:[17,18,21,22,24,25,27,443],distance_max:[46,47,307,444],distance_min:[47,307,444],distance_refer:444,distinct:[364,365,370,457,541],distinguish:[262,263,373,376,416,449],distort:[363,392],distribut:[13,28,29,30,31,32,33,35,36,37,39,40,42,45,46,79,102,137,172,209,220,226,262,263,300,301,305,342,345,347,348,349,353,354,357,362,367,368,371,374,375,379,382,393,402,408,414,416,422,423,426,428,432,434,436,438,446,451,455,465,467,479,483,484,486,492,499,514,539,540],divers:373,divid:[174,180,185,370,373,432,453,457,458],djangoproject:369,dl3:[6,16,78,79,82,84,86,129,130,131,132,135,136,137,139,142,144,146,147,155,161,179,180,355,357,358,360,369,376,381,385,391,394,396,402,411,417,420,421,422,425,426,428,438,439,448,450,453,462,463,464,475,479,481,482,483,485,486,488,489,536,537],dl4:[94,96,97,99,103,104,107,111,114,118,121,140,161,355,376,381,396,440,445,446,447,479,536,537],dl5:[107,111,114,118,121,376,440,446,536,537],dl6:[107,111,114,118,121,536,537],dm:[19,20,26,378,396,411,443,452],dm_exampl:467,dmfitfunct:467,dmpipe:467,dmprofil:[17,21,22,23,24,25,27,443],dmsky:467,dn:[209,220,443],dnde:[19,20,26,64,65,112,113,120,122,123,124,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,255,373,400,418,420,421,430,434,444,445,452,456,463,465,477],dnde_cu:256,dnde_err:[112,113,477],dnde_errn:[65,112,113,444],dnde_error:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],dnde_errp:[65,112,113,444],dnde_ref:[112,113,373],dnde_ul:[65,112,113,444,465],do_someth:349,doc:[11,13,16,79,80,83,86,132,174,180,183,186,192,203,225,278,314,349,350,352,354,357,363,365,366,368,369,378,385,386,388,394,400,401,402,403,404,405,406,407,408,409,410,411,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,467,492,502,504,510,513,526,532,533,537,538,542],docker:[366,379],dockerfil:[357,378,379],docstr:[349,369,375,400,401,402,404,407,413,414,452],doctest:350,document:[11,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,98,99,100,101,102,103,104,107,109,110,111,112,113,114,115,116,117,118,119,120,121,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160,161,162,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,286,290,300,323,336,349,351,353,354,356,357,359,363,365,366,368,370,372,374,375,379,380,385,386,394,396,397,400,402,403,404,406,407,408,409,410,411,412,413,414,449,451,455,457,458,479,490,491,492,538],doe:[83,86,114,118,135,145,148,182,217,251,260,349,350,356,357,359,361,363,364,366,368,369,372,373,375,376,391,400,411,416,420,423,425,428,430,431,444,446,447,448,449,450,457,467,479,488,538],doesn:[67,349,350,354,356,357,363,366,367,369,455,456,538],dof:540,doi:375,domain:[175,176,178,184,187,188,349,363,437],domenico:406,dominguez:[205,206,372,504],dominquez:205,don:[28,29,30,31,32,35,36,37,39,40,83,86,132,348,349,352,354,356,357,366,376,379,417,420,425,430,438,450,452,467,536,538,541,542],donath:[358,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],done:[28,29,30,31,32,35,36,37,39,40,83,86,112,114,342,349,350,352,354,355,356,360,362,363,364,365,367,368,369,372,373,375,381,385,409,414,417,423,428,429,433,434,436,440,441,445,448,449,452,453,475,479,487,488,492,523,540,542],dor9nsf3:448,dos2unix:349,dot:[50,51,54,103,104,175,176,178,184,187,188,414],doubl:[27,111,122,267,375,407],doubling_dict:267,down:[50,51,54,121,354,356,359,363,368,392,445,456,541],downgrad:[174,348],download:[65,89,96,113,352,357,365,366,369,376,378,381,383,385,389,390,392,393,400,409,410,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538],downsampl:[97,99,103,104,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,177,178,179,180,183,184,185,186,187,188,391,397,406,445],downsampled_energi:445,downsampling_factor:[121,430],downward:[262,263],dozen:349,dpp:375,dr1:[16,63,78,79,82,84,86,137,155,246,357,369,385,417,420,421,426,428,439,448,453,462,463,464,476,479,481,482,483,485,486,488,489,493,524],dr2:[63,246,400,493,524],dr3:[63,245,452,493,524],dr4:63,dr:[17,18,21,22,24,25,27,497],draft:[349,353,354,377,409],drag:352,draw:[33,176,300,362],drawback:[364,368],drawn:[300,362],drift:[81,89,90,411],drive:365,driven:[11,15,355,365,367,369,408,460,478],drop:[52,53,97,99,103,104,112,113,118,133,134,140,145,148,173,174,175,176,178,179,183,184,186,187,188,204,211,250,334,353,354,365,366,371,390,393,394,397,400,407,410,432,449,475],ds9:[79,174,183,186,190,203,225,349,350,363,392,450,452,492],ds9parser:363,ds:85,dss:359,dt:[83,86],dtime_t:437,dtype:[33,38,83,86,130,132,135,173,174,175,176,178,183,184,186,187,188,203,225,278,349,377,422,425,434,444,445,447,448,449,455,456,465,477],due:[59,83,86,349,377,403,449,455,514,538],dummi:[103,104,363,425,479],dump:[16,80,365],dumps_kwarg:[16,80],duplic:[83,86,95,133,349,350,352,355,369,370,373,397,400],durat:[79,82,84,89,423,432,436,439,455,476,479],dure:[16,28,29,30,31,32,35,36,37,39,40,50,52,53,79,80,81,84,90,97,99,103,104,152,260,350,357,361,365,368,369,371,374,375,376,377,378,379,394,397,414,421,422,432,438,439,445,448,450,464,475,476,537,541],dust:205,duti:375,dwarf:467,dx:[33,282],dy:[33,282],dynam:[346,476],dz:282,dzn8jeha:423,e2dnd:[19,20,26,112,113,120,122,123,124,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,373,400,407,416,418,420,421,422,429,444,465,477,479,514],e2dnde_err:[112,113],e2dnde_errn:[112,113,444],e2dnde_errp:[112,113,444],e2dnde_ref:[112,113],e2dnde_ul:[112,113,444],e501:[19,20,96,97,99,103,104,111,114,115,121,132,168,179,180,186,205,257,346],e:[13,16,19,20,26,28,29,30,31,32,35,36,37,39,40,46,47,50,51,54,59,65,66,78,79,80,81,82,83,86,90,113,126,132,133,134,135,137,168,174,175,176,178,180,182,184,186,187,188,192,193,195,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,262,263,267,278,280,284,310,317,327,338,339,344,348,349,350,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,371,372,373,374,375,376,378,379,381,382,383,385,386,388,389,390,394,400,401,402,406,408,409,410,414,417,418,420,421,422,423,426,429,430,431,432,433,434,436,437,438,439,441,443,444,445,446,449,450,451,452,453,455,456,457,459,460,462,463,464,465,467,474,475,476,477,479,483,484,489,490,491,495,496,497,504,505,507,508,509,511,512,516,517,519,520,521,522,532,535,537,538,539,540,541,542,543],e_0:[207,208,209,219,220,231,232,241,244,245,246,508,509,512,514,516,519,520,521,522],e_:[19,20,26,50,52,53,132,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,475,481,483,484,485,505,509,517,519,520],e_b:372,e_cut:[65,444],e_cutoff:514,e_d:[231,232],e_edg:397,e_max:[65,113,373,416,420,421,422,433,438,444,445,446,449,465,477],e_min:[65,113,373,416,420,421,422,433,438,444,445,446,449,456,465,477],e_peak:[209,220],e_reco:[132,137,441,537],e_ref:[65,113,373,416,420,421,438,444,463,465,477],e_refe_mine_maxdndednde_errpdnde_errndnde_ulsqrt_tsis_ul:418,e_refe_mine_maxdndednde_errtssqrt_tsnprednpred_excessstatstat_nullcountssuccess:430,e_sn:[43,44,52],e_tru:[137,441,456,537],each:[11,19,20,26,28,29,30,31,32,35,36,37,39,40,65,76,82,83,86,87,95,97,99,102,103,104,107,109,111,112,113,114,118,120,121,122,123,124,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,156,157,172,173,174,175,176,178,179,180,182,183,184,185,186,187,188,192,197,198,200,201,203,204,205,207,208,209,212,213,215,219,220,222,225,226,227,228,230,231,232,236,237,238,241,242,243,244,245,246,248,249,252,253,314,338,347,349,352,354,355,357,358,359,361,362,363,364,365,366,369,370,373,375,379,380,387,394,397,408,411,414,417,423,424,426,428,429,430,432,433,438,439,440,441,443,444,445,446,447,448,449,451,452,453,457,458,464,468,474,475,476,479,483,484,485,491,492,498,514,515,537,538,541,542],eager:365,earli:[363,368,369,455],earlier:[356,375],earth:[41,84,255,456],earth_azimuth_angl:[456,465],earthloc:[79,81,84,89,92,288,376],easi:[349,350,355,360,363,364,365,368,369,373,376,394,400,408,449,450,456,476,535,536,538,542],easier:[349,355,360,368,373,408,411,455],easiest:382,easili:[83,86,113,355,360,361,365,376,380,381,438,439,446,447,449,456,465,538],ebel:424,ebl:[205,206,253,367,372,394,397,407,414,452,493,524],ebl_data_builtin:504,ebl_dominguez11:[206,504],ebl_franceschini:[206,253],ebl_franceschini_2017:206,ebl_saldana:206,eblabsorbtionnormspectralmodel:372,eblabsorptionnormspectralmodel:[235,372,397,452,504],ebound:[132,180,492],ebreak:[197,241,505,519],ec:[441,452,492],eccentr:[204,212,215,495,496,497],echo:538,eco:375,ecosystem:376,ecpl:[65,76,207,208,209,260,372,406,418,444,452],ecpl_norm:510,ecsv:[59,62,361],ecut:[207,244,509,520],edelson2002:268,edelson:[268,437],edg:[97,99,103,104,107,109,111,114,117,118,121,128,129,130,131,132,133,135,136,137,139,142,144,146,147,155,156,161,172,173,174,175,176,177,178,179,180,183,184,185,186,187,188,204,342,363,373,391,397,400,416,429,430,431,432,433,437,447,448,449,450,456,457,463,495],edge_max:495,edge_min:495,edge_width:[204,451,495],edgecolor:[346,420,422,424,430,431,434,441,443,488,495,496,497],edges_max:[177,180,185,449],edges_min:[177,180,185,449],edisp2d:[134,137],edisp3d:447,edisp:[16,78,83,84,91,97,99,100,103,104,132,133,134,137,141,155,161,162,165,166,240,359,360,361,362,365,395,397,400,406,407,408,416,417,420,421,422,423,424,425,426,428,430,432,433,436,439,440,445,448,453,455,456,457,458,463,475,483,484,537],edisp_2d:[78,83,137,455,458],edisp_3d:447,edisp_:475,edisp_ev:447,edisp_kernel:[132,445,483],edisp_kernel_map:[133,457],edisp_map:[98,102,133,134,447,483],edisp_new:447,edispersionmap:475,edispkernel:[99,133,137,165,395,483],edispkernelmap:[97,99,100,103,104,106,134,140,141,145,148,155,162,165,396,397,424,448,456,479,483],edispmap:[97,98,99,102,103,104,133,140,141,145,148,155,162,165,166,361,362,370,390,393,394,395,397,400,447,483],edit:[350,352,354,356,357,358,365,369,378,379,382,463,538],editor:[350,375,421,463,538],editori:375,edm:446,edu:[28,30,31,32,33,35,36,37,38,39,40,50,52,53,57,58,60,61,79,84,107,114,135,174,183,186,192,203,222,225,255,256,269,369,446,492],eemin:514,eff:[135,481,484,496,497],eff_area:447,effarea:447,effect:[28,29,30,31,32,35,36,37,39,40,45,46,78,83,84,86,99,101,134,135,161,162,167,169,170,183,203,225,339,340,349,354,359,360,362,363,373,404,406,420,432,434,437,438,457,458,460,463,484,492,496,497,537],effective_area:[141,362,455],effective_livetim:448,effective_times_src:448,effectivearea3d:447,effectiveareat:[361,388,400,404],effectiveareatable2d:[84,134,141,147,169,355,404,447,455,481],effici:[28,29,30,31,32,35,36,37,39,40,84,99,104,354,360,361,362,363,364,371,418,453,484,489,540],effort:[356,358,365,366,368,369,372,391,475],eflux:[19,20,26,112,113,122,123,124,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,373,400,434,452,477],eflux_err:[112,113,373],eflux_errn:[112,113],eflux_errp:[112,113],eflux_ref:[112,113],eflux_ul:[112,113],eg:[349,428,436,440,445,447,451,452],egal:455,egg:382,einasto:[21,467],either:[65,78,83,84,86,90,104,112,113,137,152,173,174,175,176,178,180,181,182,183,184,186,187,188,217,278,308,338,350,352,354,356,363,365,368,371,375,381,400,414,421,428,434,440,445,446,452,463,475,477,479,490,492,535,538],ej:[50,52,53],eject:52,ejecta:52,el:[26,443],elabor:[375,424],elaps:[79,358,537],electron:[50,255,455,514],element:[19,20,26,28,29,30,31,32,35,36,37,39,40,83,86,87,95,97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,181,183,184,186,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,342,367,414,444,449,491],elementtre:455,elev:364,elif:[349,363,376],elli:[388,401],ellips:[204,363,492,495],ellipseannulusskyregion:[488,492],ellipseskyregion:[199,200,204,212,215,227,229,237,238,242,248,252,417,452,488],ellipsoid:446,ellipt:[492,497],elong:[390,393,394,495,496],elpas:414,els:[28,29,30,31,32,35,36,37,39,40,112,113,121,182,349,352,363,366,373,376,377,379,381,383,453,538,540],email:[350,352,375,379],emax:[118,230,256,425,431,517],emax_fit:441,embryon:365,emce:[358,366,390,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],emerg:359,emeri:409,emin:[118,230,256,425,431,517],emin_fit:441,emiss:[52,66,122,355,360,364,420,426,428,429,432,451,455,456,475,489,514,535],emit:[78,193,194,195,196,335,349,390,408,484],emitt:420,emphasi:446,empir:40,emploi:422,empti:[87,95,97,99,103,104,126,155,175,176,178,182,184,187,188,192,225,335,357,359,391,403,428,432,433,436,440,448,449,457,468,475,488,489,492],empty_dataset:416,empty_i:440,empty_map:[97,99,103,104,431,448,488],emsembl:88,en:[34,79,83,84,86,114,168,183,192,253,278,352,369,378,416,423,425,428,430,436,440,446,447,450,455,476,490,492],enabl:[358,361,391,400,409,416,423,425,428,430,436,440,455],encapsul:[186,373,490],enclos:[188,350,417,422,446,450],enclosur:[78,139,422,447],encod:[16,80,83,86],encompass:[174,490,492],encount:[16,80,149,381,382,383,422,432,440,458,526,538],encourag:[349,354,375,378,408],end:[52,53,82,83,86,87,89,95,97,103,112,113,121,180,217,225,354,356,358,360,361,363,364,365,366,368,369,372,401,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,540],end_po:[115,311,434],endswith:349,energet:432,energi:[16,19,20,26,44,50,51,52,53,58,61,62,64,65,69,71,72,76,78,79,84,91,95,96,97,98,99,101,102,103,104,105,106,107,109,111,112,113,114,115,118,120,121,122,123,124,125,128,129,130,132,133,134,135,136,137,142,143,144,145,146,147,148,155,157,161,162,164,165,166,168,169,171,173,174,175,176,178,180,181,183,184,186,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,256,258,259,344,345,349,355,358,360,361,362,363,364,365,367,368,371,373,377,381,385,389,390,391,392,394,395,396,397,399,400,402,405,406,407,408,409,410,411,412,414,417,419,420,421,423,424,425,426,428,429,430,432,434,435,436,438,439,440,441,444,445,448,449,457,458,460,463,464,465,474,475,476,479,484,487,488,490,491,492,498,504,510,513,515,518,523,533,535,536,537,539],energy_axes_are_align:95,energy_axi:[19,20,26,97,99,103,104,105,112,113,132,133,134,145,147,148,155,175,176,178,184,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,373,416,417,420,422,423,424,426,430,432,433,439,440,445,447,448,449,452,456,457,464,483,486,488,489,491,492],energy_axis_new:445,energy_axis_tru:[97,99,103,104,105,106,132,133,134,135,137,142,143,145,155,394,416,417,420,422,423,424,426,430,432,433,436,439,440,441,445,447,448,456,457,464,483,486,488,489],energy_bin:365,energy_bin_per_decade_max:105,energy_bound:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,363,400,418,420,422,428,429,441,443,444,446,452,456,464,465,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,523],energy_cent:250,energy_column:373,energy_depend:431,energy_dependent_estim:[431,435],energy_edg:[16,107,109,111,114,115,118,121,128,180,298,373,420,421,424,425,426,428,429,430,431,434,438,439,440,441,457,463,464,477],energy_estim:457,energy_flux:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,452,465],energy_flux_err:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],energy_flux_error:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],energy_index:142,energy_integr:51,energy_logspac:368,energy_mask:[173,174,183,186,396,422,428,441,445,446,450],energy_max:[19,20,26,79,95,97,99,103,104,112,113,114,115,118,132,173,174,180,183,186,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,250,253,258,363,365,428,433,441,443,445,448,452,465],energy_min:[19,20,26,52,53,79,95,97,99,103,104,112,113,114,115,118,132,173,174,180,183,186,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,250,253,258,363,365,428,433,441,443,445,448,452,465],energy_nam:[145,148],energy_nod:[372,452],energy_pow:[19,20,26,113,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,259,428,441,446,464,465],energy_rang:[64,65,69,71,72,76,79,95,97,99,103,104,400,445,450,521,522],energy_range_fit:[97,99,103,104,445],energy_range_saf:[97,99,103,104,445],energy_range_tot:[97,99,103,104],energy_reco:[349,436],energy_ref:[112,113],energy_resolut:408,energy_saf:365,energy_tru:[16,91,97,99,103,104,132,133,134,135,136,137,142,143,144,145,146,155,162,165,173,174,180,183,186,349,362,414,416,417,420,421,422,423,424,425,426,428,430,432,433,436,438,439,440,441,445,447,448,449,450,452,453,455,456,457,463,464,483,484,486,488,489,492],energy_true_axi:132,energyaxesconfig:16,energyaxisconfig:16,energybound:392,energydependentmorpholog:431,energydependentmorphologyestim:431,energydependentmultigausspsf:[141,388,447,455,485],energydependenttablepsf:[355,370,389,400],energydispers:[132,133,134,137,361,395,405,408,409],energydispersion2d:[84,132,134,141,147,165,166,355,400,402,407,447,455,483],energydispersion3d:447,energyoffsetarrai:405,energyrangeconfig:16,enforc:[16,28,29,30,31,32,35,36,37,39,40,80,352,376],engin:[83,86],english:479,enhanc:[354,358,385],enlarg:489,enough:[362,364,365,420,423,426,436,438,450],enrico:365,enrico_config:365,enrico_xml:365,enriqu:[357,365,369,389,390,391,392,393,394,395,396,397,400,402,408,409,410],ensembl:88,ensur:[28,29,30,31,32,35,36,37,39,40,161,260,349,355,360,361,372,376,402,416,420,439,450,499],enter:[194,196,203,225,385],entir:[16,28,29,30,31,32,35,36,37,39,40,80,83,86,97,99,103,104,162,417,428,431,437],entri:[43,44,83,86,89,109,112,114,115,118,119,192,260,317,349,361,369,373,376,378,381,382,383,400,411,417,421,444,446,449,452,453,479,480,492],entry_point:401,enumer:[432,444,451],env:[352,366,378,380,381,383,384,409,538],envelop:[362,446,464],environ:[11,78,315,348,349,352,356,357,361,366,369,378,379,381,382,383,384,385,389,390,392,408,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,538],envis:358,envvar:11,eosc:375,episod:122,epoch:332,epsilon:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],epsilon_:[97,103,475],epsilon_k:[97,103,475],epsmch:446,eqcon:[28,29,30,31,32,35,36,37,39,40],eqnarrai:372,equal:[28,29,30,31,32,35,36,37,39,40,52,107,111,114,118,121,132,180,349,359,362,410,420,438,439,450,475,491,541],equat:[27,245,246,268,500,501,505,508,509,511,512,516,517,519,520,521,522,540,541],equatori:[90,138,174,175,176,178,181,183,186,187,188,447],equival:[28,29,30,31,32,35,36,37,39,40,83,86,112,129,130,131,132,135,136,137,139,142,144,146,147,173,174,175,176,178,180,183,184,186,187,188,342,350,361,362,363,372,373,414,444,448,449,450,452,455,463,475,477,479,490,491,492,538,539,540],er:[26,443],era:205,ereco:[132,447],erf:[213,495],erg:[52,53,65,416,420,444,465,472,479],erlangen:368,erod:188,eros:[186,188],err:446,errat:349,errn:[111,114,118,119,121,192,411,540],errn_2sigma:540,error:[11,16,19,20,26,28,29,30,31,32,35,36,37,39,40,65,66,75,80,82,97,99,103,104,111,112,113,114,115,116,117,118,119,121,122,123,124,151,177,180,185,193,195,197,198,199,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,252,253,262,263,267,268,269,327,349,350,363,364,365,367,372,373,376,377,390,394,396,398,400,401,403,407,408,411,413,414,417,418,420,421,423,425,428,429,430,431,433,436,437,438,440,441,444,452,453,455,463,464,465,467,475,477,479,496,514,523,535,538],error_callback:151,errorbar:[79,96,97,99,103,104,180,184,202,210,214,216,217,218,233,239,251,254,416,437],errp:[111,114,118,119,121,192,411,540],errp_2sigma:540,escap:[349,375],especi:[83,86,122,352,356,359,363,369,370,379,400,406,417,430,439,444,449,455,456],essenti:[359,361,364,394,395,396,434,449],establish:[349,362],estim:[6,19,20,26,50,70,96,99,104,105,107,108,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,150,156,157,158,164,173,174,183,186,188,192,193,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,260,266,269,273,298,342,353,355,358,362,363,364,365,368,371,377,381,390,391,394,395,396,397,400,401,402,406,407,408,409,411,414,416,420,422,426,428,429,430,433,435,439,440,441,442,445,446,450,457,460,463,464,475,479,489,491,535,536,537,539,541],estimate_best_fit:[114,115,118,119],estimate_count:[114,115,118,119],estimate_energy_depend:109,estimate_errn_errp:[114,115,118,119],estimate_excess_map:111,estimate_exposure_reco_energi:111,estimate_fit_input_map:121,estimate_flux_default:121,estimate_flux_map:121,estimate_flux_point:[114,115,118],estimate_kernel:[111,121],estimate_map:107,estimate_mask_default:[111,121],estimate_min_e2dnd:120,estimate_min_excess:120,estimate_npr:[114,115,118,119],estimate_npred_excess:[114,115,118],estimate_pad_width:121,estimate_scan:[114,115,118,119],estimate_t:[114,115,118,119],estimate_time_bin_flux:118,estimate_ul:[114,115,118,119],estimator_result:441,et:[26,33,59,122,135,205,268,269,359,424,431,437,467,537],eta:[215,216,237,497,501,528],eta_:50,eta_b:50,eta_rang:[497,501],etc:[99,104,112,349,354,355,359,360,361,364,365,369,370,373,375,376,397,421,423,428,436,438,440,441,445,449,452,456,463,475,488,537],etru:447,eu:369,euclidean:276,europ:375,ev2:447,ev:[447,479,514],evalu:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,66,83,86,97,99,102,103,104,114,118,129,130,131,132,135,136,137,139,142,144,146,147,155,162,168,183,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,349,354,358,364,367,368,371,372,373,377,389,390,391,393,396,400,405,406,408,409,410,411,412,413,414,432,433,441,447,452,455,456,475,496,497,504,537,540],evaluate_contain:[136,144,146,402],evaluate_direct:[136,144,146],evaluate_energy_flux:[231,232],evaluate_error:[19,20,26,113,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,367],evaluate_geom:[199,200,204,211,212,215,227,229,237,238,240,242,248,252,452,497],evaluate_integr:[230,231,232],evaluate_paramet:[136,144,146],evaluation_bin_size_min:[199,200,204,212,215,227,229,237,238,240,242,248,252],evaluation_radiu:[199,200,204,212,215,227,229,237,238,240,242,248,250,252,360,361,372,452],evaluation_region:[199,200,204,212,215,227,229,237,238,240,242,248,252],even:[28,29,30,31,32,35,36,37,39,40,83,86,186,194,196,349,352,354,356,357,363,366,367,375,376,392,438,441,446,448,449,450,451,452,463,475,477,500,501,538],event:[78,79,81,82,83,84,85,88,98,102,111,120,134,145,148,149,156,164,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,308,349,350,353,355,359,361,363,364,365,376,381,385,392,393,394,396,400,401,402,407,408,409,410,411,414,417,420,421,422,426,428,429,435,440,448,457,460,462,463,464,475,479,487,488,489,536,537,540],event_3fhl:465,event_class:[80,456,465],event_det_coord:[98,102],event_fil:84,event_filt:85,event_filter_typ:85,event_id:[362,455,456,465,476],event_list:[79,349,350,362],event_list_meta:[98,102,395],event_sampl:[432,435],event_sampling_nrg_depend_model:[433,435],event_typ:[456,465],eventlist:[80,84,98,102,164,175,176,178,184,187,188,349,350,355,362,363,364,376,385,390,397,402,404,405,406,408,409,432,433,441,449,455,456,465,479,488],eventlistbas:85,eventlistdataset:409,eventlistlat:476,eventlistmetadata:[79,376],events2:79,events_0001:432,events_1:476,events_2:476,events_3fhl:465,events_:432,events_bkg:362,events_gc_3fhl:465,events_list:362,events_new:479,events_path:[78,432],events_src:362,events_tot:362,events_vela:441,eventu:[349,354,365,368,369,385,452],ever:541,everi:[174,176,188,252,349,352,357,358,359,361,365,374,376,379,417,420,449,464,538],everyon:354,everyth:[349,367,368,479],everywher:[349,363,368,369,389],evid:[122,444],evolut:[50,52,53,205,355,369,435,460,472,473,475,476,484,487,491,493],evolv:[28,29,30,35,36,39,40,50,52,53,205,366,369,376,433,447],evt_sampl:432,ex:[11,449,451,452],exact:[28,29,30,31,32,35,36,37,39,40,86,367,449,456],exactli:[107,111,114,118,121,180,344,422,439,441,450,456,475,492],exagger:340,examin:[375,483],exampl:[11,19,20,28,29,30,31,32,35,36,37,39,40,64,65,76,78,79,81,82,83,84,85,86,89,94,96,97,99,103,104,107,111,113,115,117,118,120,121,122,130,132,134,135,136,137,143,145,148,155,158,160,174,175,176,178,181,184,186,187,188,194,196,217,223,253,256,260,298,302,308,317,328,329,334,337,339,340,342,344,346,349,350,352,354,357,359,360,361,362,363,364,365,366,367,369,372,375,376,377,381,382,383,385,389,391,394,397,400,401,402,405,407,408,409,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,469,470,479,481,482,483,485,490,492,493,532,533,538,540,542,543],example_cub:449,example_cube_fgst:449,exce:105,except:[65,67,76,83,86,97,99,103,104,151,175,176,178,184,187,188,278,346,349,360,364,368,382,447,451,492],excerpt:458,excess:[15,65,70,97,99,103,104,108,111,112,113,114,115,118,120,123,124,155,262,263,268,269,347,361,364,396,397,403,408,416,420,421,423,424,425,428,430,434,436,440,441,444,445,448,450,451,457,463,464,477,479],excess_estim:457,excess_estimator_integr:457,excess_integr:457,excess_map:[16,421,425,426,428,463],excess_map_estim:441,excess_matching_signific:[399,409],excess_min:128,excess_r:445,excessestim:373,excessmapconfig:16,excessmapestim:[108,373,396,397,398,400,403,413,426,428,441,450,457,477],excesspointsestim:373,excessprofileestim:[373,397],exchang:363,exclud:[16,80,96,97,99,103,104,117,156,158,194,196,203,225,355,412,448,450,488,489],exclude_default:[16,80],exclude_non:[16,80],exclude_unset:[16,80],exclus:[16,79,150,152,157,158,159,160,163,174,186,355,363,365,396,398,417,425,428,448,486,488],exclusion_mask:[150,152,157,158,159,160,163,420,426,430,448,450,464,486,488,489],exclusion_mask_2d:448,exclusion_mask_crab:[421,463],exclusion_radiu:450,exclusion_region:420,exclusionmask:406,execut:[11,111,114,118,119,121,349,350,352,354,356,357,358,364,365,369,379,380,381,382,383,384,385,394,402,408,419,427,435,442,448,449,454,456,459,460,461,465,466,503,524,534,536],exercis:[352,365,369,375],exhibit:431,exist:[11,15,26,28,29,30,31,32,35,36,37,39,40,79,83,84,86,94,95,96,97,99,101,103,104,112,113,133,134,140,145,148,160,173,174,175,176,178,179,182,183,184,186,187,188,203,217,225,248,249,250,252,333,349,352,354,357,358,360,361,362,363,365,366,368,369,370,372,373,375,376,381,382,385,386,389,393,394,408,409,411,414,424,426,445,449,450,452,453,456,476,491,492,539],exist_ok:[420,421,428,429,432,463,464],exit:[11,15,83,86,194,196,203,225,390,502,538],exjgjyyb:428,exot:366,exp:[21,28,29,30,31,32,35,36,39,40,135,210,213,220,231,232,244,350,372,440,452,496,497,504,508,509,510,511,520,521,522,526,527,528,541],expand:[118,315,359,400],expand_map:118,expans:[50,52,53],expcutoffpowerlaw3fglspectralmodel:[235,372,418,452,509],expcutoffpowerlaw:510,expcutoffpowerlawnormspectralmodel:[209,235,452,510],expcutoffpowerlawspectralmodel:[19,20,26,76,197,198,201,205,207,208,213,219,220,222,226,228,230,231,232,235,236,241,243,244,245,246,249,253,372,418,420,428,452,508,510,514],expdecai:[210,493,534],expdecay_model:[432,526],expdecaytemporalmodel:[247,372,396,400,432,440,452,526],expect:[28,29,30,31,32,35,36,37,39,40,99,102,104,112,160,165,166,171,186,262,263,264,266,270,275,308,349,354,362,364,365,366,369,374,376,416,417,422,423,424,426,432,433,438,443,446,449,450,456,458,475,477,539,540,541],expens:[28,29,30,31,32,35,36,37,39,40,420,433],experi:[352,354,358,360,364,377,379,408,467,537,542],experienc:358,experiment:[28,29,30,31,32,35,36,37,39,40,365,538],expert:369,expertis:366,expfactor:[245,246,521,522],expir:362,explain:[83,86,349,352,354,363,366,368,369,375,379,381,383,394,400,416,420,422,443,446,450,452,479,536,538],explan:[107,111,114,118,121,354,386,437,542],explicit:[83,86,174,176,349,365,367,373,491,542],explicitli:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,80,129,130,131,132,135,136,137,139,142,144,146,147,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,278,359,371,380,390,433,451,477,491,542],explor:[175,176,178,184,187,188,357,365,385,420,425,428,431,434,435,437,438,439,444,445,451,457,458,463,465,475,476,477,479,487,488,491,535],explos:52,expomap:362,expon:[372,452],exponenti:[28,30,36,39,40,207,208,209,210,244,245,246,350,360,394,428,432,440,493,524],exponentialcutoffpowerlaw:514,expos:[6,28,29,30,31,32,35,36,37,39,40,358,363,364,365,368,369,413,449,460,477,478,536],exposur:[16,79,84,97,99,100,102,103,104,111,121,125,133,134,140,143,145,148,150,155,162,165,166,167,169,170,171,240,271,274,275,355,358,359,360,361,362,373,392,397,405,407,408,409,411,416,417,420,421,422,423,424,425,426,428,430,432,433,436,439,440,445,448,449,450,457,463,464,475,484,487,492,540],exposure_geom:[134,145],exposure_hdu:[133,134,140,145,148],exposure_hdu_band:[133,134,140,145,148],exposure_hpx:456,exposure_map:[133,134,140,145,148,165,166,171,447],exposure_max:445,exposure_min:445,exposure_tim:362,express:[111,122,262,263,360,372,373,426,446,447,452,475,491,497,539,540,541],exptest:406,extend:[15,19,20,26,70,83,86,87,95,150,177,180,188,197,198,201,205,207,208,209,213,219,220,222,225,226,228,230,231,232,236,241,243,244,245,246,249,253,356,360,361,362,363,369,371,372,373,376,381,393,395,400,419,420,424,433,438,444,449,450,451,452,456,460,475,476,487,488,535],extended_archive_v18:502,extended_source_spectral_analysi:[417,419],extens:[41,79,132,175,176,178,180,187,188,199,200,203,204,212,215,225,227,229,237,238,242,248,252,351,354,355,356,357,358,360,362,364,365,366,367,368,369,379,403,431,432,433,452,538],extent:[186,203,225,363,424,452],extern:[350,375,401,405,406,409,455,479],extnam:447,extra:[16,28,29,30,31,32,35,36,37,39,40,47,79,80,173,174,179,183,184,186,192,248,249,276,348,350,356,357,363,365,366,369,375,376,405,408,409,449,450,479,492],extra_term:275,extract:[16,80,95,97,99,103,104,112,113,118,133,134,140,145,148,151,156,157,162,164,172,175,176,177,178,180,185,186,187,188,250,349,359,364,373,375,376,402,403,414,416,417,420,421,422,423,428,429,432,433,434,436,445,449,463,475,483,488],extragalact:[205,455],extrapol:[129,130,131,155,175,176,178,184,187,188,205,253,290,400,405,407,408,447,449,455,456,491],extras_requir:366,extrem:[349,376,449,497],f06:48,f06b:[49,469],f06p:49,f0:[251,532],f1:[251,532],f2:[251,532],f4:[130,135,422,445,447,449,455,456],f8:[447,456],f:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,83,86,121,182,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,277,278,305,349,352,366,371,372,377,381,383,402,411,416,417,420,421,423,429,430,431,432,433,439,440,441,443,444,446,448,450,452,453,456,457,462,463,464,465,473,488,504,514,525,526,527,528,529,530,531,538,539,540],f_0:[230,517],f_:[267,269,277,475],f_dead:[79,84],f_i:267,f_max:437,f_max_err:437,f_mean:437,f_mean_err:437,f_min:437,f_min_err:437,f_pp:268,f_var:268,fabio:[362,367,390,392,393,394,395,396,397,399,400,402,403,407,409,411,413,414],face:[354,357],facecolor:[346,420,422,430,431,434,441,443,495,496,497],facil:374,fact:[19,20,92,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,375,417,492],facto:375,factor1:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252],factor:[19,20,23,97,98,99,102,103,104,107,112,133,134,136,140,142,143,144,145,146,148,155,162,168,172,173,174,175,176,178,179,180,183,184,186,187,188,191,193,194,195,196,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,227,229,230,231,232,233,236,237,238,239,240,241,242,244,245,246,248,251,252,254,349,362,364,396,416,423,425,428,430,434,436,440,445,448,452,455,475,492,504],factor_max:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252],factor_min:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252],factori:[175,176,187,188,363,368,372,490,492],factoris:[240,372,452,535],fail:[16,80,192,350,352,363,378,379,403],failur:[411,414],faint:539,fair4r:375,fair:375,fake:[97,99,103,104,361,362,392,422,423,436,440],fall:[122,158,185,203,225,349,356,358,359,366,409,410,437],fallback:349,fals:[16,19,20,23,26,28,29,30,31,32,35,36,37,39,40,65,76,78,79,80,83,84,86,91,95,96,97,98,99,101,102,103,104,106,111,112,113,114,118,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,155,162,165,166,168,169,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,192,193,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,278,308,346,349,363,365,372,377,408,409,416,417,420,421,422,423,425,426,428,429,430,431,432,434,436,438,439,440,443,444,445,446,448,449,450,451,452,456,463,464,465,476,486,488,489,502,514,523],famili:375,familiar:[366,367,449,450,465],fanci:[349,441],far:[357,362,364,366,370,373,376,385,400,432,467],fashion:[364,369],fast:[349,363,367,446],faster:[83,86,175,176,178,184,187,188,327,424],faucher:[31,33,37,39,45],faucherkaspi2006:[28,29,31,35,36,39,40,48],faucherkaspi2006velocitybimod:49,faucherkaspi2006velocitymaxwellian:49,faucherspir:469,favour:[354,362,377],favourit:430,fc:[452,492],fcluster:[276,453],fcluster_kwarg:[276,453],fcn:446,fdx:349,fe:255,feasibl:[363,368,423,436,445],featur:[6,13,83,86,91,107,126,276,277,339,340,349,352,356,358,359,360,361,363,365,366,371,372,373,375,376,377,382,387,390,391,392,393,394,396,397,400,404,407,408,409,410,437,449,450,452,453,467,477,514],feature_irf:453,features_irf:453,feb:[355,356,366,370,385,386,387],fed:422,feedback:[352,354,358,363,365,366,369,370,372,378,408,447,479],feedstock:[378,379],feel:[359,538],feijen:[413,414],feldman1998:[537,540],feldman:[391,397,405,407,537],fellowship:375,felt:349,fermi:[55,58,60,61,63,69,71,72,74,79,82,114,115,117,121,175,176,178,184,185,187,188,205,255,257,260,356,357,358,359,361,362,365,366,369,379,381,386,388,389,392,394,397,401,404,405,406,407,408,409,418,424,432,434,444,449,450,451,452,459,460,465,467,475,476,479,484,491,502,512,517,535,542],fermi_3fhl:[79,175,176,178,184,187,188,451,456,465],fermi_3fhl_events_select:[79,456],fermi_3fhl_exposure_cube_hpx:456,fermi_3fhl_psf_gc:456,fermi_bkg_model:451,fermi_ct:117,fermi_dataset:[260,451,456],fermi_lat:[369,409,456,459],fermi_model:456,fermi_prof:115,fermi_ts_imag:350,fermipi:[356,358,361,365,369,373,406,408,456,467],fermitool:365,fetch:[15,349,357,388,401,463,538],few:[78,79,83,84,86,348,349,350,352,354,355,356,357,359,361,363,367,369,374,378,379,385,399,410,412,417,421,426,428,430,444,446,449,455,463,464,488,492,543],fewer:[363,369],ff:375,fft:188,fftconvolv:188,fgl:[185,450],fgst:[174,175,176,178,179,180,186,187,188,449],fhit:457,fidalgo:[359,364,389,409,410],fiduci:449,field:[16,42,50,51,54,79,80,83,86,129,130,131,132,135,136,137,138,139,142,144,146,147,152,211,226,280,284,336,349,363,375,376,385,390,395,402,409,420,422,426,428,430,432,447,448,450,455,456,479,481,482,483,484,485,486,488,514,537],fieldinfo:[16,80],fig:[188,337,416,417,420,421,422,423,424,426,428,429,430,431,434,437,438,440,441,443,446,488,489,497,501,504,536],figsiz:[84,97,99,103,104,116,129,130,132,133,134,135,136,137,142,143,144,145,146,148,175,176,178,184,187,188,337,417,420,423,424,426,428,429,430,431,437,438,439,440,441,443,446,447,448,449,450,451,452,453,456,458,488,497,501,504],figur:[84,97,99,103,104,116,129,130,132,133,134,135,136,142,143,144,145,146,148,175,176,178,184,187,188,327,336,337,343,349,350,354,369,379,384,420,424,428,430,431,432,434,437,438,439,443,445,446,448,449,451,452,456,457,458,538],file:[11,15,16,26,63,64,65,78,79,81,82,83,84,86,88,89,95,96,97,99,100,101,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,156,161,175,176,178,182,184,187,188,203,205,217,225,248,249,250,251,252,253,286,316,318,348,349,352,354,355,356,357,358,359,360,361,362,365,366,368,369,370,372,373,376,377,378,379,380,381,382,383,385,393,394,400,402,404,406,407,408,409,411,412,414,416,419,422,423,427,428,430,432,433,435,436,440,442,444,445,448,449,450,451,452,454,457,458,459,460,461,465,466,467,478,479,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,542],file_dir:286,file_model:432,file_nam:286,filemod:[16,421,425,426,428,463,538],filenam:[11,16,57,58,59,60,61,62,63,64,65,78,79,81,82,83,86,89,95,96,97,99,100,101,103,104,112,113,115,117,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,149,175,176,178,182,184,187,188,203,205,217,225,248,249,250,251,252,253,257,260,286,316,318,328,349,354,397,420,421,425,426,428,429,433,434,444,445,449,450,451,452,455,456,463,464,465,476,479,481,482,483,485,502,504,532,533,538],filename_1:476,filename_2:476,filename_arf:101,filename_bkg:101,filename_model:[95,112,260,451,456],filename_rmf:101,fill:[16,80,81,83,86,97,99,102,103,104,132,143,174,175,176,178,184,186,187,188,253,349,357,358,362,365,369,375,378,379,394,401,408,411,417,432,433,444,447,448,450,456,464,491],fill_between:[19,20,26,116,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,441],fill_by_coord:[143,175,176,178,184,187,188,449,456,491],fill_by_idx:[175,176,178,184,187,188,491],fill_by_pix:[175,176,178,184,187,188,491],fill_ev:[175,176,178,184,187,188,403,414,422,449,456,462],fill_nan:176,fill_valu:[28,29,30,31,32,35,36,37,39,40,83,86,129,130,131,132,135,136,137,139,142,144,146,147,175,176,178,184,187,188,248,249,252,253,349,447,449,456],filled_t:[83,86],filter:[84,85,355,359,361,363,364,409,410,413,450,453,460,464,465],filter_ev:85,filter_gti:85,filter_success_nan:[112,113],filtered_ev:85,filtered_gti:85,filterwarn:[440,441],finalis:353,find:[19,20,26,121,126,127,132,158,159,163,190,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,271,349,354,360,362,368,378,379,380,384,400,402,408,409,414,418,420,424,444,445,449,452,455,458,465,538,540,541],find_peak:[127,409,424,430],find_peaks_in_flux_map:424,find_root:400,finder:[126,158,159,400,409,424],fine:[261,291,362,426,445,456,492,538],finer:[432,445,492],fingertip:348,finish:[352,356,358,378,406,408],finit:[95,97,99,103,104,133,134,140,145,161,176,184,188,250,367],fink:[205,206,504],fir:514,firefox:[83,86],first:[57,83,86,87,89,95,97,103,112,113,115,126,132,149,158,175,176,177,180,184,185,203,225,256,311,338,349,350,352,354,356,358,359,360,361,362,363,364,365,366,367,369,370,373,374,375,379,381,383,385,389,390,391,392,393,394,395,396,397,400,402,407,409,410,411,412,414,416,417,418,420,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,444,445,446,448,449,450,451,452,453,455,456,457,460,463,464,465,476,488,491,538],firstli:[431,432],firstnam:[83,86],fit2:451,fit:[6,15,16,19,20,28,29,30,31,32,35,36,37,39,40,57,58,60,61,63,64,65,69,71,72,74,78,79,80,81,82,83,84,86,89,94,95,96,97,99,100,101,103,104,107,109,111,112,113,114,115,117,118,119,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,152,155,173,174,175,176,177,178,179,180,182,184,185,186,187,188,193,195,197,200,201,203,204,205,206,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,250,251,252,253,260,261,262,263,264,265,270,272,275,286,287,288,331,332,335,337,342,344,348,349,350,355,359,360,361,362,365,367,368,369,370,371,372,373,376,377,381,389,390,391,392,393,394,395,396,397,400,402,405,407,408,409,410,412,414,416,419,423,424,426,427,431,432,433,434,435,437,438,439,441,442,444,445,447,448,449,451,452,453,454,455,457,458,460,462,465,474,475,476,477,478,479,481,482,483,484,485,486,487,488,491,495,502,504,514,532,533,536,537,542],fit_covari:[421,463],fit_deriv:[28,29,30,31,32,35,36,37,39,40],fit_joint:[417,420,428,429],fit_rang:[16,421,425,426,428,463],fit_result:[192,260,421,463],fit_results_nul:260,fit_scipi:446,fit_sherpa:446,fit_stat_scan:364,fit_statist:349,fit_statistics_cython:379,fitconfig:16,fitmc:367,fitresult:[192,402,414,446,464],fitsfixedwarn:[424,502],fitspectrum:404,fittabl:[28,29,30,31,32,35,36,37,39,40,48,49],fittable1dmodel:[28,29,30,31,32,35,36,37,39,40],fitter:[28,29,30,31,32,35,36,37,39,40,407,408,418],five:465,fix:[28,29,30,31,32,35,36,37,39,40,81,84,89,90,100,101,145,147,162,192,227,228,233,352,354,355,356,360,361,364,366,371,373,374,375,378,379,381,387,389,390,391,392,393,394,395,396,397,398,399,400,401,403,404,405,406,407,408,409,410,412,413,416,422,423,425,426,428,429,432,436,440,446,447,448,451,452,453,463,489,491,498,515],fixed_altaz:81,fixed_icr:[81,416,423,432,433,436,440],fixed_offset:[91,161,400],fixed_r_in:150,fixed_width:150,fixedpointinginfo:[84,168,414,416,423,432,433,436,440],fk5:[492,502],flag:[28,29,30,31,32,35,36,37,39,40,86,98,102,112,113,114,115,118,119,173,174,175,176,178,180,181,183,184,186,187,188,192,417,428,432,444,452],flake8:352,flare:[122,267,381,394,395,437,438,440,442,460,475,476,477,487,488],flask:408,flat:[122,137,147,173,174,179,181,183,186,189,190,227,360,373],flatten:[28,29,30,31,32,35,36,37,39,40,173,174,181,183,186,437],fledg:377,flexibl:[78,302,349,354,358,359,360,363,365,369,370,376,449,479,535],float32:[173,174,175,176,178,183,184,186,187,188,425,430,449],float64:[83,86,132,135,349,377,447,449,477],float64float64float64:430,float64float64float64float64float64float64float64float32bool:418,float64float64float64float64float64float64float64float64:430,float_a:[83,86],flow:[376,536,537],fluctuat:[262,263,373,423,436,540],flux:[15,19,20,26,41,46,65,69,71,72,74,75,76,79,84,95,96,97,99,103,104,107,111,112,113,114,115,118,119,120,121,122,123,124,125,127,193,197,198,199,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,251,252,253,254,255,256,259,266,267,268,269,353,361,362,364,365,367,369,370,372,381,388,391,393,394,396,400,402,406,407,408,410,419,422,424,428,430,432,433,435,437,438,439,440,441,445,449,452,456,460,473,474,475,484,491,493,499,514,535,536,540],flux_err:[19,20,26,112,113,121,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,267,268,269,424,437,438],flux_errn:[112,113,444],flux_errp:[112,113,444],flux_int_cu:256,flux_map:[112,113,373,443],flux_per_omega:452,flux_point:[16,64,65,69,71,72,74,75,76,93,96,112,113,114,361,416,418,420,421,425,426,428,430,441,444,445,463,464,465],flux_point_dataset:361,flux_points_at_tim:373,flux_points_ctb_37b:113,flux_points_dataset:[420,430,441],flux_points_fermi:429,flux_points_hawc:429,flux_points_hess:429,flux_points_meta:[69,71,72,74],flux_points_recomput:113,flux_points_t:[69,71,72,74,75,76],flux_pr:96,flux_profil:[434,435],flux_profile_estim:434,flux_profile_fermi:434,flux_quant:[122,123,124,437],flux_ref:[112,113,373],flux_sensit:[112,113],flux_ul:[112,113,121,444],fluxestim:[112,113,114,370,396,398,399,400,402],fluxmap:[111,113,121,127,400,424,477],fluxmapestim:373,fluxmapsmetadata:376,fluxpoint:[69,71,72,74,75,76,96,112,114,115,118,122,123,124,361,364,373,376,400,407,408,414,416,418,429,434,437,438,444,445,465,474,475,477,479],fluxpointdataset:394,fluxpointestim:[364,391,397,410],fluxpointfit:361,fluxpointfitt:409,fluxpointprofil:410,fluxpointsconfig:16,fluxpointsdataset:[93,94,97,99,370,373,376,390,394,418,420,429,430,440,441,475],fluxpointsdatasetmetadata:376,fluxpointsestim:[108,115,118,298,370,371,373,381,391,396,397,400,414,420,429,430,441,463,464],fluxpointsetim:373,fluxpointsmetadata:376,fluxprofileestim:[108,400,413,434],fly:359,fmt:446,focu:[359,369,394,407,422,538],focus:[359,375],fold:[102,373,418,429,475,477],folder:[11,78,89,96,100,104,113,314,349,350,354,357,378,380,385,390,400,403,421,428,432,455,463,464,536,538],follow:[15,19,20,43,44,76,78,79,80,86,97,100,101,103,104,112,113,116,121,126,174,175,176,178,182,187,188,192,240,256,260,339,340,342,349,350,352,353,354,356,357,358,359,360,361,362,363,364,365,366,368,369,371,372,373,374,375,376,377,378,381,383,384,385,392,393,394,396,397,400,402,403,409,410,414,416,417,418,420,421,423,424,425,428,429,432,433,438,439,440,441,443,444,446,448,449,450,451,452,455,460,463,465,467,469,470,475,477,479,481,483,484,488,490,491,492,493,500,501,505,508,509,511,512,516,517,519,520,521,522,523,536,539,540,541,543],font:[175,176,178,184,187,188,350,449],fontsiz:[346,441,446],foo:[83,86],footprint:[175,176,178,184,186,187,188,498],footprint_rectangle_sky_region:186,forbid:[16,80],forbidden:451,forc:[16,28,29,30,31,32,35,36,37,39,40,80,143,186,188,278,354,364,390],forecom:[349,374],foremost:538,forens:365,foreseen:[359,374],forev:390,forg:[348,366,378,379,381,382,385,408,455],forget:[421,431,463],forgot:349,forgotten:349,fork:352,form:[16,80,83,86,97,145,148,183,290,349,355,359,364,372,374,376,386,408,450,476,484,496,506,536],formal:[354,377,424],format:[16,79,80,81,82,83,84,86,89,97,99,101,103,104,112,113,114,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,168,173,174,175,176,177,178,179,180,183,184,185,186,187,188,190,203,217,225,253,286,308,330,331,338,348,350,357,358,359,360,361,363,365,373,375,376,379,388,400,402,405,409,411,412,414,418,420,421,422,424,425,426,428,430,432,433,434,437,438,440,444,447,449,450,452,455,456,457,458,463,465,467,473,475,476,477,478,481,482,483,484,485,492,532,533,537,538,539],format_plot_xaxi:[177,180,185,447],format_plot_yaxi:[180,447],formatt:[338,449],formatwarn:349,former:[375,391,396,417,451,536,539],formula:[28,29,30,31,35,36,37,39,40,50,52,53,144,231,232,275,416,539],forum:378,forward:[19,20,26,79,83,86,97,99,103,104,115,129,130,131,132,135,136,137,139,142,144,146,147,157,179,183,184,185,192,197,198,201,202,205,207,208,209,210,211,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,240,241,243,244,245,246,249,250,251,252,253,254,257,276,338,343,350,356,359,373,418,429,475,477,492],forwardref:[16,80],found:[19,20,26,78,82,83,86,122,158,163,182,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,267,352,353,357,364,374,375,394,397,398,399,403,426,432,437,452,458,476,477,488,489],four:[352,360,373,438,455,456,483,485,491,537],fov:[111,129,130,152,153,167,168,170,172,211,349,355,363,405,408,409,425,447,450,451,455,487,537],fov_:349,fov_align:[129,130,131,132,135,136,137,139,142,144,146,147,447],fov_background:[425,463],fov_bkg_mak:[448,486],fov_lat:[130,447,455,484],fov_lat_axi:447,fov_lon:[130,447,455,484],fov_lon_axi:447,fov_theta:349,fovalign:[129,130,131,132,135,136,137,139,142,144,146,147,447],fovbackground:[377,396],fovbackgroundmak:[153,395,400,448,463,464],fovbackgroundmodel:[15,97,102,103,105,152,221,377,397,414,428,429,432,433,436,445,451,463,464,486,498],fp:[113,373,463,477,479],fp_dataset:445,fp_dnde:373,fp_energy_flux:373,fpe:[298,371,373,420,430,441,464],fpp:268,fpp_err:[268,437],fpp_tabl:437,fr:[375,455],frac:[17,19,20,21,22,23,24,25,27,28,29,30,31,32,35,36,37,39,40,50,51,52,53,54,99,104,132,135,191,209,213,230,232,244,267,269,277,372,475,483,484,495,496,497,500,501,505,508,509,511,512,516,517,519,520,521,522,526,527,528,530,540,541],fraction:[19,20,26,50,52,53,79,84,85,111,120,124,136,142,144,145,146,148,183,189,190,197,198,201,204,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,268,269,359,364,407,416,423,432,436,445,447,450,455,456,457],frame:[16,79,81,86,89,90,97,99,103,104,115,126,155,158,168,174,175,176,178,181,183,184,186,187,188,199,200,204,212,215,227,229,237,238,240,242,248,252,312,325,349,350,358,360,363,373,390,391,393,394,395,417,420,421,422,423,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,445,447,448,449,450,451,452,453,456,457,458,463,464,465,483,488,490,491,492,495,496,497,498,499,500,501,502],framework:[360,362,363,365,367,368,372,390,391,397,409,441,452,469,479],franceschini17:[206,504],franceschini:[205,206,253,414,504],franceschni:504,frd_ab:206,free:[50,52,53,97,99,103,104,114,118,119,155,192,194,196,227,228,260,354,364,390,421,423,425,426,428,430,431,436,438,440,445,446,448,451,452,456,460,463,464,467,477,486,498,514,515,538,540,541],free_paramet:[194,196,260,446,451],freedom:[109,112,113,375,431,477,540,541],freez:[19,20,26,83,86,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,364,375,390,400,425,436,446,452,514],freeze_al:[194,196],frenk:467,frequenc:[251,471],frequent:[180,349,358,367,375,437,439,440,450,479,480,538],frequentist:367,fridai:358,friendli:[354,376,411,421,463,479],from:[13,15,16,19,20,26,27,28,29,30,31,32,33,35,36,37,38,39,40,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,89,91,95,96,97,98,99,100,102,103,104,105,107,111,112,113,114,115,117,118,120,121,125,127,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,150,155,156,157,158,161,162,164,168,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,256,260,261,262,263,266,269,278,288,296,298,300,301,305,308,309,313,317,328,329,331,334,335,336,337,338,339,340,341,342,343,344,345,346,350,352,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,381,385,386,388,389,390,392,393,394,395,396,397,400,401,402,404,406,407,408,409,410,411,412,413,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,440,441,443,444,445,446,447,448,452,453,455,456,457,458,460,462,463,464,465,467,468,469,471,472,473,474,475,476,477,479,481,482,483,484,485,486,487,488,489,490,491,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,536,537,538,539,540,542],from_align:[186,400],from_attribut:[16,80],from_bound:[135,137,145,174,180,186,373,429,432,433,445,447,448,449,458,491,492],from_covariance_matrix:377,from_default:179,from_diagonal_respons:[132,133,134,424,456],from_dict:[19,20,26,96,97,99,103,104,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,393,400],from_dir:[78,85,155,385,417,420,422,430,439,441,448,453,455,458,462,464,476,479,486,488,489],from_edg:[134,175,176,178,180,184,187,188,423,436,440,447,456,457],from_edisp_kernel:133,from_energy_bound:[19,20,26,97,99,103,104,132,134,135,143,145,155,180,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,416,417,420,422,429,430,432,433,439,441,445,447,448,452,456,457,464,483,486,488,489,492],from_energy_edg:[132,180,344,445,447],from_events_fil:[78,432,455],from_factor_matrix:191,from_fil:[78,476],from_fits_head:81,from_gauss:[132,133,137,143,145,148,483],from_gaussian:397,from_geom:[97,99,103,104,133,134,143,145,148,175,176,178,182,184,187,188,394,413,445,449,450,492,497],from_gti:185,from_gti_bound:185,from_hdu:[174,176,188],from_hdulist:[97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,182,183,184,186,187,188,449],from_head:[80,174,186,376],from_irf:147,from_log10:[219,220,512],from_map:[112,113],from_map_dataset:[99,104],from_nam:[426,430],from_nod:180,from_orm:[16,80],from_panda:[83,86],from_paramet:[19,20,26,197,198,199,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254],from_parametr:[135,481],from_posit:[199,200,204,212,215,227,229,237,238,242,248,252,433],from_refer:372,from_region:[183,204,414,488],from_region_map:253,from_spatial_model:143,from_spectrum_dataset:[104,416,423],from_stack:[79,82,87,112,113,175,176,177,178,180,184,187,188,191,194,196,414,476],from_tabl:[113,129,130,131,132,135,136,137,139,142,144,146,147,177,179,180,184,185,217,411,416],from_table_hdu:[82,179,180],from_time_bound:185,from_time_edg:185,from_time_interv:82,from_wcs_til:176,from_yaml:[16,203,225,360,421],fromnumer:422,front:[358,378,407],frozen:[19,20,26,96,114,118,152,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,364,372,377,392,417,418,420,421,422,423,425,428,429,430,431,432,433,434,436,439,440,444,445,446,450,451,452,456,463,464,465,477,486,514,523],ftol:446,ftool:364,fulfil:[376,449],full:[78,114,121,129,130,131,132,135,136,137,139,142,144,146,147,176,203,225,286,345,348,349,354,358,359,362,364,365,369,375,377,380,382,387,390,400,402,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,479,490,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,536],full_enclosur:[168,447],full_output:[19,20,26,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254],fulli:[118,173,174,183,186,251,358,359,366,370,375,379,382,392,394,402,417,437,452,455,457,458,467],fun:[349,352],func:[17,18,21,22,24,25,27,175,176,178,184,187,188,258,299,303,304,342,426,428],functional_model:[28,29,30,31,32,35,36,37,39,40],fundament:[362,371,376],further:[11,28,29,30,31,32,35,36,37,39,40,78,107,111,114,115,118,121,181,302,349,352,353,355,358,359,362,363,366,368,369,370,371,372,395,396,397,400,402,426,432,443,444,445,449,465,468,469,484,538],furthermor:455,futur:[98,102,114,115,118,193,195,349,354,359,362,363,365,366,367,368,369,370,371,373,374,375,377,408,428,432,449,456,468,477,535],fvar:[124,269,364,407],fvar_err:[269,437],fvar_tabl:437,g0:[428,456],g28:65,g320:444,g:[13,19,20,26,28,29,30,31,32,35,36,37,39,40,46,47,51,52,53,54,59,65,79,81,82,83,86,90,126,174,175,176,178,180,184,186,187,188,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,267,278,317,338,344,348,349,350,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,372,373,375,376,378,379,381,382,383,400,402,406,408,409,410,411,414,417,418,421,423,430,432,434,443,444,445,446,449,450,451,452,455,456,460,465,467,471,474,475,476,477,479,484,489,490,491,497,535,537,538,540,542,543],g_1:135,g_2:135,g_3:135,ga8285d4fc:[386,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],ga:434,gabriel:409,gadf:[79,80,81,82,84,90,97,99,103,104,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,177,178,179,180,183,184,185,186,187,188,359,362,373,376,400,402,411,414,449,463,475,479,492,537],gain:[28,29,30,31,32,35,36,37,39,40,354,366,408],gal_diffus:365,galact:[17,18,21,22,24,25,27,29,45,47,65,66,79,86,97,99,103,104,114,115,117,174,175,176,178,181,183,184,186,187,188,204,212,215,229,237,238,285,312,349,350,360,363,369,388,390,407,417,420,423,424,425,428,430,431,432,434,436,440,443,444,445,449,450,451,452,455,465,467,470,474,489,490,491,492,495,496,497,498,499,500,501,537,543],galactic_median:79,galactocentr:41,galaxi:[28,30,35,39,40,41,205,268,269,388,417],galelli:413,gallant:408,galleri:[379,395,397,400,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,480,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535],gallery_jupyt:493,gallery_python:493,gallery_spati:503,gallery_spectr:524,gallery_tempor:534,galprop2:[174,175,176,178,187,188],galprop:[174,175,176,178,187,188],gambit:467,gamma1:[197,505,519],gamma2:[197,505,519],gamma:[11,17,18,19,20,21,22,24,25,26,27,52,53,57,59,62,64,65,75,79,111,114,120,144,168,175,176,178,187,188,205,207,208,209,230,231,232,253,256,305,349,355,357,360,361,362,363,373,378,379,381,385,386,391,405,406,407,408,409,416,418,420,421,422,426,429,430,431,432,434,444,447,449,450,453,455,457,458,463,465,467,469,470,474,475,476,479,482,484,486,488,489,497,504,508,509,516,517,535,536,537,538,539,540,543],gamma_1:[241,244,245,246,372,520,521,522],gamma_2:[241,244,245,246,372,520,521,522],gamma_min:[120,416],gamma_min_sensit:111,gammacat:[55,64,407,418],gammalib:[349,362],gammamc_dif:467,gammapi:[6,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,350,351,353,354,356,357,359,360,361,362,363,364,365,367,371,372,373,377,380,381,382,383,384,387,388,389,390,391,392,393,394,395,396,397,400,401,402,404,405,406,407,408,409,410,411,412,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,448,449,450,451,452,453,454,459,460,462,463,464,465,468,469,471,472,473,479,480,481,482,483,485,489,490,492,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,537,538,539,540,543],gammapy_analysis_config:365,gammapy_data:[26,57,58,59,60,61,62,63,64,65,78,79,82,84,85,86,89,96,97,99,103,104,107,111,113,115,117,121,130,134,135,136,137,145,155,175,176,178,184,187,188,206,217,253,260,328,337,342,344,349,350,352,365,381,383,385,389,390,391,400,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,476,477,479,481,482,483,485,486,488,489,502,532,533],gammapy_extra:389,gammapybaseconfig:16,gammapydeprecationwarn:[349,510,513],gammmapi:[359,366],garcia:409,gather:[363,369,378],gauss:[42,51,54,97,99,116,117,136,176,188,212,213,214,215,372,406,441,449,452,465,495,496],gauss_elong:452,gauss_temp:452,gaussian1d:[28,29,30,31,32,35,36,37,39,40],gaussian2d:[28,29,30,31,32,35,36,37,39,40,50],gaussian2dkernel:107,gaussian:[65,66,76,77,107,116,132,133,137,143,145,148,176,188,212,213,214,215,216,268,269,360,368,372,377,393,397,418,430,432,436,437,440,444,446,447,452,455,465,483,485,493,503,524,534],gaussian_compon:[65,444],gaussian_filt:[116,188],gaussian_model:527,gaussian_sigma:446,gaussianband2d:408,gaussianprior:377,gaussianspatialmodel:[76,77,234,372,393,430,431,436,452,496],gaussianspectralmodel:[235,372,452,511],gaussiantemporalmod:400,gaussiantemporalmodel:[247,372,396,452,527],gb:[357,359,455,457],gc:[82,97,99,103,104,107,111,115,117,121,337,342,344,352,424,425,428,430,432,434,443,445,449,451,452,455,456,465,467,476,477],gc_3fhl:465,gc_3fhl_cutout:465,gc_3fhl_smooth:465,gc_imag:434,gc_po:456,gc_sep:451,gcc:385,geminga:59,gen_gaussian_model:528,gener:[16,27,33,42,45,46,47,56,78,79,80,83,84,86,87,97,98,99,102,103,104,134,145,148,175,176,178,179,180,184,187,188,192,202,210,214,215,216,217,218,233,239,248,249,251,253,254,300,302,305,306,307,308,314,350,352,358,360,361,362,363,365,367,368,369,370,371,372,373,374,379,382,385,391,395,396,397,400,402,407,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,475,479,484,490,492,493,494,495,496,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,529,530,531,532,533,534,538,540,541],generalconfig:16,generalis:[113,368,394,447],generalized_gaussian_model:528,generalizedgaussianspatialmodel:[234,397,452,497],generalizedgaussiantemporalmodel:[247,402,452,528],generalrandom:392,generatejsonschema:[16,80],gengauss:[216,452,497],geodeticloc:89,geolat:417,geom:[16,23,79,97,99,103,104,106,111,112,113,115,121,133,134,143,145,148,155,162,164,165,166,167,168,169,170,171,174,175,176,178,179,182,183,184,186,187,188,199,200,203,204,211,212,215,225,227,229,237,238,240,242,248,252,360,362,364,397,400,409,416,417,420,421,422,423,424,425,426,428,430,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,456,457,463,464,465,477,486,488,489,490,491,492,494,496,497,498,499],geom_24_energy_bin:492,geom_6_energy_bin:492,geom_edisp:[97,99,103,104,445],geom_energi:492,geom_exposur:[97,99,103,104,413,445],geom_imag:[426,430,492],geom_irf:362,geom_psf:[97,99,103,104,445],geom_tru:394,geomconfig:16,geometri:[23,79,95,97,99,103,104,106,112,113,133,134,140,143,145,148,152,155,157,162,164,165,166,167,168,169,170,171,173,174,175,176,178,179,181,182,183,184,186,187,188,189,190,199,200,203,204,212,215,225,227,229,237,238,240,242,248,252,345,355,361,364,365,394,400,411,420,421,422,423,425,426,428,432,433,436,445,448,456,457,475,477,479,487,491,536,537],geomspac:[113,377],geq:[52,53],get:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,78,80,81,83,84,86,89,91,95,97,100,101,103,107,111,114,115,118,119,121,126,132,133,134,140,145,148,173,174,175,176,178,179,182,183,184,186,187,188,191,194,196,197,198,199,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,229,230,231,232,236,237,238,241,242,243,244,245,246,248,249,251,252,253,255,286,302,349,350,354,355,356,357,358,359,363,364,366,373,375,376,377,379,382,383,385,386,389,391,406,407,408,409,416,421,423,424,428,429,430,436,444,445,446,447,448,450,451,452,455,456,457,458,460,463,464,465,467,475,479,492,537,541],get_altaz:[81,89,414],get_bia:132,get_bias_energi:132,get_bounding_box:[28,29,30,31,32,35,36,37,39,40],get_by_coord:[175,176,178,184,187,188,448,449,456,457,491],get_by_idx:[175,176,178,184,187,188,449,491],get_by_pix:[175,176,178,184,187,188,491],get_cl:[418,444,450],get_coord:[173,174,179,183,186,393,400,409,433,449,450,488,492],get_dataset:[15,421,425,426,428,438,463,479],get_devel_vers:352,get_edisp_kernel:[133,134,395,400,445,456,483],get_events_meta_data:362,get_excess_map:[15,463],get_filenam:[100,101],get_flux_point:[15,112,113,373,395,421,463],get_group_by_idx:373,get_hdu:286,get_icr:[81,89,414],get_idx:[173,174,183,186,492],get_image_by_coord:[175,176,178,184,187,188,449],get_image_by_idx:[175,176,178,184,187,188],get_image_by_pix:[175,176,178,184,187,188],get_index_list:174,get_irfs_featur:[414,453],get_kernel:107,get_light_curv:15,get_mean:132,get_observ:[15,78,391,402,417,420,421,422,425,426,428,430,432,438,439,441,448,453,457,458,462,463,464,479,486,488,489],get_ogip_meta:101,get_pix:186,get_pointing_altaz:[84,453],get_pointing_icr:[84,414,430,448,464],get_psf_kernel:[143,145,148,456],get_random_st:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,305,306,307,308,349],get_resolut:132,get_respons:407,get_scal:107,get_scale_model:[114,115,118],get_spectrum:[175,176,178,184,187,188],get_subcovari:191,get_transform:[424,430,495,496],get_valid_path:100,get_wcs_coord_and_weight:183,getattr:377,getitem:407,getlogg:[349,426,430,438,439,440,462],getter:350,getting_start:369,gev2:[19,443],gev:[17,18,19,20,21,22,24,25,27,71,115,121,175,176,178,184,187,188,418,422,424,428,429,434,436,440,441,443,444,448,449,450,451,455,456,457,465,492,514,536,537],gevgevgev1:418,gh:[349,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,379],git:[82,240,349,350,352,354,356,357,375,382,411],github:[19,20,26,64,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,350,352,353,354,355,357,358,367,369,374,375,378,379,382,384,389,390,391,392,393,394,395,396,397,400,405,406,407,408,409,410,542],giuliani:362,giunti:[390,391,392,393,394,395,396,397,400,402,403,411,414],give:[6,28,29,30,31,32,35,36,37,39,40,83,86,125,267,268,349,354,358,359,363,364,365,366,369,370,375,379,384,390,392,394,402,421,424,431,433,437,439,444,446,447,448,449,452,455,456,463,479,484,538,539,541,542],given:[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,42,46,51,52,53,65,66,76,78,79,80,81,83,84,86,89,91,94,95,96,97,98,99,102,103,104,105,109,111,112,113,114,116,118,119,120,121,126,127,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,157,158,161,163,165,166,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,260,262,263,269,276,278,281,282,289,296,300,303,304,312,336,337,342,346,349,356,357,358,359,360,361,362,363,364,366,368,372,373,375,377,389,394,400,408,409,414,416,417,418,421,424,432,433,434,436,438,439,440,443,444,445,447,448,449,450,452,455,456,463,465,475,476,477,479,483,484,488,489,491,492,497,501,504,535,537,538,539,540],glast:456,glat:[41,65,66,79,349,420,444,449,456],glat_err:444,glat_pnt:[430,455],glimps:[457,460],gll_iem_v06_cutout:[175,176,178,184,187,188],gll_iem_v06_gc:[432,449,451,452,456],gll_psc_v16:60,gll_psc_v20:444,gll_psc_v32:63,gll_psch_v09:58,gll_psch_v13:61,glob:[78,350,445],global:[16,33,42,45,46,47,95,97,98,99,102,103,104,134,145,148,173,174,175,176,178,183,184,186,187,188,192,202,210,214,216,217,218,233,239,251,254,300,302,305,306,307,308,349,353,355,397,414,420,430,431,441,451,477,536],global_dataset:448,global_to_loc:174,glon:[41,65,66,79,349,420,444,449,456],glon_pnt:[430,455],glossari:[369,411,475,492],glue:479,glueviz:366,gmodelspatialradialprofiledmburkert:467,gmodelspatialradialprofiledmeinasto:467,gmodelspatialradialprofiledmzhao:467,go:[50,83,86,352,359,369,374,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,467,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538],goal:[354,363,377,446],goe:[41,52,339,349,368,379,434],gogia:407,good:[78,79,82,96,113,272,275,349,354,356,357,358,359,360,363,365,366,367,369,420,422,423,426,436,437,439,440,443,445,446,448,450,452,456,457,460,500,501,537,542],googl:[83,86,369,378],got:455,gov:[58,60,61,63,132,180,369,378,517],gp:[78,79,85,350,359,365,425,428,430,441,455,457],gpl3:349,gps_baseline_110380:[78,79,455],gradient:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],grai:[340,488,514],grand:349,grant:[352,375],granular:437,grayify_colormap:368,grb:[437,440],great:[354,363,368,406,460],greater:[152,342],green:[96,103,104,408,431,453],grei:441,grep:384,grid:[17,18,21,22,24,25,27,28,29,30,31,32,35,36,37,39,40,114,117,136,144,146,175,176,178,180,184,187,188,199,200,204,212,215,227,229,237,238,242,248,252,258,342,349,360,365,392,394,446,491,492,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531],gridsearch:[192,446],gridspec:336,gridspec_kw:[424,430,437,438,440,504],ground:[90,364,455,539],group:[82,83,86,87,114,115,118,119,121,133,173,174,175,176,178,179,180,183,184,185,186,187,188,276,355,364,368,369,370,373,378,381,391,394,396,400,406,409,438,440,460,477,479,493,538],group_1:453,group_2:453,group_bi:[83,86,373],group_by_axi:373,group_by_label:[87,453],group_high_zenith:453,group_low_zenith:453,group_tabl:[82,180,185],grouped_observ:453,grow:[357,368,408],grown:369,gsfc:[58,60,61,63,132,180,369,517],gt:447,gtexpcube2:456,gti:[78,79,83,84,85,95,96,97,99,103,104,112,113,115,118,149,185,240,355,358,359,362,363,364,373,392,394,395,397,410,414,432,439,440,445,448,455,457,458,475,479,537],gti_1:476,gti_2:476,gti_t0:440,gtimetadata:376,gtmktime:[359,456],gtobsim:362,gtol:446,gtpsf:[133,134,140,145,148,180,424,456],gtselect:[359,456],guarante:[357,372,374],guess:[113,174,176],guid:[352,365,367,381,382,383,386,409,460,479],guide_model:[503,524,534],guidelin:[349,353,386,408],guiger:[31,39],gz:[58,60,61,63,64,65,78,79,82,84,86,89,97,99,103,104,107,111,115,117,121,137,206,253,337,342,344,371,409,420,421,424,431,432,433,434,444,445,447,449,451,452,455,456,457,462,463,464,465,476,477,479,481,482,483,485,504],h05:[45,49],h0:431,h1:431,h:[26,65,78,82,83,86,90,116,134,175,176,178,184,187,188,339,369,372,381,385,386,394,409,416,417,420,421,423,429,431,438,439,440,443,447,448,449,452,455,456,457,459,460,462,463,464,474,476,479,492,526,527,537,538],h_0:[431,540],h_1:[431,540],h_i:116,ha:[19,20,26,28,29,30,31,32,35,36,37,39,40,76,83,86,96,97,99,103,104,111,112,113,147,169,173,174,175,176,178,182,183,184,186,187,188,193,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,251,252,253,342,344,346,349,350,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,381,382,383,396,397,400,402,403,409,410,411,413,414,417,420,421,422,426,431,433,438,439,441,443,444,445,446,448,449,450,452,453,455,457,458,463,475,476,479,484,488,489,492,495,496,523,535,538,540],habilit:275,hack:405,had:[349,355,357,375,397,403,407,408],hadron:[255,355,360,426,445,455,475,488],hajlaoui:[397,400],hal:375,half:[145,148,180,186,252],halo:467,halv:[122,267],halving_coord:437,halving_err:437,hand:[157,349,352,357,360,369,375,377,412,446,460,479],handbook:[369,460],handi:428,handl:[3,182,270,348,350,353,361,362,363,365,370,372,373,376,378,381,383,390,391,392,393,394,395,396,397,398,399,400,402,403,404,405,406,407,408,410,411,413,414,420,422,428,429,430,432,445,447,449,451,452,456,457,460,464,465,475,476,479,537],handler_map:346,hap:365,happen:[78,352,354,356,357,363,367,379,421,451,460,463,464,475,479,540],happi:[352,356,369,389,390,409],hard:[349,350,372,377,395],harder:[356,538],hardli:376,harri:[404,405],harvard:[28,30,31,32,33,35,36,37,38,39,40,50,52,53,57,58,60,61,79,84,107,114,135,192,222,255,256,269,369,446],has_any_t:[112,113],has_energy_axi:[173,174,183,186],has_invers:[28,29,30,31,32,35,36,37,39,40],has_masked_column:[83,86],has_masked_valu:[83,86],has_mixin_column:[83,86],has_offset_axi:[129,130,131,132,135,136,137,139,142,144,146,147],has_stat_profil:[112,113],has_success:[112,113],has_ul:[112,113],has_user_bounding_box:[28,29,30,31,32,35,36,37,39,40],has_user_invers:[28,29,30,31,32,35,36,37,39,40],hasattr:349,hasn:[354,542],hatch:441,have:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,65,78,80,83,86,90,95,101,112,113,114,118,126,127,132,133,134,143,145,148,155,157,169,173,174,175,176,178,182,183,184,186,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,278,302,308,346,348,349,350,351,352,354,355,356,358,360,362,363,366,367,368,369,370,371,372,374,375,376,377,379,380,381,382,383,384,385,386,389,390,391,394,397,400,402,403,406,408,409,410,411,412,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,439,440,441,444,445,446,447,449,450,451,452,453,455,456,457,460,463,464,465,467,475,476,477,479,490,491,492,501,512,535,538,541,542],haven:385,hawc19_flux_point:[113,429,479],hawc:[55,59,62,70,73,92,386,394,400,408,411,412,414,459,460,474,475,476,487,491,537],hawc_crab:[113,429,479],hd:65,hdr:376,hdr_dict:376,hdu1:132,hdu2:132,hdu:[65,78,79,81,82,83,84,89,97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,149,173,174,175,176,177,178,179,180,182,183,184,185,186,187,188,286,335,359,388,403,405,408,411,412,432,447,449,455,457,458,475,476,479,481,482,483,485,492,533],hdu_al:432,hdu_band:[112,113,133,134,140,145,148,173,174,175,176,178,179,182,183,184,186,187,188],hdu_class:[78,83,286,455,457,458],hdu_class_uniqu:83,hdu_evt:432,hdu_filenam:457,hdu_gti:432,hdu_hdu:78,hdu_index:78,hdu_list:[133,134,136,140,144,145,146,148,175,176,187,188],hdu_loc:83,hdu_nam:286,hdu_ob:78,hdu_out:[175,176],hdu_region:[183,184],hdu_tabl:[78,457],hdu_table_filenam:78,hdu_typ:[78,83,455,457,458],hdu_type_uniqu:83,hduclas2:447,hduclas3:447,hduclas4:447,hduclasn:447,hduindext:[78,286,457],hdulist:[97,99,101,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,182,183,184,186,187,188,432,449,475],hduloc:[83,97],he:[255,359,364],hea:364,header:[78,79,80,81,82,83,84,86,89,95,96,97,99,100,101,103,104,133,134,140,145,148,173,174,175,176,177,178,179,180,182,184,185,186,187,188,252,288,331,332,335,354,359,362,376,394,402,404,409,411,414,422,432,433,449,455,542],healpi:[174,348,356,358,366,381,383,392,400,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,490],healpix:[13,174,175,176,178,184,187,188,348,356,358,363,400,408,449,456,491],healpix_to_imag:401,heapsort:[83,86],heart:540,heasarc:[132,180],heatmap:[338,343],heavi:[409,410],heavier:428,heavili:400,hegra:[92,256],heidelberg:349,heidt:437,height:[16,29,83,86,89,115,311,421,425,426,428,434,438,441,443,449,450,452,463,488,492],heighten:437,helen:406,hello:[385,430],help:[11,83,86,264,270,349,352,354,356,363,364,365,369,375,378,379,380,385,389,390,391,408,409,411,444,448,449,451,456,458,465,479,538],helper:[13,286,291,356,358,363,364,365,368,379,385,391,392,393,394,400,402,405,407,408,414,434,444,450,451,488,536,543],henc:[83,86,365,425,426,477,492,540],her:378,here:[13,78,79,83,86,97,103,113,130,135,144,192,262,263,266,337,348,349,350,351,352,355,356,361,362,363,364,365,366,367,368,369,375,376,377,379,381,383,385,388,389,390,391,392,393,394,395,396,397,400,402,403,405,406,407,408,409,410,411,414,416,417,418,420,421,422,423,424,425,426,428,430,431,432,433,436,437,438,439,440,441,444,445,446,447,448,449,450,453,455,456,457,460,463,464,465,469,475,479,484,486,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538,539,540,542,543],hereaft:432,heritag:375,hess2:[135,481],hess:[16,55,65,78,79,82,84,86,92,96,103,104,114,135,137,155,161,260,357,358,363,365,369,378,381,385,388,390,393,404,405,408,409,417,418,420,421,422,426,428,430,431,439,441,443,444,445,446,448,453,456,458,459,462,463,464,467,476,477,479,481,482,483,485,486,488,489],hess_dl3_dr1_obs_id_020136:[84,137,481,482,483,485],hess_dl3_dr1_obs_id_023523:[79,82,476],hess_dl3_dr1_obs_id_023526:476,hess_ecpl:[256,420],hess_pl:256,hessian:477,heterogen:[376,418,429],hfm:65,hgp:[65,76,77,111,369,394,406,408,409,474],hgps_catalog_v1:65,hgps_sourc:65,hgpsc:[65,444],hi:[349,407],hi_bnd:180,hi_threshold:132,hidden:360,hide:[13,354,371],hierarch:[13,276,317,358,360,376,479,491],hierarchi:[276,360,393],hierarchical_clust:[414,453],high:[6,15,58,61,62,79,132,180,301,349,353,354,355,362,363,364,369,376,392,393,394,395,396,400,408,409,416,418,421,424,425,428,434,436,438,443,444,445,448,450,455,456,457,458,460,464,465,466,474,477,484,491,536,537,538,539],high_zenith:453,higher:[173,174,175,176,178,183,184,186,187,188,216,352,355,360,365,368,370,382,418,433,437,447,449,492],highest:[126,161,437,448,455,465],highli:452,highlight:538,him:378,hint:[376,424,477],hire:[136,369,469,471,472,473,475,476,481,482,483,485,488,492,540,543],hist:[79,103,104,184,188,342,423],histogram:[79,103,104,180,184,188,342,414,441,492,537],histori:[363,375,411],hli:[362,395,396,400,411,419,460,478,537],hli_spectrum_analysi:421,hline:495,hoc:363,hold:[67,78,85,87,91,95,143,211,278,358,359,361,364,538,540],home:[16,314,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,504,510,513,526,532,533],homebrew:366,homework:391,homogen:[83,86,397],honk:354,hood:[421,460,463],hook:[352,411],hope:354,hopefulli:356,horizont:[81,90,138,319,447,542],host:349,hour:[65,89,352,365,379,416,444,448,449,479],hover:350,how:[19,20,78,79,81,94,113,115,117,155,176,186,188,302,308,351,354,357,361,363,365,366,368,371,372,375,376,379,380,381,385,386,389,390,391,394,395,402,404,407,408,409,414,416,418,420,421,422,423,424,425,426,429,430,431,432,433,434,436,437,438,439,440,441,444,445,446,450,451,452,453,455,456,457,458,460,463,465,467,469,475,477,480,484,488,490,491,504,536,538,539,540,542,543],howev:[83,86,111,268,348,349,350,352,356,359,362,363,367,375,377,381,382,383,417,426,434,441,443,444,445,446,447,457,458,460,475,479,491,492,496,512,538],howto:[369,411,412],hpx2wc:[175,176],hpx:[174,175,176,178,187,188,363,400,449,456],hpx_map:[175,176],hpx_pixel:363,hpx_reg:174,hpxgeom:[112,173,175,176,395,400,411,456,490],hpxmap:[176,178,490],hpxndmap:[248,400,490],hpxsparsemap:394,hpxtowcsmap:[175,176],hr:[432,433,436,440],hspace:443,hspec:[404,405,406],hst:205,hstack:[83,86,362],html:[26,79,83,86,114,132,168,174,180,183,186,192,203,225,253,278,305,306,349,350,352,357,369,374,375,378,379,387,408,416,423,425,428,430,436,440,446,447,455,476,482,490,492,517],htmlcov:379,http:[11,13,16,19,20,26,28,30,31,32,33,34,35,36,37,38,39,40,50,52,53,57,58,60,61,62,63,64,65,79,80,83,84,86,107,114,122,132,135,161,168,174,180,183,186,192,197,198,201,203,205,207,208,209,213,219,220,222,225,226,228,230,231,232,236,241,243,244,245,246,249,253,255,256,268,269,278,305,306,317,349,352,366,369,374,375,378,379,381,382,383,387,391,407,408,416,420,423,425,428,429,430,436,440,443,444,446,447,448,455,458,476,490,492,517,521,522,538,542],hubert:409,hue:340,huestart:340,huge:[379,496],hugovk:390,human:[330,360,379,402,421,463],hundr:457,hypercub:[449,491,492],hypothes:[260,414,479,540],hypothesi:[112,113,114,115,118,119,260,262,263,418,424,431,477,479,537,540],hz:[308,465],i0:[83,86],i1:[83,86],i4:434,i8:[449,465],i:[16,19,20,51,54,66,80,83,86,116,126,132,133,134,137,168,173,174,182,183,186,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,262,263,267,280,284,327,350,352,353,354,355,356,357,358,362,363,365,366,368,369,370,371,373,374,376,379,385,388,389,390,392,400,401,406,408,414,417,420,422,430,431,432,433,437,438,439,441,447,450,452,453,456,457,458,464,467,477,484,491,495,496,532,535,537,538,539,540,541],i_0:[175,176,178,184,187,188],i_hpx:[175,176,178,184,187,188],i_lat:[175,176,178,184,187,188],i_lon:[175,176,178,184,187,188],i_n:[175,176,178,184,187,188],iact:[78,79,81,89,155,158,162,355,358,359,360,361,363,365,369,386,391,405,407,409,418,424,426,448,449,451,455,456,458,476,481,482,483,485,535,537],iactbasicimageestim:[355,408],iau2015:52,iau:[52,388,392],ic:514,icon:536,icr:[79,81,84,86,89,90,97,99,103,104,126,155,158,174,175,176,178,181,183,186,187,188,199,200,204,212,215,229,237,238,312,349,350,373,393,420,421,422,423,424,426,429,430,432,433,436,438,439,440,441,444,445,447,448,449,450,452,453,455,456,457,458,463,464,476,479,483,488,492,495,496,497,499,500,501],icrc:404,id:[65,76,78,79,83,84,86,87,105,362,365,385,421,423,432,434,436,441,444,452,455,456,457,458,463,476],id_obs_vela:441,idea:[354,357,364,368,369,370,421,447,453,456,463],ideal:[351,352,359,363,364,373,377,378,418,456],idempot:[16,80],ident:[324,352,364,411,422],identif:[65,355,444],identifi:[65,84,98,102,174,240,349,359,360,362,365,374,375,379,395,424,432,437,444,445,452,455,457,478],identified_object:444,idx1:446,idx2:446,idx:[79,83,86,87,95,173,174,175,176,177,178,179,180,183,184,185,186,187,188,225,423,432,440,444,446,449,491],idx_glob:174,idx_loc:174,ie:[28,29,30,31,32,35,36,37,39,40,375,451,452,475,537],iem:[451,456],iem_minus_iem:449,iem_plus_iem:449,iem_times_two:449,ignacio:410,ignasi:404,ignor:[11,83,86,139,149,178,193,195,211,278,290,350,402,434,440,441,445,450,463,479,538],ii:[191,406],ij:191,ilist:174,illustr:[103,104,350,359,361,362,363,365,368,422,424,429,434,445,448,449,451,452,456,469,475,488,489,495,496,504,536],illustrate_colormap:368,iloc:[83,86],im:[338,446],imag:[97,99,103,104,107,116,117,126,134,135,136,142,144,145,146,148,150,160,173,174,175,176,178,183,184,186,187,188,252,271,274,314,335,337,338,339,340,344,349,357,358,360,365,366,369,370,379,381,386,388,389,390,393,394,395,401,405,406,407,408,409,425,426,428,434,435,448,450,452,455,464,465,475,476,477,484,487,488,489,490,491,492,535,536,537,543],image_analysi:[369,389],image_err:117,image_fitting_with_sherpa:[369,410],image_pip:408,image_profil:407,imagehdu:[175,176,187,188],imagenorm:[339,340],imageprofil:117,images_t:430,imagin:538,img:[337,449],iminuit:[192,348,366,375,400,402,409,413,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,535],immut:203,impact:[356,362,366,457],imperfect:448,implement:[19,20,97,99,103,104,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,268,349,354,355,357,358,361,362,363,364,365,366,367,370,371,372,373,374,376,390,391,392,393,394,395,396,397,400,401,402,407,408,410,411,414,417,425,437,439,443,444,448,449,450,467,475,477,479,484,485,486,523,535,536,537,538,539,542],implent:349,impli:[216,349,368,475,537],implic:371,implicit:[28,29,30,31,32,35,36,37,39,40,484],implicitli:448,importantli:[373,409,417,538],importerror:[83,86],impos:[413,416,488],improv:[102,260,351,353,354,355,357,358,359,363,364,365,366,367,368,369,374,379,380,386,387,388,389,390,391,392,393,394,395,396,397,398,400,401,403,404,405,406,407,408,409,410,412,449,455,479,489,495],imshow:[97,99,143,176,188,337,343,407,449,465],in2p3:[375,455],in_memori:[84,479],in_memory_gener:87,in_safe_data_rang:[97,99,103,104],inaccur:349,incex:[16,80],incid:[355,537],includ:[16,28,29,30,31,32,35,36,37,39,40,45,78,79,80,83,84,86,118,143,149,151,152,158,159,163,173,174,183,186,226,286,348,349,355,357,360,361,362,363,365,366,370,371,372,373,374,375,376,377,378,379,381,390,392,397,408,413,414,416,429,431,432,434,440,443,444,446,448,450,451,452,455,457,467,469,475,477,478,489,491,535,539,542],include_irf:[79,84,476],include_ssc:226,inclus:[79,183,363],incompat:[349,374,402],incomplet:[349,379,389,390,391,392,393,394,395,396,397,400,402,403,405,406,407,408,409,410,411,412,413,414],inconsist:[397,403,413,414],inconveni:[368,409],incorpor:[365,369,377,537],incorrect:[79,349,376,393,411,412,448],incorrectli:[411,450],increas:[126,150,180,185,204,212,215,349,358,376,448,475,495],increment:[19,20,26,107,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,363,449,491],ind:[174,186,203,225],inde:[432,496],indefinit:356,indent:[16,80],independ:[65,114,118,275,289,349,355,359,360,361,362,363,364,367,370,371,372,373,375,381,390,400,416,421,438,444,449,450,451,452,457,463,464,474,479,484,537,541],index1:[197,241,505,519],index2:[197,241,505,519],index:[19,20,26,28,29,30,31,32,33,34,35,36,37,38,39,40,51,52,53,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,83,85,86,87,95,96,97,99,103,104,111,112,113,114,115,120,121,125,132,133,134,140,143,145,148,168,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,192,194,196,197,198,201,203,205,207,208,209,213,219,220,222,223,225,226,228,230,231,232,236,241,243,244,245,246,249,253,256,286,300,305,352,355,358,359,360,361,364,365,372,373,374,378,381,391,405,407,408,414,417,418,420,421,423,424,425,428,430,431,432,433,434,436,438,439,440,441,444,445,446,447,451,452,455,456,457,458,463,464,465,477,490,491,492,494,495,496,497,499,500,501,502,504,506,508,509,510,515,516,517,525,526,527,528,529,530,531,532,533],index_1:[244,245,246,520,521,522],index_2:[244,245,246,520,521,522],index_arrai:[83,86],index_column:[83,86],index_data:179,index_error:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],index_mod:[83,86],indexerror:[87,95,225],indic:[28,29,30,31,32,35,36,37,39,40,83,86,95,173,174,175,176,177,178,179,180,183,184,185,186,187,188,349,411,423,433,437,448,449,453,457,458,479,491,492,537],indico:358,indirect:[443,467],individu:[83,86,102,109,116,345,355,361,362,364,369,372,373,377,417,420,423,431,434,439,444,445,446,448,451,452,465,475,479,484,537],indiviud:371,indxschm:[175,176,187,188],ineffici:[83,86,352],ineqcon:[28,29,30,31,32,35,36,37,39,40],inequ:[28,29,30,31,32,35,36,37,39,40],inertia:[51,54],inf:[65,215,377],infer:[112,113,173,174,175,176,178,186,187,188,205,350,463,491],inferno:449,infil:349,info:[16,65,69,70,71,72,73,74,75,76,78,81,82,83,84,86,89,95,96,97,98,99,101,102,103,104,136,142,144,146,262,263,286,350,364,365,369,378,384,394,395,397,404,405,408,421,425,426,428,432,439,443,444,445,449,456,457,458,460,462,463,538],info_dict:[97,99,103,104,262,263,342,397,445],info_t:[95,417,420,421,423,428,440,445,451,479],infodict:342,inform:[11,28,29,30,31,32,35,36,37,39,40,56,65,67,69,70,71,72,73,74,75,76,80,81,84,86,89,94,95,96,97,99,103,104,112,113,132,136,142,144,146,147,150,155,156,162,181,192,197,198,199,200,201,202,204,205,207,209,210,212,213,214,215,216,217,218,220,226,227,228,229,230,232,233,237,238,239,241,244,245,246,248,249,252,253,264,270,286,302,331,332,349,353,354,359,361,362,363,364,365,372,373,376,377,379,384,385,386,394,396,397,400,402,408,414,418,421,422,429,432,433,436,437,445,446,448,449,452,455,456,457,458,463,464,465,474,475,476,477,479,492,537,538,541],infrar:205,infrastructur:[379,400,411,414],ingredi:[373,443],inherit:[83,86,349,359,361,364,373,376,377,395,400,407,445,447,490,491],init:[19,20,26,83,86,111,115,121,152,197,198,199,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,226,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,290,302,361,397,412,414,434,444,445,465],initi:[15,16,28,29,30,31,32,35,36,37,39,40,42,53,63,80,83,86,112,113,121,176,179,180,203,225,227,228,278,354,359,360,361,365,402,416,423,426,428,429,431,432,433,436,441,444,445,449,452,463,464,465,474,476,523,537],initialis:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,302,305,306,307,308,349,371],inject:[423,436],inlin:[354,416,417,418,420,421,422,423,424,425,426,428,434,436,438,439,440,441,443,444,445,446,449,450,451,452,455,456,458,463,464,465],inner:[44,52,53,115,150,160,238,426,465,501],inner_height:[488,492],inner_width:[488,492],input:[16,28,29,30,31,32,35,36,37,39,40,41,80,82,83,86,97,99,102,107,109,111,112,113,114,117,118,121,122,123,124,125,127,128,133,134,136,143,144,145,146,147,148,150,152,156,158,160,174,175,176,178,180,181,182,183,184,185,186,187,188,194,196,217,251,252,253,278,289,299,302,319,321,342,344,355,357,359,360,361,362,363,364,365,370,385,395,400,403,410,414,423,432,433,441,449,477,491,492,539],input_shap:[28,29,30,31,32,35,36,37,39,40],input_unit:[28,29,30,31,32,35,36,37,39,40],input_units_allow_dimensionless:[28,29,30,31,32,35,36,37,39,40],input_units_equival:[28,29,30,31,32,35,36,37,39,40],input_units_strict:[28,29,30,31,32,35,36,37,39,40],inputs_map:[28,29,30,31,32,35,36,37,39,40],ins:414,insensit:182,insert:[83,86,87,95,225,375,395,541],insert_row:[83,86],inset:401,insid:[50,79,97,103,132,158,174,175,176,178,183,186,187,188,203,225,240,338,342,349,350,363,365,373,400,416,420,423,425,428,430,436,440,445,448,450,451,452,455,457,476,486,488,489,492],inside_geom:450,inspect:[361,365,385,420,422,428,432,433,446,449,451,455,456],inspir:[349,373],instal:[83,86,348,349,352,356,357,358,366,378,379,380,383,385,386,389,390,400,404,407,408,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,460,463,464,465,479,538],instanc:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,50,80,81,82,83,84,86,87,109,113,114,116,118,119,147,149,157,175,176,177,178,179,180,184,185,187,188,197,198,199,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,226,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,296,302,336,338,339,340,343,345,349,355,360,361,364,365,371,373,376,400,418,420,423,434,444,446,448,450,451,452,465,469,479,491,492,514],instanti:[15,19,20,28,29,30,31,32,35,36,37,39,40,175,176,178,180,187,188,360,365,417,421,444,445,449,452,463],instead:[16,19,20,26,80,81,83,86,97,99,103,104,106,162,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,349,350,352,354,356,357,359,360,363,364,365,366,367,368,369,370,371,372,377,378,380,381,383,390,393,396,397,410,414,422,428,432,436,438,440,441,444,445,447,448,449,452,476,483,484,491,492,538],instruct:[349,358,366,378,380,381,389,400,404,408,432,455],instrument:[6,79,90,102,135,139,140,211,349,359,360,361,362,364,369,373,381,385,394,397,409,410,411,417,418,420,421,424,428,435,441,445,446,447,448,451,452,453,455,456,458,460,463,464,475,476,477,481,483,485,535,536,537],int_:[17,18,19,20,21,22,23,24,25,26,27,197,198,201,205,207,208,209,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,484,495],int_flux:443,integ:[67,68,69,70,71,72,73,74,75,76,77,83,86,87,88,95,97,99,103,104,112,113,114,115,118,121,126,127,133,134,140,145,148,151,173,174,175,176,178,179,180,183,184,186,187,188,194,196,203,225,278,296,302,349,355,363,426,491],integr:[6,17,18,19,20,21,22,24,25,26,27,31,32,37,51,97,99,103,104,112,113,116,118,125,129,130,131,132,135,136,137,139,142,144,146,147,150,175,176,178,180,184,187,188,189,190,197,198,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,254,255,256,258,289,348,356,358,360,362,363,364,366,367,369,373,375,388,390,391,395,396,400,405,406,407,408,409,410,411,414,422,423,425,440,443,444,445,449,450,452,465,467,475,477,483,497,517],integral_error:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,367,397],integral_flux_imag:401,integrate_geom:[199,200,204,212,215,227,229,237,238,240,242,248,252,400,413],integrate_log_log:[129,130,131,132,135,136,137,139,142,144,146,147],integrate_spectrum:[19,20,26,197,198,201,205,207,208,209,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,391,397],integrate_spectrum_separ:[17,18,21,22,24,25,27],intend:[83,86,278,359,377,447],intens:[175,176,178,184,187,188,192,216,359,449,475],intent:354,interact:[19,20,83,86,145,148,175,176,178,184,187,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,348,349,350,358,359,360,361,365,369,372,385,394,428,436,446,449,451,452,460,463,464,488,491,514,538],interchang:491,interest:[114,118,192,260,354,362,363,367,369,379,418,428,432,434,444,445,446,448,450,453,455,456,465,476,477,514,537,540,541],interfac:[6,11,15,19,20,83,86,191,192,193,194,195,196,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,353,354,355,359,361,362,364,366,367,368,369,390,393,395,396,397,400,404,407,408,414,421,424,425,428,436,438,446,452,455,460,464,465,466,479,490,514,535,536,537,538],intermedi:[186,358,365,375,385,417,439],intern:[15,83,86,112,113,122,123,124,152,158,183,246,258,278,290,349,361,363,365,368,373,400,402,411,414,416,421,428,437,438,445,447,449,455,458,463,475,479,533],interp1:449,interp1d:291,interp2:449,interp:[19,20,137,175,176,178,180,184,185,187,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,227,228,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,291,344,372,377,413,423,429,433,436,440,447,448,449,452,456,457,458,491,492,514,515],interp_by_coord:[175,176,178,184,187,188,252,411,449],interp_by_pix:[175,176,178,184,187,188,248,249,449],interp_kwarg:[66,129,130,131,132,135,136,137,139,142,144,146,147,205,248,249,252,253,349,447,456],interp_map:[175,176,178,184,187,188],interp_missing_data:[129,130,131,132,135,136,137,139,142,144,146,147],interp_param:349,interp_scal:[261,291],interp_to_geom:[175,176,178,184,187,188,397,413,449,456,479],interp_weight:174,interpol:[6,26,89,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,155,174,175,176,178,180,184,185,187,188,205,217,227,228,248,249,251,252,253,261,290,291,292,348,360,361,362,390,395,400,402,405,408,410,411,412,413,414,433,447,448,452,456,457,479,487,491,523],interpolatedunivariatesplin:251,interpret:[86,97,99,116,126,127,176,180,186,187,188,296,367,377,449,477,492],intersect:[85,158,159,163,183,363,439],interspers:354,interstellar:[45,432],interv:[52,53,74,78,79,82,84,85,86,87,95,96,98,102,113,118,156,180,185,192,202,210,214,216,217,218,233,239,251,254,358,359,363,364,367,373,381,394,396,397,400,409,410,438,440,446,449,457,464,476,491,537,540],interval_edg:185,intrins:[28,29,30,31,32,35,36,37,39,40,226,269,360,364],intro_map:409,introduc:[19,20,175,176,178,180,184,187,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,349,356,357,359,361,362,363,364,366,369,371,374,377,391,393,394,396,397,400,402,403,407,408,409,411,414,431,437,448,452,492,496,538,541],introduct:[352,370,371,372,390,394,395,396,397,418,421,452,457,458,463,464,468],introductori:437,introspect:278,intuit:[370,541],invalid:[16,80,335,349,363,376,377,400,432,458],invalid_pixel:450,invers:[19,20,26,28,29,30,31,32,35,36,37,39,40,186,197,198,201,205,207,208,209,213,216,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,262,263,300,307,362,432,450,452,514],inverse_al:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],inverse_cdf:432,inversecdf:362,inversecdfsampl:[362,392],inversecompton:[226,514],invert:[86,174,186,465],invest:352,investig:431,involv:[83,86,97,99,103,104,349,354,363,365,367,371,424,538],io:[13,79,82,83,86,100,101,114,168,178,183,192,253,352,358,369,379,391,394,406,410,414,432,446,447,449,455,476,479,490,492],iop:268,iopscienc:268,ipix:174,ipynb:[357,369,391,394,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],ipynb_to_galleri:349,ipython3:382,ipython:[83,86,348,349,365,366,380,384,392,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,460,463,464,465,478,538],ipywidget:449,irap:369,irf:[6,78,84,91,97,98,99,102,103,104,105,106,121,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,149,155,161,162,164,165,166,168,170,171,174,183,186,240,349,355,359,360,361,362,365,368,369,370,371,377,381,389,391,394,396,397,400,402,403,404,405,406,407,408,409,410,411,413,414,417,418,420,421,422,423,424,425,428,432,433,436,438,440,448,450,453,454,456,457,458,460,463,464,475,476,479,481,482,483,485,486,491,536,537],irf_dict:149,irf_dl3_hdu_specif:447,irf_fil:[84,130,134,135,136,145,416,423,436,440,447,455],irf_filenam:[432,433,447,455],irf_map:[133,134,140,145,148],irf_path:432,irfmap:[133,134,145,148,381,397,479],irfmetadata:376,irfmodel:360,irfs1:455,irfs2:455,irfs_path:78,irfstack:[397,406],irregular:[174,186,491],irrespect:[362,428,449,491],is_align:[174,180,185,186],is_all_point_sky_region:183,is_all_same_energy_shap:95,is_all_same_shap:95,is_all_same_typ:95,is_allclos:[129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,177,178,179,180,183,184,185,186,187,188],is_allski:[173,174,183,186],is_bkg:101,is_contigu:[185,449],is_convertible_to_flux_sed_typ:[112,113],is_energy_axi:180,is_energy_depend:[199,200,202,204,210,212,214,215,216,217,218,227,229,233,237,238,239,242,248,251,252,254,413,452],is_fixed_rad_max:147,is_flat:[173,174,179,183,186],is_hpx:[174,183,186],is_imag:[173,174,183,186],is_mask:[175,176,178,184,187,188],is_norm:[19,20,96,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,377,402,417,420,421,422,423,425,428,429,436,440,444,446,452,464,465,514,523],is_norm_spectral_model:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,400,452],is_nul:449,is_pointed_observ:79,is_pointlik:[69,71,72,73,74,129,130,131,132,135,136,137,139,142,144,146,147,400],is_region:[174,183,186],is_regular:[174,183,186],is_ul:[65,112,113,400,444,465],is_unidimension:179,isf:[446,540],isinst:[349,360,363,372,376,377],ism:[52,53,514],isn:[352,356,363,365,368,379,384,430,538],isnan:[449,450],iso:[84,113,185,190,414,440,451,456,491,532],iso_p8r2_source_v6_v06:[451,456],isol:[363,380,381,383,450],isot:[330,542],isotherm:[22,467],isotrop:[47,200,257,451],issu:[19,20,26,83,86,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,350,352,357,358,360,361,363,366,369,374,375,376,377,378,381,382,383,390,402,403,405,406,407,408,409,411,412,413,414,430,450,455,475,479,538,539,542],item:[28,29,30,31,32,35,36,37,39,40,83,86,87,95,182,225,369,376],iter:[83,86,87,95,112,113,175,176,178,179,180,182,184,185,187,188,225,352,355,357,365,401,424,440],iter_by_axi:[112,113,175,176,178,184,187,188],iter_by_axis_data:184,iter_by_coord:392,iter_by_edg:[180,185],iter_by_imag:[175,176,178,184,187,188,409],iter_by_image_data:[175,176,178,184,187,188,449],iter_by_image_index:[175,176,178,184,187,188],iter_by_pix:392,iter_with_reshap:179,itercol:[83,86],iterrow:[83,86],itertool:446,its:[19,20,26,28,29,30,31,32,35,36,37,39,40,97,99,103,104,112,113,151,152,161,174,180,182,197,198,201,204,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,260,349,352,355,358,359,361,364,365,366,368,373,375,376,379,382,400,414,417,421,422,425,432,433,437,438,439,444,446,448,449,450,451,452,463,465,468,484,486,488,490,491,492,537,540],itself:[83,86,348,349,364,375,417,438,439,441,538],j0001:[444,465],j0002:[444,465],j0003:[444,465],j0006:444,j0007:465,j0008:[444,465],j0009:465,j0010:444,j0013:444,j0021:444,j0022:444,j0025:444,j0031:444,j0349:444,j0521:420,j0534:[444,465],j0633:465,j0835:[418,465],j0851:444,j1036:444,j1104:[444,465],j1506:418,j1507:418,j1513:444,j1514:444,j1555:465,j1653:444,j1713:417,j1731:451,j1732:451,j1741:451,j1744:451,j1745:451,j1746:451,j1747:451,j1748:451,j1753:451,j1800:451,j1801:451,j1802:451,j1809:451,j1811:451,j1824:444,j1825:431,j1843:65,j1844:65,j2028:444,j2158:444,j2347:465,j2350:465,j2351:465,j2352:465,j2356:465,j2357:[444,465],j2358:[444,465],j2359:[444,465],j:[19,20,23,97,103,116,350,352,475],j_:23,jackson:[83,86],jacob:[390,409],jacobian:[28,29,30,31,32,35,36,37,39,40,396],jalel:[397,400],jan:[354,355,358,361,366,370,387],januari:[356,358,374],jargon:381,jason:390,javascript:[83,86],jax:367,jean:[408,409],jeltema:467,jep:354,jet:340,jfact:443,jfact_decai:443,jfact_map:443,jfactor:[19,20,414],jfactori:443,jj:191,jk:[97,103,475],jkl:475,jl:475,jo:[83,86],job:[88,114,115,118,121,151,402],johann:[393,400,404,405,406,407,408,409],john:[83,86],join:[351,360,361,455],joint:[95,103,104,109,260,357,358,361,365,369,371,381,390,391,393,394,409,410,417,418,420,421,422,424,431,435,440,445,446,448,452,453,456,460,463,477,479,535,536,537],joint_fit:441,joint_result:441,jointli:[453,457],jonathan:[404,405],jose:[400,402,408],joshi:400,journal:375,jouvin:[390,392,393,394,397,405,406,407,408,409],jqueri:[83,86],jskwarg:[83,86],json:[16,80,378,402,404,408],json_data:[16,80],json_encod:16,json_schema:[16,80],jsonschema:[366,393,394],jsviewer:[83,86,430],jul:[355,364,366,368,387],juli:[355,358,363,365,366,368,372,374,376,439],julian:542,julien:[406,407,408],jun:[363,365,366,371,372],june:[363,367,387],junior:[64,369],jupyt:[348,356,365,366,369,380,381,383,384,386,391,406,407,408,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538],jupyterlab:[348,366,369,385,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],jupytext:369,just:[28,29,30,31,32,35,36,37,39,40,79,82,135,324,349,350,351,352,354,357,359,363,365,366,367,369,378,379,380,381,382,383,408,410,420,421,423,428,430,432,437,438,439,441,445,449,456,457,463,465,476,492,538],juypter:365,jyear:[83,86],k:[19,33,52,53,97,103,182,201,251,302,418,420,422,444,449,451,456,475,492,495,507,514,525],kai:[408,409],kaori:392,kaspi:[31,39,45],katrin:[377,413,414],kb:357,keep:[13,83,86,95,112,143,175,176,178,184,187,188,192,349,350,352,354,355,356,357,363,366,367,368,369,372,373,398,408,425,426,431,436,446,451,456],keep_byteord:[83,86],keep_column:[83,86],keep_mc_id:[98,102],keepdim:[143,145,148,175,176,178,184,187,188,389,394,448],kei:[16,28,29,30,31,32,35,36,37,39,40,67,78,80,83,85,86,97,99,103,104,107,121,182,192,318,335,357,359,366,371,373,376,386,409,445,452,504],kept:[85,97,99,103,104,112,113,114,118,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,183,184,186,187,188,349,355,369,373,477],kernel:[97,99,103,104,107,111,116,117,121,132,133,134,143,145,148,150,155,160,162,165,176,186,188,355,376,395,396,401,406,410,411,424,426,441,448,449,450,456,465,475,479,483],kernel_width:[121,424,430],kernelbackgroundestim:396,kernelbackgroundmapestim:370,kev:[101,121,180,424,445,492],keyboard:385,keyerror:[86,182,373],keyword:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,66,78,79,80,82,83,84,86,90,96,97,99,103,104,113,115,116,128,129,130,131,132,135,136,137,139,142,143,144,145,146,147,148,173,174,175,176,178,179,180,182,183,184,185,186,187,188,191,192,193,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,257,261,290,298,299,330,332,333,336,337,338,342,343,344,345,346,376,396,400,403,411,412,422,432,433,445,449,457,477,492,502],kg:52,khelifi:[392,394,397,400,403,407,408,409,411,412],kidtrvep:452,kind:[83,86,253,324,360,361,362,367,368,372,375,409],kinet:44,king:[144,393,404,405,406,407,408,409,447,485],kirsti:[413,414],kl:475,klepser:404,km2:455,km2a:[57,68],km:[32,37],know:[350,352,354,358,363,365,366,373,379,391,408,409,410,430,433,443,447,448,449,455,457,458,538],knowledg:[377,385,418,423,429,431,434,436,438,446,448,449,451],known:[262,263,278,362,420,424,426,431,438,448,449,450,465,479,489,538,539,540],kovalev:437,kpc:[17,18,21,22,24,25,27,29,33,34,38,226,278,281,443,444,473,514],ks:446,kwarg:[19,20,26,28,29,30,31,32,35,36,37,39,40,53,56,58,59,60,61,62,63,64,79,82,83,84,86,96,97,99,103,104,113,114,115,116,118,129,130,131,132,135,136,137,139,142,143,144,145,146,147,148,157,173,174,175,176,177,178,179,180,182,183,184,185,186,187,188,191,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,257,261,290,301,324,336,337,338,341,343,344,345,346,349,360,376,377,413,418,432,441,448,458,526],kwargs_ax:[342,426,428],kwargs_background:[103,104],kwargs_colorbar:[129,130,132,135,136,137,142,144,146,188,337],kwargs_count:[103,104],kwargs_excess:[103,104],kwargs_extens:[199,200,204,212,215,227,229,237,238,242,248,252,431],kwargs_fit:[103,104,342],kwargs_fp:96,kwargs_hist:[342,426,428],kwargs_list:182,kwargs_model:96,kwargs_npred_sign:[103,104],kwargs_point:[183,203,225,422],kwargs_posit:[199,200,204,212,215,227,229,237,238,242,248,252,431],kwargs_residu:[96,103,104],kwargs_saf:[103,104],kwargs_spati:[97,99,103,104,428,464],kwargs_spectr:[97,99,103,104,428,464],kwargs_spectrum:[96,103,104],l06:[48,469],l:[23,26,51,54,97,155,350,363,372,375,421,423,424,425,426,428,430,431,436,440,444,445,446,448,449,450,452,456,463,464,465,475,479,492,537,539,540,541],l_0:[51,472,495,496],l_:[52,53],l_snr:44,la:406,lab:[375,385,408],label:[87,177,180,185,203,225,276,337,338,343,346,349,350,353,358,362,363,378,379,400,402,411,412,414,416,418,420,422,426,428,429,433,434,438,441,443,446,449,452,453,465,472,473,481,504,510,513,514,518],label_axi:449,label_axis2:449,labelcolor:416,labelmapaxi:[400,414],lack:[182,364,441],lafferti:[388,537],lafferty1994:537,lai:450,lambda:[16,65,208,209,342,444,446,455,508,540],lambda_:[208,209,260,418,420,428,508,510],land:379,langl:19,languag:[356,368],laplac:[215,497],lar:[365,389,390,391,407,408,409,412,414],larg:[65,83,86,175,176,178,184,187,188,248,250,252,349,352,354,355,363,369,370,390,400,409,410,416,420,426,444,450,455,456,457,465,475,477,479,480,492,497,535,538,543],large_scale_compon:[65,444],larger:[27,120,260,268,357,368,414,416,417,420,445,448,449,450,476,492,497,539,540],largest:[97,99,103,104,188,349],last:[28,29,30,31,32,35,36,37,39,40,87,89,95,175,176,177,178,180,184,187,188,225,308,346,356,359,361,371,375,378,379,381,383,389,390,488],lat:[16,47,58,60,61,63,69,71,72,74,79,82,86,89,97,99,103,111,114,115,117,121,133,134,140,145,148,151,175,176,178,181,184,186,187,188,199,200,204,211,212,215,227,229,237,238,240,242,248,250,252,257,260,280,281,284,306,349,350,357,358,359,360,361,362,368,369,372,379,381,386,389,394,407,408,409,418,421,424,425,426,428,430,434,438,439,444,445,447,448,449,450,451,452,453,459,460,463,464,465,467,474,475,476,477,479,484,491,492,495,496,497,498,499,500,501,535,542],lat_0:[204,212,215,229,237,238,252,364,372,425,428,429,431,432,433,436,438,444,445,451,452,456,463,464,495,496,497,499,500,501,502],lat_0_err:431,lat_pnt:[280,284],lat_rang:306,lat_t:[280,284],later:[349,354,355,356,360,361,362,365,366,367,368,369,370,381,382,383,388,390,400,401,403,404,410,420,422,428,429,445,448,449,452,456,465,475],latest:[114,168,253,278,352,356,369,374,375,378,382,411,416,423,425,428,429,430,436,440,446,455,476,492],latex:[349,350],latex_inlin:414,latitud:[89,173,174,175,176,181,183,186,187,188,306,336,393,434,449,452,484,491,498],latpol:449,latter:[162,192,360,362,364,370,373,376,394,422,423,432,433,436,450,451,486,488,537,539],launch:[408,538],laura:[397,400,402,403,409,411,413,414],law2:517,law:[27,96,111,112,113,115,120,125,143,145,148,197,207,208,209,230,231,232,233,241,244,245,246,255,305,362,388,394,408,423,425,428,432,434,436,439,440,441,451,452,479,493,504,524,530],layer:[83,86,361,368],layout:[400,428,436,449,463,464],lazi:[84,95,97,99,103,104,250,287,408,479],lazili:97,lazyfitsdata:396,lc:[82,118,185,362,364],lc_1d:[437,438,439,440],lc_3d:438,lc_estim:364,lc_maker_1d:[438,439,440],lc_maker_3d:438,lea:397,lead:[111,349,358,363,368,370,372,374,375,393,455,457,467,538],leak:[422,488],leakag:438,learn:[130,135,349,366,369,378,381,382,383,385,409,418,420,424,430,431,432,434,437,444,445,446,449,452,455,460,465,538],least:[43,44,349,352,354,358,432,437,491],leav:[354,361,363,364,366,369,378,380,451],lefaucheur:[406,407,408],left:[21,24,25,27,28,29,30,31,32,35,36,37,39,40,50,51,52,53,83,86,97,103,112,113,118,121,133,135,175,176,178,184,187,188,209,213,232,244,264,270,349,357,359,363,365,368,372,385,424,430,437,438,440,451,477,486,489,496,497,504,505,508,509,511,512,514,516,519,520,521,522,526,527,528,530,539,540,541],legaci:[349,408,409],legacy_altaz:81,legal:[83,86],legend:[346,416,418,420,422,428,429,433,438,441,443,446,452,453,456,472,473,481,504,510,513,514,518],legend_kwarg:346,len:[79,260,346,424,431,432,433,437,439,441,444,446,448,451,465,479],lenain:[408,409],length:[19,20,26,28,29,30,31,32,35,36,37,39,40,76,78,83,86,89,151,173,174,175,176,178,179,183,184,186,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,290,342,375,418,423,430,434,444,446,449,456,465,495],lengthi:449,lennarz:[391,405,407],leq:[495,500,501],less:[174,176,180,217,251,270,349,354,356,367,379,408,446,452,453],let:[65,256,349,352,354,358,363,366,381,384,408,409,410,418,421,422,423,424,428,429,430,431,432,434,440,441,444,445,446,449,450,452,456,463,465,538],level:[6,11,15,16,79,80,111,192,262,263,349,350,352,353,354,360,362,364,368,369,370,373,376,381,385,392,393,394,395,396,400,408,417,418,420,421,424,425,426,428,430,432,436,437,438,439,440,441,443,446,451,453,455,456,457,458,460,462,465,466,475,476,477,484,486,487,491,535,536,537,538,542],levelnam:349,levmar:[192,446],lf:379,lgpl:349,lgtm:379,lhaaso:[55,57],li:[107,111,158,355,416,424,426,432,537,540],lib:[314,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,510,513,526],librari:[83,86,349,354,355,359,369,375,386,417,420,432,452,455,464,467,476,479,536,538],licenc:375,licens:[375,385],lie:[173,174,180,183,186],life:[356,446],lifetim:20,lifetime_age_of_univers:20,light:[15,118,122,205,217,269,353,360,362,365,369,373,381,394,396,397,404,407,409,414,437,442,460,475,476,477,478,487,488,493,534,536],light_curv:[16,217,369,409,421,425,426,428,438,442,463,533],light_curve_flar:[439,442],light_curve_model:533,light_curve_simul:[440,442],lightcrv_pksb1222:[217,533],lightcurv:[69,71,72,74,108,113,118,122,123,124,184,185,217,266,267,269,358,360,365,368,370,373,381,392,394,395,396,400,406,407,408,409,411,412,414,438,439,442,460,474,479,533],lightcurve_at_energi:373,lightcurveconfig:16,lightcurveestim:[108,364,365,370,373,381,392,394,396,397,400,408,409,414,438,439,440,479],lightcurvetablemodel:[360,362],lightcurvetempl:360,lightcurvetemplatemodel:[413,414],lightcurvetemplatetemporalmodel:[247,372,411,414,433,452,533],like:[19,20,28,29,30,31,32,35,36,37,39,40,46,50,52,53,65,76,78,83,84,86,126,127,139,147,175,176,178,182,184,187,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,278,298,308,348,349,350,352,354,355,356,357,359,360,363,364,365,366,367,368,369,370,371,372,375,377,378,380,381,382,385,391,400,402,403,407,408,410,411,413,414,416,418,420,421,422,423,426,433,434,437,441,443,445,446,447,449,453,455,456,460,463,465,467,468,475,479,484,492,501,536,538,539,540,541],likelhood:361,likelihood:[95,97,99,104,111,112,113,115,121,261,275,349,355,358,361,362,365,367,369,370,371,373,381,388,390,391,394,401,404,407,409,410,418,420,421,422,424,430,434,438,441,445,446,448,456,463,464,467,475,477,479,514,536,537,539,540],likelihood_profil:[360,390],likelihood_typ:395,likewis:[176,188],lima1983:[477,537,540],lima:107,lima_map:426,limamapestim:[370,396],limit:[28,29,30,31,32,35,36,37,39,40,52,53,76,83,86,96,105,111,112,113,114,115,118,119,121,132,147,150,180,194,196,230,261,262,263,298,299,336,355,357,358,360,361,362,363,364,366,367,369,370,372,373,377,390,396,400,407,408,409,410,416,420,428,431,434,438,445,446,449,450,453,456,463,475,477,479,488,496,514,523,536,537,541],lin:[19,20,180,184,185,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,227,228,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,261,290,291,292,377,433,447,449,458,492,514],line2d:[183,203,225,453],line:[6,13,46,78,79,83,86,96,97,99,103,104,136,142,144,146,183,184,203,225,310,311,346,348,350,352,355,358,360,363,365,366,373,379,381,383,385,394,405,408,428,446,448,452,453,467,479,492,536],linear:[19,20,26,28,29,30,31,32,35,36,37,39,40,129,130,131,132,135,137,139,142,147,175,176,178,184,185,187,188,197,198,201,205,207,208,209,213,217,218,219,220,222,226,228,230,231,232,236,241,243,244,245,246,248,249,251,252,253,290,349,411,428,433,434,436,449,452,456,463,464,493,534],linear_model:529,linearli:[185,188,449,475],linearsegmentedcolormap:[339,340],linearstretch:[339,340],lineartemporalmodel:[247,452,529],lineno:349,liner:[251,363],linestyl:[416,437,441,443,473,492,495,496],linewidth:[346,350],linhoff:[412,413,414],link:[65,67,76,96,203,205,225,260,352,354,357,358,361,369,375,379,385,386,397,400,402,406,407,408,417,420,421,422,423,425,428,429,436,440,444,446,452,455,464,465,479,523,535],linkag:276,linkage_kwarg:276,linkcheck:350,linspac:[79,134,175,176,178,184,187,188,432,434,441,446,447,449,491,495],linux:[356,366,379,382,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,538],list:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,69,70,71,72,73,74,75,76,78,79,80,82,83,84,85,86,87,88,91,95,96,97,98,99,102,103,104,107,111,112,113,114,115,118,119,121,128,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,150,151,155,156,158,159,161,162,163,164,167,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,190,191,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,299,309,310,311,313,338,342,343,345,346,348,349,350,351,352,353,354,355,356,357,358,359,368,369,370,371,372,373,375,376,378,379,380,381,382,384,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,405,406,407,408,409,410,411,412,413,414,417,420,423,424,429,433,434,436,437,438,440,445,447,448,453,455,456,457,458,460,464,475,479,482,491,492,535,536,537,538],list_format:[83,86],listen:479,listenv:352,listinfo:378,liter:[16,80,296,349],literatur:[467,469,537],littl:[83,86,368,370,376,449,456,484,488,538],live:[79,82,84,349,354,357,359,370,410,413],livetim:[65,84,85,99,100,104,145,167,169,170,355,416,417,420,421,423,430,432,433,436,440,444,445,447,449,456,457,465,475,479],livetime_fract:85,ljouvin:355,ll:[112,113,121,352,354,366,382,416,417,420,422,425,426,430,437,438,439,440,441,538,540],llvm:385,ln:[53,446,521],lo:[23,407],lo_bnd:180,lo_threshold:132,load:[64,65,78,79,82,83,86,95,96,97,99,103,115,117,149,155,173,174,175,176,186,286,349,403,406,408,414,421,423,425,426,432,433,436,437,440,441,450,455,456,457,458,463,465,476,479],load_cta_irf:[410,414],load_irf_dict_from_fil:[145,414,416,423,432,433,436,440,455],loc:[83,86,188,342,441,472,473,481,504,510,513,514,518],loc_indic:[83,86],local:[17,18,21,22,24,25,27,83,86,126,127,160,173,174,183,184,186,349,350,352,357,363,378,379,382,386,390,400,421,424,425,426,431,432,443,448,460,463,479],local_dataset:448,local_dens:[17,18,21,22,24,25,27,443],local_to_glob:174,localfold:11,localis:286,localn:[16,80],locat:[47,78,79,81,83,84,89,122,133,134,140,145,148,186,307,357,363,367,370,375,376,381,383,414,416,423,432,433,436,440,444,457,458,476,492,538],location_info:83,log10:441,log:[16,19,20,26,42,80,97,112,113,129,130,131,132,135,136,137,139,142,144,146,147,155,180,184,188,193,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,248,249,251,252,253,255,258,264,270,289,290,292,335,344,361,365,387,404,411,421,423,424,425,426,428,429,430,433,436,438,439,440,443,445,446,447,448,449,452,456,457,462,463,464,479,481,491,492,493,515,523,524,530,537,538,539,540,541],log_2:267,log_:[219,220,452,512],log_en:452,log_level:11,log_parabola:418,log_parabola_norm:372,logarithm:[34,449,512],logarithmic_spir:34,logb:42,logconfig:16,logenergyaxi:407,loggaussian:360,logger:[316,318,349,430],logic:[16,80,82,161,373,449,450],logical_and:[175,176,178,184,187,188],logical_or:[175,176,178,184,187,188,448],loglog:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,289,416,443,471,472,473],lognorm:443,logo:379,logparabola:[360,513],logparabolanormspectralmodel:[220,235,372,397,452,513],logparabolaspectralmodel:[219,235,372,418,420,422,429,444,446,452,506,512,513],logscal:394,logspac:[134,175,176,178,184,187,188,423,436,440,441,443,449,471,472,473,492],logspir:[33,38],lomb:[364,408],lon:[16,47,86,89,97,99,103,111,115,117,121,133,134,140,145,148,151,175,176,178,181,184,186,187,188,199,200,204,211,212,215,227,229,237,238,240,242,248,250,252,280,281,284,306,349,350,360,363,368,372,393,421,425,426,428,430,434,438,439,444,445,447,448,449,452,453,456,463,464,465,477,491,492,495,496,497,498,499,500,501],lon_0:[204,212,215,229,237,238,252,364,372,425,428,429,431,432,433,436,438,444,445,451,452,456,463,464,495,496,497,499,500,501,502],lon_0_err:431,lon_pnt:[280,284],lon_rang:306,lon_t:[280,284],longer:[268,349,355,356,363,364,366,369,382,400,403,408,409,411,414,417,423,438],longest:179,longitud:[66,89,173,174,175,176,181,183,186,187,188,306,336,363,434,449,452,484,491,498],lonpol:449,look:[28,29,30,31,32,35,36,37,39,40,46,56,57,58,59,60,61,62,63,64,65,79,84,97,99,103,104,113,129,130,132,133,134,135,136,137,142,143,144,145,146,148,308,349,351,352,354,361,363,364,366,368,369,372,385,408,417,420,421,423,424,425,426,428,430,432,434,436,438,440,441,445,447,449,452,455,456,458,460,463,465,467,476,479,538],look_up:406,lookup:181,loop:[83,86,299,362,414,420,444,449,457,463,479],lopez21:[206,504],lopez:[205,408,414,504],lopez_2021:206,lorimer2006:[28,29,30,36,39,40,48],lose:349,loss:[52,537],lost:[95,97,103,479,492],lot:[78,349,352,354,355,356,357,360,362,363,365,369,379,389,391,392,400,408,409,421,430,456,463,464,489],low:[83,86,132,180,301,349,350,353,358,378,406,408,417,420,424,430,432,445,450,451,455,456,460,463,466,475,476,477,486,487,491,535,539],low_zenith:453,lower:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,52,53,112,113,132,161,180,182,185,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,349,363,368,369,376,434,448,464],lower_error:113,lowest:[368,437],lp:[219,220,372,418,444,452,506],lp_norm:513,ls:[96,103,104,346,417,420,422,441,444,453,455,456,514],lst:[356,455],lt:[349,375,402,411,500,501],ltcube:[174,175,176,178,187,188,449],lts_author:375,luca:[390,391,392,393,394,395,396,397,400,402,403,411,414],lui:410,luigi:405,luminos:[41,46,51,52,53,54,226],luminosity_spindown:[51,54],luminosity_tev:[52,53,473],lvtm:440,lw:[422,424,430,441,446,492,495,497],ly:[400,451],lyne:37,m1:[381,382,383],m2:[97,135,155,421,423,425,426,428,430,436,445,447,448,455,463,464],m:[19,28,29,30,31,32,35,36,37,38,39,40,52,53,83,86,89,92,118,173,174,175,176,178,184,186,187,188,275,349,350,352,363,380,381,382,383,433,443,446,447,449,452,462,484,488,490,491,492,502,538,541],m_3fhl_gc:449,m_4d:449,m_:[20,50,52,53],m_allski:449,m_b:539,m_cube:449,m_ejecta:[52,472],m_gc:449,m_hpx:449,m_i:539,m_iem_10gev:449,m_iem_cutout:449,m_iem_gc:449,m_iem_interp:449,m_sub:449,m_sun:472,m_wc:[175,176,178,184,187,188,449],ma:[83,86,107,111,416,424,426,537,540],mac:[83,86,349,356,379,407,538],machin:[352,356,357,362,366,379,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],machineri:[28,29,30,31,32,35,36,37,39,40,428],maco:[366,409],macport:[366,407,409],made:[155,162,183,186,194,196,203,225,278,310,311,349,352,354,365,368,370,373,374,375,400,411,412,420,424,428,429,448,455,492,502,537],madrid:359,magenta:[346,431,453],magic:[92,381,386,402,408,411,422,456,537],magic_ecpl:256,magic_lp:[256,422],magnet:[42,50,51,54,514],magnetic_field:[50,51,54],magnitud:[290,432],mai:[16,28,29,30,31,32,35,36,37,39,40,78,80,83,86,89,96,113,114,115,118,193,195,349,350,352,357,358,362,363,365,366,374,375,379,380,382,387,388,425,426,432,455,478,491,497,514,535,538,542],mail:[350,352,354,356,363,365,368,370,372,375,378,384,389,390,465,538],mailman:378,mailmap:[400,411],main:[86,97,103,349,352,354,355,357,361,364,365,366,369,373,374,375,379,390,396,400,403,408,414,421,431,432,434,436,444,447,449,450,451,462,463,464,474,476,480,538],mainli:[349,359,360,363,370,449],maintain:[28,29,30,31,32,35,36,37,39,40,83,86,349,351,366,368,369,370,374,378,379,409,448],mainten:[349,356,375,379,391,413],major:[183,204,212,215,349,353,354,358,366,374,402,408,409,495,496,497],majorana:19,make:[16,28,29,30,31,32,35,36,37,39,40,45,46,59,78,80,83,86,90,96,150,151,155,156,157,158,160,161,162,165,166,171,172,174,175,176,179,180,183,185,186,187,188,251,308,310,311,320,348,350,351,354,355,356,359,361,363,365,366,367,368,369,370,373,375,376,379,385,388,389,391,394,395,400,402,405,406,407,408,411,413,417,420,422,423,426,428,432,436,438,446,447,448,449,452,455,456,457,462,465,476,479,538,539],make_background:[155,162],make_background_fit:152,make_background_scal:152,make_base_catalog_galact:[408,469],make_concentric_annulus_sky_region:434,make_contour:446,make_count:[155,156,157,162],make_counts_off:[156,157],make_cub:150,make_dataset:151,make_default_fov_background_model:152,make_edisp:[155,162],make_edisp_kernel:[155,162],make_edisp_kernel_map:447,make_edisp_map:134,make_effective_livetime_map:448,make_exclusion_mask:152,make_exposur:[155,162],make_exposure_irf:[155,162],make_imag:409,make_lupton_rgb:344,make_map_background_irf:403,make_map_count:355,make_map_cutout:355,make_map_exposure_reco_energi:355,make_map_exposure_true_energi:[134,355,447],make_map_fov_background:355,make_map_hadron_accept:355,make_map_ring_background:355,make_map_xxx:355,make_maps_off:160,make_mask_bkg_invalid:161,make_mask_energy_aeff_default:161,make_mask_energy_aeff_max:161,make_mask_energy_bkg_peak:161,make_mask_energy_edisp_bia:161,make_mask_offset_max:161,make_mean_edisp:410,make_mean_psf:410,make_meta_t:[155,162],make_model:368,make_more_random_stuff:349,make_observation_time_map:448,make_orthogonal_rectangle_sky_region:[115,434],make_path:[113,429,445],make_pixel_region:363,make_psf:[145,155,162,410],make_quant:320,make_random_stuff:349,make_region:363,make_sky_coord:363,make_some_random_stuff:349,make_theta_squared_t:[400,458],makefil:[379,404],maker:[6,134,145,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,355,362,364,375,394,396,397,402,411,414,416,420,422,423,426,430,432,433,436,440,441,445,447,450,454,457,458,460,475,476,489,491,537],maker_fov:464,maker_safe_mask:[430,436,464],mamba:[352,380,402],manag:[83,86,194,196,203,225,298,327,348,349,352,357,365,366,368,371,375,376,378,400,405,407,411,449,451,538],manconi:392,mandatori:[161,352,362,375,433,452],mandatory_keyword:447,mani:[83,86,290,349,350,352,354,356,358,361,363,364,365,366,369,370,375,379,382,385,391,392,397,400,406,407,408,409,410,413,414,417,420,423,431,436,437,449,458,460,467,475,477,489,492,535,536,537,538,542],manifest:359,manipul:[83,86,373,376,402,491],manner:[413,414],manpow:[354,366],manual:[28,29,30,31,32,35,36,37,39,40,83,86,356,361,371,378,432,479,487,538,539],manuel:[401,404,405],map:[6,15,16,23,26,28,29,30,31,32,35,36,37,39,40,65,76,79,80,83,86,91,93,97,98,99,100,101,102,103,104,106,107,108,109,111,112,113,115,117,118,121,125,126,127,129,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,148,150,152,153,155,158,159,160,161,162,163,164,165,166,167,168,169,170,171,173,174,175,176,177,179,180,181,183,184,185,186,187,188,189,190,200,203,204,211,212,215,217,225,227,229,237,238,240,242,248,249,250,252,253,259,300,336,337,342,344,346,348,349,352,356,360,361,362,363,364,365,368,369,370,371,372,373,376,381,385,389,390,392,393,394,395,396,397,400,401,402,404,405,406,408,409,410,411,414,416,417,420,421,422,423,427,428,431,432,433,434,435,438,439,440,444,445,448,452,454,455,456,457,458,460,461,463,464,467,474,475,476,478,479,483,484,485,486,487,488,489,494,496,497,498,499,502,533,535,536,537],map_4d:449,map_:[189,190,337,344],map_analysi:368,map_cent:252,map_coord:[79,134,145,148],map_dataset:[361,441],map_dataset_empti:441,map_dataset_mak:441,map_dataset_on_off:441,map_in:[175,176,178,184,187,188],map_out:[99,104,133,134,140,145,148,175,176,178,184,187,188],map_select:[16,421,425,426,428,463],map_typ:[175,176,178,184,187,188,449,491],mapax:[129,130,131,132,135,136,137,139,142,144,146,147,397,400,402,447,449],mapaxi:[19,20,26,97,99,103,104,105,106,112,113,115,129,130,131,132,133,134,135,136,137,139,142,143,144,145,146,147,148,155,165,166,171,172,173,174,175,176,178,179,183,184,185,186,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,344,364,373,391,392,394,397,400,410,414,416,417,420,422,423,429,430,432,433,436,439,440,441,445,447,448,449,452,456,457,458,464,483,486,488,489,491,492],mapcoord:[79,134,145,148,173,174,175,176,178,179,183,184,186,187,188,227,408,409,449,492,498],mapdataset:[93,94,98,99,102,103,104,105,106,107,111,115,118,121,125,150,151,152,155,156,160,161,211,342,345,362,364,370,371,390,391,392,393,394,395,396,397,400,414,424,425,429,430,431,433,434,436,438,440,441,446,448,450,451,456,463,464,477,479,486,489,537,539,540],mapdataseteventsampl:[88,102,394,395,396,403,414,432,433],mapdatasetmak:[145,153,162,362,394,397,400,403,411,430,432,433,436,441,447,448,457,463,464,479,486,489],mapdatasetmetadata:376,mapdatasetoff:402,mapdatasetonoff:[93,97,103,104,107,111,125,150,156,160,394,395,397,400,413,414,426,441,448,475,489,539],mapdatasetsampl:362,mapevalu:[360,361,393,394,397,400,411,412,413],mapeventsampl:[392,393],mapfit:[360,361,390,409,410],mapgeom:[355,410,411],mapmak:[155,365,390,394,409],mapmakerob:[393,394],mappabl:373,mappanelplott:[370,543],mapper:286,mappingintstrani:[16,80],maps_off:160,mar:[366,387,412],march:[356,358,387,389,410],marcocirelli:26,margin:[99,104,174,176,186,188,203,225,240,360,450,495,537,539],marion:[390,409],mark:[86,349,360,378],marker:[96,97,99,103,104,416,417,420,422,424,430,437,438,439,440,465],markerfacecolor:[97,99,103,104],markers:[96,97,99,103,104],mask:[79,83,86,94,96,97,99,103,104,111,114,115,117,118,119,121,133,134,140,145,148,150,152,157,158,159,160,161,163,173,174,175,176,178,181,183,184,186,187,188,194,196,203,225,240,361,377,394,396,397,398,400,403,409,411,412,413,414,416,417,428,430,437,448,451,454,457,460,475,486,488,491,537],mask_1:453,mask_2:453,mask_bright:444,mask_contains_region:188,mask_data:450,mask_energi:[445,450],mask_fit:[96,97,99,103,104,361,394,411,422,428,441,445,446,450,475],mask_fit_imag:[97,99,103,104],mask_imag:[97,99,103,104],mask_map:[174,186,450,454],mask_map_catalog:450,mask_nearest_posit:[175,176,178,184,187,188],mask_off:441,mask_roi:444,mask_saf:[96,97,99,100,103,104,161,361,394,445,448,450,475],mask_safe_edisp:[97,99,103,104],mask_safe_imag:[97,99,103,104,133,134,140,145,148],mask_safe_psf:[97,99,103,104],mask_spac:445,masked_ev:79,maskedarrai:[83,86],maskedcolumn:[83,86],mass:[19,20,26,52,362,396,443,467,499],massdm:[19,20,443],master:[355,356,363,374,378,379,388],match:[83,86,102,105,173,174,176,179,180,181,183,186,188,190,262,263,349,357,408,410,420,423,440,456,474,491],match_by_nam:181,math:[212,348,446],mathcal:[446,475],mathemat:452,mathieu:[400,403],mathrm:[19,20,23,97,103,135,443,446,475,539,541],mathworld:[305,306],matplotlib:[19,20,26,64,65,79,117,129,132,135,136,137,142,143,144,145,146,147,148,175,176,178,184,187,188,191,197,198,199,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,252,253,254,327,337,338,339,342,343,344,346,348,349,350,363,366,375,382,385,392,400,402,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,471,472,473,479,481,482,483,485,488,495,497,501,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,542],matric:191,matrix:[28,29,30,31,32,35,36,37,39,40,132,133,134,137,191,192,194,203,225,262,263,342,366,367,377,410,411,414,446,447,475,477,483],matter:[1,17,18,19,20,21,22,23,24,25,26,27,363,369,377,409,414,448,454,456,460,468,491,536,538],matthew:[356,406,408,409],matthia:[408,409],mattox:424,max:[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,79,83,84,86,96,97,105,114,116,118,145,147,148,151,155,161,188,193,194,195,196,197,198,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,306,357,365,372,377,385,396,397,398,400,402,414,417,420,421,422,423,425,426,428,429,430,431,434,436,437,438,439,441,444,445,446,447,448,449,450,452,453,456,457,463,464,467,486,488,489,495,514,517,523,540],max_ag:[45,469],max_column:[83,86],max_energi:437,max_lin:[83,86],max_offset:365,max_percentil:79,max_radiu:[143,145,148,186,456],max_region_numb:[158,488],max_width:[83,86],maxcal:192,maxclust:276,maxfev:446,maxim:[45,78,86,105,161,200,204,212,215,227,237,238,242,248,252,412,413,414,488],maxima:[126,194,196],maximilian:[400,402,403,412,413,414],maximum:[19,20,45,46,47,79,83,86,95,112,113,114,116,118,145,148,150,158,161,167,170,174,180,185,186,193,195,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,262,263,305,307,310,346,352,355,363,402,418,424,437,448,449,457,464,469,477,488,514,536,537,540],maxwellian:32,mayb:[28,29,30,31,32,35,36,37,39,40,349,357,359,360,371,381,383],mb:[173,174,183,186,357,381,383,419,427,435,442,454,455,456,458,459,461,466,503,524,534],mbox:[97,103],mc:367,mc_id:[79,359,362,402,432,455],mcerp:367,mckee:53,mcmc:[367,369,390,395,397,514],mcmc_sampl:[369,392],md:[352,369,375],mdm:[26,443],mean:[42,66,83,86,91,97,115,117,132,133,134,137,140,145,148,213,217,251,266,277,296,349,350,352,354,356,362,363,365,366,372,377,382,385,397,406,423,433,437,446,448,452,453,456,457,465,496,511,538,539],meaning:452,meant:[355,414,416,423,425,428,430,436,440,455],measur:[27,65,99,104,117,180,256,262,263,266,267,268,269,272,273,275,355,363,368,373,379,388,393,401,407,409,417,420,422,423,426,429,431,434,436,437,438,439,444,456,464,465,477,484,486,489,536,537,540,541],mechan:[357,367,373,376],media:375,median:[79,145,148,385,441,453,456],median_zenith:453,medium:[45,52,349,358],meeseeksdev:349,meeseeksmachin:349,meet:[203,225,278,355,357,369,374,379],megabyt:[173,174,183,186],member:[79,350,354,363,375,376,408,414,455,458],memo:[132,180],memori:[83,84,86,87,95,97,98,99,102,103,104,173,174,183,186,248,250,252,327,349,359,361,362,365,371,373,394,400,423,436,479,537],memoryobserv:84,mender:[413,414],mention:[59,349,350,352,356,357,361,363,366,368,369,374,375,378,379,447,451,452,467,537],mentor:[352,369],mere:359,merg:[65,82,83,86,177,180,203,225,317,349,352,353,354,355,362,363,364,368,369,374,375,378,379,389,390,391,392,393,394,395,396,397,405,406,407,408,409,410],merge_equ:82,mergesort:[83,86],mess:350,messag:[96,352,363,365,372,398,413,417,418,420,421,422,428,429,430,440,441,446,456,463,464,479,538],met:[82,330,414,439,537],met_start:82,met_stop:82,meta:[28,29,30,31,32,35,36,37,39,40,79,81,83,84,86,89,95,98,101,102,112,113,129,130,131,132,135,136,137,139,142,144,146,147,155,162,175,176,178,184,187,188,248,249,252,253,288,330,331,332,333,359,362,363,364,373,376,396,397,408,412,414,432,441,449,453,455,457,476,477,533],meta_t:[95,96,97,99,103,104,155,162,373,376,397,417,423,448,475],metaattribut:[83,86],metadata:[16,79,80,81,83,84,86,100,112,113,129,130,131,135,136,139,142,144,146,147,175,176,178,184,187,188,331,353,355,366,421,432,452,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],metadata_fits_export_kei:80,metadatabas:376,metadatabasemodel:376,metapackag:366,method:[6,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,50,51,52,53,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,94,95,96,97,98,99,100,101,102,103,104,107,109,110,111,112,113,114,115,116,117,118,119,120,121,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160,161,162,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,269,276,286,290,294,298,299,300,323,336,338,348,349,352,355,358,359,360,363,364,365,367,368,369,371,373,375,376,381,385,386,388,389,390,391,392,393,394,395,396,397,398,400,402,403,405,406,407,408,409,410,411,414,416,417,418,420,421,422,424,425,426,428,429,430,431,432,433,436,439,441,443,444,445,446,447,448,450,451,452,453,455,456,457,458,463,464,465,474,476,478,479,483,486,488,489,490,492,512,526,535,536,537,538,540],method_kwarg:[298,299],methoda:392,metric:276,mev:[71,79,129,130,131,135,416,423,425,428,430,436,440,441,444,447,449,452,455,456,465,523],meval:497,mexico:457,meyer2010:537,meyer:[222,256,429,537],mgtime:364,michael:413,mid:[403,414,455],middl:[338,365],midli:420,midpoint:84,might:[13,28,29,30,31,32,35,36,37,39,40,163,180,192,349,354,360,361,363,366,368,373,375,376,381,383,384,390,420,439,441,445,448,450,456,457,460,465,467,475,479,486,492,538,540],migra:[97,99,103,104,134,137,166,365,432,433,447,484],migra_axi:[97,99,103,104,106,134,137,432,433,447,448],migrad:[96,192,417,418,420,421,422,428,429,430,441,446,456,463,464],migrad_opt:[192,446],migrat:[97,99,103,104,106,137,358,393,400,409,432,448,483,484],milagro:[92,340],mileston:[358,378],milki:[33,38,388,469],miller:[83,86],million:[349,376],min:[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,79,86,97,114,116,118,155,193,194,195,196,197,198,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,267,306,364,365,372,377,385,400,408,421,423,425,426,428,429,430,431,434,436,437,438,439,440,441,445,446,447,448,449,452,453,456,463,464,467,488,514,517,523],min_count:152,min_dist:[126,127,158,424,430,488],min_distance_input:[158,488],min_energi:437,min_npred_background:152,min_signific:364,min_significance_lc:364,minaya:410,mind:[352,369,436,446],mini:369,miniconda:[381,383],minim:[19,20,26,105,120,175,176,178,183,184,187,188,189,192,197,198,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,229,230,236,237,238,240,241,242,243,244,245,246,248,249,252,253,260,361,364,372,376,402,412,414,416,432,445,446,464,479,488,489,492,536,541],minima:[194,196],minimis:[440,453],minimum:[19,20,26,47,79,95,111,112,113,114,116,118,120,122,126,127,150,152,158,180,183,185,193,195,197,198,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,258,261,264,267,278,305,307,310,344,366,402,408,420,424,432,446,449,456,477,479,488,514,541],mino:[192,446],minor:[349,354,369,372,374,399,412,496,497],minos_contour:[392,410,446],minu:[137,441],minuit:[96,109,192,360,367,394,409,410,414,417,418,420,421,422,428,429,430,441,446,456,463,464],minuit_opt:446,minut:[369,379,408,420,424,426,428,430,431,432,434,439,440,443,445,446,448,463],mireia:411,mirror:172,misc:[388,401,405,406,407],miss:[78,83,86,129,130,131,132,135,136,137,139,142,144,146,147,155,349,352,357,358,359,360,363,369,370,373,398,400,402,408,413,449],mission:[79,414,537],mistak:[354,374],mix:[348,349,365,445,449],mixin:[83,86],mjd:[82,89,113,202,210,214,216,217,218,233,239,251,254,331,333,350,413,414,424,432,433,437,438,439,440,449,452,476,526,527,528,529,530,531,532,533,542],mjdref:[424,449],mjdreff:[89,330,333,433],mjdrefi:[89,330,333,433],mkdir:[365,420,421,428,429,432,463,464],mkn:[465,537],mkn_421_3fhl:465,mncontour:192,mnra:122,mnt:411,mock:431,mock_dl4:431,mode:[16,80,81,83,86,89,97,99,103,116,133,134,140,145,148,151,174,175,176,178,179,180,183,184,186,187,188,250,376,395,408,411,440],model1:[198,504,506,510,513,515,518],model2:[198,440,504,506,510,513,515,518],model:[1,6,15,16,18,19,20,26,28,29,30,31,32,35,36,37,38,39,40,45,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,80,84,88,94,95,96,97,98,99,102,103,104,105,107,109,111,112,113,114,115,118,119,120,121,125,129,135,136,143,144,145,146,148,152,155,168,175,176,178,184,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,224,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,271,274,275,345,348,349,350,353,354,355,361,362,364,365,367,369,370,373,388,389,390,391,392,393,394,395,396,397,398,400,401,402,404,405,406,407,408,409,410,411,412,413,414,416,418,423,424,426,431,434,436,441,448,449,450,454,456,457,460,467,468,474,475,477,479,480,484,486,487,491,503,524,534,536,537,540,541],model_1d:[28,29,30,31,32,35,36,37,39,40,421],model_2d:[28,29,30,31,32,35,36,37,39,40],model_3d:[28,29,30,31,32,35,36,37,39,40],model_add:[452,506],model_best_joint:420,model_best_stack:420,model_bkg:445,model_computed_field:[16,80],model_config:[16,80,425,463],model_constraint:[28,29,30,31,32,35,36,37,39,40],model_construct:[16,80],model_copi:[16,80,452],model_dump:[16,80],model_dump_json:[16,80],model_extra:[16,80],model_field:[16,80],model_fields_set:[16,80],model_fit:440,model_joint:428,model_json_schema:[16,80],model_manag:[451,454],model_nam:[97,99,103,104,203,225,345,445],model_parametrized_nam:[16,80],model_plot:431,model_post_init:[16,80],model_rebuild:[16,80],model_set_axi:[28,29,30,31,32,35,36,37,39,40],model_simu:[423,436,440],model_spectrum:452,model_str:421,model_typ:[203,211,223,225,240,250,260,372,451],model_valid:[16,80],model_validate_json:[16,80],model_validate_str:[16,80],model_without_nam:452,modelbas:[211,240,242,243,250,254,377],modeldm:[19,20],modelevalu:360,modeling_2d:[425,427],modelmetadata:376,modelmodel_dump:[16,80],modelmodel_dump_json:[16,80],models_3fhl:451,models_4fgl_roi:444,models_as_dict:[16,80],models_diffus:432,models_fil:[16,421,425,426,428,463],models_fit:436,models_gc:451,models_gp:455,models_joint:428,models_or:451,models_read:452,models_select:451,models_stack:428,models_yaml:452,modelsmetadata:376,modern:[83,86,367],modernis:[366,394],modest:[349,496],modif:[16,80,83,86,349,352,371,378,411],modifi:[28,29,30,31,32,35,36,37,39,40,41,83,86,88,97,103,113,114,115,118,121,151,192,298,321,346,359,361,365,371,375,376,395,397,398,400,402,410,413,414,421,433,448,450,457,463,477,479,492,542],modul:[6,239,349,350,354,358,365,370,388,390,396,408,440,444,448,451,467,468,469,470,514,531,542],modular:355,mohrmann2019:537,mohrmann:[365,389,390,391,407,408,409,412,414,537],moment:[15,51,54,82,90,240,325,355,363,365,366,369,374,375,447,449,484],moncar:[192,446],monitor:[362,455,479],monkei:349,mono:357,mont:[367,484],montecarlo:[98,102,192],month:[74,352,358,363,366,368,369,374,378,382,388,389,390,391,392,401,404,405,406,407,408,409,410],monthli:[358,376,381,410],moor:24,morcuend:[410,413],more:[19,20,28,29,30,31,32,35,36,37,39,40,69,71,72,74,83,86,94,95,96,97,99,103,104,126,132,175,176,178,187,188,197,198,199,200,201,202,204,205,207,209,210,212,213,214,215,216,217,218,220,226,227,228,229,230,232,233,237,238,239,241,244,245,246,252,253,264,270,286,324,349,350,352,354,355,356,358,359,360,361,362,363,364,365,366,368,369,370,373,374,375,376,377,379,380,381,382,385,394,395,396,397,400,407,409,410,414,417,420,422,424,426,428,432,433,437,440,443,445,446,448,449,450,451,452,453,457,458,460,465,475,476,477,479,488,489,491,492,496,535,536,538,540,542],moreov:[365,444,448,475],morpholog:[50,52,109,360,362,372,388,405,407,417,425,432,433,435,436,444,448,460,475,491,493],mosaic:355,most:[28,29,30,31,32,35,36,37,39,40,79,83,86,90,107,113,348,349,350,352,354,355,356,357,360,361,362,363,365,366,367,368,369,371,372,373,374,375,376,379,381,382,400,407,408,410,411,414,425,426,434,438,440,444,446,447,448,449,450,455,456,460,465,467,477,478,479,484,492,535,537,538,541],mostli:[56,67,278,349,350,355,356,357,358,363,365,368,369,370,373,374,376,378,379,400,408,444,448,458,465,540,542],motion:[45,282],motiv:[161,354,356,357,363,366,368,378,452,479],move:[260,354,355,356,357,360,363,368,369,370,373,378,384,390,391,393,394,395,396,400,401,405,406,408,409,410,411,423],move_axi:414,movement:375,mpatch:434,mpg:65,mpi:65,mpl:349,mpl_check_plot:349,mpl_kwarg:[420,430,434],mpl_normal:[339,340],mpl_plot_check:349,mpl_style:408,msg:[416,423,425,428,430,436,440,455],msh15:458,msh:[426,444,448],mst:455,mu:[26,262,263,264,342,377,443,483,484,540],mu_:[264,270,539,540,541],mu_background:538,mu_bkg:[99,104,262,273,275,385,538,540],mu_off:540,mu_on:[264,270,540],mu_sig:[263,273,275,539,540],mu_x:540,much:[176,349,355,360,363,365,368,369,393,400,423,428,434,441,456,465,497],mul:[26,443,452,504,510,513,515,518,523],multi:[83,86,174,186,358,363,377,394,397,401,408,418,424,435,445,446,447,452,453,456,460,475,477,479,491,535,536,537],multidimension:[355,365,377,460,484,536],multinorm:367,multipl:[19,20,26,78,83,86,87,96,102,105,121,126,149,175,176,178,184,187,188,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,349,355,358,361,362,363,365,367,370,371,373,377,381,390,397,398,400,408,414,422,428,444,445,448,449,450,452,456,477,491,514,523,535,536,537,538,543],multipli:[19,20,26,113,197,198,200,201,203,204,205,207,208,209,212,213,215,217,219,220,222,225,226,227,228,230,231,232,236,237,238,241,242,243,244,245,246,248,249,251,252,253,259,271,274,278,441,443,452,504,540],multiprocess:[13,88,114,115,118,121,151,293,298,299,394,414],multithread:13,multivari:367,multivariategaussianprior:377,multiwavelength:205,muon:[84,453],muoneff:[84,453],mur:[26,443],must:[19,20,26,28,29,30,31,32,35,36,37,39,40,78,79,83,84,86,96,97,99,100,104,113,118,121,126,127,132,143,151,155,162,169,173,174,175,176,177,178,179,180,183,184,185,186,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,268,269,278,296,344,349,354,360,361,364,373,374,375,376,416,425,445,448,450,451,452,455,456,464,465,479,491,537],mutablemap:182,mutablesequ:[87,95,225],mutipl:381,mutltipl:352,my:[349,371,372,380,432,433,445,452],my_custom_model:452,my_flux_map:373,my_ob:85,my_obs_filt:85,my_sourc:371,mybind:[379,408],myconfig:[11,538],mycustomgaussianmodel:[372,452],mycustomspectralmodel:[235,452],n:[19,20,51,78,83,86,112,113,173,174,175,176,178,180,181,184,186,187,188,193,195,255,260,349,352,363,366,380,382,406,436,439,443,444,446,449,451,455,456,457,458,484,491,492,496,497,537,539,541],n_0:[213,511],n_:[97,103,264,270,475,539,540,541],n_bad:456,n_bin:445,n_bkg:[262,263,540],n_dof:[112,113,477],n_event:[175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,362],n_events_bkg:362,n_fit_bin:[428,440,445,451],n_free_paramet:260,n_input:[28,29,30,31,32,35,36,37,39,40,48,49],n_ism:[43,44,45,52,472,473],n_job:[16,88,114,115,118,121,151,298,414,421,425,426,428,434,448,463],n_jobs_default:[88,114,115,118,121,151],n_model:[70,73],n_ob:[423,432,440],n_observ:538,n_off:[99,104,263,272,273,275,539,540],n_off_posit:422,n_off_region:[163,422],n_on:[262,263,264,270,272,273,275,385,538,539,540],n_output:[28,29,30,31,32,35,36,37,39,40,48,49],n_point:[19,20,26,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,377,532],n_scale:107,n_sig:[262,263,441,540],n_sig_matching_signific:[262,263],n_sigma:[69,71,72,74,111,112,113,114,115,118,119,120,121,260,262,263,416,434,444,445,463,465,477],n_sigma_sensit:[111,112,113],n_sigma_ul:[69,71,72,74,111,112,113,114,115,118,119,121,434,438,444,445,463,465,477],n_sourc:[45,469],n_spatial_ax:179,n_submodel:[28,29,30,31,32,35,36,37,39,40],n_tel:86,n_time_bin:439,nachiketa:[406,407],naima:[226,348,366,367,368,369,372,391,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,479,493,523,524],naimamodel:[391,394,396],naimaspectralmodel:[235,372,400,452,479,514],nakashima:392,name1:446,name2:446,name:[15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,48,49,52,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,86,89,91,94,95,96,97,99,100,101,103,104,112,113,114,115,118,119,122,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,155,156,165,166,171,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,299,328,329,344,350,352,355,358,359,361,362,363,364,367,368,371,372,373,375,376,377,378,390,391,392,393,394,395,396,397,400,409,411,412,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,444,445,446,447,448,449,451,452,453,455,456,457,458,463,464,465,467,477,479,483,486,488,489,491,492,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,540],name_err:[114,115,118,119],name_scan:[114,115,118,119],name_substr:[203,225,451],name_ul:[114,115,118,119],namedtupl:349,nameerror:349,namespac:[6,16,80,349,368,370,393,396,406,452,468,542],namibia:458,nan:[19,20,26,28,29,30,31,32,35,36,37,39,40,65,83,86,96,97,112,113,155,173,174,175,176,178,184,187,188,193,195,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,372,377,420,421,422,425,426,428,429,434,436,438,444,445,447,448,449,450,451,452,463,464,465,514,523],nan_to_num:[95,97,99,103,104,133,134,140,145,148,176,184,188,250],nansum:[175,176,178,187,188],nasa:[58,60,61,63,132,180,369,378,517],nativ:[83,86,181,361,366,400,449],natur:[83,86,349,355,372,375,452,512],nauroi:[275,537],naurois2012:537,navarro:467,navig:[408,410],naxi:449,naxis1:449,naxis2:449,naxis3:449,naxis4:449,nbin:[16,115,135,137,143,145,177,180,185,188,310,311,365,416,420,421,422,425,426,428,429,430,432,433,434,438,439,441,445,447,448,449,452,456,457,458,463,483,486,488,489,492],nbin_per_decad:180,nbstripout:357,ncol:[129,130,175,176,178,184,187,188,342,346,417,420,424,426,428,430,441,445,446,449,450,488,504],ncp:437,nd:[175,176,178,184,187,188,248,249,370,449,492],ndarrai:[17,18,21,22,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,83,86,87,96,107,114,118,129,130,131,132,133,136,137,139,142,143,144,145,146,148,161,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,191,193,194,195,196,203,227,228,253,261,262,263,264,265,266,268,269,270,271,274,275,278,289,290,291,300,305,307,338,342,343,349,445,449,465,491,492],nddata:[391,394],nddataarrai:[392,406,407],ndecad:[17,18,21,22,23,24,25,27,258],ndim:[97,103,130,132,135,174,181,186,422,425,430,434,445,447,448,449,455,456,465,477,492],ndimag:[188,363],ndmap:450,ndmin:278,ne:361,nearest:[26,121,129,130,131,132,135,136,137,139,142,144,146,147,155,175,176,178,180,184,187,188,290,402,409,411,449,477,479,491],nearli:[349,400,417],nebula:[50,256,260,394,420,421,422,426,429,430,431,438,446,450,452,456,457,458,463,464,465,470,492,537],necess:373,necessari:[16,80,352,359,364,375,402,417,420,422,423,426,432,433,436,439,440,448,449,451,452,464,475,476,479],necessarili:[28,29,30,31,32,35,36,37,39,40,78,364,425],need:[11,16,19,20,28,29,30,31,32,35,36,37,39,40,80,81,83,85,86,89,96,99,111,113,133,134,145,147,148,183,255,256,278,348,349,350,354,355,356,357,359,360,361,362,363,364,365,366,367,368,369,371,373,374,375,376,379,380,385,389,390,391,408,410,417,421,423,424,425,426,430,432,433,437,439,440,446,447,449,450,451,452,453,455,457,463,465,475,488,490,491,538,542],need_upd:400,neg:[19,20,26,83,86,112,113,114,115,118,119,121,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,252,253,262,263,350,397,477,540,541],neglect:[116,161,416,448,477,541],neighbor:[136,144,146,402,409],neighbour:[290,499],neither:[91,161,366,374],neldermead:192,nep:[354,374],neraest:176,nest:[15,174,175,176,226,260,278,317,414,456,490,540],nested_model:226,net:[26,83,86,420],neutrino:52,neutron:36,never:[346,348,349,352,355,359,363,371,457],new_attribut:349,new_dataset_nam:[203,225],new_datasets_nam:[19,20,26,197,198,199,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254],new_flux_map:373,new_funct:349,new_input:[28,29,30,31,32,35,36,37,39,40],new_model:523,new_nam:[83,86,173,174,175,176,178,179,180,183,184,186,187,188],new_ob:[84,479],new_observ:87,newer:[366,379,390,409],newli:[394,395,396],next:[83,86,97,349,350,354,365,369,370,374,377,378,406,407,416,428,431,432,434,436,444,445,448,449,452,453,456],nfcn:446,nfev:[96,192,417,418,420,421,422,428,429,430,441,446,456,463,464],nfw:[25,27,467],nfwprofil:443,ni:349,nice:[349,354,360,366,368,376,392,400,424,428,444,538],nicer:[349,385,446,465],nieto:[397,400,402,403,411,413,414],nieva:411,night:[364,439],nightli:[381,438],nightwise_lc:438,nigro:[397,400,402,408,409,411,414],niter:[112,113,121,424],nmcid:403,nn:457,noah:377,node:[19,20,26,145,148,177,180,197,198,201,205,207,208,209,213,219,220,222,226,227,228,230,231,232,236,241,243,244,245,246,249,253,391,446,447,449,455,456,498,515],node_typ:[177,180,185,432,433,447,456],noeth:[397,398],nois:[268,367,537],noisi:455,non:[16,80,83,86,95,97,99,103,104,112,113,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,161,173,174,175,176,178,179,180,181,183,184,185,186,187,188,250,278,339,340,342,344,355,360,363,367,369,370,376,390,394,395,396,400,408,411,412,414,417,456,460,475,479,490,491,514,537],none:[16,17,19,20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,50,51,52,66,67,68,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,91,94,95,96,97,98,99,102,103,104,105,106,107,109,111,112,113,114,115,116,117,118,119,120,121,125,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,150,151,152,155,157,158,159,160,161,162,163,165,166,167,168,170,171,172,173,174,175,176,178,179,180,181,182,183,184,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,262,263,275,276,278,281,286,290,298,299,300,302,305,306,307,308,316,318,324,332,336,337,338,342,343,344,345,346,349,361,363,366,373,376,377,402,413,414,417,418,420,421,423,424,428,429,430,432,433,434,436,439,440,441,443,444,445,448,449,451,452,456,463,467,475,491,495,496,497,538],nonetyp:80,nonposit:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],nonposx:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,400],nonstopmod:350,nonzero:39,nooverlaperror:413,noqa:[19,20,96,97,99,103,104,111,114,115,121,132,168,179,180,186,205,257,346],nor:[91,161,359,370,374,378],norm:[19,20,26,111,112,113,114,115,118,121,152,193,194,196,197,198,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,254,342,360,371,373,377,394,395,397,400,420,425,426,428,429,431,432,433,434,436,440,441,443,444,445,446,456,463,464,465,467,477,486,493,497,503,504,511,523,524,532,540],norm_0:[498,515],norm_1:[498,515],norm_2:[498,515],norm_3:[498,515],norm_4:515,norm_5:515,norm_err:[111,112,113,115,121,373,434,445,477],norm_errn:[112,113,444,465,477],norm_errp:[112,113,444,465,477],norm_max:[114,115,118],norm_min:[114,115,118],norm_n_valu:[114,115,118],norm_only_chang:412,norm_paramet:[193,194,195,196],norm_prior:377,norm_scan:[112,373,420,421,477],norm_sensit:[112,113],norm_ul:[112,113,373,434,444,445,465,477],norm_valu:[114,115,118],norma:[33,38],normal:[42,96,97,99,103,104,114,115,116,118,125,129,130,131,132,134,135,136,137,139,142,143,144,145,146,147,148,152,175,176,178,184,185,187,188,211,227,228,231,250,252,255,278,339,340,349,350,354,355,359,360,363,367,373,389,393,402,426,432,438,439,441,448,449,450,451,452,456,464,465,491,495,496,497,500,501,502,523,537,539,540],normalis:[65,76,118,129,130,131,132,135,137,139,142,143,147,152,172,175,176,178,184,187,188,227,228,240,347,421,425,426,440,450,451,452,456,463],normed_templ:452,normspectralmodel:[203,225,372,397,413,452,486],north:[204,212,215,495],notat:[397,481,483,489,541],note:[15,16,19,20,28,29,30,31,32,35,36,37,39,40,74,78,79,80,82,83,86,89,96,97,98,102,107,113,118,121,132,137,145,147,157,168,186,190,192,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,268,269,278,299,340,346,348,351,352,354,357,362,363,366,369,373,374,375,377,378,379,382,388,390,410,412,414,416,417,421,422,424,425,428,431,433,437,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,475,477,479,492,500,501,512,540,541,542],notebook:[83,86,314,352,353,358,359,363,364,365,366,367,369,379,381,382,383,386,389,390,391,392,394,395,396,398,400,402,406,407,408,409,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,478,479,480,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538],noth:[302,366],notic:[355,446,460],notimplementederror:[28,29,30,31,32,35,36,37,39,40],nov:[356,361,366,367,369,373,387,411],novemb:[358,387,397,398,399,400],now:[16,78,80,84,94,112,113,185,226,349,352,354,355,356,359,361,362,363,365,366,367,368,369,370,373,375,376,377,381,383,384,389,390,391,392,393,394,395,396,397,400,401,402,403,407,408,409,410,411,412,413,414,416,417,420,421,422,423,425,426,428,429,431,432,433,434,436,438,439,440,441,445,446,449,450,451,452,453,455,456,457,458,463,464,465,476,477,488,525,529,530,531,538,540,541,542],np71mp9h:428,np:[79,83,86,107,113,134,175,176,178,184,187,188,255,349,350,360,361,364,372,373,377,411,416,420,423,424,426,428,430,432,434,436,437,439,440,441,443,444,446,447,448,449,450,452,453,457,471,472,473,477,479,491,492,495,496,498,523,531],npanel:336,npix:[174,183,186,187,188,420,430,447,456,488,492,494,498],npix_max:174,npoint:446,npred:[97,99,103,104,111,112,113,114,115,118,119,121,250,265,360,361,362,371,373,388,390,397,400,406,408,432,434,444,445,456,475,477,540],npred_background:[97,99,103,104,112,113,397,422,423,434,445,477,540],npred_background_min:128,npred_excess:[111,112,113,115,121,426,434,441,477],npred_excess_err:[112,113],npred_excess_errn:[112,113],npred_excess_errp:[112,113],npred_excess_ref:[112,113],npred_excess_ul:[112,113],npred_min:128,npred_off:[99,104,540],npred_sig:[97,99,103,104,361],npred_sign:[97,99,103,104,345,400,414,445,540],npred_signal_min:128,npred_sourc:445,nrow:[417,420,446,504],ns:[83,86],nside2resol:176,nside:[174,175,176,411,456,490],nside_til:[174,176],nsigma:446,nsou:424,nstep:364,nu:[19,26],nu_e:[26,443],nu_mu:[26,443],nu_tau:[26,443],nuisanc:[420,446,537,541],null_valu:[119,260,434],nullabl:[83,86],num:79,numba:366,number:[11,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,35,36,37,39,40,42,45,46,47,65,70,73,78,79,81,82,83,86,87,88,89,95,97,98,99,102,103,104,105,107,111,112,113,114,115,118,119,120,121,129,130,131,132,134,135,136,137,139,142,144,145,146,147,148,151,152,155,158,163,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,192,193,194,196,197,198,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,254,258,260,262,263,278,296,298,299,300,301,302,305,306,307,308,310,311,336,342,353,354,355,358,360,361,362,363,364,368,370,373,375,376,378,385,390,400,402,403,404,409,410,411,414,416,417,420,421,422,423,425,426,428,430,431,432,433,436,437,438,439,440,441,443,444,445,448,449,450,452,453,455,456,457,458,463,464,465,469,475,477,479,486,488,491,492,537,538,539,540,541],number_of_column:[83,86],numer:[17,18,19,20,21,22,24,25,26,27,83,86,113,180,193,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,254,278,348,349,362,367,400,416,423,425,428,430,436,440,449,455],numpi:[19,20,28,29,30,31,32,35,36,37,39,40,79,83,86,87,96,107,113,114,118,129,130,131,132,134,135,136,137,139,142,143,144,146,147,173,174,175,176,178,183,184,186,187,188,190,191,193,194,196,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,240,241,244,245,246,251,252,262,263,278,302,307,343,348,349,350,352,356,360,362,366,367,368,375,377,385,386,393,394,397,405,406,407,409,411,412,413,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,463,464,465,471,472,473,477,479,491,492,495,496,498,523,531],numpoint:[192,446],numpy121:352,nupeak_ob:465,nutshel:542,o2:479,o:[65,83,86,96,182,349,358,363,366,370,373,381,383,392,400,406,408,414,416,417,420,424,430,437,438,439,440,453,455,479,537],ob:[40,78,79,84,85,86,87,145,155,361,362,365,366,371,385,403,404,413,416,417,420,423,424,430,432,436,439,440,441,448,453,455,456,457,458,462,464,476,479,484,486,488,489],obei:491,obj:[16,80,422],object:[6,15,16,19,20,23,26,28,29,30,31,32,34,35,36,37,39,40,50,51,52,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,89,95,96,97,98,99,103,104,112,113,116,117,118,122,123,124,127,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,151,159,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,262,263,278,282,286,287,290,298,300,302,308,311,323,324,325,326,331,336,342,344,345,346,355,360,361,362,363,364,365,367,368,369,370,373,375,376,381,385,391,392,394,395,396,397,400,402,407,408,409,411,414,416,417,418,420,421,422,423,424,429,431,434,436,437,438,439,440,445,446,448,449,450,451,452,455,456,458,463,464,465,469,474,475,476,477,485,488,490,491,492,535,537,538,542],obs_:420,obs_clust:[87,453],obs_col:430,obs_con:[16,421,425,426,428,463],obs_copi:84,obs_fil:[16,421,425,426,428,463],obs_filenam:457,obs_filt:[84,85],obs_id:[16,78,83,84,85,86,359,361,371,376,385,417,420,421,422,423,425,426,428,429,430,432,433,438,439,440,446,448,453,455,457,458,462,463,464,488],obs_id_uniqu:83,obs_index:78,obs_info:[84,376],obs_list:[408,410],obs_list_vela:441,obs_mod:90,obs_muoneff:453,obs_po:[41,281],obs_tabl:[78,86,402,430,432,439,448,453,455,457,458,462,464,488],obs_table_filenam:78,obs_tim:[16,421,425,426,428,463],obs_time_src:448,obs_zenith:453,observ:[6,15,16,41,78,79,81,82,83,85,86,88,89,90,91,96,97,98,99,102,103,104,105,145,150,151,152,155,156,157,158,160,161,162,165,166,167,168,170,171,172,202,205,210,214,216,217,218,233,239,251,254,264,270,275,286,307,353,355,361,362,363,364,365,369,371,373,376,381,390,394,395,400,401,402,403,404,405,406,407,408,409,410,411,414,416,417,422,423,425,426,428,429,436,437,440,441,446,454,455,457,458,460,462,467,475,476,479,482,484,486,488,489,514,537,538,539,540],observation_clust:[453,454],observation_dead_time_fract:[79,84],observation_list:87,observation_live_time_dur:[79,84],observation_time_dur:[79,84],observation_time_start:79,observation_time_stop:79,observationcheck:409,observationcta:359,observationfilt:[84,359,364,389,410],observationlist:[359,410],observationmetadata:376,observations_list:87,observationsconfig:16,observationssummari:394,observationstat:[389,394],observationt:[78,362,363,411,453,457,464],observationtablecheck:409,observationtablesummari:406,observatori:[57,59,62,78,79,81,84,89,362,376,378,381,401,455,457,458,474,479],observatory_earth_loc:[79,84],observatory_loc:[376,402,416,423,432,433,436,440],obstim:[81,89,168,542],obtain:[81,97,99,102,122,267,359,364,366,367,373,410,420,421,422,426,432,433,437,439,446,449,450,463,465,475,479,483,484,537,539,540],obviou:[361,368,369,370,376],obvious:[28,29,30,31,32,35,36,37,39,40,467],occur:[175,176,178,187,188,308,349,369,370,374,456],occurr:[87,95,179,194,196,203,225],oct:[357,359,360,364,366,369,375],octob:358,odd:[186,188],odd_npix:[186,188],odot:[28,35,39,40,52],off:[97,99,101,103,104,111,150,156,157,160,163,172,263,275,346,347,352,355,361,363,364,365,394,400,402,404,414,416,417,421,422,426,430,438,439,441,445,446,448,475,488,489,537,539,540,541],off_2:[99,104],off_ev:441,off_patch:441,off_phas:[156,441],off_phase_rang:441,offdatabackgroundmak:405,offer:[112,352,360,375,376,381,382,409,422,446,448,452,479],offici:[375,480,538],offlin:[83,86],offset2:79,offset:[79,91,105,129,130,131,132,135,136,137,139,142,144,145,146,147,148,151,155,161,162,167,170,175,176,178,180,184,187,188,349,355,363,385,394,404,406,408,413,414,416,422,423,425,428,429,430,436,441,447,448,453,455,458,464,476,484,486,489],offset_axi:[135,137,142,147],offset_band:79,offset_from_median:79,offset_index:142,offset_max:[16,79,151,161,167,170,421,425,426,428,430,436,441,448,463,464,486,489],offset_min:79,often:[28,29,30,31,32,35,36,37,39,40,122,256,339,340,349,354,363,364,365,367,407,416,417,421,425,426,429,430,436,445,446,448,450,463,464,475,537],ogip:[90,100,101,104,132,177,179,180,183,184,185,361,364,407,420,429,475,483,492],ogip_column:184,ogipdatasetread:104,ogipdatasetwrit:[104,413],ok:[349,363,446],old:[179,334,349,354,357,361,365,366,391,392,407,408,409],old_attribut:349,older:[356,366,382,407,444],oldest:369,olga:[405,406],olivera:[397,400,402,403,411,413,414],omega:[19,20,23,239,255,495,531],omit:[121,350,428,455,538],omp:369,on_circl:488,on_ellipse_annulu:488,on_ev:441,on_patch:441,on_phas:[156,441],on_phase_rang:441,on_posit:172,on_radii:416,on_radiu:[430,441],on_rectangl:488,on_region:[16,97,99,158,416,417,420,421,422,423,425,426,428,430,432,433,438,439,441,445,463,488],on_region_radiu:[416,420,423,432,433,439],onc:[83,86,97,186,349,352,354,359,360,363,364,365,369,370,371,373,374,378,379,381,383,422,441,448,451,457,460,476,479,538],one:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,59,68,80,83,85,86,87,88,90,94,97,99,102,103,104,105,107,112,113,114,115,116,118,119,121,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,155,173,174,175,176,177,178,179,180,183,184,185,186,187,188,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,258,260,262,263,286,291,307,320,336,342,343,349,350,351,352,354,355,356,357,358,360,361,362,363,365,366,367,368,369,371,373,374,375,376,377,379,380,381,408,411,412,414,416,417,420,421,422,425,428,432,437,438,440,441,444,445,446,447,448,449,450,451,452,455,456,457,463,464,465,474,475,476,477,479,484,486,488,491,492,497,535,536,538,539,540,541,542],ones:[83,86,107,111,114,118,121,132,353,357,361,363,366,369,377,382,384,385,437,440,447,449,467,486,537,538],ones_lik:441,ongo:[352,355,356,379],onli:[16,19,20,28,29,30,31,32,35,36,37,39,40,68,70,71,75,78,79,80,81,82,83,84,85,86,88,90,95,96,97,98,99,102,103,104,114,118,121,133,134,138,140,145,148,151,157,162,173,174,175,176,178,183,184,185,186,187,188,193,194,196,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,223,225,226,229,230,231,232,233,236,237,238,239,240,241,244,245,246,250,251,252,262,263,278,298,324,346,349,350,352,354,355,356,357,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,382,390,392,396,400,402,403,408,412,414,417,418,420,421,422,425,426,428,429,431,432,433,434,438,439,440,441,444,445,446,447,448,449,450,451,452,453,455,456,457,464,467,475,477,479,483,486,489,492,533,537,538,539,540],onlin:[83,86,350,354,357,369,385],onoff:[403,475],onserv:88,ontim:[168,359,432,445],onto:[175,176,178,184,186,187,188,336,355,464,475,479,491,536],oo:375,op:365,opac:205,open:[64,83,86,350,352,354,360,363,366,368,369,373,374,375,378,381,382,383,385,386,407,421,429,449,455,457,458,463,474,537,538],openastronomi:408,oper:[83,86,174,186,198,349,355,360,363,395,397,400,409,410,414,445,451,452,491,492,504,506,510,513,515,518,523],opinion:[354,538],oppos:[437,514,538],opposit:[175,176],opt:[84,85,444,504,514],opt_method:446,optic:[205,363,504],optim:[19,20,26,96,119,121,191,192,193,194,195,196,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,342,348,349,358,361,362,371,373,417,418,420,421,422,423,424,428,429,430,437,441,446,456,463,464],optimis:[19,20,192,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,363,365,367,409,477,535],optimize_opt:[192,428,436,446,464],optimize_result:[192,414],optimizeresult:[96,192,417,418,420,421,422,428,429,430,441,446,456,463,464],optin:375,optinon:[103,104],option:[11,13,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,45,46,47,65,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,103,104,105,107,109,111,112,113,114,115,116,117,118,119,120,121,125,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,155,156,157,158,159,162,163,165,166,167,168,169,170,171,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,267,268,269,275,276,278,289,299,302,305,306,307,308,310,311,318,320,331,332,336,337,338,343,344,345,346,349,352,354,355,357,358,360,361,363,365,367,369,372,376,379,381,382,383,389,390,391,394,396,397,400,402,406,408,409,410,411,413,414,428,436,438,440,444,445,448,449,450,452,453,455,456,463,464,475,477,479,491,492,533,538],option_context:[83,86],optionali:498,optout:375,optpars:354,oral:375,orang:[350,420,428,434,437,438,441,443,488],orchestr:[355,359,361,365,421,463,464],orcid:375,order:[28,29,30,31,32,35,36,37,39,40,78,83,86,89,95,96,97,99,113,129,130,133,134,140,145,148,151,155,162,165,166,171,173,174,175,176,178,179,183,184,185,186,187,188,250,260,278,346,350,355,360,361,363,364,365,366,373,374,375,377,390,391,392,393,394,395,396,397,400,420,421,422,424,428,429,432,441,444,446,447,448,449,452,457,463,464,465,490,491,492,538,541],ordereddict:[355,366,393],ordinari:465,org:[11,34,62,63,79,83,84,86,161,192,231,232,245,246,268,278,352,357,366,369,374,375,378,381,383,387,406,408,416,423,425,428,429,430,436,440,443,444,446,448,455,521,522,538],organ:[353,369,374,375,400,457,458,476,491],organis:[356,365,368,375,408],orient:[130,138,139,349,360],origin:[41,83,86,97,103,176,188,248,250,252,359,363,375,376,406,421,437,449,452,456,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,541,542],orthogon:311,os:[78,403,407,449,455,538],oscar:[408,409],osx:396,ot:378,other:[13,16,28,29,30,31,32,35,36,37,39,40,56,65,67,79,80,82,83,86,97,99,103,104,112,114,118,119,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,157,174,175,176,177,178,179,180,183,184,185,186,187,188,192,194,196,250,261,278,291,319,338,343,348,352,354,356,357,358,360,362,363,364,365,366,367,368,369,370,371,373,375,376,380,408,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,475,476,477,479,484,486,488,492,506,535,536,538,542],other_id:417,otherwis:[16,28,29,30,31,32,35,36,37,39,40,78,80,83,86,97,99,103,104,143,182,186,188,190,193,194,195,196,203,225,278,342,362,372,375,451,452,456,505],oup:122,our:[349,352,358,363,365,366,368,371,372,373,375,390,391,407,416,417,420,421,422,425,426,428,429,430,433,439,440,441,449,450,457,463,464,538],ourself:465,out:[11,28,29,30,31,32,35,36,37,39,40,83,86,87,89,95,96,113,175,176,178,184,187,188,225,237,238,348,349,350,352,354,357,359,361,363,365,367,368,369,374,378,384,385,386,388,394,408,418,422,425,426,449,450,455,456,463,465,467,468,488,500,501,535,538,542],out_fold:365,outcom:[354,363],outdat:[366,369],outdir:[16,78,88,421,425,426,428,463],outer:[43,44,52,53,115,150,237,501],outer_height:[488,492],outer_width:[488,492],outfil:349,outflow:185,outlin:[97,99,103,104,199,200,204,212,215,229,237,238,252,352,354,357,358,359,360,363,369,372],output:[11,16,28,29,30,31,32,35,36,37,39,40,41,79,80,82,83,84,86,88,126,127,132,137,175,176,178,184,187,188,203,217,225,307,350,357,359,362,365,366,370,373,376,389,404,410,413,414,428,432,433,436,440,448,449,463,464,477,479,538,539],output_map:[175,176,178,184,187,188],output_unit:[28,29,30,31,32,35,36,37,39,40],outsid:[83,86,97,103,132,152,173,174,175,176,177,178,179,180,183,184,185,186,187,188,193,195,205,253,337,349,363,364,365,400,426,446,448,449,450,479,486,497,523,537],over:[28,29,30,31,32,35,36,37,39,40,65,79,83,84,86,87,90,97,99,103,104,114,121,122,132,133,143,145,148,155,162,165,166,168,169,175,176,178,179,180,184,186,187,188,203,225,255,262,263,267,289,290,303,340,349,350,354,357,358,359,362,363,364,369,372,376,380,382,400,417,420,428,431,432,440,444,445,448,449,452,464,465,477,483,539,540],overal:[357,363,420],overcom:450,overestim:[477,540],overflow:[185,422,440,526],overkil:440,overlai:421,overlaid:[97,99,103,104,421],overlap:[82,86,118,163,180,185,346,364,420],overlap_ok:82,overlin:[97,103,475],overload:400,overplot:[444,474],overrid:[16,28,29,30,31,32,35,36,37,39,40,80,317,360,420,422,430,434],overridden:[16,28,29,30,31,32,35,36,37,39,40,80,83,86,183,346],oversampl:[98,102,143,145,148,155,162,168,174,175,176,178,183,184,187,188,200,204,212,215,216,217,227,237,238,240,242,248,252,254,258,391,448],oversample_energy_factor:[98,102,433],oversampling_factor:[176,186,199,200,204,212,215,216,217,227,229,237,238,240,242,248,252,254],overview:[6,352,379,394,395,397,400,441,449,452,460,465,466,479,480,493,539],overwrit:[11,15,16,19,20,26,78,79,84,88,95,96,97,99,101,103,104,112,113,133,134,140,145,148,173,174,175,176,178,180,182,183,184,185,186,187,188,193,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,248,249,250,251,252,298,373,409,411,420,421,428,429,432,433,434,447,449,450,451,452,455,456,462,463,464,475,479,492,502,538],overwrite_templ:[203,225],overwritten:[145,148,290],owen:[388,401],own:[83,86,94,112,113,182,184,352,355,365,371,375,400,416,432,452,456,479,491,492],p0_birth:43,p90:48,p:[38,51,54,83,86,103,104,117,266,275,349,400,431,443,446,479,484,485,540],p_0:[51,175,178,184,187,188,471],p_:[481,483,484,485],p_dot:[51,54],p_i:[175,178,184,187,188],p_lat:[175,178,184,187,188],p_lon:[175,178,184,187,188],p_mean:42,p_n:[175,178,184,187,188],p_stdv:42,p_valu:[262,263,446,538,540],pace:[357,358],packag:[6,11,126,278,314,348,349,350,352,353,354,355,356,357,358,363,366,367,369,374,375,376,378,380,381,383,384,385,386,387,388,390,393,394,396,397,400,403,404,405,406,407,408,409,411,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,475,478,479,480,487,492,502,510,512,513,526,538,542],pacman:405,paczynski1990:[28,29,30,35,37,39,40,48],paczynski1990veloc:49,paczynski:37,pad:[83,86,97,99,103,104,121,129,130,131,132,135,136,137,139,142,144,146,147,155,173,174,175,176,177,178,179,180,183,184,186,187,188,337,397,400],pad_width:[97,103,121,129,130,131,132,135,136,137,139,142,144,146,147,173,174,175,176,178,179,180,183,184,186,187,188],pad_with:[175,176,178,184,187,188],page:[6,83,86,192,264,270,275,350,352,354,361,363,366,369,375,378,379,381,382,386,394,395,400,403,404,407,408,409,410,446,449,458,460,477,479,490,492,539,542],pain:[349,352,356],pair:[16,80,97,99,103,104,112,113,122,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,182,183,184,186,187,188,365],panda:[83,86,348,366,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],panel:[84,96,97,99,103,104,336,403,432,446],panel_fov:336,panni:400,papadopoulo:[400,402],paper:[57,59,62,70,71,114,161,369,375,409,437,439,444,448,457,467],papermil:365,par:[360,372,377,446,455],par_000_amplitud:446,par_001_alpha:446,par_002_beta:446,par_00x_:360,par_1:[192,446],par_2:[192,446],par_alpha:446,par_beta:446,par_box:86,par_nam:[203,225],par_to_v:455,par_typ:[203,225],parabol:[261,291,446],parabola:[219,220,429,446,493,524],paragraph:354,parallel:[6,88,114,115,118,121,151,293,294,295,296,297,298,299,352,366,379,402,414,445],parallel_backend:[88,114,115,118,121,151,298,434],parallelbackendenum:293,parallelmixin:[88,114,121,151],param:[16,80,205,253,342,365,395],param_nam:[28,29,30,31,32,35,36,37,39,40],param_set:[28,29,30,31,32,35,36,37,39,40],paramet:[15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,91,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,152,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,274,275,276,277,278,280,282,284,285,287,289,290,291,292,298,299,300,302,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,330,331,332,333,334,336,337,338,339,340,342,343,344,345,346,347,349,350,358,361,362,364,365,367,368,371,373,375,386,389,390,391,392,393,394,396,397,400,402,407,408,409,410,411,412,413,414,417,418,420,422,423,424,425,426,428,429,430,432,433,434,436,438,439,440,441,443,444,445,447,448,453,455,456,464,465,467,475,477,478,479,486,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,536,537,538,539,540,541],parameter:452,parameter_constraint:[28,29,30,31,32,35,36,37,39,40],parameter_name_scan:192,parameterestim:[108,396],parameteris:[481,483],parameters_list:[194,196],parameters_nam:[203,225],parameters_stat_sum:377,parameters_unique_nam:[203,225,446],parametr:[16,27,80,96,135,136,141,144,146,219,220,237,361,365,372,390,397,400,422,424,452,455,500,501,512],parametricpsf:[136,144,400,402],parametris:[144,372,394,483,485,495,496,497,498,505,508,509,510,511,512,513,515,516,517,518,519,520,521,522,525,526,527,528,529,530,531,532,533],parent:[16,80,107,111,114,118,121,186,349,359,376,439,477,514],parenthes:[360,366,412,414],parfiv:[366,393],pars:[16,80,81,174,183,350,363,416,423,425,428,430,436,440,450,455,538],parse_arg:538,parse_fil:[16,80],parse_obj:[16,80],parse_raw:[16,80],parseabl:278,parser:538,part:[96,349,352,355,358,360,362,363,364,365,367,368,369,374,375,390,394,395,396,404,409,414,416,417,420,428,436,444,445,449,450,464,465,479,484,488],parti:354,partial:[86,97,99,133,134,140,145,148,151,174,186,188,250,363,367,395,409,490],partial_overlap:86,particip:[354,358,369],particl:[19,26,226,255,396,467,514],particle_distribut:[226,514],particular:[83,86,349,355,362,364,371,373,374,376,397,400,411,412,417,420,421,422,423,425,429,432,437,439,440,446,448,451,455,457,458,463,464,476,479,486,488,492,540],particularli:[28,29,30,31,32,35,36,37,39,40],partli:[352,358,359,363,369,370],pass4:457,pass:[15,16,19,20,26,28,29,30,31,32,33,35,36,37,39,40,42,45,46,47,66,79,80,81,82,83,84,85,86,88,96,97,99,102,103,104,113,116,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,152,160,168,173,174,175,176,178,180,182,183,184,186,187,188,191,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,261,278,290,298,299,300,305,306,307,308,336,337,342,344,345,349,352,359,361,362,363,364,376,396,400,402,414,417,418,420,421,428,429,433,437,438,439,444,445,446,447,448,449,450,452,453,455,463,464,465,479,490,491,492,495,496,538,542],passkwarg:422,past:[349,354,357,365,366,369,370,372,375,377,385,406,408,409,449,538],patch:[346,349,356,375,403,412,420,422,430,434,441],path:[11,15,16,64,78,79,80,82,83,84,86,88,95,100,101,104,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,149,175,176,178,183,184,187,188,203,217,225,251,286,314,315,316,318,349,352,384,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,477,532,533,538],path_effect:[183,203,225],path_to_notebook:349,path_to_script:349,patheffect:[183,203,225],pathlib:[78,79,82,83,86,132,184,203,225,315,420,421,428,429,432,433,455,463,464],pathpatch:434,pattern:[349,355,363],paz:[401,404,405],pbar:479,pc:[46,47,50,52,472,473],pcolormesh:[79,113,129,130,132,135,136,137,142,144,146,147,407,413,446,447],pd:[83,86],pdf:[132,136,161,231,232,245,246,300,342,350,429,432,443,448,469,471,472,473,475,476,481,482,483,485,488,492,521,522,540,543],pdf_in_safe_rang:132,pdf_matrix:132,pdf_threshold:[132,133,137],pdflatex:350,peak:[66,116,126,127,132,161,209,214,216,220,402,408,424,437,444,448,501],peak_bright:66,peak_brightness_error:66,peak_latitud:66,peak_latitude_error:66,pedant:349,peek:[79,84,97,99,103,104,116,117,129,130,132,133,134,135,136,137,142,143,144,145,146,148,349,361,385,397,403,407,411,417,422,428,432,433,441,445,447,455,457,458,476,479,481,482,483,485],pend:278,peopl:[354,356,369,375,378,379,443,467,479,538],pep8:352,pep:354,per:[17,18,21,22,24,25,27,28,29,30,31,32,35,36,37,39,40,94,96,97,99,103,104,105,111,112,113,114,115,118,119,126,128,145,148,180,210,217,218,258,264,270,275,349,355,361,362,365,373,375,376,388,396,400,402,416,423,432,436,438,440,443,448,449,453,457,458,475,479,482,537,539],per_decad:[180,420,422,432,433,441,445,456,483,489],percent:120,percentag:[132,161,448],percentil:79,perfect:132,perfectli:[496,538],perform:[11,16,28,29,30,31,32,35,36,37,39,40,80,81,83,86,89,102,152,160,174,186,188,200,204,212,215,227,237,238,242,248,252,262,263,342,349,350,355,358,359,360,364,365,373,376,379,381,390,397,400,402,405,409,412,414,416,418,420,421,422,423,424,425,426,428,429,431,433,436,438,439,440,445,446,448,449,450,451,453,457,460,463,475,479,487,488,491,496,514,536,537,538,539],perhap:492,period:[42,51,54,251,356,375,408,453,471],period_dot:51,periodogram:[364,409],permit:[28,29,30,31,32,35,36,37,39,40,375],perseu:[33,38],person:[349,352,354,356,357,358,362,367,370],perspect:[83,86],pertain:[28,29,30,31,32,35,36,37,39,40],peter:408,pf:26,pformat:[83,86],pformat_al:[83,86],pg:465,ph:334,pha:[100,101,104,184,361,406,409,420,429],pha_:445,pha_meta:100,pha_ob:[100,429,446],pha_obs23523:[103,104,260,477],pha_obs23592:477,phacountsspectrum:392,phacountsspectrumlist:391,phase:[50,52,53,85,153,156,251,354,359,360,363,364,366,368,373,385,390,409,411,414,452,468,479,493,534],phase_axi:373,phase_bkg_mak:441,phase_column_nam:[156,441],phase_curve_model:532,phase_filt:85,phase_max:441,phase_min:441,phase_model:532,phasebackgroundestim:394,phasebackgroundmak:[153,394,414,441],phasecurv:[251,408,532],phasecurve_lsi_dc:532,phasecurvemodel:372,phasecurvetablemodel:[360,362],phasecurvetempl:360,phasogram:[251,532],phi:[19,20,26,181,197,198,201,204,205,207,208,209,212,215,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,282,372,436,446,451,452,456,465,484,495,496,497,499,500,501,505,507,508,509,511,512,516,517,519,520,521,522],phi_0:[197,199,200,204,207,208,209,212,215,219,220,227,229,231,232,237,238,241,242,244,245,246,248,252,372,446,505,508,509,512,516,519,520,521,522],phi_ref:[251,532],philipp:[408,409],phone:369,photon:[44,205,226,334,364,423,432,436,450,452,465,484,514,537],photutil:[126,349,363,409],php:62,physic:[114,115,118,121,298,299,348,373,377,391,421,429,449,452,455,463,477,479,514,537,540,541],pi:[19,20,30,31,32,37,54,213,255,372,452,473,495,496,497,500,501,511,531],pick:[349,356,363,374,390,465],pictur:350,pie:479,piec:[349,355,363,368,377],piecewis:[227,228,452,493,503,524],piecewisebrokenpowerlawnormspectralmodel:372,piecewisebrokenpowerlawnormspectramodel:372,piecewisenormsectralmodel:397,piecewisenormspatialmodel:[234,414,452,498],piecewisenormspectralmodel:[235,377,397,400,413,452,486,515],pig:[13,349,351,352,389,390,392,393,394,396,397,408,410,411],pillar:365,pin:409,pink:[103,104],pint:[441,479],pintor:[362,392,393,394,395,396,397,399,400,402,403,411,413,414],pip:[348,352,356,366,380,381,383,390,409,455,538],pipe:[405,406,407],pipelin:[362,364,396],piron2001:537,piron:537,pivot:[19,20,26,65,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,444],pivot_energi:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],pix:[173,174,175,176,177,178,179,180,183,184,185,186,187,188,491],pix_reg:443,pix_reg_rec:443,pix_to_coord:[173,174,177,179,180,183,185,186],pix_to_idx:[173,174,177,179,180,183,185,186],pixcoord:363,pixel:[13,79,97,99,103,104,105,106,107,116,126,127,129,130,131,132,135,136,137,139,142,143,144,146,147,158,173,174,175,176,177,178,179,180,183,184,185,186,187,188,200,203,204,212,215,225,227,237,238,242,248,252,360,388,392,406,409,424,426,432,434,445,448,449,456,465,475,477,489,490,491,499],pixel_area:186,pixel_scal:[107,174,186],pixelregion:[363,488],pixilis:449,pixreg:497,pixregion:188,pk:[122,395,437,439,440,444,453,465,504],pks2155:439,pks2155_hess_lc:437,pl:[65,76,111,115,121,152,223,230,231,232,372,418,434,444,445,452,465],pl_model:530,place:[79,82,83,86,87,95,97,99,103,104,126,129,130,131,132,133,134,135,139,140,145,147,148,158,163,175,176,178,184,187,188,225,250,322,349,350,356,357,360,361,362,363,365,368,369,370,371,374,379,393,395,420,438,449,450,452,465,475,476,479,536,542],placehold:354,plai:[369,430],plain:[366,449],plan:[353,354,358,359,363,365,366,369,374,378,389,406,408,409,410,535],planar:[252,360],plane:[29,65,66,114,173,174,175,176,178,183,184,186,187,188,369,443,444,449,455,474,489,492,496,537,543],plate:[186,449],platform:[366,375,400],plausibl:[376,431],pleas:[98,102,350,352,354,356,358,384,389,390,391,400,408,410,418,420,421,422,423,425,428,432,433,437,439,440,445,463,468,479],pleasant:352,plot:[6,19,20,26,64,65,79,84,96,97,99,103,104,113,116,117,129,130,132,133,134,135,136,137,142,143,144,145,146,147,148,175,176,177,178,180,183,184,185,187,188,191,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,252,253,254,256,259,327,336,337,341,342,343,344,345,346,347,348,350,363,364,365,367,368,370,373,385,388,391,394,396,397,400,401,402,403,404,405,406,407,408,409,413,414,416,417,418,422,425,426,428,429,433,436,437,438,439,440,441,443,444,445,446,448,450,452,453,455,456,457,458,463,465,469,471,472,473,475,479,481,482,483,485,488,532,533,540,542],plot_absorb:[504,524],plot_at_energi:[129,130,455],plot_bia:[132,137],plot_broken_powerlaw:[505,524],plot_compound:[506,524],plot_const:[494,503],plot_constant_spectr:[507,524],plot_constant_tempor:[525,534],plot_containment_radiu:[136,142,144,146],plot_containment_radius_vs_energi:[136,142,144,145,146,148,455,456],plot_contour_lin:446,plot_correl:[191,446],plot_count:[103,104],plot_dat:542,plot_disk:[495,503],plot_distribut:[426,428],plot_energi:[79,433],plot_energy_depend:[129,135,455,481],plot_energy_offset:79,plot_err:116,plot_error:[19,20,26,64,65,96,197,198,199,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,229,230,231,232,236,237,238,241,242,243,244,245,246,248,249,252,253,367,418,420,422,428,429,431,444,446,464],plot_excess:[103,104,403],plot_exp_cutoff_powerlaw:[508,524],plot_exp_cutoff_powerlaw_3fgl:[509,524],plot_exp_cutoff_powerlaw_norm_spectr:[510,524],plot_expdecay_tempor:[526,534],plot_extension_error:[199,200,204,212,215,227,229,237,238,242,248,252],plot_fit:[96,103,104,417,420,421,422,430,441,463],plot_gauss:[496,503],plot_gauss_spectr:[511,524],plot_gaussian_tempor:[527,534],plot_gen_gauss:[497,503],plot_generalized_gaussian_tempor:[528,534],plot_grid:[143,175,176,178,184,187,188,199,200,204,212,215,227,229,237,238,242,248,252,373,402,413,428,445,447,448,449,450,452,457],plot_heatmap:191,plot_hist:[184,492],plot_imag:79,plot_interact:[175,176,178,184,187,188,199,200,204,212,215,227,229,237,238,242,248,252,402,409,428,436,449,463,464],plot_kernel:143,plot_kwarg:[420,422,430],plot_linear_tempor:[529,534],plot_logparabola:[512,524],plot_logparabola_norm_spectr:[513,524],plot_map_rgb:414,plot_mask:[103,104,176,184,188,417,420,421,488],plot_matrix:[132,445,456],plot_migr:137,plot_naima:[514,524],plot_npred_sign:[414,428,430,464],plot_offset2_distribut:79,plot_offset_depend:[129,135],plot_panel:336,plot_phasogram:251,plot_piecewise_norm_spati:[498,503],plot_piecewise_norm_spectr:[515,524],plot_point:[499,503],plot_posit:[203,225,451],plot_position_error:[199,200,204,212,215,227,229,237,238,242,248,252],plot_powerlaw2:[517,524],plot_powerlaw:[516,524],plot_powerlaw_norm_spectr:[518,524],plot_powerlaw_tempor:[530,534],plot_profil:116,plot_psf_vs_rad:[136,142,144,145,146,148,456],plot_rad_max_vs_energi:[147,422],plot_region:[183,184,203,225,346,422,434,451,488,492],plot_residu:[96,97,99,103,104,398,400,428,464],plot_residuals_spati:[97,99,103,104,428,436,464],plot_residuals_spectr:[97,99,103,104],plot_rgb:414,plot_shel:[500,503],plot_shell2:[501,503],plot_sine_tempor:[531,534],plot_smooth_broken_powerlaw:[519,524],plot_spati:400,plot_spectrum:[96,129,428,440,445],plot_spectrum_datasets_off_region:[397,413,414,420,422,430,488],plot_super_exp_cutoff_powerlaw_3fgl:[520,524],plot_super_exp_cutoff_powerlaw_4fgl:[521,524],plot_super_exp_cutoff_powerlaw_4fgl_dr1:[522,524],plot_templ:[502,503],plot_template_phase_tempor:[532,534],plot_template_spectr:[523,524],plot_template_tempor:[533,534],plot_theta_squared_t:[457,458],plot_tim:79,plot_ts_profil:[113,420,421,434,438],plotmixin:[103,104],plotter:336,plsuperexpcutoff3fgl:407,plsuperexpcutoff4fgl:392,plt:[19,20,26,64,65,117,129,135,136,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,337,346,349,350,385,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,471,472,473,479,481,482,483,485,488,495,497,501,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531],plu:[28,29,30,31,32,35,36,37,39,40,204,369,375,452],pmf:362,png:[136,357,385,469,471,472,473,475,476,481,482,483,485,488,492,540,543],po:[134,186,488],point:[15,17,18,21,22,24,25,27,60,63,65,69,70,71,72,74,75,76,78,79,81,83,84,86,89,90,91,94,95,96,97,99,103,104,108,112,113,114,115,118,119,120,121,123,134,136,139,145,147,148,158,159,161,162,163,165,166,168,169,171,172,175,176,178,183,184,187,188,192,203,225,229,240,258,260,268,280,284,290,296,306,341,349,351,352,354,355,356,357,358,359,361,362,363,365,366,369,370,371,372,373,374,375,376,378,381,388,391,393,394,400,402,403,405,406,407,408,410,413,414,417,419,422,423,424,428,433,434,436,438,440,441,445,446,447,448,449,452,453,456,458,460,467,468,474,475,476,479,484,487,488,491,493,496,497,503,514,535,536,537],point_sourc:360,pointer:357,pointing_altaz:[376,414],pointing_galact:86,pointing_info:[81,89,416],pointing_posit:[423,433,436],pointing_radec:[79,86,414,455],pointing_t:89,pointing_zen:414,pointinginfo:[81,406],pointingmetadata:376,pointingmod:81,pointlik:[129,130,131,132,135,136,137,139,142,144,146,147,408,488],points_scal:290,pointskyregion:[157,162,183,229,403,422,433],pointsourc:[360,467],pointspatialmodel:[19,20,70,76,121,234,372,373,393,413,424,425,428,429,432,433,438,444,445,451,452,456,463,464,499],pointspreadfunct:447,poisson:[99,104,262,263,264,270,272,273,275,308,361,362,391,396,418,423,426,436,537,538,540],poissonian:[437,441,537],poissonlikelihoodfitt:405,polar:[51,54,279,349],pole:[51,363,449],poli:[28,29,30,31,32,35,36,37,39,40,176],polici:353,pollut:364,polygon:[176,190,363],polygonis:363,polygonpixelregion:363,polygonskyregion:[190,363],polynomi:[28,29,30,31,32,35,36,37,39,40,222,449],polynomial1d:[28,29,30,31,32,35,36,37,39,40],polynomialmodel:[28,29,30,31,32,35,36,37,39,40],pool:[294,298,299],pool_kwarg:[298,299],poolmethodenum:294,poon:406,poorli:448,pop:[87,95,182,225],popitem:182,popul:[6,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,350,369,407,468,470,514,536],popular:538,port:407,pos_ob:430,pos_on:172,pos_target:[430,441],posit:[16,28,29,30,31,32,33,34,35,36,37,38,39,40,41,45,46,47,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,79,80,81,83,86,89,90,91,97,98,99,102,112,113,114,115,118,119,121,133,134,140,143,145,148,158,161,163,172,174,175,176,178,183,184,185,186,187,188,189,193,194,195,196,199,200,203,204,212,215,225,227,229,237,238,240,242,248,250,252,260,262,263,280,281,284,285,337,349,356,360,362,363,372,373,374,375,390,392,397,400,402,416,422,423,424,425,426,428,429,430,431,432,433,434,436,440,441,443,444,445,447,448,449,450,451,452,453,455,456,458,465,475,476,477,479,484,485,488,489,490,492,495,496,497,499,514,540],position_angl:423,position_error:[199,200,204,212,215,227,229,237,238,242,248,252,394],position_lonlat:[199,200,204,212,215,227,229,237,238,240,242,248,252],position_off:172,positv:411,posixpath:[16,314],possibl:[33,78,83,86,112,138,349,350,352,355,356,357,359,360,361,362,363,364,365,366,367,368,369,370,373,376,378,379,381,391,392,400,407,409,414,424,425,426,431,434,445,446,447,448,449,456,465,477,479,486,491,492,514,538,539],post:[52,358,376],poster:[352,375,379,404],posterior:367,postfix:349,potenti:[109,357,365,431,479],potentiel:375,power:[19,20,26,27,96,111,112,113,115,120,125,143,145,148,174,193,195,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,233,236,241,243,244,245,246,249,253,255,259,305,360,362,388,394,406,408,423,425,428,432,434,436,439,440,441,451,452,479,493,504,524,530],powerlaw2spectralmodel:[223,231,232,235,372,418,425,452,465,517],powerlaw:[161,231,233,256,360,361,365,406,408,417,425,433,434,444,452,464,493,518,534],powerlawnormspectralmodel:[65,211,230,232,235,250,371,372,377,397,428,429,432,433,436,445,451,452,456,463,486,498,518,523],powerlawspectr:121,powerlawspectralmodel:[68,70,73,76,96,103,104,113,121,194,196,230,231,235,256,372,373,377,417,418,421,423,424,430,431,432,433,434,436,438,439,440,441,444,445,451,452,455,456,463,464,465,477,494,495,496,497,499,500,501,502,504,506,515,516,518,525,526,527,528,529,530,531,532,533],powerlawspectramodel:377,powerlawtemporalmodel:[247,452,530],pppc4dmid:26,pprint:[83,86,539],pprint_al:[83,86],pprint_exclude_nam:[83,86],pprint_include_nam:[83,86],pr:[349,359,361,363,372,373,375,377,378,394,395],practic:[362,366,370,373,374,375,376,420,445,450,452,464,475,479,488,537],pre:[16,28,29,30,31,32,35,36,37,39,40,80,96,102,113,278,349,352,358,369,375,376,381,383,397,409,411,421,425,426,429,431,434,437,444,446,451,475,481],preced:[296,363,365,375,452],precis:[121,136,142,144,146,200,204,212,215,227,237,238,242,248,252,349,367,374,375,433],precision_factor:[145,148,175,176,178,184,187,188],precomput:[26,96,113,445,451],pred:475,predefin:[402,434,438,439,463],predic:360,predict:[96,97,99,102,103,104,111,112,113,114,115,118,119,125,152,155,161,168,229,240,265,300,345,355,360,361,362,397,414,421,423,425,426,428,430,432,434,436,445,448,463,464,477,479,483,486,504,537,540],prefer:[83,86,324,349,354,356,360,368,369,375,380,381,385,434,440,449,450,460,538,540],prefix:[180,360],preliminari:[358,369,377,405,407,424,456],prepar:[78,155,359,360,378,421,429,446,448,452,456,463,487,535],prepare_input:[28,29,30,31,32,35,36,37,39,40],prepare_output:[28,29,30,31,32,35,36,37,39,40],prepend:[83,86],presenc:[28,29,30,31,32,35,36,37,39,40,424,437,449,514,537],present:[15,68,78,79,81,86,87,95,100,104,112,113,149,177,182,203,211,225,278,349,350,352,362,365,369,373,376,379,400,417,422,425,426,437,438,439,443,447,448,449,451,475,477,480,492,538,540],preserv:[83,86,99,175,176,178,180,184,187,188,366,445,450],preserve_count:[175,176,178,184,187,188,449],press:455,pretti:[363,369,379,385],prevent:[176,205,278,400,428],preview:[352,458],previou:[71,83,86,349,352,363,369,370,374,378,391,397,422,431,432,449,452,453,465,474],previous:[260,366,396,408,409,416,420,428,429,444,448,450],priliminari:447,primari:[26,83,86,175,176,178,179,187,188,354,375,396,411,449],primarili:[28,29,30,31,32,35,36,37,39,40],primary_axi:179,primary_band:449,primary_hdu:432,primaryflux:[19,20,443,467],primaryhdu:[432,449],prime:23,primer:367,princip:431,principl:[375,377,420,489],print0:349,print:[11,65,78,79,81,82,83,84,86,89,96,97,103,111,113,115,121,130,132,135,136,142,144,146,155,158,194,196,203,217,225,256,286,317,349,350,360,361,364,373,376,384,385,416,417,418,420,421,422,423,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,445,446,447,448,449,450,451,452,453,455,456,463,464,465,477,479,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538,539,540,542],print_level:[428,436,446,464],print_stack:349,printout:[349,407,408,445],prior:[19,20,94,96,97,103,193,194,195,196,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,353,358,417,420,421,422,423,425,428,429,434,436,440,444,446,452,464,465,523],prior_stat_sum:[193,194,195,196,377],priorfitstatist:377,priori:[373,426,450],prioriti:[346,358,360,361,363,375,378],priormodel:377,priorparamet:377,privat:[349,352,358,372,408,457,458],pro:[349,365],probabl:[13,137,349,352,355,356,357,359,362,363,367,369,371,377,379,423,436,446,449,452,456,483,484,485,537,538,540,541],probe:[268,452],problem:[19,20,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,327,357,359,363,370,377,384,412,446],problemat:[368,373,376,439,479],proce:[352,379,381,383,411,417,420,421,432,436,439,450,451,456,463,464],procedur:[362,374,379,424,428],proceed:[369,375,457],process:[11,79,88,114,115,118,121,151,176,188,297,298,299,308,349,350,352,354,355,357,358,359,361,362,364,365,371,374,375,376,386,392,397,400,402,408,417,420,430,432,433,444,445,448,457,462,464,469,476,478,479,536,537,538],process_lots_of_data:349,processor:369,prod3:369,prod3b:455,prod5:[432,433],prod:389,produc:[15,97,99,103,104,106,112,349,350,355,364,365,373,374,376,379,394,417,420,422,424,429,430,431,432,436,439,441,443,446,448,455,464,479,482,484,537,538],product:[102,175,176,178,181,184,187,188,251,355,364,365,375,376,385,400,414,418,424,433,441,445,446,447,448,456,458,477,484,537],prof_mak:115,profil:[17,18,21,22,23,24,25,27,108,112,113,114,115,116,117,118,119,136,142,144,145,146,148,172,176,184,192,214,216,261,275,291,310,311,361,363,367,368,375,381,383,388,390,397,400,405,407,409,410,420,421,430,435,438,440,446,460,467,475,477,479,491,495,537,540],profile_err:116,profile_high:434,profile_new:434,profuma:467,program:[349,365],programmat:428,progress:[15,78,107,118,121,192,299,355,358,365,366,379,400,407,408,409,479],progress_download:479,prohibit:479,proj:[97,99,103,104,155,174,175,176,186,187,188,420,448,449,456,464,488],project:[97,103,115,152,158,174,175,176,178,183,184,186,187,188,200,203,204,212,215,225,227,237,238,242,248,252,285,311,349,350,351,352,354,356,363,365,366,369,375,392,400,408,414,421,424,426,430,434,441,447,449,451,455,456,462,463,464,465,467,488,491,492,500,501,536,538],projected_distance_axi:115,prompt:538,pronounc:479,pronunci:479,prop_cycl:346,propag:[19,20,26,53,116,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,267,360,367,394,414,446],proper:[45,95,364,375,413,414,422,428,479],properli:[121,168,354,364,375,412,413,420,421,446,463,475,539],properti:[19,20,28,29,30,31,32,35,36,37,39,40,79,83,86,91,112,152,186,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,269,346,349,350,360,362,372,373,376,377,397,400,402,407,408,410,413,414,420,422,430,432,434,444,450,452,453,465,476,492,537],propos:[351,353,354,355,356,358,366,374,375,377,390,393,394,396,397,408,414],proto:[16,80],proton:[255,514],prototyp:[28,29,30,31,32,35,36,37,39,40,349,354,360,362,365,366,367,369,405,407,408,468],proven:365,provid:[15,16,28,29,30,31,32,35,36,37,39,40,78,79,81,83,84,86,97,99,103,104,106,118,121,132,133,151,165,166,171,175,176,178,180,181,182,183,184,185,186,187,188,192,275,278,342,349,350,359,360,362,364,365,366,369,370,373,375,376,377,378,379,380,381,383,386,390,393,394,395,397,400,402,411,414,416,422,423,424,433,436,437,444,445,446,448,449,450,452,453,456,457,458,460,464,465,467,469,474,476,477,478,479,480,481,482,483,485,486,489,490,491,492,493,499,502,514,523,535,536,537,538,540,543],proxi:359,prune:352,ps:[421,463],pset:[28,29,30,31,32,35,36,37,39,40],pseudonym:352,psf3d:[84,136,141,144,146,171,390,408,485],psf68:416,psf:[16,78,83,84,91,97,98,99,102,103,104,105,106,134,136,141,142,143,144,145,146,148,155,162,171,186,203,225,240,349,355,359,360,361,362,365,388,390,394,395,396,397,400,401,405,406,407,408,409,410,411,412,414,416,417,420,421,422,424,425,426,428,430,432,433,436,438,445,448,450,453,455,457,458,463,464,475,477,479,484,487,492,537],psf_3gauss:[83,136,455,485],psf_:475,psf_assym:447,psf_kernel:[145,456],psf_kernel_map:[143,456],psf_king:[83,144,485],psf_map:[98,102,145,148],psf_map_reco:[148,457],psf_mean:456,psf_new:447,psf_out:[145,148],psf_r95:450,psf_tabl:[78,83,142,447,458],psf_theta:349,psf_valu:[136,144,146],psfkernel:[99,145,148,176,188,361,370,409,485],psfking:[141,402,485],psfmap:[97,98,99,102,103,104,133,134,140,141,143,148,155,162,171,361,362,370,390,393,394,396,397,409,424,445,456,479,485],psfnd:447,psr:[441,444,465],publicli:[455,457,458],publish:[11,366,379,420,456],pull:[350,353,354,357,358,359,360,361,362,363,369,374,375,379,387],puls:216,pulsar:[30,31,32,35,39,42,50,54,79,359,369,390,392,411,414,426,431,442,452,460,469,470,475,476,477,479,487,491,535],pulsar_analysi:[369,441,442],pulsat:239,pulse_stat:441,punch:413,pure:[349,366,368,369,488],purpl:492,purpos:[28,29,30,31,32,35,36,37,39,40,302,324,353,355,361,364,368,372,374,375,408,424,445,451,452,483],push:[349,352,378,411],put:[349,350,352,354,356,357,360,369,378,379,385,391,423,432,450,456,538],pwbpl:372,pwd:[352,381,383],pwl2:452,pwl:[19,20,26,113,194,196,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,256,360,372,377,418,432,452,477,494,495,496,497,499,500,501,502,504,506],pwl_decai:432,pwl_norm:[372,452,518],pwn:[43,444,465,472],pwne:431,py310:352,py35:407,py:[16,80,349,350,356,363,366,368,370,378,379,385,390,392,393,401,406,410,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,461,462,463,464,465,466,479,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,538],pycharm:391,pydant:[16,80,348,394,413],pydantic_cor:[16,80],pydanticundefin:[16,80],pydata:402,pyfact:[388,406],pyflak:402,pyjok:348,pymc:367,pymotw:538,pypi:[366,376,378,379,381,382],pyplot:[19,20,26,64,65,79,117,136,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,337,342,385,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,471,472,473,479,481,482,483,485,488,495,497,501,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531],pyproject:397,pyregion:363,pytest:[349,350,352,379,408],python3:[314,382,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,510,513,526],python:[11,16,80,126,278,318,348,352,353,354,358,359,361,362,363,365,366,367,368,369,370,375,376,379,380,381,382,383,384,386,388,389,390,392,393,400,402,405,406,407,408,409,410,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,467,478,479,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,536,538],python_execut:[416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],python_vers:[416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],pytorch:367,pyx:[352,379],pyyaml:[348,366,389,393],q:[26,79,83,86,344,443],qtabl:[83,86,364],quadrat:[449,458,465,541],qualiti:[184,369,408,409,414,453,464,479,536,543],quantifi:[431,437],quantiti:[13,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,45,46,47,50,51,52,53,54,69,71,72,76,79,82,83,84,86,89,91,95,97,98,99,100,102,103,104,105,106,107,109,111,112,113,114,115,116,118,119,120,121,122,123,124,126,127,128,129,130,131,132,133,135,136,137,139,142,143,144,145,146,147,148,150,159,160,161,163,167,168,169,170,173,174,175,176,178,179,180,183,184,185,186,187,188,189,190,193,195,197,198,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,250,251,252,253,254,258,262,263,266,267,268,269,278,280,282,284,285,290,308,310,311,320,324,349,350,355,358,360,363,364,365,367,372,373,376,377,391,393,397,400,401,409,410,411,416,424,432,433,434,437,444,445,447,448,449,452,455,457,458,465,471,472,473,475,479,492,517,526,528,537,540,542],quantity_support:[447,495],quasar:122,quentin:[367,371,372,392,393,394,395,396,397,400,402,403,411,412,413,414],queri:[365,405,444],question:[317,352,354,356,357,358,360,361,362,363,366,368,373,384,389,390,408,409,410,430,465,479,480,538],questionnair:[356,408],quetin:394,quick:[79,84,97,99,103,104,129,130,132,133,134,135,136,137,142,143,144,145,146,148,349,352,369,379,380,424,425,428,430,432,440,445,447,451,455,457,458,460,465,467,476],quickest:350,quickli:[349,350,352,354,365,366,369,375,379,407,420,428,437,457,483,538],quicklook:79,quickplot:176,quicksort:[83,86],quickstart:[386,421,463],quiescent:504,quit:[83,86,349,377,432],quival:360,quot:[71,256,349,350,443],r68:[79,105,136,145,148],r70:[65,444],r:[17,18,21,22,24,25,26,27,28,30,35,36,39,40,51,54,82,83,86,137,172,185,279,349,350,374,379,421,429,433,446,448,463,469,484,488,495,496,497,501,504],r_0:[30,33,38,48,204,215,237,451,495,497,501],r_1:[39,48],r_:[17,18,21,22,24,25,27,28,35,36,39,40,50,52,53,237,238,443,497,500,501],r_eval:215,r_exp:[36,48],r_in:[44,150,160,237,426,489],r_m:497,r_out:44,r_out_max:150,r_out_pwn:43,r_sun:38,ra:[65,79,81,83,84,86,89,126,158,349,350,362,365,416,420,422,424,426,430,433,438,439,441,444,448,450,455,456,457,458,464,465,467,479,483,542],ra_pnt:458,ra_tru:[349,362],rad:[33,79,84,97,99,103,104,105,106,136,142,144,145,146,147,148,158,171,239,365,402,414,422,445,447,448,456,484,485,488,531],rad_axi:[97,99,103,104,106,142,145,148,445,447,448,479],rad_di:[45,469],rad_index:142,rad_max:[78,79,83,84,141,147,164,402,411,413,414,422],rad_max_2d:[83,147,157,162,164,422],radec:[79,89,129,130,131,132,135,136,137,138,139,142,144,146,147,349,350,447,449,465],radecsi:502,radesysa:502,radi:[226,514],radial:[28,30,35,36,39,40,45,117,172,176,304,349,360,368,373,390,405,407,432,434,448,455,467,469,485,488],radian:[17,18,21,22,24,25,27,181,199,200,204,212,215,227,229,237,238,240,242,248,252],radiat:[205,479,500,501,514],radiative_model:[226,514],radii:[27,443,456,496],radio:[122,363,449],radiobutton:[428,436,449,463,464],radiu:[16,17,18,21,22,24,25,27,33,34,38,43,44,50,51,52,53,54,70,78,79,86,91,97,99,103,104,111,115,116,136,142,144,145,146,148,150,158,160,176,186,188,189,203,204,212,215,225,227,229,237,238,240,242,248,250,252,310,350,363,365,372,373,390,399,400,404,414,416,417,420,421,423,424,425,426,428,430,432,433,438,439,441,443,445,447,448,450,451,452,453,455,463,464,465,472,473,486,488,489,492,495,496,497,500,501],radius_inn:[52,53],radius_max:[310,434],radius_min:310,radius_reverse_shock:[50,53,472],radmax2d:[79,84,141,164,400,422],radmax:[402,403,414],rai:[11,19,20,26,52,53,57,59,62,64,79,88,111,114,115,118,120,121,122,151,205,255,256,268,269,298,299,355,360,361,363,367,378,379,381,385,386,391,407,409,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,444,445,446,448,449,450,451,452,453,455,456,457,458,463,464,465,467,469,470,474,475,476,479,482,484,486,488,489,504,535,536,537,538,539,540,543],rais:[16,26,28,29,30,31,32,35,36,37,39,40,70,80,82,83,86,87,95,177,182,203,205,225,248,249,250,252,278,327,349,363,372,373,376,377,394,411,414,433],raise_error:[16,80],raj2000:[444,465],ran:455,random:[6,33,42,45,46,47,83,86,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,301,302,303,304,305,306,307,308,352,361,362,365,392,404,408,432,452,479,539,540,542],random_se:361,random_st:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,301,302,305,306,307,308,349,362,423,432,433],randomli:[46,349],randomnumb:305,randomst:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,302,305,306,307,308,349],rang:[17,18,19,20,21,22,24,25,26,27,65,69,71,72,76,79,83,86,87,95,96,97,99,103,104,114,132,145,147,148,161,173,174,177,179,180,183,184,186,193,195,197,198,201,202,204,205,207,208,209,210,213,214,216,217,218,219,220,222,225,226,228,230,231,232,233,236,239,241,243,244,245,246,249,250,251,253,254,258,303,305,306,307,342,349,355,361,362,364,373,391,396,397,400,408,409,411,417,420,422,423,425,428,429,431,433,437,439,440,441,444,445,446,447,449,450,452,453,456,457,463,464,465,475,477,479,497,507,536,540],rangl:19,rapid:[122,268,355,358,373,374],rare:[348,349,368,449],raster:[90,176],rate:[44,45,79,84,129,130,161,168,308,362,385,409,420,422,441,448,455,456,458,469,482,537],rather:[107,111,114,118,121,354,367,370,408,411,413,417,446,449,465,475,496,540],ratio:[99,104,150,174,175,176,263,275,373,416,441,455,489,537,539,540,541,543],ravel:[174,432],raw:[112,161,465],rc1:378,rc:[175,176,178,184,187,188,346,449],rc_context:[175,176,178,184,187,188,449],rc_param:[175,176,178,184,187,188,449],rcparam:346,rdbu:463,rdbu_r:[97,99,103,104],re:[83,86,91,113,114,119,152,175,176,178,184,187,188,192,342,349,350,352,354,356,357,363,364,365,367,370,371,372,373,384,388,400,402,409,418,420,421,426,428,429,430,440,446,447,451,453,456,463,465,477,479,499,538],reach:[53,120,189,354,359,362,452],reactiv:411,read:[15,16,79,81,82,83,84,86,89,95,96,97,99,100,103,104,107,111,112,113,115,117,121,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,157,175,176,178,182,183,184,187,188,203,205,217,225,251,252,253,257,260,316,335,337,342,344,349,350,352,354,359,360,361,362,365,369,371,373,375,376,377,381,383,394,397,400,408,409,411,414,420,421,422,426,428,431,432,437,445,446,447,452,455,456,457,460,463,465,476,477,479,481,482,483,485,502,532,533,538,541],read_arf:100,read_bkg:100,read_builtin:[205,504],read_covari:[203,225],read_dataset:15,read_lazi:402,read_model:15,read_pha:100,read_rmf:100,read_xspec_model:253,readabl:[330,360,402,421,463],reader:[376,416,423,425,428,430,433,436,440,455],readi:[359,376,537],readili:369,readm:[352,375],readthedoc:[13,114,168,183,192,253,352,369,391,406,446,447,455,476,490,492],real:[51,349,352,379,423,424,426,433,446,450,475],realis:[349,354,363,375],realist:377,realiz:[355,537],realli:[349,356,363,366,423,436,446],rearrang:369,reason:[28,29,30,31,32,35,36,37,39,40,349,354,355,356,357,360,361,362,364,366,368,370,375,408,432,446,457,475,538],reassign:[19,20,26,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254],rebas:[349,363],rebin:[364,402,437,445],rebuild:[16,80,429],recarrai:[83,86,136,146],receiv:[367,369,370,372,374],recent:[28,29,30,31,32,35,36,37,39,40,83,86,359,363,364,365,366,369,382,389,403,409,429,455,457],recip:[351,365,386,400,441,480,540],reco:[97,99,103,104,132,165,349,355,364,373,410,411,416,445,448,457,537],reco_exposur:111,reco_psf:[97,99,103,104,106,448,457],recogn:[416,423,425,428,430,432,436,440,455],recognis:[360,538],recognit:375,recommend:[87,95,162,203,225,261,290,291,348,349,350,352,356,358,366,375,379,380,382,385,392,409,422,431,445,446,448,452,456,479,486,491,492,538,539,542],recomput:[113,373],recompute_ul:113,recon_vers:[456,465],reconstruct:[79,97,98,99,102,103,104,105,106,111,120,121,125,132,133,134,137,147,148,161,168,349,355,360,362,397,412,416,417,420,423,425,426,428,432,436,440,445,448,450,457,475,477,483,484,485,492,537],recopsfmap:[141,411,414],record:[79,84,349,354,355,375],recov:365,rectangl:[200,204,212,215,227,237,238,242,248,252,311,363,434,488],rectangleskyregion:[186,199,200,252,310,311,363,417,443,450,488,492],rectangular:[434,488,492],recurr:364,recurs:[317,376],red:[96,268,339,416,423,426,428,431,443,453,495,496],redesign:358,redistribut:483,redo:441,redshift:[19,20,205,372,465,504],reduc:[6,11,15,95,97,99,103,104,143,145,148,153,163,175,176,178,180,184,187,188,355,356,358,360,361,365,368,370,375,376,381,388,393,400,409,417,418,421,422,423,428,429,432,436,438,439,440,450,453,454,457,460,475,479,484,489,491,492,496,497,536,537,538],reduce_data:365,reduce_over_ax:[175,176,178,184,187,188,425,448,457],reduct:[6,11,151,355,361,362,365,369,370,371,376,381,394,396,414,426,430,431,434,441,445,447,450,451,453,454,460,475,476,479,486,488,489,491,536,537],ref:[79,89,97,103,111,115,121,174,183,186,203,225,373,430,434,444,445,447,449,456,465,492,526,527,528,529,530,531,537,538],ref_templ:[16,80],refactor:[349,361,363,364,365,372,390,391,392,394,395,396,397,400,402,404,406,408],refer:[16,17,18,19,20,21,22,23,24,25,26,27,28,30,31,32,33,34,35,36,37,38,39,40,50,52,53,57,59,62,65,67,79,80,81,82,83,84,86,89,96,97,99,100,103,104,105,106,112,113,114,116,121,122,137,151,152,155,158,159,162,163,164,167,168,170,185,186,187,188,192,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,256,264,268,269,270,275,305,306,330,331,332,333,349,350,355,357,360,361,363,365,367,372,373,374,375,376,379,386,400,407,408,417,418,420,421,422,423,425,428,429,430,431,432,433,436,437,438,439,440,441,444,445,446,448,449,451,452,455,456,457,463,464,465,468,475,477,490,491,492,494,495,496,497,498,499,500,501,502,504,506,508,509,510,512,513,515,516,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,540,542],referenc:[349,537],reference_flux:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],reference_map:449,reference_model:[112,113,416,429],reference_model_default:[112,113],reference_spectral_model:[112,113],reference_tim:[82,84,97,99,103,104,185,202,210,214,216,217,218,233,239,251,254,413,414,433,440,448,449,533],reflect:[153,157,158,159,163,172,358,363,365,368,370,381,393,400,402,405,406,409,417,420,421,422,430,439,450,487,537],reflected_bkg_mak:448,reflectedbgestim:365,reflectedregionsbackgroundmak:[153,158,394,417,420,422,430,439,448],reflectedregionsfind:[157,163,392,488],refpix:[186,187,188],refresh:[83,86],refus:349,reg:[97,99,103,104,450,452],reg_dataset:445,regard:[373,376,420],regardless:[83,86],regeard:[412,413,414],regi:[355,360,361,365],region:[6,27,79,86,95,97,99,101,103,104,115,117,120,122,133,134,140,145,148,150,151,152,155,157,158,159,160,161,162,163,164,165,166,168,169,172,174,175,176,178,183,184,186,187,188,190,192,199,200,203,204,212,215,225,227,229,237,238,240,242,248,250,252,253,255,263,275,309,310,311,312,313,345,346,348,350,353,355,356,364,365,366,368,371,373,381,392,393,394,396,400,402,403,405,406,408,409,411,413,414,421,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,449,452,455,456,457,458,463,464,465,474,475,476,477,479,486,487,489,490,491,495,496,514,536,537,539,540,541],region_coord:183,region_ev:441,region_find:[157,422],region_io:183,region_map:[184,188,492],region_map_1:492,region_map_2:492,region_mask:[79,174,186,363,420,426,430,445,448,450,464,486,488,489],region_nd_map:184,region_new:312,region_pix:452,region_weight:186,regionfind:[158,159,163],regiongeom:[97,99,103,104,112,115,155,162,164,165,166,168,169,184,200,204,212,215,227,237,238,240,242,248,252,363,364,371,381,396,397,400,416,417,420,422,423,430,434,439,440,441,444,445,448,456,465,475,488,491],regionndmap:[26,100,103,104,120,156,157,162,164,175,176,178,183,187,188,200,204,212,215,217,227,237,238,242,248,249,252,346,363,381,396,397,400,403,411,414,433,456,475,533],regions_ds9:450,regionsfind:[157,158,163,402],regist:452,registri:[55,93,108,141,153,221,223,234,235,247,370,377,393,396,397,400,409,444,452],regress:352,regul:375,regular:[28,29,30,31,32,35,36,37,39,40,174,182,186,358,377,402,414,436,449,450],regulargridinterpol:[253,290,349],regularis:377,regularli:[377,458],reichardt:404,reimplement:360,rej_sampl:362,reject:[353,354,362],rel:[28,29,30,31,32,35,36,37,39,40,65,78,83,84,86,99,100,104,121,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,183,184,185,186,187,188,237,256,267,308,364,375,400,437,440,457,501,540],rel_reduction_of_f_:446,relat:[11,13,65,79,81,191,268,355,357,360,362,363,366,368,369,370,375,379,396,397,409,432,445,452,455,469,535,540],relative_variability_amplitud:437,relative_variability_error:437,relative_variability_signific:437,relativist:514,releas:[11,51,63,90,351,353,354,356,357,363,366,367,376,380,382,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,417,420,421,429,438,439,455,457,458,463,464,467,479,481,482,483,485],relev:[112,262,263,332,349,355,364,369,373,378,420,421,424,438,439,440,451,453,455,457,458,463,464,475,476,542],reli:[112,349,354,355,359,360,364,368,373,374,392,397,400,411,418,428,450,467,540],reliabl:[352,382,426,446,450,539],remain:[28,29,30,31,32,35,36,37,39,40,83,86,95,354,355,356,357,362,366,375,390,409,422,451,485],remark:422,rememb:[349,363,446,460,538],remi:[371,372,392,393,394,395,396,397,400,411,412,413,414],remind:[375,430,542],remnant:[28,52,417,431,452,470],remot:352,remov:[13,83,86,87,91,95,114,115,118,145,148,160,173,174,179,182,183,186,188,193,195,225,277,352,356,357,359,360,363,364,365,366,367,368,369,370,371,372,380,389,390,391,392,393,394,395,396,397,400,401,402,404,405,406,407,408,409,412,413,414,420,426,441,445,450,453,455,468,479,488],remove_column:[83,86],remove_indic:[83,86],remove_row:[83,86],renam:[28,29,30,31,32,35,36,37,39,40,83,86,113,173,174,175,176,178,179,180,183,184,186,187,188,352,359,360,368,369,372,388,391,393,394,395,396,400,410,411,414,538],rename_ax:[173,174,175,176,178,179,183,184,186,187,188,411],rename_column:[83,86,113],rename_dupl:[83,86],render:[28,29,30,31,32,35,36,37,39,40,83,86,327,349,357,408],renorm:[426,486],renormalis:160,reoptim:[114,118,119,192,390,434,438,446,463],reorder_ax:[175,176,178,184,187,188,414],reorgan:400,reorganis:369,repeat:[350,428,457],repl:349,replac:[15,16,80,83,86,95,97,99,103,104,133,134,140,145,173,174,176,179,183,184,186,188,250,260,349,359,360,363,367,370,376,382,391,392,394,396,397,414,432,441],replace_axi:[173,174,183,186],replace_column:[83,86],repo:[350,357,378,379,388,401],report:[83,352,365,378,379,388,402,403,408],repositori:[83,86,349,352,354,357,359,375,378,400,409,432,458],repres:[13,16,19,20,28,29,30,31,32,35,36,37,39,40,47,57,58,59,60,61,62,63,64,65,68,69,70,71,72,73,74,75,76,80,83,86,97,99,103,104,174,176,178,180,181,183,185,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,240,241,244,245,246,251,252,278,286,296,349,360,361,362,363,367,370,371,372,373,390,414,433,434,444,446,448,449,450,452,456,465,474,475,477,481,482,483,485,491,535,536,537,542],represent:[16,19,20,26,79,80,82,83,86,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,363,376,390,392,414,418,444,449,452,491],reprocess:355,reproduc:[89,96,113,350,365,366,367,369,375,376,380,382,409,448,467],reproject:[161,175,176,178,184,187,188,345,349,355,363,366,373,394,401,409,411,449,450],reproject_by_imag:[175,176,178,184,187,188],reproject_to_geom:[175,176,178,184,187,188,411],request:[81,112,113,350,353,354,356,357,358,359,360,361,363,369,373,374,375,377,379,387,432,450,467,477],requir:[16,28,29,30,31,32,35,36,37,39,40,43,44,78,79,80,81,83,84,86,90,97,99,103,104,113,116,121,129,130,136,144,152,175,176,177,178,179,180,183,184,185,187,188,189,278,324,328,329,347,354,355,356,358,359,360,361,362,363,364,365,371,372,373,374,375,377,378,380,382,388,393,394,395,396,401,402,404,405,406,407,410,411,412,417,422,426,429,437,439,440,441,445,447,449,450,452,455,464,477,479,492],require_ev:78,required_ax:[129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,447],required_hdu:403,required_irf:[16,78,421,422,425,426,428,463],required_nam:[177,179,180,185],required_paramet:[136,144,146],rerun:364,resampl:[97,99,103,104,128,133,173,174,175,176,177,178,179,183,184,186,187,188,344,400,402,479],resample_axi:[173,174,175,176,178,183,184,186,187,188,344,397],resample_energy_axi:[97,99,103,104,133,397,402,445],resample_energy_edg:[420,479],resampled_map:[175,176,178,184,187,188],rescal:448,research:[365,375],reset:[28,29,30,31,32,35,36,37,39,40,97,99,103,104,211,250,350,397],reset_data_cach:[97,99,103,104],reset_to_default:211,reshap:[175,176,178,184,187,188,416,433,447,449],resid:[371,452],residu:[70,96,97,99,103,104,152,360,361,365,392,397,403,410,426,445,446,456,475,488,537],resolut:[52,132,133,137,174,186,358,360,362,363,408,414,444,456],resolv:[16,80,350,352,359,363,364,371,372,390,409],resort:425,resourc:[408,460],respect:[15,16,28,29,30,31,32,35,36,37,39,40,47,79,80,83,86,100,113,122,174,176,186,188,261,359,364,375,377,397,424,426,440,449,450,457,477,492,541],respond:375,respons:[6,102,132,133,134,137,139,140,158,349,355,356,358,360,361,362,364,365,373,375,381,407,408,409,410,417,420,421,422,423,436,440,447,448,451,455,458,460,463,464,475,476,481,483,485,536,537],rest:[26,352,366,368,444,474],restor:[19,20,26,28,29,30,31,32,35,36,37,39,40,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,451],restore_statu:[194,196,203,225],restore_valu:[194,196,203,225],restrict:[83,86,363,428,445,450],restructur:[350,364,365,366,368,370,376,379,394,400,401,402,403,405,414],result2:451,result:[46,71,82,83,86,87,96,97,99,103,104,107,109,111,112,113,114,115,117,118,119,121,126,137,143,145,148,161,165,166,171,173,174,175,176,178,180,183,184,186,187,188,192,203,225,252,260,278,342,348,349,350,352,354,356,358,359,360,361,362,365,367,368,371,375,377,382,385,392,400,402,403,408,410,414,418,420,422,423,428,430,432,433,436,437,439,440,441,444,445,446,449,450,453,456,457,458,463,464,467,474,477,492,526,537,539,540],result_ecpl:418,result_joint:[417,420,428],result_list:342,result_log_parabola:418,result_minuit:446,result_pwl:418,result_scipi:446,result_stack:420,results_joint:429,results_simplex:446,results_t:431,retain:[444,492],retriev:[83,86,373,375,417,418,420,449,452,453,457,464,476,491,492],return_delta:308,return_diff:308,return_unit:[28,29,30,31,32,35,36,37,39,40],reus:[365,397],reval:497,revers:[28,29,30,31,32,35,36,37,39,40,50,53,83,86,87,95,179,225,449,472],review:[352,357,358,359,362,363,365,366,368,369,370,372,373,375,377,410,411,491],revis:369,revisit:205,rework:395,rewrit:[355,358,365,395,405,406,408,409,410,538],rewritten:[407,410],rf:443,rgb:[344,346,414,416,420],rglob:[78,432,455],rhe:164,rho:[17,18,21,22,23,24,25,27],rho_:[17,21,22,24,25,27,52,53],rich:[349,365],rid:355,right:[21,24,25,27,28,29,30,31,32,35,36,37,39,40,50,51,52,53,83,86,97,103,112,113,121,135,209,213,232,244,264,270,337,349,363,372,375,384,424,430,432,437,438,440,455,495,496,497,504,505,508,509,511,512,516,519,520,521,522,526,527,528,530,538,539,540,541],rightarrow:[501,541],rigid:354,ring2dkernel:[150,160],ring:[99,111,150,153,160,174,175,176,355,358,365,368,381,390,394,396,406,407,408,409,427,431,450,460,475,478,487,490,491,537],ring_background:[426,427],ring_bkg_mak:489,ring_mak:426,ringbackgroundestim:[355,408],ringbackgroundmak:[150,153,394,426,448,489],rise:[122,216,437,528],risk:[28,29,30,31,32,35,36,37,39,40,352,375],rm:[132,133,137,372,422,446,481,483,484,485,497,526,527,528,529,530,531],rmax:[17,18,21,22,24,25,27],rmf:[100,101,104,132,133,134,406,420],rmf_ob:100,rmffile:100,rmin:[17,18,21,22,24,25,27],rng:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,302,305,306,307,308,349],roadmap:[353,356,365,374,389,410],roberta:[408,409],robust:[349,409],roi:[65,365,444,458,537],roi_max:365,role:[408,448],rolf:388,rolk:537,rolke2005:[537,540],roll:456,room:359,root:[19,20,26,112,121,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,271,274,349,367,400,424,467,477,538,540],rosillo:411,rotang:433,rotat:[51,54,158,159,163,168,204,212,215,433,488,495,496],rough:[70,365],roughli:[107,352,357,363,365,368,369,407,426],round:[83,86,175,176,178,180,184,187,188,420,491],round_to_edg:[173,174,183,186],round_trip:[16,80],routin:388,row:[56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,83,86,126,132,286,320,343,364,373,376,411,414,423,433,434,444,446,449,455,457,458,465,474],row_idx:[65,83],row_index:[56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,444],row_label:343,row_specifi:[79,83,86],royalblu:441,rpovid:364,rs:53,rspec:[65,444],rst:[352,354,369,374,375,378,379,395,400],rtd:409,rtol:[121,324,349],rtol_ax:[129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188],rtol_wc:186,ruben:408,ruiz:[357,365,369,389,390,391,392,393,394,395,396,397,400,402,408,409,410],rule:[83,86,240,258,289,375,449,491],run:[16,78,79,80,84,88,96,98,102,107,109,110,111,114,115,117,118,119,120,121,150,151,152,154,155,156,157,158,159,160,161,162,163,173,174,183,186,192,298,299,323,342,348,349,350,356,357,359,362,364,365,366,369,371,373,377,378,379,380,385,391,392,395,396,407,409,410,414,416,417,418,423,424,425,426,428,429,430,432,436,437,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,464,465,475,476,477,479,484,486,488,489,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],run_fit:[15,421,425,463],run_id:[456,465],run_multiprocess:479,runner:[16,314,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,504,510,513,526,532,533],runtim:[358,376],runtimewarn:[422,432,458,526],rx:417,rxj1713_2016_250gev:502,rxj:417,s180:268,s2:251,s3:251,s:[16,19,20,28,29,30,31,32,35,36,37,39,40,41,51,52,53,64,65,78,79,80,82,83,86,87,90,95,96,97,98,99,102,103,104,113,118,121,126,129,130,131,135,155,182,188,197,201,202,207,209,210,213,214,216,217,218,220,223,225,226,230,232,233,239,240,241,244,245,246,251,254,255,256,260,269,286,334,338,339,346,349,350,352,354,359,360,361,363,365,366,367,368,369,372,375,378,379,381,382,384,385,386,387,416,417,418,420,422,423,424,425,426,428,429,430,431,432,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,459,460,462,464,465,471,472,473,474,476,477,479,484,494,495,496,497,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,537,538,539,540,542],s_0:479,s_1:479,safari:[83,86],safe:[94,96,97,99,103,104,133,134,140,145,148,153,161,349,361,363,375,394,396,397,411,412,413,414,417,420,445,450,464,475,536],safe_mask:[16,97,103,421,425,426,428,463],safe_mask_mak:[151,417,441,448,486,488,489],safe_mask_mask:[420,422,430,439,448],safemask:457,safemask_mak:457,safemaskconfig:16,safemaskmak:[151,153,370,394,395,400,402,403,417,420,422,430,436,439,441,448,450,457,463,464,486,487,488,489],safeti:375,sagittariu:[33,38],saha:408,sai:[71,354,368,538],said:[349,354,356,457,458,538],sake:[432,446],saldana21:504,saldana:[205,206,414,504],same:[27,28,29,30,31,32,35,36,37,39,40,78,79,83,86,90,95,97,99,100,103,104,111,126,127,136,137,143,144,145,146,148,149,151,172,173,174,175,176,178,179,182,183,184,186,187,188,256,268,342,349,352,357,359,361,363,364,368,369,370,371,372,373,374,375,377,379,381,382,392,393,397,400,414,418,421,422,423,428,429,432,436,438,441,444,445,449,450,451,452,453,456,457,460,463,475,476,477,483,491,492,538],sampl:[47,88,98,102,121,134,136,142,144,145,146,148,175,176,178,184,186,187,188,202,210,214,216,217,218,233,239,251,254,261,291,300,305,306,307,308,353,361,363,364,367,369,381,388,390,392,393,396,402,409,411,414,422,435,437,445,446,460,475,476,479,484,487,491],sample_axi:300,sample_background:[98,102,394],sample_coord:[134,145,148,175,176,178,184,187,188,394,396,411],sample_edisp:[98,102],sample_powerlaw:368,sample_psf:[98,102],sample_sourc:[98,102],sample_spher:[404,542],sample_tim:[202,210,214,216,217,218,233,239,251,254,400,411],sampler:[98,300,358,362,396,400,432],sampler_kwarg:88,saniti:408,satisfi:[128,152,174,175,176,278,451,479],save:[15,19,20,26,79,95,121,190,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,349,357,365,373,377,428,429,432,446,450,451,457,476],savefig:[327,385],savez:190,saw:386,sbpl:[241,372,452],sc:[83,86],scalar:[83,86,143,174,175,176,178,184,187,188,278,368,402,413,449,491],scale10:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,377,514],scale:[17,18,19,20,21,22,23,24,25,26,27,29,52,53,65,82,84,91,95,99,104,107,114,115,118,136,152,180,184,185,186,188,193,195,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,259,261,277,290,291,292,308,330,331,332,342,350,358,363,364,367,372,395,400,401,409,412,413,414,421,424,433,434,438,439,440,443,444,447,448,449,452,453,455,463,465,467,504,525,526,527,528,529,530,531,532,533],scale_method:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,377,514],scale_to_local_dens:[17,18,21,22,24,25,27,443],scaled_featur:277,scaled_features_irf:453,scaledregulargridinterpol:[66,205,395,410],scalespectralmodel:[114,115,118,235,372,452],scan:[19,20,90,112,113,114,115,118,119,192,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,364,373,400,434,477,479],scan_max:[19,20,114,118,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,446],scan_min:[19,20,114,118,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,446],scan_n_sigma:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,446],scan_n_valu:[19,20,114,118,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,446],scan_valu:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,434,446],scargl:[364,408,437],scatter:[203,225,370,424,430,495,496],scenario:[83,86,354,361,371,381,449,452,468,539],scengin:[83,86],schedul:358,schema:[15,16,80,365,368],schema_gener:[16,80],schema_json:[16,80],scheme:[16,80,100,101,174,175,176,185,217,349,355,359,361,364,371,372,373,374,376,393,400,411,433,447,449,452,479,484,490,491,493],school:375,scienc:[175,176,178,187,188,356,358,362,365,366,369,375,386,408,409,423,429,440,449,452,453,455,456,460,467,479,512,537,538],scientif:[350,356,372,375,382],scikit:[126,349,363,366,369,409,450],scipi:[19,20,26,28,29,30,31,32,35,36,37,39,40,188,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,276,290,329,342,348,349,352,358,363,366,367,369,375,386,390,391,392,393,405,406,407,410,412,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,535,540],scipy_mvn:191,scipy_opt:446,scitool:517,scope:[362,363,364,365,368,376,468],scratch:[135,349,359,363,379,428,450],screen:[83,86,449,465],script:[6,83,86,113,314,315,316,317,318,350,355,356,358,360,363,365,368,369,375,378,379,389,390,391,392,400,401,405,408,409,410,411,420,424,426,428,429,430,431,432,434,439,440,443,444,445,446,448,461,463,478,479,538],scriptabl:376,scutum:[33,38],sdist:379,seaborn:479,search:[83,86,262,263,314,349,350,385,408,409,421,424,430,431,443,444,453,463,464,465,467,479,538],season:369,sebastian:400,sec:[54,79,89,95,118,308],second:[42,58,79,82,83,84,86,132,251,308,311,326,330,333,338,350,357,359,361,363,367,373,375,379,394,413,420,421,424,426,428,430,431,432,433,434,439,440,443,445,446,448,449,455,460,463,474,539,542],secpl:[244,245,246,372,452],section:[19,83,86,264,270,349,350,352,354,363,365,366,368,372,375,379,380,397,410,423,428,432,433,436,440,444,446,450,451,452,465,467,468,479,492,536,538,542],secur:450,sed:[108,111,112,113,115,118,121,184,205,348,365,367,373,381,388,407,418,434,444,445,463,465,477],sed_fit:[418,419],sed_fitting_gammacat_fermi:369,sed_typ:[19,20,26,112,113,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,400,416,418,420,421,422,429,430,434,438,440,444,465,477,479,514],sed_type_init:[69,71,72,74,112,113],sed_type_plot_default:[112,113],sedov:[52,53],sedov_taylor_begin:[52,53,473],sedov_taylor_end:[52,53,473],see:[11,13,19,20,26,28,29,30,31,32,35,36,37,39,40,50,64,78,79,81,83,85,86,90,94,95,96,97,99,103,104,107,111,113,114,115,118,120,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,151,158,160,168,173,174,176,178,180,181,183,186,188,192,193,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,250,251,252,253,257,264,270,272,273,275,278,286,302,317,339,340,348,349,350,352,353,354,356,357,358,359,362,363,364,365,366,367,369,370,374,375,376,377,378,379,380,381,382,384,385,387,389,390,391,392,393,394,395,396,397,398,399,405,406,407,408,409,410,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,434,436,437,438,439,440,443,444,445,446,447,448,449,450,451,452,453,455,457,460,463,465,467,475,476,479,489,490,492,517,521,522,535,537,538,539,540,542],seed:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,226,233,239,251,254,300,301,302,305,306,307,308,349,408,432,514],seed_photon_field:[226,514],seem:[349,356,357,360,366,370,467],seen:[349,363,370,417,424,429,439,449,452,456],select:[16,78,79,82,83,84,85,86,87,95,97,99,103,104,155,162,175,176,177,178,180,185,187,188,194,196,203,225,240,250,260,345,346,359,361,362,363,364,365,369,371,373,376,381,383,389,392,400,404,416,420,422,423,425,426,428,429,431,432,433,436,440,441,445,446,448,449,450,453,455,457,458,460,465,477,479,483,484,488,536,538],select_energi:[79,476],select_from_geom:[203,225],select_map_mask:390,select_mask:[79,203,225,400,451],select_nested_model:414,select_obs_id:[86,430],select_observ:[86,365,439,453,464,479],select_offset:[79,432,458,476],select_paramet:[79,85,441,476],select_phas:359,select_rad_max:79,select_rang:86,select_region:[79,85,203,225,363,392,400,432,433,441,451,465,476],select_row_subset:79,select_sky_box:363,select_sky_circl:[86,363],select_tim:[79,82,84,87,95,359,373,394,433,439,476],select_time_rang:86,selected_energi:476,selected_ev:79,selected_id:476,selected_obs_t:[86,453,464],selected_offset:476,selected_region:476,selected_tim:476,selection_al:[107,121],selection_mask:[203,225,451],selection_opt:[16,107,109,110,111,114,115,117,118,119,120,121,400,420,421,425,426,428,429,430,434,438,439,440,441,450,457,463],selection_vari:86,selectionconfig:16,selectionslid:[428,436,449,463,464],self:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,79,80,82,83,86,112,113,183,184,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,240,241,243,244,245,246,249,253,349,350,360,361,363,366,372,373,376,377,396,449,452],semant:[363,374],semi:204,semiaxi:[204,212,215,495,496,497],semilog:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,416,433],semimajor:444,semiminor:444,semver:374,send:378,sens:[349,356,359,363,365,368,369,370,426],sensibl:453,sensit:[108,111,112,113,120,256,362,369,395,397,407,408,414,419,436,455,460,467,475,484,487,491],sensitivity_estim:416,sensitivity_t:416,sensitivityestim:[108,389,395,416],sent:354,sentenc:[354,369,375],sep:[183,358,366,372,387,452],separ:[17,18,21,22,24,25,27,28,29,30,31,32,35,36,37,39,40,65,69,70,71,72,73,74,75,76,79,86,174,183,186,338,349,350,355,356,357,358,361,362,363,364,365,368,369,370,371,396,400,406,408,409,413,414,423,426,428,430,436,440,444,451,452,453,468,476,484,485,495,496,500,501,514,537],septemb:[358,366,368,369,374],sequenc:[83,86,87,95,97,103,129,130,131,132,134,135,136,137,139,142,144,145,146,147,148,173,174,175,176,178,179,180,181,183,184,185,186,187,188,194,203,225,278,379],sequenti:[355,420,464],seri:[83,86,113,267,308,358,363,364,400,437],serial:[16,80,83,86,94,95,96,97,99,103,104,355,360,364,365,370,373,393,396,400,402,409,411,412,413,414,449,452,467],serialis:[20,97,99,103,104,197,198,201,203,205,207,208,209,211,213,217,219,220,222,224,225,226,228,230,231,232,236,241,243,244,245,246,248,249,250,251,252,253,361,363,365,368,370,371,372,392,394,396,400,405,408,410,411,413,414,463,479,492,533],serializ:[16,80],serialize_method:[83,86],serializiaton:361,serilis:[26,199,200,202,204,210,212,214,215,216,218,227,229,233,237,238,239,240,242,249,252,254],sersic2d:372,sersic:372,sersicspatialmodel:372,serv:[83,86,349,354,361,365,373,379,402,443,483],server:[371,381,383,460],servic:408,session:[365,375,478],set:[15,16,19,20,23,26,28,29,30,31,32,35,36,37,39,40,78,80,83,86,90,96,97,98,99,100,102,103,104,106,109,111,112,113,114,115,117,118,121,132,134,145,148,151,152,155,161,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,229,230,231,232,233,236,237,238,239,241,242,244,245,246,248,251,252,253,260,298,300,349,350,355,358,359,361,362,364,365,366,367,369,373,374,375,376,377,379,381,383,384,396,402,404,406,408,411,414,416,417,420,422,423,424,425,428,430,431,432,433,434,438,439,441,444,445,446,448,450,452,453,455,457,458,460,467,475,476,479,488,490,491,492,514,535,538,541,542],set_by_coord:[175,176,178,184,187,188,449,491],set_by_idx:[175,176,178,184,187,188,449,491],set_by_pix:[175,176,178,184,187,188,491],set_log:16,set_model:[15,371,421,425,438,463],set_models_paramet:371,set_parameter_factor:[194,196],set_parameters_bound:[203,225],set_prior:[225,377],set_prop_cycl:416,set_slice_arg:[28,29,30,31,32,35,36,37,39,40],set_subcovari:191,set_titl:[417,420,424,426,430,441,443,446,447,448,451,488,497,501,504],set_unit:[418,479],set_xlabel:[416,417,420,423,441,446,453],set_xlim:[418,421,429,441,481,504],set_xscal:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],set_xtick:[497,501],set_ylabel:[416,417,420,434,441,443,446,453,504],set_ylim:[416,418,420,421,422,438,441,481,504],set_yscal:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,434,443,481],set_ytick:[497,501],setdefault:182,seterr:349,setlevel:430,setter:[350,377,394,400,445],settl:[375,542],setup:[13,351,352,353,356,361,362,366,369,377,406,410,460,538],setuptool:[401,538],sever:[83,86,157,354,355,356,363,364,365,368,373,376,394,395,396,400,403,412,413,414,423,429,444,455,456,457,479,538,540],seyfert:268,sf:540,sfksogxq:428,sgr:465,shade:[176,184,188,446,536],shall:352,shape:[28,29,30,31,32,35,36,37,39,40,95,96,97,99,103,104,111,112,115,116,121,125,126,127,130,132,135,173,174,175,176,178,179,181,183,184,186,187,188,191,215,261,278,291,307,360,363,367,398,413,418,420,422,425,430,433,434,437,439,444,445,447,448,449,450,452,455,456,465,477,491,492,493,497,501],shape_ax:[174,186],share:[175,176,178,182,184,187,188,349,354,361,364,368,371,382,400,402,414,428,429,450,451,479,538],sharp:[216,339,340,495],she:[359,364],shear:363,sheet:[384,479],shell2:[237,452,493,503],shell2d:52,shell2spatialmodel:[234,238,452,501],shell:[52,53,76,237,238,360,365,372,381,383,452,493,501,503,538],shellspatialmodel:[76,234,237,372,400,452,500],sherpa:[101,104,132,179,180,183,184,192,264,270,348,349,358,366,367,369,370,381,382,383,390,404,405,406,407,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,492,512,539],sherpa_opt:446,shift:[28,29,30,31,32,35,36,37,39,40,252,385],shim:356,shini:334,ship:[356,357,366,389,407,423,436,441,452,479],shock:[50,52,53,472],short_observ:439,shortcut:[78,385,402],shorten:400,shorter:[268,349,350,363,369,374,397,423,439,452,538],should:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,79,80,83,86,97,99,102,103,104,105,112,113,114,118,122,123,124,133,134,137,143,145,148,160,165,166,171,173,174,175,176,178,180,182,183,184,186,187,188,193,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,278,324,338,339,340,350,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,369,370,372,374,375,376,378,379,381,383,384,385,390,392,414,422,428,431,432,433,440,441,445,446,447,448,449,450,451,452,455,457,475,477,479,484,491,538,539,541,542],shoulder:255,shouldn:[79,349,352],show:[11,78,83,86,115,116,117,136,155,217,346,349,350,352,361,363,364,368,369,377,379,389,390,394,402,407,408,409,414,416,417,418,420,421,422,423,424,425,426,428,429,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,460,463,464,465,471,472,473,479,481,482,483,485,486,488,490,495,504,536,538,540,543],show_dtyp:[83,86],show_in_brows:[83,86,430],show_in_notebook:[83,86],show_nam:[83,86],show_progress_bar:479,show_row_index:[83,86],show_unit:[83,86],shower:[404,455,484],shown:[19,20,26,79,143,183,184,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,344,349,356,366,367,368,376,377,379,394,396,417,420,428,430,431,432,433,437,440,441,447,448,451,452,453,455,464,476],showwarn:349,si:[79,174,183,186,203,225,255,492],side:[186,188,262,263,349,363],sider:542,sidereal_tim:350,siejkowski:409,sig:[342,539,540,541],sight:467,sigma1:31,sigma2:31,sigma:[19,20,30,32,48,49,111,112,113,114,118,119,121,132,133,137,143,144,145,148,191,192,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,260,262,263,269,372,377,430,431,436,437,438,446,450,452,463,477,483,496,511,527,540],sigma_10tev:[372,452],sigma_1:[31,49,136,447],sigma_1tev:[372,452],sigma_2:[31,49,136,447],sigma_3:[136,447],sigma_:[191,496],sigma_err:431,sigma_gauss:215,sigma_laplac:215,sigma_m:496,sigma_nod:452,sigma_to_t:540,sigmav:467,sign:[193,195,262,263,352,375,396,411,477,540],signal:[79,97,99,102,103,104,160,188,239,262,263,275,373,416,420,421,426,429,438,450,463,467,482,486,488,537,539,540,541],signif_avg:465,signific:[107,111,112,113,120,121,260,262,263,267,339,340,347,354,355,356,357,364,365,369,370,373,375,396,397,405,408,409,414,416,420,421,427,428,429,430,431,437,438,441,444,446,457,460,463,465,475,477,479,484,491,536,537,538],significance_lima:396,significance_map:[426,428],significance_map_off:426,significance_mask:450,significance_mask_inv:450,significancemapestim:396,significantli:[400,432,455,537],signoff:352,silent:411,silicon:[381,382,383],silvia:392,simeq:53,similar:[28,29,30,31,32,35,36,37,39,40,83,86,340,349,352,361,362,363,364,365,368,369,370,373,400,414,422,437,449,453,465,475,483,538],similarli:[355,357,373,376,400,444,446,447,449,450,452,492],simon:[413,414],simpifi:358,simpl:[50,52,126,200,204,212,215,227,237,238,242,248,252,255,349,350,361,362,363,364,365,368,373,376,377,390,400,404,408,409,414,416,417,418,420,421,422,423,425,428,437,441,446,449,450,453,458,463,464,465,469,479,536,537,538],simple_norm:188,simple_rebin_lc:364,simplefilt:479,simpler:[163,357,362,363,371],simplest:[416,420,437],simplex:[192,446],simpli:[28,29,30,31,32,35,36,37,39,40,82,83,86,152,192,194,196,349,363,364,373,411,414,416,417,430,445,450,451,452,465,492,538,540],simplic:[429,432,439,446,452,456],simplif:[360,372,411],simplifi:[121,182,356,358,360,367,373,390,393,394,395,397,400,404,411,418,424,484,541],simu:[436,440],simul:[45,78,79,84,88,97,99,102,103,104,105,134,145,148,308,359,362,365,369,376,377,381,388,392,394,396,402,405,407,408,409,414,419,420,425,428,430,435,441,442,451,455,460,469,475,477,484,487,535,536],simulate_3d:[369,409,435,436],simulate_dataset:[390,394,395],simulate_observ:88,simulated_d:422,simulated_data:88,simulated_model:422,simultan:[377,440,445,452,475],sin:[495,496,497,531],sinc:[16,28,29,30,31,32,35,36,37,39,40,51,79,80,83,84,86,114,115,118,176,186,193,195,324,349,350,355,359,363,365,366,367,368,369,373,375,376,377,379,400,410,411,412,413,414,422,426,428,440,445,451,452,455,457,510,513,539,542],sine:[239,360,493,534],sine_model:531,sinetemporalmodel:[247,452,531],singl:[28,29,30,31,32,35,36,37,39,40,65,78,83,84,85,86,88,90,111,114,115,118,121,133,134,145,147,148,151,155,157,162,165,166,171,173,174,175,176,178,180,183,184,186,187,188,203,225,349,355,356,359,361,362,363,364,365,366,370,371,376,377,381,388,390,395,396,408,414,416,420,422,424,425,426,438,440,444,445,448,449,451,457,458,463,465,475,477,489,491,492,535,537],singleobscubemak:355,singleobsimagemak:355,singleton:302,sinha:[361,364,389,390,391,392,393,394,395,396,397,399,400,402,403,408,409,410,411,412,413,414],sink:366,sinu:[239,452],sinusoid:[239,531],sipocz:[366,390,392,394,396,405,406,407,408,409,410],sit:352,site:[314,379,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,510,513,526,538],situat:[363,364,366,484],six:[368,374],size:[19,20,26,46,47,65,70,76,83,84,86,97,99,103,104,105,106,116,121,129,130,132,133,134,135,136,137,140,142,143,144,145,146,148,150,151,157,158,159,162,163,164,172,174,175,176,178,181,183,184,186,187,188,197,198,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,229,230,231,232,236,237,238,240,241,242,243,244,245,246,248,249,250,251,252,253,300,301,305,306,307,308,337,349,357,360,362,363,381,383,413,416,422,426,428,432,439,441,444,448,449,450,452,455,456,457,458,465,475,490,495,496,542],skeleton:365,sketch:365,skill:[352,385],skimag:409,skip:[78,350,352,361,363,369,407,451],skip_miss:[78,408],sklearn:349,sky:[6,13,41,57,66,68,69,70,71,72,73,74,75,76,79,84,91,97,99,102,103,104,107,126,133,134,145,148,168,174,175,176,178,183,184,186,187,188,203,225,240,252,255,257,280,284,285,309,311,313,336,348,349,350,362,368,381,390,392,406,407,409,420,421,423,424,426,436,440,441,444,449,452,455,456,460,462,463,464,465,467,474,475,476,479,484,485,488,490,492,495,496,500,501,502,536,537],sky_circl:[86,439,453,464],sky_coordin:81,sky_model:[68,69,70,71,72,73,74,75,76,364,438,439,444,451,452,464,506],sky_model_pntpwl:432,sky_reg:443,sky_reg_rec:443,sky_region:85,skycood:360,skycoord:[56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,79,81,83,84,86,89,91,97,99,103,104,112,113,115,117,133,134,140,145,148,158,159,161,163,165,166,168,169,171,172,174,175,176,178,181,183,184,186,187,188,189,199,200,203,204,212,215,225,227,229,237,238,240,242,248,250,252,310,311,325,345,350,360,363,373,376,416,417,420,422,423,426,430,431,432,433,434,436,438,439,440,441,443,444,445,447,448,449,450,451,452,453,455,456,457,458,464,465,479,483,488,490,492,499],skycoord_from_t:363,skycoord_to_pixel_scale_angl:363,skycoordconfig:16,skycub:[355,368,406,407,408,409],skydiffusecub:[360,372,391,396,397,409],skydiffusemap:[360,391],skydir:[16,79,97,99,103,104,134,145,155,174,175,176,178,184,186,187,188,420,421,422,425,426,428,430,431,432,433,436,438,441,443,445,447,448,449,450,452,456,457,463,464,486,488,489,490,492,496,497,498,499],skydirfunct:467,skydisk:391,skydiskelong:360,skyellips:[390,391,392,393],skygaussian:390,skygaussianelong:360,skyimag:[355,368,406,407,408,409],skyimagelist:406,skymap:[175,176,178,184,187,188,363,405,406,433],skymap_band:[433,533],skymap_region:433,skymask:407,skymodel:[65,68,69,70,71,72,73,74,75,76,96,97,99,103,104,112,113,121,152,203,221,225,257,260,360,361,362,364,370,372,373,390,394,395,396,400,409,417,418,420,421,422,423,424,425,428,429,430,431,432,433,436,438,439,440,441,444,445,446,451,456,463,464,474,475,477,494,495,496,497,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535],skypointsourc:393,skyregion:[95,97,99,103,104,115,133,134,140,145,148,158,159,163,178,183,184,188,203,225,309,312,363,417,432,434,450,452,483,488,492],skyspatialmodel:[360,409],slack:[351,352,356,372,378,384,389,390,538],slew:90,slice:[79,83,86,95,97,99,103,104,109,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,173,174,175,176,177,178,179,180,183,184,185,186,187,188,192,199,200,204,212,215,227,229,237,238,242,248,250,252,271,355,397,431,434,445,455,491],slice_by_coord:[112,113],slice_by_energi:[95,97,99,103,104,112,113,250,397,445],slice_by_idx:[97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,173,174,175,176,178,179,183,184,186,187,188,397,409,411,434,449,456],slice_by_tim:[112,113],slide:[358,424,444],slider:449,sliderstyl:[428,436,449,463,464],slightli:[107,180],slope:[27,391],slow:[83,86,192,356,365,421,446,463,464],slower:[83,86,176,349,357,367],slowest:379,small:[340,349,355,357,363,365,366,369,371,376,379,389,390,391,392,393,394,395,396,397,399,400,402,403,405,406,407,408,409,410,411,414,438,439,449,455,456,457,458,496,500,501,537,538],smaller:[27,163,174,175,176,178,184,187,188,342,352,390,409,432,437,439,446,449,496],smallest:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,236,241,243,244,245,246,249,253,424],smooth:[97,99,103,104,107,116,117,126,176,188,204,241,341,344,400,405,406,407,409,410,426,428,430,434,436,441,445,448,449,451,456,463,464,465,493,495,524],smooth_kernel:[97,99],smooth_radiu:[97,99],smoothbrokenpowerlawspectralmodel:[197,235,372,395,396,452,519],sn:[45,50,52,53],sn_rate:[45,469],snippet:[350,369,479],snr:[44,50,53,65,456,472,473],snr_model:473,snrcat:[404,444],snrtruelovemcke:[50,472,473],so:[28,29,30,31,32,35,36,37,39,40,79,83,86,90,99,104,111,114,116,118,119,121,172,175,176,178,180,184,187,188,192,193,195,215,252,260,324,332,339,340,349,350,352,354,355,356,357,360,361,362,363,364,366,367,368,369,370,371,372,373,376,378,380,381,382,383,385,390,392,400,410,412,413,417,420,422,424,425,430,431,432,436,438,443,444,446,449,450,452,455,456,457,460,464,479,488,492,497,501,538,539,540,541],social:375,soft:268,softwar:[175,176,178,187,188,363,364,366,375,376,379,449],solar:52,sole:[359,375],solid:[173,174,183,186,200,204,212,215,227,237,238,242,248,252,255,365,388,390,391,392,409,426,448,449,455,482,488,537],solid_angl:[173,174,183,186,449,492],solut:[19,20,26,52,132,197,198,201,205,207,208,209,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,350,352,354,356,357,362,363,365,366,367,369,371,373,377,382,475,477,479,541],solv:[28,29,30,31,32,35,36,37,39,40,352,357,359,360,361,362,402,479],some:[13,16,28,29,30,31,32,35,36,37,39,40,70,78,80,83,86,161,182,278,286,352,354,355,356,357,358,363,364,365,366,367,368,369,370,373,374,375,376,379,381,382,383,384,385,386,388,390,392,400,401,403,405,407,408,409,414,416,417,418,420,422,424,425,426,429,430,432,433,434,436,437,438,439,440,441,443,444,445,446,448,449,451,452,455,456,464,465,467,468,475,476,479,484,489,491,537,538,539,540,542],some_class:349,some_map:143,some_map_convolv:143,somehow:[357,363,368,467],someon:[352,354,369],someth:[83,86,349,350,351,352,354,357,363,366,367,369,379,381,383,423,444,492,538],sometim:[19,20,79,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,327,349,352,356,363,369,379,381,446,537,542],somewhat:[366,455],somewher:[352,366,379],soon:[352,363,379],sort:[78,79,83,86,96,126,318,349,366,391,465],sort_kei:318,sortedarrai:[83,86],sourc:[6,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,269,270,271,272,273,274,275,276,277,279,280,281,282,283,284,285,286,287,288,289,290,291,292,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,349,350,352,354,357,360,361,362,363,364,365,366,367,368,369,371,372,373,375,379,381,386,388,390,394,395,400,401,406,407,408,409,414,418,419,421,422,423,425,426,427,428,429,434,435,436,437,438,439,441,442,443,445,446,447,448,449,451,452,453,454,456,457,458,460,462,463,464,467,468,473,475,476,477,479,484,487,488,491,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,536,537,539,540],source1:452,source2:452,source_1:[360,365],source_2:360,source_42:365,source_fermi_3fgl:418,source_fermi_3fhl:418,source_gammacat:418,source_irf_model:360,source_librari:455,source_model:517,source_nam:[56,57,58,59,60,61,62,63,64,65,444,465],source_name_alia:56,source_name_kei:56,source_po:[426,430,448],source_population_model:[369,394],source_posit:[416,431,453],sourcebackground:360,sourcecatalog1lhaaso:[55,68,444],sourcecatalog2fhl:[55,69,444,474],sourcecatalog2hwc:[55,70,444,474],sourcecatalog3fgl:[55,71,418,444,474],sourcecatalog3fhl:[55,72,418,444,451,465],sourcecatalog3hwc:[55,73,444,474],sourcecatalog4fgl:[55,74,402,444,474],sourcecatalog:[57,58,59,60,61,62,63,64,65,363,400,444,450,465,474],sourcecataloggammacat:[55,75,418,444],sourcecataloghgp:[55,76,77,444,474],sourcecataloglargescalehgp:65,sourcecatalogobject1lhaaso:57,sourcecatalogobject2fhl:58,sourcecatalogobject2hwc:59,sourcecatalogobject3fgl:60,sourcecatalogobject3fhl:61,sourcecatalogobject3hwc:62,sourcecatalogobject4fgl:63,sourcecatalogobject:[68,75,76,77,444,474],sourcecatalogobjectfermibas:[69,71,72,74],sourcecatalogobjectgammacat:64,sourcecatalogobjecthgp:[65,77,389,444],sourcecatalogobjecthgpscompon:65,sourcecatalogobjecthwcbas:[70,73],sourceevalu:360,sources_flux_map:424,sourcetempl:360,south:[432,433],south_z20_50h:[78,130,134,135,136,145,416,423,436,440,447,455],south_z40_50h:455,southern:455,space:[83,86,97,99,103,104,185,188,248,249,289,307,348,349,359,365,371,441,445,446,449,491,514,523],span:453,spars:[174,175,176,178,183,186,187,188,391,400,408,433,449],sparsif:373,sparsifi:[175,176,178,187,188],spatail:121,spatial:[1,33,38,46,48,65,68,69,70,71,72,73,74,75,76,77,79,97,99,103,104,105,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,173,174,175,176,178,179,181,183,184,186,187,188,194,196,199,200,203,204,211,212,215,225,227,229,234,237,238,240,242,248,250,252,260,342,344,349,355,358,361,362,363,365,367,368,373,381,389,390,392,393,394,395,397,400,408,409,411,414,418,421,423,425,428,429,431,432,433,434,436,440,441,444,445,448,451,454,456,460,463,467,468,475,477,479,480,490,491,503,535,536,537],spatial_bin_s:105,spatial_bin_size_min:105,spatial_model:[68,69,70,71,72,73,74,75,76,77,121,204,211,240,250,260,364,394,424,428,430,431,432,433,436,438,439,444,445,451,452,456,464,494,495,496,497,498,499,500,501,502],spatial_model_point:432,spatial_model_registri:452,spatial_par:372,spatial_typ:372,spatial_width:105,spatial_width_max:105,spatialbackground:360,spatialcircleconfig:16,spatialconst:360,spatialgaussian:360,spatialmodel:[68,69,70,71,72,73,74,75,76,199,200,204,211,212,215,227,229,237,238,240,248,250,252,360,372,394,409,413,444,452,464,467,474,493,535],spatialtempl:360,spatiamodel:143,speak:446,spec:[76,104,349,363,405,428,433,444,455,464],spec_model_tru:441,special:[83,86,215,349,359,361,363,364,372,375,376,389,425,432,444,445,447,451,452],specialis:[363,369],specif:[15,28,29,30,31,32,35,36,37,39,40,78,79,81,82,83,86,89,97,99,104,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,151,165,166,171,175,176,177,178,180,184,185,186,187,188,192,217,250,260,338,348,349,350,352,354,359,361,363,364,365,366,367,368,370,373,374,375,376,379,380,381,382,394,397,400,402,411,412,414,417,420,422,423,426,428,429,434,436,440,441,445,446,447,449,450,453,458,460,465,475,476,477,479,481,482,483,485,490,491,492,542],specifi:[16,28,29,30,31,32,35,36,37,39,40,78,79,80,83,84,86,87,91,97,99,103,104,107,109,112,113,114,116,118,119,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,150,161,173,174,175,176,178,179,180,182,183,184,186,187,188,203,217,225,260,278,280,284,289,336,359,366,371,374,382,393,396,400,422,425,428,431,432,434,436,445,446,447,448,449,451,452,455,464,475,477,490],spectra:[26,103,104,114,235,255,260,355,358,360,362,364,368,372,388,392,405,409,417,422,423,429,433,438,440,441,445,446,448,452,467,475,477,479,537],spectral:[1,19,20,26,52,53,64,65,68,69,70,71,72,73,74,75,76,96,97,99,103,104,107,111,112,113,114,115,118,120,121,125,143,145,148,152,194,196,197,198,201,203,205,207,208,209,211,213,217,219,220,222,223,225,226,228,230,231,232,235,236,240,241,243,244,245,246,249,250,251,253,255,256,268,305,355,358,360,361,362,363,364,365,367,368,370,371,373,381,389,391,392,393,394,395,396,397,399,400,401,402,403,404,405,406,407,408,409,410,411,412,414,419,423,425,428,431,432,433,434,436,438,439,440,441,444,445,446,448,450,451,454,455,456,463,464,467,468,474,475,476,477,478,479,480,486,487,488,491,494,495,496,497,498,499,500,501,502,520,521,522,524,525,526,527,528,529,530,531,532,533,535,536,537,539],spectral_analysi:[419,420],spectral_analysis_hli:[419,421],spectral_analysis_rad_max:[419,422],spectral_cub:401,spectral_index:[19,20,26,52,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],spectral_index_error:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,414],spectral_irf_model:360,spectral_model1:440,spectral_model2:440,spectral_model:[64,65,68,69,70,71,72,73,74,75,76,96,103,104,111,121,125,152,203,211,223,225,240,250,260,364,367,371,372,373,377,397,417,418,420,422,423,424,428,429,430,431,432,433,436,438,439,440,441,444,445,446,451,452,456,464,465,477,486,494,495,496,497,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],spectral_model_pwl:432,spectral_model_registri:452,spectral_par:372,spectral_point:365,spectral_typ:372,spectralbackground:360,spectralbackgroundmodel:361,spectralcompoundmodel:360,spectralconst:360,spectralevalu:360,spectralexponentialcutoffpowerlaw3fgl:368,spectralgaussian:[360,392],spectralmodel:[19,20,69,71,72,74,75,76,96,107,111,112,113,115,120,125,143,145,148,152,197,198,201,203,205,207,208,209,211,213,219,220,222,225,226,228,230,231,232,236,240,241,244,245,246,249,250,253,255,360,361,364,367,373,397,400,407,414,444,452,464,465,474,493,535],spectralregion:363,spectraltempl:360,spectrum:[19,20,26,70,73,93,95,96,97,99,100,103,104,107,112,113,115,118,120,122,143,145,148,153,157,161,162,175,176,178,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,255,256,268,346,355,360,361,364,365,368,369,370,381,391,392,393,394,396,400,402,405,406,407,408,409,411,413,416,417,418,419,421,428,429,432,433,434,440,443,444,445,450,452,455,456,460,463,465,467,475,479,484,487,492,505,508,509,511,512,516,517,519,520,521,522,535,538],spectrum_analysi:420,spectrum_dataset:[361,441,445],spectrum_dataset_1:361,spectrum_dataset_2:361,spectrum_dataset_empti:[441,448],spectrum_dataset_mak:[441,448],spectrum_dataset_on_off:441,spectrum_fitting_with_sherpa:369,spectrum_mak:416,spectrum_simul:[369,419,423],spectrumanalysisiact:[365,393,407],spectrumdataset:[93,94,95,97,99,104,118,120,128,156,157,161,162,211,370,391,392,393,394,395,396,397,400,403,416,417,420,422,423,430,439,440,441,446,448,475,488,539],spectrumdatasetmak:[153,394,400,416,417,420,422,423,430,439,440,441,448,488],spectrumdatasetonoff:[93,99,100,101,103,120,128,156,157,260,346,364,391,392,393,395,396,412,413,414,416,417,420,421,423,429,430,438,441,445,446,448,477,539],spectrumdatasetonoffstack:393,spectrumdatasetsonoff:361,spectrumenergygroup:408,spectrumevalu:396,spectrumextract:[364,391,394,407],spectrumfit:[391,407,408,409],spectrumobserv:[361,391,407],spectrumobservationlist:[391,406],spectrumobservationstack:406,spectrumonoffdataset:364,spectrumresult:391,spectrumsimul:[392,406,409],spectrumstack:408,spectrumstat:392,specutil:363,speed:[121,278,352,382,392,394,402,408,409,446],spell:[354,479],spend:[362,369],spent:[356,448],sphere:[47,306,388,390,491,495,496,499],spherepointpick:306,spheric:[47,349,390,491,536],sphericalcircleskyregion:[368,441,465],sphinx:[352,356,369,379,391,395,402,408,409,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],sphinx_gallery_conf:379,sphinx_gallery_thumbnail_numb:[350,420,422,424,426,431,434,447,504],spill:448,spin:[50,51,54,392,471],spir:[390,409],spiral:[33,34,38,45,404],spiralarm:[33,38,45,408,469],spiralarm_index:[33,34,38],spirit:375,split:[19,20,83,86,87,112,113,175,176,178,184,187,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,355,357,359,361,363,364,368,370,372,381,397,439,452,468,543],split_by_axi:[175,176,178,184,187,188],sporad:376,spot:349,spread:[78,84,136,145,148,349,371,397,416,424,447,484,537],spring:[359,410],sprint:[357,358,362,365,366,367,368,370,374],spuriou:126,sqrt:[19,20,30,31,32,65,97,99,103,104,107,112,113,116,121,175,176,178,180,184,187,188,191,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,261,269,290,291,292,361,417,420,424,428,434,436,437,441,444,446,448,449,451,456,463,464,465,477,496,497,500,501,511,540],sqrt_space:[368,394],sqrt_t:[107,111,112,113,121,262,263,342,373,385,397,417,420,421,424,426,428,430,441,444,445,450,457,463,465,477,538,540],sqrt_ts_min:[128,420],sqrt_ts_threshold_ul:[69,71,72,74,111,112,113,115,121,434,438,444,445,463,465],squar:[17,18,21,22,24,25,27,46,97,99,112,132,133,134,140,145,148,151,172,186,188,250,266,364,367,397,450,467,477,491,538,539,540,541],squash:[134,173,174,177,179,180,183,185,186,414,416,426,445,449],squeez:[416,447],sr:[129,130,131,142,173,174,183,186,200,252,255,416,423,425,428,430,436,440,444,445,447,449,452,455,456,484,494,502],src:[362,431,475],src_above_bkg:431,src_event:[432,433],src_posit:[432,433],srcmap:[174,175,176,178,187,188,449],ssc:[58,60,61,63,226,369,517],ssc_model:226,st:[53,446,456],stabil:[19,20,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,374,436],stabl:[11,83,86,183,192,278,356,357,358,365,366,369,374,378,379,380,382,394,395,396,402,407,409,411,446,476],stack:[16,79,82,87,95,96,97,99,103,104,111,112,113,133,134,140,145,148,151,175,176,177,178,183,184,187,188,191,194,196,250,319,349,361,364,365,371,376,390,393,394,397,400,405,406,411,412,414,417,421,425,429,430,438,441,445,446,448,453,463,464,476,477,486,489,537],stack_dataset:[151,441,448],stack_reduc:[95,393,417,420,422,428,429,430,441,445,446,477],stacked_dataset:[430,431],stacked_fit:420,stacked_on_off:426,stackedobscubemak:355,stackedobsimagemak:355,stackoverflow:317,stage:[352,365,426,428,440,445,475,537],stai:361,stand:354,standard:[28,29,30,31,32,35,36,37,39,40,42,82,83,86,91,176,188,192,256,277,331,332,349,350,352,354,358,360,361,362,365,367,373,375,376,385,392,393,409,416,421,423,426,429,431,433,436,439,440,443,446,449,452,453,455,458,460,463,475,478,483,491,536,537,538],standard_broadcast:[28,29,30,31,32,35,36,37,39,40],standard_scal:453,standardis:[321,322,334,408],standardise_unit:[321,335],standpoint:349,star:[36,40,205],starmap:[294,298,299],start:[16,53,79,82,84,85,86,87,89,95,118,126,185,202,203,210,214,216,217,218,225,233,239,251,254,349,350,352,354,356,357,358,359,362,363,365,366,374,375,377,378,379,380,383,385,386,388,393,402,405,406,407,408,409,414,416,417,418,420,421,422,424,425,426,428,430,431,432,433,434,437,438,439,440,441,443,444,449,452,455,456,460,463,465,479,483,536],start_po:[115,311,434],startswith:349,stat:[6,95,96,99,104,112,113,114,115,118,119,121,192,193,195,262,263,264,265,266,267,268,269,270,271,272,273,274,275,342,349,361,369,377,379,385,392,394,395,396,397,400,406,409,410,411,417,418,420,421,422,426,428,429,430,431,434,437,441,446,456,463,464,477,538,539,540],stat_arrai:[94,96,97,99,103,104,377],stat_contour:192,stat_max:[262,263],stat_nul:[112,113,114,115,118,119,121,262,263,424,434,477],stat_per_bin:361,stat_profil:[192,446,479],stat_scan:[112,113,114,115,118,119,192,261,420,421,446,477],stat_sum:[94,95,96,97,99,103,104,377,413,414,428,440,445,451,479],stat_surfac:[192,397,479],stat_typ:[96,97,99,103,104,395,428,440,445,451],state:[16,45,47,185,192,349,355,359,361,365,369,371,373,421,463,484,504],stateless:376,statement:[349,352,356,413,468],staticmethod:[360,372,377,452],statist:[6,19,20,26,75,94,95,96,97,99,103,104,111,112,113,114,115,118,119,121,127,128,155,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,236,241,243,244,245,246,249,253,260,261,262,263,264,265,270,275,361,364,367,368,369,371,377,391,395,396,397,400,402,414,416,421,423,424,425,426,428,430,434,436,437,438,440,441,445,446,448,463,464,475,477,479,489,536,537],statu:[19,20,26,112,113,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,349,352,353,355,356,357,358,360,361,362,363,364,365,366,367,369,370,371,372,373,375,376,377,410,451,452],std:[28,29,30,31,32,35,36,37,39,40,277,423,437,456],stddev:66,stderr:349,stdout:[286,349],steep:423,stefan:404,step:[19,20,26,111,114,118,119,121,192,197,198,199,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,252,253,254,349,352,355,356,359,360,361,363,364,365,367,370,374,377,378,379,385,402,409,410,414,416,420,422,425,428,430,431,432,433,439,440,445,446,448,452,463,464,465,479,487,492],stepprior:377,stepsiz:150,steradian:183,stewart2009:[121,537,540],stewart:[121,271,424,537],stick:[352,372,390,409,446,537],still:[28,29,30,31,32,35,36,37,39,40,356,357,359,362,363,366,368,369,370,373,374,376,378,379,407,408,409,452,465,477,500,501,538],stipul:375,stone:[349,369],stop:[16,52,79,82,84,85,86,87,95,118,121,185,202,203,210,214,216,217,218,225,233,239,251,254,359,385,414,421,425,426,428,439,441,446,456,463],storag:[78,479],store:[11,15,28,29,30,31,32,35,36,37,39,40,56,67,78,79,81,82,83,86,112,113,116,118,143,156,157,175,176,178,184,187,188,192,193,195,203,225,332,349,352,355,357,358,359,361,362,365,367,371,373,375,376,379,397,400,401,417,422,423,432,433,437,441,445,446,447,448,449,450,453,455,456,457,458,465,475,476,479,484,485,486,491,492,514,535,536,538,542],store_per_ob:365,store_trac:[192,446],str3:[83,86],str:[15,16,19,20,26,50,56,57,58,59,60,61,62,63,64,65,78,79,80,81,82,83,84,85,86,88,89,94,95,96,97,99,100,101,102,103,104,105,109,111,112,113,114,116,118,119,121,122,123,124,129,130,131,132,133,134,135,136,137,138,139,140,142,144,145,146,147,148,149,152,155,156,161,162,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,193,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,257,278,290,299,314,315,331,332,334,338,342,343,345,363,376,420,422,448,452,457],straight:[350,381,479],straightforward:[379,541],strang:349,strategi:[349,356,363,414,446,541],stream:349,streil:[377,413,414],strength:[51,54,377,514],stretch:[175,176,178,184,187,188,339,340,344,424,428,434,436,448,449,451,456,463,464,465],strict:[16,28,29,30,31,32,35,36,37,39,40,80,97,99,133,134,140,145,148,151,186,188,250],strict_bound:180,strictli:[16,80,180],strike:475,string:[15,16,26,28,29,30,31,32,35,36,37,39,40,56,67,68,69,70,71,72,73,74,75,76,77,78,79,80,83,86,88,112,113,114,115,118,121,136,142,144,146,151,174,175,176,178,180,181,183,184,186,187,188,193,195,203,225,278,296,338,349,362,363,366,368,375,376,388,392,400,402,421,444,450,452,463,491,492],strip:[28,29,30,31,32,35,36,37,39,40],strip_units_from_tre:[28,29,30,31,32,35,36,37,39,40],strong:[52,362,369,420],strongli:[268,364,366,375,400,425,446],structur:[83,86,186,353,354,355,358,360,362,365,369,372,375,376,387,393,394,396,400,403,434,445,448,449,450,452,460,466,467,474,476,480,491,492,538],stuck:538,student:352,studi:[46,255,362,365,373,382,409,417,418,429,430,431,434,436,439,440,446,449,452,455,469,479,488,539],stuff1:349,stuff2:349,stuff:[350,379,479],style:[83,86,96,175,176,178,184,187,188,346,352,358,375,404,406,428,436,447,449,463,464,479,492],sub:[11,28,29,30,31,32,35,36,37,39,40,97,99,103,104,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,175,176,177,178,180,184,185,187,188,191,349,352,356,358,359,363,368,369,370,371,376,379,388,390,394,396,397,405,407,408,430,432,448,450,452,457,458,475,478,479,487,536,538,542],subclass:[16,28,29,30,31,32,35,36,37,39,40,80,83,86,278,363,406,409,452],subcompon:[65,76],subfold:[357,400],submit:[354,375],submodul:[357,390,391,396,449,465,477],subok:278,subpackag:[370,376,393,400,404],subplot:[64,65,175,176,178,184,187,188,416,417,418,420,421,422,423,424,426,428,429,430,434,437,438,440,441,443,446,447,449,451,453,479,481,488,497,501,504],subplot_kw:[424,426,430,441,488],subplots_adjust:443,subsect:[369,449],subsequ:[267,358],subset:[78,79,83,86,114,118,226,376,404,405,430,441,451,455,457,478,536],subspac:363,substanti:[83,86],substitut:539,substr:[203,225],subtract:422,succed:378,succeed:112,success:[16,80,96,112,113,114,115,118,119,121,192,377,400,417,418,420,421,422,424,428,429,430,434,438,441,446,451,456,463,464,502],successfulli:[96,417,418,420,421,422,428,429,430,440,441,446,456,463,464],sudo:382,suffer:[366,441],suffic:440,suffici:[352,355,362,375,414],suffix:[96,112,350,360,372,378,452,491,493],suggest:[352,354,356,359,363,369,371,373,377,424,432,433,479,538],suit:[176,349,492],suitabl:176,sum:[28,29,30,31,32,35,36,37,39,40,82,97,99,103,104,114,115,117,118,119,121,129,130,131,132,133,135,136,137,139,142,143,144,145,146,147,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,255,262,263,265,345,349,359,360,362,371,373,377,391,428,432,441,443,445,456,463,464,465,475,485,537,539],sum_:475,sum_band:[175,176],sum_i:116,sum_j:475,sum_k:475,sum_of_implicit_term:[28,29,30,31,32,35,36,37,39,40],sum_over_ax:[175,176,178,184,187,188,337,409,426,428,434,441,445,448,450,451,456,464],sum_over_energy_group:[114,121,430,434],summar:[358,467],summari:[15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,98,99,100,101,102,103,104,107,109,110,111,112,113,114,115,116,117,118,119,120,121,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160,161,162,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,286,290,300,323,336,350,352,369,387,417,421,439,440,445,455,463,479],summaris:[349,354,356,369],summat:[262,263,355],summer:357,sun:41,sunpi:[366,369,370],superexpcutoffpowerlaw3fglspectralmodel:[235,372,452,520],superexpcutoffpowerlaw4fgldr3spectralmodel:[235,452,521],superexpcutoffpowerlaw4fglspectralmodel:[235,372,452,522],superfici:467,superflu:[359,441],supernova:[28,52,417,431,452,469,470],superpixel:174,supersed:[174,175,176,186,187,188],supervisor:365,suppli:[83,86,226,440],support:[79,81,82,83,84,85,86,87,90,95,97,99,103,104,113,138,143,174,175,176,177,178,185,186,187,188,192,203,225,348,353,354,358,359,360,361,362,363,364,365,366,367,368,369,371,372,373,376,382,386,389,390,392,393,394,395,396,397,400,402,405,407,408,409,410,411,412,413,414,416,421,423,425,428,430,436,440,443,444,445,449,455,456,457,458,463,478,484,491,492,533,535,536,538],suppos:[217,251,354,361,537,539],suppress:[132,133,137,479],sure:[28,29,30,31,32,35,36,37,39,40,349,352,354,365,378,420,438,449,479,538],surfac:[28,30,35,36,39,40,45,192,240,255,304,368,397,446,452,469],surface_brightness_err:444,surprisingli:363,surround:[52,296,349],survei:[62,65,114,205,356,359,369,385,455,460,461,469,474,479,537],survey_map:[461,462],suspect:540,suss:[358,375],svg:349,swap:174,swept:52,swh:375,swhid:375,switcher:378,sy:[349,384],syllabl:479,symbol:450,symmetr:[97,99,103,104,111,119,121,163,172,176,212,349,360,390,402,405,418,440,448,455,467,477,485,495,496,540],symmetri:[176,390],sync:409,sync_constraint:[28,29,30,31,32,35,36,37,39,40],synchronis:375,synchrotron:[226,396,514],syntact:[83,86],syntax:[16,83,86,350,365,368,394,411,538],synthesi:[469,470],synthet:388,system:[11,79,83,86,130,138,139,174,175,176,178,181,183,186,187,188,203,225,349,355,360,362,366,369,370,374,375,377,382,390,408,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,490,491,536,538,542],systemat:[360,373,375,376,397,420,438,448,477,537,539],t0:[210,233,432,439,440,526,530],t1:[83,86],t2:[83,86],t:[16,26,28,29,30,31,32,35,36,37,39,40,50,51,52,53,67,79,80,82,83,84,86,107,111,114,118,121,132,172,185,203,217,225,276,321,325,348,349,350,352,354,356,357,359,361,363,365,366,367,368,369,372,374,376,379,381,383,384,385,409,416,417,420,425,428,430,436,437,438,443,446,448,449,450,452,453,455,456,467,471,472,473,475,479,488,525,526,527,528,529,530,531,536,538,541,542],t_0:530,t_:[52,53,267,484,526,527,528,529,530,531,539],t_b:539,t_decai:[216,528],t_delta:[98,102,185,202,210,214,216,217,218,233,239,251,254],t_i:267,t_j:475,t_live:[79,84],t_max:[202,210,214,216,217,218,233,239,251,254,362,373],t_min:[202,210,214,216,217,218,233,239,251,254,362,373],t_observ:[79,84],t_r:217,t_ref:[210,214,216,217,218,233,239,251,413,414,432,433,440,452,526,527,528,529,530,531,532,533],t_rise:[216,528],t_start:[82,476],t_stop:[52,82,476],tab:[132,354,428,434,438,488],tabl:[6,41,42,43,44,45,46,47,56,57,58,59,60,61,62,63,64,65,66,67,69,71,72,74,76,78,79,81,82,83,84,85,86,89,90,91,95,96,97,99,103,104,112,113,116,120,122,123,124,126,127,129,130,131,132,133,134,135,136,137,139,140,141,142,144,145,146,147,148,155,157,162,164,172,173,174,175,176,177,178,179,180,182,183,184,185,186,187,188,194,196,203,217,225,240,251,253,255,276,277,286,319,320,321,322,347,348,349,355,359,362,363,364,366,368,370,373,376,394,397,401,402,403,404,405,406,407,408,410,411,412,414,416,418,420,421,422,423,430,432,433,434,436,438,441,445,447,448,449,452,453,455,456,457,458,460,463,465,469,474,475,477,479,484,533,539,542],table_arrai:[83,86],table_associ:65,table_bkg_src:431,table_class:[83,86],table_compon:[65,444],table_filenam:26,table_from_row_data:414,table_hdu:82,table_identif:65,table_large_scale_compon:[65,444],table_model:[253,372],table_oth:319,tableau:479,tableclass:[83,86],tablegroup:[83,86],tableid:[83,86],tableiloc:[83,86],tableindic:[83,86],tableloc:[83,86],tablelocindic:[83,86],tablemodel:[360,410],tablepsf:[370,388,390],tablepsfcheck:406,tabul:467,tabular:[452,523],tackl:358,tag:[19,20,26,56,57,58,59,60,61,62,63,64,65,80,83,86,94,96,97,98,99,100,101,102,103,104,107,109,110,111,112,114,115,117,118,119,120,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,150,151,152,154,155,156,157,160,161,162,175,176,178,184,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,223,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,244,245,246,248,249,250,251,252,253,374,377,378,397,411,447,452,497,501],tail:[455,538],take:[28,29,30,31,32,35,36,37,39,40,83,86,97,99,103,104,111,130,150,152,184,186,192,203,225,240,324,347,349,354,355,358,359,360,361,362,363,364,365,368,369,370,373,379,395,396,397,400,402,410,411,413,414,416,417,422,423,432,433,434,440,441,446,448,449,450,452,453,455,464,465,476,479,492,507,539,540,541],taken:[15,27,83,86,97,99,103,104,112,113,135,143,162,168,170,184,185,188,192,270,350,354,358,362,413,420,428,429,441,447,450,451,455,465,475,477,488,489,540],talk:[352,354,356,366,375],tan:[176,183,363,392,420,449,456,488],tandem:467,tangent:[158,200,204,212,215,227,237,238,242,248,252],tangenti:[174,492],tar:[379,455],target:[28,29,30,31,32,35,36,37,39,40,84,97,99,103,104,106,107,111,121,133,134,145,148,165,166,170,171,175,176,178,180,184,187,188,355,356,362,375,378,406,417,422,430,439,448,450,464],target_nam:488,target_posit:[158,417,420,422,430,438,439,464],target_radec:84,task:[299,369,373,375,376,378,379,410,421,424,448,449,456,460,463,479,487,536,538,542],task_nam:299,tast:538,tau:[26,51,54,377,443,504],tau_0:51,taul:[26,443],taur:[26,443],taylor:[52,53],tbl:[83,86],tctypn:432,tcunin:432,teal:437,team:[354,358,366,369,371,375,387,408],technic:[351,352,354,362,369,371,373,375,379,425,479],techniqu:[355,364,365,367,417,420,428,431,448,450,486,489,536],tediou:444,tel:[83,86],telescop:[78,79,81,86,90,135,362,363,376,381,385,386,432,438,441,453,455,456,458],tell:422,temp:[404,433],temperatur:[52,53],templat:[16,26,57,68,80,99,104,152,160,174,175,176,178,179,180,186,187,188,203,217,225,248,249,250,251,252,253,271,274,354,360,361,365,372,397,411,414,423,424,426,433,449,450,451,452,467,488,491,493,503,510,513,518,524,532],template_diffus:[451,456],template_model:432,templatelightcurvetemporalmodel:411,templatend:[248,249,452],templatendspatialmodel:[234,452],templatendspectralmodel:[26,235,402,413,452],templatenpredmodel:[221,400],templatephasecurvetemporalmodel:[247,411,452,532],templatespatialmodel:[65,234,371,372,397,411,412,414,432,451,452,456,502],templatespectralmodel:[203,225,235,257,372,452,456,475,510,513,518,523],templatetemporalmodel:411,tempo2:[441,479],tempor:[194,196,202,203,210,214,216,217,218,225,233,239,240,247,251,254,267,360,362,372,373,393,395,396,397,402,411,413,414,418,421,423,428,429,430,432,435,436,437,444,445,451,456,460,463,475,476,479,480,484,487,491,534,535,537],temporal_model1:440,temporal_model2:440,temporal_model:[240,362,432,433,440,452,525,526,527,528,529,530,531,532,533],temporal_model_map:433,temporal_model_registri:452,temporal_typ:372,temporalbackground:360,temporalmodel:[202,210,214,216,217,218,233,239,240,251,360,373,396,411,413,414,493],temporari:460,temporarili:[28,29,30,31,32,35,36,37,39,40,360],ten:[355,369],tend:[349,497],tension:437,tensorflow:[367,369],tent:378,term:[28,29,30,31,32,35,36,37,39,40,218,272,275,352,354,356,358,359,363,366,369,374,376,398,402,411,424,446,447,538,540,541],termin:[83,86,96,365,381,382,383,384,417,418,420,421,422,428,429,430,441,446,456,463,464,538],terrestri:542,terrier:[355,358,359,360,361,363,364,365,366,368,370,371,372,373,374,376,388,389,390,391,392,393,394,395,396,397,398,399,400,402,403,404,406,407,408,409,410,411,412,413,414],test2:440,test:[6,89,96,109,111,112,113,114,115,118,119,121,127,143,145,148,175,176,178,184,187,188,217,260,261,262,263,266,308,323,324,325,326,327,328,329,350,355,356,357,358,359,361,362,363,364,365,366,367,374,377,378,379,389,391,392,394,396,400,401,402,405,406,407,408,409,410,411,414,417,423,424,433,436,438,439,440,445,447,477,479,483,489,532,533,537,540],test_aeff3d:447,test_edisp:447,test_events_with_gti:476,test_gti:476,test_person_txt:349,test_plot:349,test_psf:447,test_someth:349,test_using_data_fil:328,test_using_scipi:329,testcod:350,testoutput:350,testpar:377,teststatisticnest:414,tev:[16,19,20,26,44,52,53,64,65,69,72,79,96,97,99,103,104,107,113,114,129,130,132,134,135,136,137,142,143,144,145,146,148,155,175,176,178,184,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,240,241,243,244,245,246,249,253,255,256,298,344,360,372,373,376,377,385,416,417,418,420,421,422,423,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,452,453,455,456,457,458,463,464,465,473,476,477,483,484,486,488,489,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,536],tevcat:[401,444],tevcat_nam:69,tevpi:388,tevtevtev1:430,tex:350,texliv:350,text:[17,18,21,22,23,24,25,27,50,51,52,53,54,99,104,112,113,121,237,238,277,338,350,357,365,375,379,421,441,447,455,463,465,495,496,497,500,501,505,521,528,538,540],textcolor:338,textkw:338,th:180,than:[27,28,29,30,31,32,35,36,37,39,40,83,86,120,136,137,144,146,152,173,174,175,176,178,179,180,183,184,186,187,188,260,268,327,342,349,352,354,355,356,359,362,363,364,367,368,373,375,376,379,408,411,412,413,416,417,428,429,432,437,438,439,446,448,450,453,475,492,496,497,538,540],thank:[373,394,395,400,402,448,479],thaw:451,thei:[28,29,30,31,32,35,36,37,39,40,83,86,90,102,105,118,122,149,251,267,298,349,350,352,354,355,356,357,358,360,363,365,366,368,369,372,373,374,375,376,377,379,386,397,400,402,414,417,418,422,443,445,446,450,451,452,453,455,458,467,476,477,479,484,491,492,536,537,538,539,540,542],them:[11,15,28,29,30,31,32,35,36,37,39,40,79,83,86,95,194,196,203,225,278,349,350,352,354,356,357,363,365,368,375,376,378,379,385,392,408,417,418,420,423,425,428,429,431,433,438,444,445,446,449,450,452,455,457,460,464,476,479,488,538,540],theme:[402,409],themselv:[83,86,365,448,450,486],theorem:[260,477,540],therefor:[99,355,359,362,363,364,368,370,372,400,417,438,441,446,449,450,453,465,477,540,541],thereof:360,thermal:[19,514,537],thermal_relic_cross_sect:19,theta2:[162,172,347,408],theta2_axi:458,theta2_max:347,theta2_min:347,theta2_t:458,theta:[33,34,38,52,53,136,142,144,146,150,158,172,181,279,282,349,397,422,456,465,495,496,500,501],theta_0:[33,38],theta_squared_axi:[172,458],thew:444,thi:[6,15,16,19,20,26,27,28,29,30,31,32,35,36,37,39,40,46,47,56,65,66,67,78,79,80,81,82,83,84,86,95,97,98,99,102,103,104,106,107,111,112,113,114,115,117,118,120,121,122,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,150,152,155,158,159,161,163,165,166,169,171,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,192,193,195,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,255,260,262,263,269,278,286,296,299,302,307,308,324,327,334,336,338,339,340,344,346,348,349,350,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,384,385,387,389,390,391,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,411,412,413,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,467,468,475,476,477,479,481,482,483,484,485,486,488,489,490,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,536,537,538,539,540,541,542],thick:346,thin:[56,290],thing:[349,352,354,357,363,364,365,366,369,373,379,388,407,422,425,440,441,450,456],think:[354,366,367,369,384],third:[61,62,83,86,350,400,444,446,449,460,465,474],thoma:[375,408],thorough:[449,467],those:[15,79,161,175,176,178,184,187,188,192,194,196,203,225,286,338,349,352,354,356,358,363,365,368,369,370,371,372,374,379,381,383,394,397,438,446,449,450,451,453,460,465,477,479,488,542],though:[15,352,357,363,364,365,367,369,421,452,463],thought:[354,363],three:[83,86,143,349,358,361,363,375,430,432,437,438,449,460,484,491,537],threshold:[65,97,103,107,112,113,121,126,127,132,133,137,150,161,185,260,338,339,340,363,390,396,397,416,420,422,424,430,434,438,444,445,446,448,450,455,463,475,477],threshold_alpha:150,through:[41,83,86,277,278,346,352,354,362,363,369,373,374,386,400,411,433,437,446,448,449,450,451,456,457,479,484,491,537,540],throughout:[13,356,358,359,363,365,407,444],throught:434,thrown:452,thu:[349,356,363,366,367,369,404,416,425,426,430,432,535,541],thumbnail:400,ti:[28,29,30,31,32,35,36,37,39,40,176,358,440],tibaldo:405,tick:[413,414],tick_param:416,ticker:338,tight_layout:[446,497,501],tightli:368,tikonov:377,tild:[174,186],tile:[174,176],tilt:[231,250,360,371,372,377,389,395,425,428,429,432,433,436,445,452,456,463,464,486,492,498,518,523],tilt_prior:377,time:[6,19,20,50,51,52,53,74,78,79,81,82,83,84,85,86,87,89,95,96,97,98,99,102,103,104,112,113,118,121,122,151,157,168,170,175,176,177,178,184,185,187,188,192,193,195,202,205,210,214,216,217,218,233,239,240,251,254,267,308,326,330,331,332,333,349,350,352,354,355,356,357,359,362,363,365,366,367,368,369,370,372,373,374,375,378,379,381,385,389,390,393,394,395,397,400,404,406,407,408,409,410,411,413,414,420,422,423,424,426,428,430,431,433,434,438,441,443,444,445,446,448,449,450,452,453,455,456,457,463,464,465,471,472,473,475,476,477,479,484,487,492,496,497,504,525,526,527,528,529,530,531,532,533,535,537,538,539,540,541],time_axi:[175,176,178,184,187,188,433,449,492],time_bin:364,time_bin_end:364,time_bin_s:364,time_bin_start:364,time_bound:185,time_box:86,time_column:373,time_delta:[82,185,330,333],time_edg:[185,449],time_filt:85,time_format:[113,185,414,440],time_interv:[16,79,82,84,87,118,421,425,426,428,433,438,439,463],time_map_axi:449,time_map_axis_contigu:449,time_max:[95,112,113,185,363,364,365,433,438,444,449],time_mid:[185,437],time_min:[95,112,113,185,363,364,365,433,438,444,449],time_rang:[86,202,210,214,216,217,218,233,239,251,254,433,525,526,527,528,529,530,531,532,533],time_ref:[79,81,82,86,89],time_ref_default:82,time_ref_from_dict:542,time_relative_to_ref:542,time_start:[81,82,86,364],time_step:364,time_stop:[81,82,86,364],time_sum:[82,202,210,214,216,217,218,233,239,251,254],timedelta64:[83,86],timedelta:[83,86,89,185,202,210,214,216,217,218,233,239,251,254,308,330,333,542],timelin:[354,356,408],timemapaxi:[177,400,440],timerangeconfig:16,timeref:432,timescal:[122,210,268,374,437],timeseri:364,timesi:[89,412,414,432],timestamp:349,timeunit:432,tini:[430,455],tip:479,titl:[354,434,443],tiziani:406,tke:456,tm:[83,86],tmax:[364,437],tmid:[84,414,430,448,453,464],tmin:[364,437],to_2d:[130,458],to_3d:[129,413],to_bands_hdu:[173,174,183,186],to_binsz:[174,183,186,400],to_binsz_wc:183,to_contigu:[185,449],to_counts_hdulist:101,to_cub:[173,174,175,176,178,183,184,186,187,188,397,426,492],to_dict:[19,20,26,94,96,97,99,103,104,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,376],to_edisp_kernel:[137,483],to_edisp_kernel_map:[134,400,483],to_energy_dependent_table_psf:408,to_even_npix:186,to_fits_head:81,to_fram:181,to_gti:185,to_hdu:[175,176,187,188],to_hdulist:[97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,175,176,182,183,184,187,188,449],to_head:[80,174,177,179,180,185,186,376],to_html:349,to_imag:[97,99,103,104,132,133,143,145,148,173,174,183,186,371,394,395,416,426,430,445,456,489,492],to_json:[16,80],to_map:[112,113],to_map_dataset:[99,104],to_mask:[97,99,103,104,443],to_model:[56,57,58,59,60,61,62,63,64,65,400,444],to_node_typ:180,to_nsid:[174,176],to_odd_npix:186,to_panda:[83,86],to_parameters_t:[203,225,417,420,421,422,425,428,446,464],to_pixel:[363,420,430,443,448,452,488,495,496,497],to_polygon:363,to_psf3d:[136,144,146],to_python:[16,80],to_region:[199,200,203,204,212,215,225,229,237,238,252,363,394,452,495,496,497],to_region_map_dataset:[97,99,103,104,445],to_region_nd_map:[133,134,140,145,148,176,184,188,397,400,456],to_region_nd_map_histogram:[188,414],to_sed_typ:373,to_sherpa:[394,408,409],to_spectrum:400,to_spectrum_dataset:[95,97,99,103,104,371,393,395,441,445],to_st:414,to_str:[414,416],to_swap:[174,175,176],to_tabl:[96,113,129,130,131,132,135,136,137,139,142,144,146,147,179,180,184,194,196,217,400,418,420,421,430,434,436,438,440,444,452,465,477],to_table_hdu:[79,82,129,130,131,132,135,136,137,139,142,144,146,147,179,180,449],to_table_psf:406,to_template_sky_model:[203,225],to_template_spectral_model:[203,225,372],to_unit:[129,130,131,132,135,136,137,139,142,144,146,147,175,176,178,184,187,188],to_wc:[175,176],to_wcs_geom:[174,183,492],to_wcs_til:[174,176],to_yaml:[16,80,203,225,360,376,452,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],tob:421,todai:375,todo:[13,75,83,86,94,143,253,350,373,391,455,469,470,542],tof:142,togeth:[95,97,99,103,104,114,118,203,225,346,349,362,366,369,381,383,392,426,428,429,434,445,446,448,451,452,453,458,464,475,476,538],tol:446,toler:[82,95,118,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,180,183,184,186,187,188,326,446],tolist:446,toml:397,ton:[268,455],too:[349,354,355,399,400,413,414,446,450],took:374,tool:[6,13,175,176,178,187,188,348,352,356,358,360,362,365,366,369,375,386,394,405,408,409,431,434,440,445,446,449,453,455,456,467,479,512,536,537],toolbox:[365,405],top:[103,104,336,345,349,354,365,369,371,382,408,422,424,430,434,437,438,440,444,448,465,479,492,536,538,542],top_five_ts_3fhl:465,tophat2dkernel:111,topic:[354,358,369,377,465],total:[51,65,94,96,97,99,103,104,114,115,118,119,125,155,170,174,202,210,214,216,217,218,233,239,251,254,275,357,373,377,381,383,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,439,440,441,442,443,444,445,446,448,449,450,451,454,456,459,461,463,464,465,466,469,475,479,484,503,514,524,534,537],total_jfact:443,total_jfact_decai:443,total_model:360,total_obstim:448,total_stat:[446,539],touch:[82,389],tour:460,toward:[296,356,363,369,410],tox:[314,350,352,411,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,510,513,526],tqdm:479,trace:[192,397,446],traceback:[28,29,30,31,32,35,36,37,39,40,349],track:[81,89,349,358,364,375,402,451],tracker:[352,363],tradition:[452,539],train:374,traitlet:[365,376],traittyp:376,transfer:376,transform:[28,29,30,31,32,35,36,37,39,40,79,81,89,143,177,179,180,185,186,203,225,280,284,307,312,349,363,365,373,377,388,390,406,409,424,430,448,491,495,496,542],transit:[27,339,340,356,389,390,408,457],transit_map:457,transit_numb:457,transitsmap_crab:457,translat:[28,29,30,31,32,35,36,37,39,40,365,477],transpar:364,transport:449,transpos:409,trapezoid:[129,130,131,132,135,136,137,139,142,144,146,147,258,289],trapz:289,trapz_loglog:395,trash:391,travi:[394,396,400],treat:[90,381,413,414,420,432,541],treatment:[400,428,537],tree:374,trend:432,tri:[357,363],tributor:375,tricki:363,trigger:[327,349,378,457],trim:[97,99,133,134,140,145,148,151,186,188,250],tripl:136,trivial:356,troubl:538,troubleshoot:[381,382,383],trough:437,truelov:53,truncat:[121,296,400],truncation_valu:[264,270],trust:[16,80],trustworthi:377,ts:[65,107,108,109,111,112,113,114,115,118,119,121,260,262,263,365,369,373,397,401,404,405,406,414,417,420,431,434,441,444,446,477,479,537,538],ts_image_estim:430,ts_scan:[112,113],ts_threshold:260,ts_threshold_ul:[441,477],ts_to_sigma:[431,540],tsimageestim:408,tsmap_est:342,tsmapestim:[108,342,370,373,395,396,398,400,414,424,430,479],tstart:[84,86,362,364,423,432,436,439,440,455],tstop:[84,362,364,423,432,436,439,455],tt:[82,89,331,332,375,433,542],tth_sec3:180,tupl:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,41,56,79,80,83,84,86,96,97,99,103,104,116,121,129,130,132,133,134,135,136,137,140,142,143,144,145,146,148,151,156,173,174,175,176,177,178,179,180,181,182,183,184,186,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,250,253,262,263,266,290,300,307,349,449,491],turn:[79,84,350,352,363,455,535],tutori:[78,94,118,120,160,349,352,353,358,361,362,363,364,365,366,367,370,379,383,384,385,386,389,390,391,392,393,394,395,396,397,399,400,402,403,406,407,408,409,410,411,414,416,417,418,420,421,422,423,425,428,429,430,432,433,434,436,437,438,439,440,441,444,445,446,447,449,451,452,453,456,457,458,463,464,465,479,480,482,491,535,538],tutorials_analysi:[419,427,435,442],tutorials_api:454,tutorials_data:459,tutorials_jupyt:[378,460],tutorials_python:460,tutorials_script:461,tutorials_start:466,tweak:[365,400,449],twice:[111,491,541],twinx:416,two:[19,20,26,28,29,30,31,32,35,36,37,39,40,59,82,83,85,86,96,97,99,103,104,129,130,131,132,135,136,137,138,139,142,144,146,147,151,156,158,174,175,176,177,178,180,183,184,186,187,188,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,308,317,338,343,346,348,349,350,352,356,358,359,360,361,363,364,365,366,367,369,370,373,374,375,377,378,379,402,408,410,414,421,422,428,429,431,434,440,444,445,446,447,449,450,452,453,455,457,463,464,469,475,476,477,479,488,491,492,506,540,541],txt:[113,374,376,451,456],tyler:402,type:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,67,80,83,85,86,94,95,96,97,111,112,113,115,121,149,155,173,174,175,176,178,180,183,184,186,187,188,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,278,308,355,358,359,360,361,363,364,365,368,372,373,375,377,379,380,385,393,400,406,407,408,414,417,418,420,421,422,423,425,426,428,429,430,431,432,433,434,436,438,439,440,444,445,446,447,448,449,450,451,452,453,455,456,457,463,464,465,467,477,479,491,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,537,538],typeerror:[16,80,278,363,373,377],typic:[112,355,358,360,367,371,372,373,374,376,381,382,417,422,426,434,436,438,439,444,445,447,450,452,453,467,474,475,476,484,488,536,537],typing_extens:[16,80],typo:[349,386,412,413],u03c3:431,u18:[33,38],u:[19,20,26,28,29,30,31,32,35,36,37,39,40,64,79,81,83,86,97,99,103,104,107,113,115,117,121,132,134,143,175,176,178,184,187,188,197,198,201,205,207,208,209,213,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,255,256,278,298,344,349,364,372,373,376,377,409,416,417,418,420,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,469,476,477,479,481,486,488,489,492,495,497,498,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532],uc:[83,86],ufunc:[175,176,178,184,187,188,422],ui:[28,30,31,32,33,35,36,37,38,39,40,50,52,53,57,58,60,61,79,84,107,114,135,222,255,256,269],ul:[65,111,112,113,114,115,118,119,121,261,429,434,440,444],ultim:349,un:[361,375,397,451],unambigu:452,unbin:[361,362,409],unboundlocalerror:349,uncertaint:367,uncertainti:[52,97,99,103,104,262,263,353,366,407,418,420,441,446,464,536,537,539],unchang:[97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,183,184,186,187,188,408],unclear:[349,359,360,366,376],uncom:[365,455],undefin:541,under:[70,86,349,353,358,366,375,409,410,421,460,463,475,540,541],underestim:477,underflow:185,underli:[83,86,183,362,418,444,449,465,467,476,479,488,491],underscor:349,understand:[365,386,394,395,417,420,421,422,425,432,433,437,439,440,449,450,451,455,463,464,467,538],undertak:369,unexpect:457,unfold:537,unfreez:[19,20,26,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,514],unfreeze_al:[194,196,451],unfrozen:486,unheard:538,uni:377,unicod:[83,86,349],unid:65,unidimension:179,unif:394,unifi:[83,86,353,358,363,389,392,394,395,396,397,400,409,410,537],uniform:[143,192,307,349,358,360,361,371,373,377,391,392,396,400,417,449,536],uniform_filt:[116,188],uniformli:[362,477],uniformprior:377,uninstal:348,union:[80,82,85,97,99,183,313,363,364,375,376,392,475],uniqu:[83,86,95,132,174,175,176,177,178,184,186,187,188,194,196,203,225,342,359,360,361,362,372,375,395,421,445,452,457,492,535],unique_id:452,unique_paramet:[194,196],uniquifi:[83,86],unit:[6,16,19,20,26,27,28,29,30,31,32,35,36,37,39,40,52,64,79,81,83,84,86,91,96,97,99,101,103,104,107,112,113,115,117,121,129,130,131,132,134,135,136,137,139,142,143,144,145,146,147,155,158,174,175,176,177,178,180,181,183,184,185,186,187,188,193,195,197,198,200,201,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,226,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,250,251,252,253,255,256,277,278,308,320,321,322,324,333,334,335,338,339,340,344,350,358,360,363,365,367,372,373,377,389,390,392,400,402,408,409,411,412,413,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,469,471,472,473,476,477,479,481,483,484,486,488,489,490,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,537],unit_string_format:[414,416],unitbas:278,uniti:[116,177,252,412,497],unitless:[28,29,30,31,32,35,36,37,39,40,211,250],unitsmap:[28,29,30,31,32,35,36,37,39,40],unitswarn:[416,423,425,428,430,436,440,455],univers:[175,176,178,184,187,188,537],univsers:20,unknown:[263,424,446,537,539,540],unless:[88,90,114,115,118,121,151,278,348,355,374,376,447],unlik:[83,86,260,356,367],unmaintain:390,unmask:[83,86],unnam:[83,86,181],unnecessari:[400,411,428],unneed:414,unphys:541,unrealist:349,unrel:542,unreli:455,unsaf:349,unstabl:[349,455],unsupport:366,untar:455,until:[349,352,356,363,374,407],unus:[365,392,394],unusu:354,up:[28,29,30,31,32,35,36,37,39,40,52,56,57,58,59,60,61,62,63,64,65,71,115,117,121,136,142,144,146,183,278,349,350,353,354,356,357,358,361,363,365,366,367,369,371,375,377,379,381,383,384,385,388,390,391,392,393,394,395,396,397,400,404,406,407,408,409,410,420,421,428,431,432,455,456,492,538],upcast:278,upcom:[357,358],updat:[15,16,80,83,86,98,102,182,193,195,203,225,260,298,317,349,352,354,355,356,357,358,361,366,371,373,375,376,378,379,381,382,389,390,391,392,393,394,395,397,399,400,401,402,403,406,407,408,409,411,414,449,452,490,491,542],update_config:15,update_forward_ref:[16,80],update_from_dict:[193,195],update_link_label:[203,225],update_parameters_from_t:[203,225],upgrad:[174,348,374,382],upload:[366,378,455],upon:[97,99,103,104,358,425,451,455,475],upper:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,76,96,111,112,113,114,115,118,119,121,132,180,185,192,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,261,262,263,376,385,396,400,407,408,409,420,434,438,445,448,463,475,477],upper_error:113,upsampl:[145,173,174,175,176,177,178,179,180,183,184,185,186,187,188,391,411],upstream:[349,352],upward:[262,263],url:357,us:[11,13,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,35,36,37,39,40,41,46,47,53,56,57,59,63,67,68,69,71,72,76,78,79,80,81,82,83,84,86,88,89,90,91,96,97,98,99,101,102,103,104,105,106,109,111,112,113,114,115,116,118,119,121,122,123,124,126,127,128,129,130,131,132,133,135,136,137,139,142,143,144,145,146,147,148,150,151,152,155,158,159,160,161,162,163,164,165,166,168,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,256,258,261,264,276,278,286,289,290,291,298,299,302,307,308,314,317,332,333,335,336,338,339,340,342,343,344,345,346,348,350,351,352,354,355,356,357,358,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,378,379,380,381,383,384,386,388,389,390,391,392,393,394,395,396,397,400,401,402,404,405,406,407,408,409,410,411,412,414,416,417,418,420,422,423,424,425,426,428,429,430,433,434,436,437,439,440,441,443,444,448,450,451,452,453,454,455,456,457,458,460,462,465,468,469,479,481,482,483,485,489,490,492,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,510,511,512,513,514,515,516,517,518,519,523,524,525,526,527,528,529,530,531,532,533,536,537,538,539,540,542,543],usabl:349,usag:[16,28,29,30,31,32,35,36,37,39,40,78,80,118,120,160,173,174,183,186,302,355,359,360,362,364,368,373,393,414,444,448,450,451,538],use_cach:226,use_center_as_plot_label:180,use_enum_valu:[16,80],use_evaluation_region:[203,225],use_fft:188,use_local_fil:[83,86],use_nullable_int:[83,86],use_region_cent:[155,162,165,166,168,169,400,417],useless:455,user:[15,19,20,28,29,30,31,32,35,36,37,39,40,78,84,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,349,350,352,354,355,357,358,359,360,361,362,363,364,365,366,367,368,369,371,373,374,375,376,378,379,380,382,386,393,400,401,407,408,409,411,421,431,432,433,445,447,449,450,451,452,453,460,463,476,477,478,479,484,488,499,503,524,534,535,538],userdataset:361,usernam:352,userwarn:[420,422,430,434],uses_quant:[28,29,30,31,32,35,36,37,39,40],usr:538,usual:[29,78,79,112,126,129,130,131,143,184,286,349,350,352,354,355,356,357,363,364,369,375,379,414,416,417,418,420,422,423,425,426,430,432,433,436,437,438,439,440,443,445,450,453,457,464,467,475,479,481,482,483,485,488,492,496,535,537,538,539],ut1:542,utc:[82,84,330,432,438,439,449,452,525,526,527,528,529,530,531,532,533,542],utf8:[16,80],utf:[83,86],util:[6,80,88,113,114,115,121,122,123,124,125,126,127,128,134,151,164,165,166,167,168,169,170,171,172,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,349,358,360,361,362,363,373,388,391,392,393,394,401,402,405,406,407,408,409,410,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,468,479,537],utilis:[79,127,416,420,424,431,437,449,453,476,479],v0:[90,356,357,360,361,363,366,368,369,374,389,390,391,392,393,394,395,396,397,398,399,400,402,403,409,410,411,432,433,447,451],v1:[13,16,79,80,84,349,356,358,360,365,366,367,368,374,375,378,394,395,396,402,407,411,412,413,414,510,513],v2:[375,376,400,408,455],v3:392,v:[26,31,32,37,83,86,182,282,352,364,376,377,378,379,402,416,443],v_0:[37,49],v_glat:285,v_glon:285,v_mdun3v:448,va:495,vagu:354,vain:352,val:[83,86,175,176,178,184,187,188,194,196,449,491],valfmt:338,valid:[16,28,29,30,31,32,35,36,37,39,40,80,83,86,100,112,115,147,161,173,174,175,176,177,178,179,180,181,183,184,186,187,188,278,296,348,349,358,362,365,366,375,394,402,411,417,420,446,448,449,452,456,477,479,484,537],valid_hdu_class:[78,83],valid_hdu_typ:83,validate_al:376,validate_assign:[16,80,376],validate_default:[16,80],validate_loc:376,validate_zenith_angl:376,validationerror:[16,80,376],valle:38,valleespir:469,valu:[11,15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,42,52,79,80,82,83,84,86,87,90,94,95,96,97,99,103,104,105,107,109,111,112,113,114,115,116,118,119,121,126,127,129,130,131,132,133,134,135,136,137,138,139,140,142,144,145,146,147,148,151,155,161,162,164,165,166,168,169,173,174,175,176,177,178,179,180,182,183,184,185,186,187,188,192,193,194,195,196,197,198,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,260,261,262,263,264,266,267,268,278,282,290,291,305,308,317,320,335,338,339,340,350,352,355,360,361,363,365,367,369,372,373,376,391,394,400,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,432,433,434,436,437,438,440,441,443,444,445,446,447,448,450,451,452,453,455,456,457,458,463,464,465,467,471,472,473,477,479,483,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538,539,540,541],value_rang:86,value_scan:261,valueerror:[16,28,29,30,31,32,35,36,37,39,40,70,80,83,86,87,95,203,225,349,363,376],values_equ:[83,86],values_err:441,values_scal:[129,130,131,184,188,217,248,252,253,290,412,414,433],vanilla:[83,86],vari:[66,98,102,118,143,192,290,317,361,363,364,374,394,397,425,430,431,433,442,448,452,456,460,477,484,487,535],variability_amplitud:437,variability_amplitude_100:437,variability_amplitude_error:437,variability_amplitude_signific:437,variability_estim:[437,442],variabl:[11,16,28,29,30,31,32,35,36,37,39,40,78,80,86,122,188,262,263,266,267,268,269,289,315,349,350,352,362,364,365,379,381,383,389,390,406,407,408,414,416,417,420,421,422,423,424,425,426,428,429,430,431,433,434,438,439,440,441,442,443,444,445,446,448,449,450,451,452,455,456,457,458,460,463,464,465,484,538,539,540],varianc:[91,123,124,268,269,277,364,453],variant:379,variat:[122,218,268,355,365,416,437,447,448,489,540],varieti:[360,536],variou:[109,114,115,118,119,121,127,349,355,359,361,364,373,376,379,381,400,401,418,421,424,429,431,438,446,463,475,479,536,542],vast:[366,402],vaughan2003:269,vaughan:[269,437],ve:[349,350,352,538],vector:[173,174,175,176,178,183,184,186,187,188,449,483,491],vega:409,vel:441,vel_di:[45,469],vela:[64,388,418,441,465],veloc:[31,32,37,45,49,282,285],ver:449,verbos:[11,78,350,372,538,540],veri:[62,83,86,126,192,339,348,349,350,351,354,355,360,362,363,364,365,366,367,368,369,372,373,376,379,410,416,423,437,444,446,449,456,465,475,479,492,500,501,535,537,538,539],verifi:[194,196,215,260,349,362,444,479],verifywarn:479,verita:[92,381,386,456],versa:174,version:[11,74,79,81,83,84,86,113,114,115,118,163,193,195,348,350,352,353,356,357,358,359,363,366,369,375,376,377,379,380,381,382,384,386,388,389,390,391,393,394,399,401,402,404,407,408,409,411,412,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,477,538],versu:[129,135,260,262,263,455,473],vert:232,vertex:363,vhe:[417,467],via:[28,29,30,31,32,35,36,37,39,40,65,78,79,86,98,102,176,181,191,348,350,352,357,361,363,364,365,366,367,368,370,372,375,376,377,378,379,381,382,389,397,405,407,408,409,413,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,479,483,488,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,538,542],viabil:376,vice:174,victor:404,view:[79,83,86,129,130,131,132,135,136,137,138,139,142,144,146,147,152,175,176,178,182,184,187,188,211,280,284,336,349,363,390,395,400,402,409,410,420,422,426,428,432,445,447,448,450,455,456,479,481,482,483,484,485,486,488,537],vika:400,viridi:[422,443],virtual:[352,379,381,382,383,538],visibl:[83,86,339,340,357,400,416,432,457,464,465,537],vision:354,visit:433,visual:[6,176,188,336,337,338,339,340,341,342,343,344,345,346,347,363,395,396,414,420,422,426,428,430,433,437,446,447,453,457,458,464,465,479,488,493,495,536],visualis:[346,361,363,370,396,411,422,424,447,452,455,479],vline:[473,495,496],vmax:[97,99,103,104,339,340,425,428,430,436,445,449,450,456,457,463,464,488],vmin:[97,99,103,104,339,340,424,428,436,445,449,450,456,457,463,464,488],volum:[27,179,183,186],vorokh:[405,406],voruganti:[407,408],vs:[136,142,144,145,146,148,157,164,251,260,357,365,438,453,463],vstack:[79,82,362],vuillaum:[375,408],vx:[282,285,374],vy:[282,285],vz:[282,285],w:[26,31,49,82,172,185,275,350,374,424,426,434,443,448,452,479,488,539,541],wa:[16,19,20,28,29,30,31,32,35,36,37,39,40,59,80,81,83,86,88,89,97,107,114,115,118,121,151,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,342,349,352,354,355,356,357,358,359,362,363,365,366,367,368,369,370,372,373,374,375,376,377,379,389,392,393,394,395,396,397,404,408,409,410,411,412,413,414,418,420,426,428,430,448,455,456,457,458,465,538],wagner:437,wai:[33,38,79,83,86,180,302,308,348,349,350,352,354,355,356,357,359,360,361,363,364,365,366,369,370,373,375,381,382,383,385,388,392,408,409,418,420,422,425,428,437,444,445,446,448,449,450,451,453,455,456,457,458,460,469,476,478,479,483,492,536,538,540],wait:[349,378,379],wall:[79,84],want:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,78,79,80,101,132,158,183,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,351,352,354,355,356,359,363,364,365,367,368,369,379,380,381,382,383,384,385,386,389,409,417,420,421,422,423,425,432,433,436,438,440,441,443,444,445,446,448,449,450,451,452,455,456,463,464,465,483,535,538,539,540,541,542],ward:276,warn:[11,16,26,78,80,83,86,176,193,194,195,196,248,249,250,252,335,374,379,391,408,413,414,416,423,424,425,428,430,432,433,436,440,441,455,479,502,510,513,538],warn_miss:83,warn_with_traceback:349,wasn:[356,409],watch:[456,542],water:[381,457],watson:390,wavelength:368,wavelet:[388,406],wc:[13,16,79,97,99,103,115,150,158,159,163,174,175,176,178,183,184,186,187,188,200,203,204,212,215,225,227,237,238,242,248,252,311,344,349,355,363,368,390,391,392,394,400,408,409,413,420,421,424,425,426,428,430,434,438,441,443,445,447,448,450,451,452,456,463,464,465,488,491,495,496,497,502],wcda:[57,68],wcs_geom:[183,203,225,449,492],wcs_geom_3d:449,wcs_geom_cel:449,wcs_map:[187,188,342],wcs_tile:[174,176],wcsax:[97,99,103,104,176,183,184,188,203,225,344,346,428,449,465,494,498,499,500],wcsconfig:16,wcsgeom:[23,79,97,99,103,104,106,111,112,121,134,143,145,155,168,169,173,174,183,187,188,199,200,204,212,215,227,229,237,238,242,248,252,355,363,390,393,394,395,400,413,420,425,430,432,433,434,436,441,443,445,447,448,449,450,452,456,457,458,464,465,475,477,486,488,489,492,494,496,497,498,499],wcslib:349,wcsmap:[175,176,178,188,411],wcsndmap:[97,99,107,121,126,143,145,148,150,152,157,158,159,160,163,168,169,174,175,176,178,184,186,187,189,190,203,225,240,248,336,342,344,355,393,394,395,397,400,402,409,411,414,424,425,434,443,445,448,449,450,456,465,475,477,485,488],wcsprm:502,wcsshape:449,we:[13,19,20,28,29,30,31,32,35,36,37,39,40,63,79,83,84,85,86,90,157,183,186,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,256,324,349,350,352,354,355,356,358,359,360,361,362,363,366,367,368,369,370,371,372,375,376,378,379,380,381,382,383,385,388,389,390,391,396,400,402,407,408,409,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,462,463,464,465,476,483,484,486,488,491,501,504,514,535,538,539,540,541,542],weak:368,weaker:260,weakli:450,web:[83,86,357,375,378,379,385,386,400,408,444],webpag:[351,357,369,375,378,408,411],wedg:363,week:[352,357,367,369,374,378],weekli:[355,358,362,363,438],wegen:[408,409],weigh:[145,148],weight:[65,133,134,140,143,145,148,174,175,176,178,183,184,186,187,188,250,377,410,414,431,437,475,491],weighted_chi2_paramet:431,weighted_kernel:143,welcom:[354,363,456],well:[11,19,20,28,29,30,31,32,35,36,37,39,40,56,65,79,83,86,99,104,111,112,119,174,178,180,184,186,193,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,339,340,348,349,350,351,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,378,379,380,381,382,385,386,389,391,392,393,394,395,396,397,400,402,403,408,409,410,414,417,423,426,431,433,438,440,445,446,447,448,449,450,452,455,456,460,463,464,465,475,476,477,488,491,492,535,536,538,540],went:389,were:[16,28,29,30,31,32,35,36,37,39,40,80,122,267,349,354,355,356,357,362,364,365,366,367,368,369,370,372,374,377,379,389,392,393,394,395,396,397,400,403,408,409,412,429,441,450,455,541],what:[13,28,29,30,31,32,35,36,37,39,40,46,256,308,350,355,363,366,368,369,376,379,387,434,443,444,446,455,456,460,464,467,475,492,523,538,539,542],whatev:[363,365,366,538],whatsnew:378,wheel:366,when:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,52,53,79,80,82,83,84,85,86,95,96,97,98,99,101,102,103,104,111,112,125,133,134,140,145,147,148,158,161,175,176,178,180,182,184,187,188,192,197,198,201,205,207,208,209,213,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,252,253,290,348,349,350,352,354,355,356,359,361,363,364,366,369,374,375,376,377,382,394,402,403,408,410,413,414,422,426,430,433,434,438,439,441,444,446,448,449,452,453,455,456,475,477,479,484,486,490,491,537,539,540,541,542],whenev:[83,86],where:[11,16,19,20,26,28,29,30,31,32,35,36,37,39,40,52,79,80,83,84,86,112,113,116,121,132,133,134,140,145,148,150,161,173,174,175,176,178,180,183,184,186,187,188,189,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,264,267,270,271,278,314,350,352,354,356,357,358,359,360,361,362,363,365,367,368,369,370,371,372,373,376,377,379,381,383,385,391,403,409,416,420,425,432,433,444,448,449,450,452,455,456,457,465,467,475,476,479,484,491,495,496,497,500,501,504,537,538,539,540,541,542],wherea:[355,363,366,538],whether:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,79,80,82,83,84,86,95,97,99,101,103,104,112,113,114,121,129,130,131,132,135,136,137,139,142,144,146,147,161,173,174,175,176,177,178,179,180,183,184,185,186,187,188,192,193,197,198,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,250,251,252,253,278,287,318,346,354,356,363,366,368,369,376,414,423,436,448,449,465,491,539,540],which:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,41,43,56,57,59,65,68,70,76,79,80,81,82,83,84,85,86,88,89,90,91,95,96,97,99,101,103,104,107,109,111,112,113,114,115,117,118,119,120,121,122,129,130,131,132,135,136,137,139,142,143,144,145,146,147,148,150,151,155,156,161,162,172,174,175,176,178,179,180,183,184,187,188,192,197,198,199,200,201,203,204,205,207,208,209,212,213,215,219,220,222,225,226,227,228,229,230,231,232,236,237,238,240,241,242,243,244,245,246,248,249,250,252,253,256,260,262,263,267,268,269,276,290,300,310,311,327,336,338,343,345,348,350,352,354,355,356,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,377,379,380,384,386,390,391,392,394,395,396,397,400,403,409,411,414,416,417,420,423,424,425,426,428,431,432,433,434,437,438,440,441,444,445,446,448,449,450,451,452,453,455,456,457,458,463,464,465,469,470,475,476,477,479,481,482,483,485,486,488,490,491,492,493,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,535,536,537,538,539,540,541],whichev:[174,175,176],whilst:[350,453,460],whippl:92,whirlwind:460,white:[268,338,339,430,441,446,451,467,492],whitespac:296,who:[375,443,467],whole:[90,107,152,155,162,165,166,168,169,174,175,176,178,187,188,226,255,262,263,349,355,361,364,375,417,420,428,433,438,441,445,452,456,458,535],whose:[375,379,433,485,496],why:[349,350,354,356,363,446,492],wide:[356,375,376,390,409,418,429,537],wider:[439,450],widget:[175,176,178,184,187,188,428,436,449,463,464],width:[16,27,66,79,83,86,97,99,103,104,105,107,116,121,132,133,134,137,140,143,145,148,150,155,160,174,175,176,177,178,179,180,183,184,185,186,187,188,200,203,204,212,214,215,225,227,237,238,240,242,248,250,252,339,340,365,372,410,421,422,425,426,428,430,431,432,433,434,436,438,441,443,444,445,447,448,449,450,452,456,457,463,464,465,486,488,489,490,491,492,495,496,497,499,500,501],width_err:444,width_error:66,width_min:183,width_pix:[174,175,176],widthconfig:16,wiki:[34,79,84,400,455],wikipedia:[34,79,84,307,363,367],wilk:[260,477,540],willing:352,wind:[50,426,431,452,470],window:[105,348,349,356,366,379,381,383,389,405,409,424,444,537,538,540],wise:[19,20,26,83,86,126,127,176,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,377,402,426,428,475],wish:[183,352,367,431,446],with_bbox:[28,29,30,31,32,35,36,37,39,40],with_bounding_box:[28,29,30,31,32,35,36,37,39,40],with_units_from_data:[28,29,30,31,32,35,36,37,39,40],withdraw:[359,360,361,364,371,373],withdrawn:[353,354,359,360,361,364,371,373],within:[114,117,126,174,188,202,203,204,210,214,215,216,217,218,225,233,237,239,240,251,254,348,349,350,354,358,363,365,366,367,368,369,372,374,375,377,379,380,381,383,403,406,408,412,414,421,422,428,431,438,439,440,444,448,449,452,453,456,460,465,475,478,479,537],without:[13,28,29,30,31,32,35,36,37,39,40,118,135,173,174,179,183,186,346,349,352,354,357,359,363,364,365,366,368,373,379,390,391,395,421,424,428,429,443,448,449,450,463,479,490,491,492,533,538,540],without_units_for_data:[28,29,30,31,32,35,36,37,39,40],wl:[26,443],wo:441,wobbl:[90,440,455],wobbleregionfind:402,wobbleregionsfind:422,wolfram:[305,306],women:405,won:[83,86,107,111,114,118,121,321,374,428,449,455,541],wong:392,wood:[356,406,408,409],word:[28,29,30,31,32,35,36,37,39,40,479],work:[11,13,16,28,29,30,31,32,35,36,37,39,40,83,86,95,185,314,348,349,350,352,354,356,357,358,359,360,361,363,364,365,366,367,368,369,371,374,375,378,379,380,381,382,384,385,386,388,389,390,391,392,394,395,401,404,405,406,407,408,409,410,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,475,479,489,491,502,504,510,513,526,532,533,538],workaround:366,workflow:[352,357,358,365,370,374,379,394,421,426,460,463,464,480],workshop:358,workspac:352,world:[79,186,203,225,349,355,430,465,491],worst:352,worth:[349,467],would:[16,80,83,86,90,175,176,178,184,187,188,349,352,355,356,357,360,361,363,364,365,366,367,368,369,370,373,375,376,391,400,418,420,423,424,436,446,449,450,452,456,492],wouldn:363,wp:[378,455],wrap:[28,29,30,31,32,35,36,37,39,40,236,286,363,393],wrap_at:360,wrapper:[56,226,236,290,363,364,391,394,467,479],write:[11,15,16,26,78,79,82,83,84,86,95,96,97,99,101,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,175,176,178,182,184,187,188,203,217,225,248,249,250,251,252,318,327,350,352,358,359,360,361,362,363,365,366,368,369,371,372,373,375,376,377,379,385,388,394,397,402,404,407,408,409,410,416,420,428,429,432,434,447,451,452,455,456,462,463,464,479,484,539,541],write_arf:101,write_bkg:101,write_covari:[15,95,203,225],write_dataset:15,write_ds9:452,write_model:15,write_pha:101,write_rmf:101,writeabl:377,writer:[83,86,369,376],writeto:[82,129,130,131,135,136,137,139,142,144,146,147,432],written:[79,84,95,96,97,99,101,103,104,133,134,140,145,148,175,176,178,182,184,187,188,190,349,350,352,354,358,359,369,375,377,412,416,433,451,467,475,476,479,492,537,542],wrong:[349,398,412,413,414],wrote:375,wrt:[79,145,148,349,367,440,533],wstat:[99,104,272,273,361,388,406,407,420,421,423,426,430,441,445,475,537],wstatcountsstatist:[441,540],wt:[26,443],wun:392,www:[26,65,83,86,369,455],wyatt:[388,537],x27:447,x86_64:[416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],x:[19,20,28,29,30,31,32,33,34,35,36,37,38,39,40,41,46,65,66,83,86,97,103,116,126,130,180,184,185,192,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,268,269,271,281,282,283,285,289,291,296,305,338,341,342,349,350,354,356,357,358,363,374,378,381,383,418,423,424,430,433,437,441,444,446,447,449,456,465,473,479,495,496,538,540],x_0:[175,176,178,184,187,188],x_1:290,x_2:290,x_3:290,x_:116,x_bkg:441,x_edg:117,x_high:[28,29,30,31,32,35,36,37,39,40],x_i:[175,176,178,184,187,188],x_j:116,x_low:[28,29,30,31,32,35,36,37,39,40],x_max:[116,303,305,434],x_min:[116,303,305,434],x_n:[175,176,178,184,187,188],x_r_0:215,x_ref:[116,434],x_sigma:212,x_stddev:[28,29,30,31,32,35,36,37,39,40],x_valu:[192,446],xarg:349,xaxi:479,xerr:[416,437],xf:455,xfail:349,xlabel:[64,65,350,414,426,440,446,456,471,472,473,495,532],xlim:[336,428,456,473],xmax:[17,18,21,22,24,25,27,184,377],xmin:[17,18,21,22,24,25,27,184,377],xml:[358,359,360,393,407,409,455,467],xmltodict:[401,455],xref:116,xspec:[205,253,275,407,539],xunit:[422,504],xviii:369,xx:[360,375],xxx:[83,86,354,375],xxx_by_coord:449,xxxx:479,xy:[420,430,434,495],xy_posit:[33,34,38],xytext:495,xyz:378,y:[19,20,26,28,29,30,31,32,33,34,35,36,37,38,39,40,41,46,66,83,86,126,130,180,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,281,282,283,285,289,291,341,349,363,374,381,383,414,416,424,430,433,446,473,479],y_high:[28,29,30,31,32,35,36,37,39,40],y_low:[28,29,30,31,32,35,36,37,39,40],y_stddev:[28,29,30,31,32,35,36,37,39,40],y_valu:[192,446],yaml:[11,15,16,20,26,80,94,95,96,97,99,103,104,112,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,316,318,348,357,358,360,361,362,365,366,371,376,377,379,380,392,393,394,397,402,411,416,417,420,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,464,465,478,535,536,537,538],yaml_str:[203,225,421],yaxi:[418,479],ye:379,year:[45,60,63,74,349,354,356,357,359,366,369,370,374,376,379,406,408,409,429,431,444,455,471,472,473,474],yearli:[382,407],yellow:339,yerr:441,yet:[85,348,349,352,354,356,363,366,369,370,415,418,421,463,542],ygrm3jyj:448,yield:[28,29,30,31,32,35,36,37,39,40,78,79,84,87,175,176,178,184,187,188,314,356,362,363,368,370,372,377,450,539,540,541],yk04:[45,48],yk04b:48,ylabel:[64,65,350,440,446,456,471,472,473,495,532],ylim:[336,426,437,456,471,473,511,520,521,522],ymax:[495,496],ymin:[495,496],yml:[352,366,378,379,381,383,408],you:[16,19,20,26,65,78,79,80,83,86,89,96,101,113,126,130,132,135,158,175,176,178,184,187,188,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,255,260,348,349,350,351,352,354,356,359,363,366,367,378,379,380,381,382,383,384,385,386,389,390,391,400,408,409,410,417,418,420,421,422,423,425,426,428,430,432,433,436,439,440,441,444,445,446,448,449,450,451,452,455,456,457,458,460,463,464,465,475,476,479,482,490,512,535,538,539,540,541,542],your:[16,19,20,26,80,94,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,348,349,350,352,354,356,379,380,381,382,383,385,386,389,390,391,394,395,400,409,410,416,417,418,420,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,474,479,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,537,540],yourself:[538,539],yr:[45,52,53,469,471,472,473],yscale:[426,530],yt:349,yu:392,yunit:[420,422,443,444,456,515],yusifovkucuk2004:[28,29,30,35,36,40,48],yusifovkucuk2004b:[28,29,30,35,36,39,48],yve:408,yy:375,yyyi:375,z:[19,20,26,28,29,30,31,32,35,36,37,39,40,41,46,83,86,281,282,285,374,375,381,383,443,469,504],z_0:29,z_high:[28,29,30,31,32,35,36,37,39,40],z_low:[28,29,30,31,32,35,36,37,39,40],zabalza:404,zanin:[408,409],zd:79,zen:453,zen_pnt:453,zenith:[416,429,453,455,456,457,484],zenith_angl:[79,376,456,465],zenodo:[375,402],zero:[52,53,65,83,86,95,97,99,103,104,121,126,132,133,134,137,140,145,161,175,176,178,184,187,188,229,250,252,253,290,296,308,349,393,396,411,444,448,449,541],zhao:27,zip:[364,377,378,420,437,439,443,446,451,460,473,493,497,501,514],zl:[26,443],zone:441,zsh:350,zt:[26,443]},titles:["analysis - High level interface","astro - Astrophysics","catalog - Source catalogs","data - DL3 data and observations","datasets - Reduced datasets","estimators - High level estimators","API reference","irf - Instrument response functions","makers - Data reduction","maps - Sky maps","modeling - Models and fitting","scripts - Command line tools","stats - Statistics","utils - Utilities","visualization - Plotting features","Analysis","AnalysisConfig","BurkertProfile","DMProfile","DarkMatterAnnihilationSpectralModel","DarkMatterDecaySpectralModel","EinastoProfile","IsothermalProfile","JFactory","MooreProfile","NFWProfile","PrimaryFlux","ZhaoProfile","CaseBattacharya1998","Exponential","FaucherKaspi2006","FaucherKaspi2006VelocityBimodal","FaucherKaspi2006VelocityMaxwellian","FaucherSpiral","LogSpiral","Lorimer2006","Paczynski1990","Paczynski1990Velocity","ValleeSpiral","YusifovKucuk2004","YusifovKucuk2004B","add_observed_parameters","add_pulsar_parameters","add_pwn_parameters","add_snr_parameters","make_base_catalog_galactic","make_catalog_random_positions_cube","make_catalog_random_positions_sphere","radial_distributions","velocity_distributions","PWN","Pulsar","SNR","SNRTrueloveMcKee","SimplePulsar","CATALOG_REGISTRY","SourceCatalog","SourceCatalog1LHAASO","SourceCatalog2FHL","SourceCatalog2HWC","SourceCatalog3FGL","SourceCatalog3FHL","SourceCatalog3HWC","SourceCatalog4FGL","SourceCatalogGammaCat","SourceCatalogHGPS","SourceCatalogLargeScaleHGPS","SourceCatalogObject","SourceCatalogObject1LHAASO","SourceCatalogObject2FHL","SourceCatalogObject2HWC","SourceCatalogObject3FGL","SourceCatalogObject3FHL","SourceCatalogObject3HWC","SourceCatalogObject4FGL","SourceCatalogObjectGammaCat","SourceCatalogObjectHGPS","SourceCatalogObjectHGPSComponent","DataStore","EventList","EventListMetaData","FixedPointingInfo","GTI","HDUIndexTable","Observation","ObservationFilter","ObservationTable","Observations","ObservationsEventsSampler","PointingInfo","PointingMode","get_irfs_features","observatory_locations","DATASET_REGISTRY","Dataset","Datasets","FluxPointsDataset","MapDataset","MapDatasetEventSampler","MapDatasetOnOff","OGIPDatasetReader","OGIPDatasetWriter","ObservationEventSampler","SpectrumDataset","SpectrumDatasetOnOff","create_map_dataset_from_observation","create_map_dataset_geoms","ASmoothMapEstimator","ESTIMATOR_REGISTRY","EnergyDependentMorphologyEstimator","Estimator","ExcessMapEstimator","FluxMaps","FluxPoints","FluxPointsEstimator","FluxProfileEstimator","ImageProfile","ImageProfileEstimator","LightCurveEstimator","ParameterEstimator","SensitivityEstimator","TSMapEstimator","compute_lightcurve_doublingtime","compute_lightcurve_fpp","compute_lightcurve_fvar","estimate_exposure_reco_energy","find_peaks","find_peaks_in_flux_map","resample_energy_edges","Background2D","Background3D","BackgroundIRF","EDispKernel","EDispKernelMap","EDispMap","EffectiveAreaTable2D","EnergyDependentMultiGaussPSF","EnergyDispersion2D","FoVAlignment","IRF","IRFMap","IRF_REGISTRY","PSF3D","PSFKernel","PSFKing","PSFMap","ParametricPSF","RadMax2D","RecoPSFMap","load_irf_dict_from_file","AdaptiveRingBackgroundMaker","DatasetsMaker","FoVBackgroundMaker","MAKER_REGISTRY","Maker","MapDatasetMaker","PhaseBackgroundMaker","ReflectedRegionsBackgroundMaker","ReflectedRegionsFinder","RegionsFinder","RingBackgroundMaker","SafeMaskMaker","SpectrumDatasetMaker","WobbleRegionsFinder","make_counts_rad_max","make_edisp_kernel_map","make_edisp_map","make_effective_livetime_map","make_map_background_irf","make_map_exposure_true_energy","make_observation_time_map","make_psf_map","make_theta_squared_table","Geom","HpxGeom","HpxMap","HpxNDMap","LabelMapAxis","Map","MapAxes","MapAxis","MapCoord","Maps","RegionGeom","RegionNDMap","TimeMapAxis","WcsGeom","WcsMap","WcsNDMap","containment_radius","containment_region","Covariance","Fit","Parameter","Parameters","PriorParameter","PriorParameters","BrokenPowerLawSpectralModel","CompoundSpectralModel","ConstantFluxSpatialModel","ConstantSpatialModel","ConstantSpectralModel","ConstantTemporalModel","DatasetModels","DiskSpatialModel","EBLAbsorptionNormSpectralModel","EBL_DATA_BUILTIN","ExpCutoffPowerLaw3FGLSpectralModel","ExpCutoffPowerLawNormSpectralModel","ExpCutoffPowerLawSpectralModel","ExpDecayTemporalModel","FoVBackgroundModel","GaussianSpatialModel","GaussianSpectralModel","GaussianTemporalModel","GeneralizedGaussianSpatialModel","GeneralizedGaussianTemporalModel","LightCurveTemplateTemporalModel","LinearTemporalModel","LogParabolaNormSpectralModel","LogParabolaSpectralModel","MODEL_REGISTRY","MeyerCrabSpectralModel","Model","ModelBase","Models","NaimaSpectralModel","PiecewiseNormSpatialModel","PiecewiseNormSpectralModel","PointSpatialModel","PowerLaw2SpectralModel","PowerLawNormSpectralModel","PowerLawSpectralModel","PowerLawTemporalModel","SPATIAL_MODEL_REGISTRY","SPECTRAL_MODEL_REGISTRY","ScaleSpectralModel","Shell2SpatialModel","ShellSpatialModel","SineTemporalModel","SkyModel","SmoothBrokenPowerLawSpectralModel","SpatialModel","SpectralModel","SuperExpCutoffPowerLaw3FGLSpectralModel","SuperExpCutoffPowerLaw4FGLDR3SpectralModel","SuperExpCutoffPowerLaw4FGLSpectralModel","TEMPORAL_MODEL_REGISTRY","TemplateNDSpatialModel","TemplateNDSpectralModel","TemplateNPredModel","TemplatePhaseCurveTemporalModel","TemplateSpatialModel","TemplateSpectralModel","TemporalModel","create_cosmic_ray_spectral_model","create_crab_spectral_model","create_fermi_isotropic_diffuse_model","integrate_spectrum","scale_plot_flux","select_nested_models","stat_profile_ul_scipy","CashCountsStatistic","WStatCountsStatistic","cash","cash_sum_cython","compute_chisq","compute_flux_doubling","compute_fpp","compute_fvar","cstat","f_cash_root_cython","get_wstat_gof_terms","get_wstat_mu_bkg","norm_bounds_cython","wstat","hierarchical_clustering","standard_scaler","D_SUN_TO_GALACTIC_CENTER","cartesian","fov_to_sky","galactic","motion_since_birth","polar","sky_to_fov","velocity_glon_glat","HDULocation","LazyFitsData","earth_location_from_dict","trapz_loglog","ScaledRegularGridInterpolator","interpolate_profile","interpolation_scale","BACKEND_DEFAULT","METHOD_DEFAULT","METHOD_KWARGS_DEFAULT","N_JOBS_DEFAULT","POOL_KWARGS_DEFAULT","multiprocessing_manager","run_multiprocessing","InverseCDFSampler","draw","get_random_state","normalize","pdf","sample_powerlaw","sample_sphere","sample_sphere_distance","sample_times","compound_region_to_regions","make_concentric_annulus_sky_regions","make_orthogonal_rectangle_sky_regions","region_to_frame","regions_to_compound_region","get_images_paths","make_path","read_yaml","recursive_merge_dicts","write_yaml","hstack_columns","table_row_to_dict","table_standardise_units_copy","table_standardise_units_inplace","Checker","assert_quantity_allclose","assert_skycoord_allclose","assert_time_allclose","mpl_plot_check","requires_data","requires_dependency","absolute_time","time_ref_from_dict","time_ref_to_dict","time_relative_to_ref","standardise_unit","unit_from_fits_image_hdu","MapPanelPlotter","add_colorbar","annotate_heatmap","colormap_hess","colormap_milagro","plot_contour_line","plot_distribution","plot_heatmap","plot_map_rgb","plot_npred_signal","plot_spectrum_datasets_off_regions","plot_theta_squared_table","Dependencies","Developer How To","Documentation How To","Developer guide","How to contribute to Gammapy","PIGs","PIG 1 - PIG purpose and guidelines","PIG 2 - Organization of low level analysis code","PIG 3 - Plan for dropping Python 2.7 support","PIG 4 - Setup for tutorial notebooks and data","PIG 5 - Gammapy 1.0 roadmap","PIG 6 - CTA observation handling","PIG 7 - Models","PIG 8 - Datasets","PIG 9 - Event sampling","PIG 10 - Regions","PIG 11 - Light curves","PIG 12 - High level interface","PIG 13 - Gammapy dependencies and distribution","PIG 14 - Uncertainty estimation","PIG 16 - Gammapy package structure","PIG 18 - Documentation","PIG 19 - Gammapy package structure follow up","PIG 20 - Global Model API","PIG 21 - Models improvements","PIG 22 - Unified flux estimators API","PIG 23 - Gammapy release cycle and version numbering","PIG 24 - Authorship policy","PIG 25 - Metadata container for Gammapy","PIG 26 - Model Priors API","How to make a Gammapy release","Project setup","Virtual Environments","Getting started","Installation","Quickstart Setup","Troubleshooting","Using Gammapy","Gammapy","Release notes","0.1 (Aug 25, 2014)","0.10 (Jan 28, 2019)","0.11 (Mar 29, 2019)","0.12 (May 30, 2019)","0.13 (Jul 26, 2019)","0.14 (Sep 30, 2019)","0.15 (Dec 3, 2019)","0.16 (Feb 1, 2020)","0.17 (Apr 1, 2020)","0.18 (Nov 4th, 2020)","0.18.1 (Nov 6th, 2020)","0.18.2 (Nov 19th, 2020)","0.19 (Nov 22nd, 2021)","0.2 (Apr 13, 2015)","0.20 (May 12th, 2022)","0.20.1 (June 16th, 2022)","0.3 (Aug 13, 2015)","0.4 (Apr 20, 2016)","0.5 (Nov 22, 2016)","0.6 (Apr 28, 2017)","0.7 (Feb 28, 2018)","0.8 (Sep 23, 2018)","0.9 (Nov 29, 2018)","1.0 (November 10th, 2022)","1.0.1 (March 14th, 2023)","1.0.2 (December 6th, 2023)","1.1 (June 13th 2023)","1.2 (unreleased)","Point source sensitivity","Spectral analysis of extended sources","Flux point fitting","Computation times","Spectral analysis","Spectral analysis with the HLI","Spectral analysis with energy-dependent directional cuts","1D spectrum simulation","Source detection and significance maps","2D map fitting","Ring background map","Computation times","3D detailed analysis","Multi instrument joint 3D and 1D analysis","Basic image exploration and fitting","Morphological energy dependence estimation","Event sampling","Sample a source with energy-dependent temporal evolution","Flux Profile Estimation","Computation times","3D map simulation","Estimation of time variability in a lightcurve","Light curves","Light curves for flares","Simulating and fitting a time varying source","Pulsar analysis","Computation times","Dark matter spatial and spectral models","Source catalogs","Datasets - Reduced data, IRFs, models","Fitting","Using Gammapy IRFs","Makers - Data reduction","Maps","Mask maps","Modelling","Models","Observational clustering","Computation times","CTA with Gammapy","Fermi-LAT with Gammapy","HAWC with Gammapy","H.E.S.S. with Gammapy","Computation times","Tutorials","Computation times","Survey Map Script","High level interface","Low level API","Data structures","Computation times","Dark matter","Astrophysics","Astrophysical source population models","Astrophysical source models","Pulsar Source Models","Pulsar Wind Nebula Source Models","Supernova Remnant Models","Source catalogs","Datasets (DL4)","Data access and selection (DL3)","Estimators (DL4 to DL5, and DL6)","High Level Analysis Interface","How To","User guide","Effective area","Background","Energy Dispersion","Instrument Response Functions (DL3)","Point Spread Function","FoV background","Data reduction (DL3 to DL4)","Reflected regions background","Ring background","HEALPix-based maps","Sky maps (DL4)","RegionGeom and RegionNDMap","Model gallery","Constant spatial model","Disk spatial model","Gaussian spatial model","Generalized gaussian spatial model","Piecewise norm spatial model","Point spatial model","Shell spatial model","Shell2 spatial model","Template spatial model","Computation times","EBL absorption spectral model","Broken power law spectral model","Compound spectral model","Constant spectral model","Exponential cutoff power law spectral model","Exponential cutoff power law spectral model used for 3FGL","Exponential cutoff power law norm spectral model","Gaussian spectral model","Log parabola spectral model","Log parabola spectral norm model","Naima spectral model","Piecewise norm spectral model","Power law spectral model","Power law 2 spectral model","Power law norm spectral model","Smooth broken power law spectral model","Super exponential cutoff power law model used for 3FGL","Super Exponential Cutoff Power Law Model used for 4FGL-DR3","Super Exponential Cutoff Power Law Model used for 4FGL-DR1 (and DR2)","Template spectral model","Computation times","Constant temporal model","ExpDecay temporal model","Gaussian temporal model","Generalized Gaussian temporal model","Linear temporal model","PowerLaw temporal model","Sine temporal model","Phase curve temporal model","Light curve temporal model","Computation times","Modeling and Fitting (DL4 to DL5)","Gammapy analysis workflow and package structure","Glossary and references","Command line tools","Fit statistics","Statistical utility functions","Derivation of the WStat formula","Utility functions","Visualization"],titleterms:{"0":[358,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413],"1":[354,358,377,387,388,395,396,398,403,411,412,413,414,415],"10":[363,387,389],"10th":411,"11":[364,387,390],"12":[365,387,391],"12th":402,"13":[366,387,392,401,404],"13th":414,"14":[367,387,393],"14th":412,"15":[387,394],"16":[368,387,395],"16th":403,"17":[387,396],"18":[369,387,397,398,399],"19":[370,387,400],"19th":399,"1d":[421,423,429,438,439,460],"1dc":455,"2":[355,356,377,387,399,401,413,415,517],"20":[371,387,402,403,405],"2014":388,"2015":[401,404],"2016":[405,406],"2017":407,"2018":[408,409,410],"2019":[389,390,391,392,393,394],"2020":[395,396,397,398,399],"2021":400,"2022":[402,403,411],"2023":[412,413,414],"21":372,"22":[373,406],"22nd":400,"23":[374,409],"24":375,"25":[376,388],"26":[377,392],"28":[389,407,408],"29":[390,410],"2d":[425,460],"3":[356,377,387,394,404],"30":[391,393],"32":349,"3955":377,"3d":[428,429,436,438,460],"3fgl":[509,520],"3fhl":429,"4":[357,387,405],"4122":377,"4fgl":[521,522],"4th":397,"5":[358,387,406],"6":[359,387,407],"64":349,"6th":[398,413],"7":[356,360,387,408],"8":[361,387,409],"9":[362,387,410],"abstract":[354,355,356,357,358,359,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377],"break":349,"case":[355,359,377,541],"class":[0,1,2,3,4,5,7,8,9,10,12,13,14,349,350,359,360,373,376,464,485,540],"default":360,"do":349,"final":[354,378,421,541],"float":349,"function":[1,3,4,5,7,8,9,10,12,13,14,349,350,455,481,482,483,484,485,540,542],"import":[349,436],"long":375,"new":[349,360,364,389,390,391,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,411,414,439],"public":375,"return":[349,350],"super":[520,521,522],"true":[481,483,485],As:485,In:350,ON:[417,422,429],On:423,The:[355,379,429,431,446,476,488],To:[349,350,369,479],abov:431,absolute_tim:330,absorpt:[372,504],accept:352,access:[445,449,457,476],accessor:491,action:[349,369],ad:449,adapt:424,adaptiveringbackgroundmak:150,add:[360,451],add_colorbar:337,add_observed_paramet:41,add_pulsar_paramet:42,add_pwn_paramet:43,add_snr_paramet:44,addit:[372,377,485,536],aeff_2d:481,against:422,aim:451,alia:372,all:439,along:376,altern:[357,360,362,363,364,365,366,367,369,370,373,376],amplitud:377,an:[349,416,432,433,445,450],anaconda:382,analysi:[0,11,15,355,358,416,417,420,421,422,423,428,429,430,438,441,460,463,475,478,536],analysisconfig:16,angl:[481,482,483,485],angular:492,annihil:443,annotate_heatmap:338,api:[6,349,350,371,373,376,377,411,414,460,464],approach:[364,417,418,421,423,424,425,426,429,432,433,434,436,437,438,439,440,446,450,451,453,463,464],apr:[396,401,405,407],arbitrari:376,area:[447,455,481],argument:[349,363],arm:469,asmoothmapestim:107,assert:349,assert_quantity_allclos:324,assert_skycoord_allclos:325,assert_time_allclos:326,assess:[428,446],assign:[439,451],astro:[1,467,470],astronomi:364,astrophys:[1,468,469,470],astropi:[349,374],asymmetr:447,attribut:[349,350,360],aug:[388,404],author:375,authorship:375,avail:444,ax:[449,492],axi:[349,484],backend_default:293,background2d:129,background3d:130,background:[360,364,368,371,377,426,431,432,448,451,455,456,463,482,486,487,488,489,539],backgroundirf:131,backgroundirfmodel:360,backgroundmodel:360,backport:349,base:[373,376,490],basic:[430,449],bayesian:437,between:371,bin:[364,416,431,492],binder:379,bit:349,bkg_2d:482,bkg_3d:482,block:437,boundari:450,branch:378,broken:[350,505,519],brokenpowerlawspectralmodel:197,bsd:349,bug:[402,411,414],bugfix:378,build:[350,352,379,438,439],built:535,bundl:349,burkertprofil:17,butterfli:464,call:360,candid:[378,424],caplog:349,cartesian:279,casebattacharya1998:28,cash:[264,539,540],cash_sum_cython:265,cashcountsstatist:262,catalog:[2,444,450,451,465,474],catalog_registri:55,caveat:539,cell:349,certif:352,cff:375,chain:[420,422],chang:[349,370,411,414],changelog:369,character:437,check:[11,349,350,384,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],checker:323,chi:431,choos:350,citat:375,clean:368,cli:538,click:349,clobber:349,clumpi:467,cluster:[13,453],code:[349,350,355,358,379],codemeta:375,collect:375,colormap:543,colormap_hess:339,colormap_milagro:340,combin:[451,476],command:[11,349,538],compar:[422,438],compound:[452,506],compound_region_to_region:309,compoundspectralmodel:198,comput:[416,419,420,421,426,427,430,435,442,446,454,459,461,464,466,503,524,534],compute_chisq:266,compute_flux_doubl:267,compute_fpp:268,compute_fvar:269,compute_lightcurve_doublingtim:122,compute_lightcurve_fpp:123,compute_lightcurve_fvar:124,conda:380,confer:375,confid:446,config:[11,425,426,538],configur:[421,428,434,438,463,536],constant:[494,507,525],constantfluxspatialmodel:199,constantspatialmodel:200,constantspectralmodel:201,constanttemporalmodel:202,contain:376,containment_radiu:189,containment_region:190,content:[445,492],context:[417,418,420,421,422,423,424,425,426,429,431,432,434,436,437,438,439,440,450,453,463,464],contigu:449,continu:379,contour:446,contribut:[352,375,451],contributor:[375,388,389,390,391,392,393,394,395,396,397,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],conveni:361,convent:349,convers:349,convert:349,coordin:[13,349,360,482,492],correl:426,count:[451,456,475,540],covari:[191,446],creat:[417,420,425,426,433,445,447,449,450,464,492],create_cosmic_ray_spectral_model:255,create_crab_spectral_model:256,create_fermi_isotropic_diffuse_model:257,create_map_dataset_from_observ:105,create_map_dataset_geom:106,creation:[417,421,439],cstat:270,cta:[359,455],cube:[355,449,460],cumul:417,current:374,curv:[364,438,439,440,532,533],custom:[452,535],cut:[418,422],cutoff:[508,509,510,520,521,522],cutout:449,cycl:374,cython:[374,379],d_sun_to_galactic_cent:278,dark:[443,467],darkmatt:[1,467],darkmatterannihilationspectralmodel:[19,467],darkmatterdecayspectralmodel:20,data:[3,8,349,355,357,358,364,376,379,417,420,421,422,428,429,431,434,438,439,441,445,448,449,457,460,463,464,465,476,487,538,539],dataflow:376,dataset:[4,11,94,95,349,358,361,370,371,376,416,417,421,422,425,426,428,429,433,438,439,440,445,446,448,450,451,457,463,464,475,478],dataset_registri:93,datasetmodel:203,datasetsmak:151,datastor:[78,455,464,476],dco:[352,375],deal:350,dec:394,decai:443,decemb:413,decis:[354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377],defin:[416,417,420,422,430,432,433,438,439,450,464,492],definit:[375,438,487],depend:[348,366,372,402,422,431,433,452],deprec:[349,374],deriv:541,detail:[356,428],detect:[370,424,430,484],detector:482,develop:[349,351,352,356],diagram:359,differ:[429,449,542],diffus:456,dilat:450,direct:422,discuss:364,disk:[421,433,463,464,495],diskspatialmodel:204,dispers:[447,455,456,483],dissolv:368,distribut:[366,458,469],dl3:[3,429,458,476,484,487],dl4:[475,477,487,491,535],dl5:[477,535],dl6:477,dmprofil:18,doc:379,docstr:350,document:[350,352,358,369],doubl:437,download:[11,379],downsampl:492,dr1:[458,522],dr2:522,dr3:521,draw:301,driven:538,drop:356,durat:448,e:458,each:431,earli:352,earth_location_from_dict:288,ebl:504,ebl_data_builtin:206,eblabsorptionnormspectralmodel:205,edg:477,edisp:447,edisp_2d:483,edispkernel:132,edispkernelmap:[133,484],edispmap:134,effect:[447,448,455,481],effectiveareatable2d:135,einastoprofil:21,elaps:542,empti:445,end:349,energi:[372,416,422,431,433,447,450,452,455,456,477,481,482,483,485],energydependentmorphologyestim:109,energydependentmultigausspsf:136,energydispersion2d:137,environ:380,eros:450,error:[446,540],estim:[5,110,367,370,373,376,421,424,431,434,437,438,448,477,487,488,540],estimate_exposure_reco_energi:125,estimator_registri:108,evalu:[360,361,362],event:[358,362,432,433,441,449,455,456,458,465,476,484],eventlist:[79,476],eventlistmetadata:80,evolut:433,exampl:[379,467,474,475,476,477,478,484,486,487,488,491,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,535,539],excess:[373,417,426,437,540],excessmapestim:111,exclus:[420,421,426,450,463],execut:538,exemplari:377,exercis:[416,418,420,423,428,430,432,433,440,455,456,457,458,465],exist:355,expcutoffpowerlaw3fglspectralmodel:207,expcutoffpowerlawnormspectralmodel:208,expcutoffpowerlawspectralmodel:209,expdecai:526,expdecaytemporalmodel:210,expect:484,explor:[417,421,430,460],exponenti:[29,418,508,509,510,520,521,522],expos:360,exposur:[447,456],extend:[417,432],extens:350,extern:349,extra:379,extract:[426,438,439,440],extrapol:349,f_cash_root_cython:271,factor:443,factori:449,factoris:484,faucherkaspi2006:30,faucherkaspi2006velocitybimod:31,faucherkaspi2006velocitymaxwellian:32,faucherspir:33,favor:377,featur:[14,374,378,411,414],feb:[395,408],fermi:[429,456],fermist:467,file:[350,375,421,425,426,429,455,463,476,492],fill:[449,492],filter:439,find_peak:126,find_peaks_in_flux_map:127,finder:488,first:[378,421],fit:[10,13,192,358,364,417,418,420,421,422,425,428,429,430,436,440,446,450,456,463,464,492,535,539,540,541],fix:[349,402,411,414],fixedpointinginfo:81,fixtur:349,flare:439,flux:[373,377,416,418,420,421,429,434,443,444,463,464,465,477],fluxestim:373,fluxmap:[112,373],fluxpoint:113,fluxpointscollect:373,fluxpointsdataset:[96,361,445],fluxpointsestim:[114,477],fluxprofileestim:115,fold:360,folder:379,follow:370,format:[349,542],formula:541,forward:360,found:538,fov:[448,486],fov_to_ski:280,fovalign:138,fovbackgroundmak:[152,486],fovbackgroundmodel:211,fraction:437,freez:[374,378,451],from:[349,439,449,450,451,492],further:[364,539],galact:[281,456],galactocentr:469,galleri:[349,350,493],gamlik:467,gamma:[364,443],gammalib:467,gammapi:[0,1,2,3,4,5,7,8,9,10,11,12,13,14,349,352,355,358,366,368,369,370,374,375,376,378,379,385,386,447,455,456,457,458,467,470,474,475,476,477,478,484,486,487,488,491,535,536,542],gaussian:[496,497,511,527,528],gaussianspatialmodel:212,gaussianspectralmodel:213,gaussiantemporalmodel:214,gener:[349,355,359,364,375,376,477,497,528],generalist:373,generalizedgaussianspatialmodel:215,generalizedgaussiantemporalmodel:216,geom:173,geometri:[417,430,438,439,449,450,463,464,490,492],get:[352,369,381,425,426,449,468,469,470,476,491],get_images_path:314,get_irfs_featur:91,get_random_st:302,get_wstat_gof_term:272,get_wstat_mu_bkg:273,github:349,given:451,global:371,glossari:537,good:541,gpl:349,group:453,gti:[82,476],guid:[351,480],guidelin:[350,354,355,369],h:458,halv:437,handl:[349,358,359,360,371,375,448,542],have:[357,359,364,365,373],hawc:[429,457],hduindext:83,hduloc:286,healpix:490,help:384,helper:361,hess:429,hgp:444,hierarch:453,hierarchi:376,hierarchical_clust:276,high:[0,5,358,365,463,478],hli:421,how:[349,350,352,369,378,449,479],hpxgeom:174,hpxmap:175,hpxndmap:[176,491],hstack_column:319,i:[349,434],idea:359,imag:[350,355,363,368,424,430,449,460],imageprofil:116,imageprofileestim:117,implement:[359,360,369,375,377,452],improv:[360,372,402,411,414],inbuilt:447,includ:350,index:[449,476],info:[11,349],inform:[375,444,483],input:[349,376,424],inspect:464,instal:[369,381,382,384],instrument:[7,429,484],integr:[13,379,416],integrate_spectrum:258,interact:371,interest:431,interfac:[0,358,360,365,463,478,491],interpol:[13,349,449],interpolate_profil:291,interpolation_scal:292,interv:439,introduc:[360,368,370,372,373,434],introduct:[360,363,364,366,367,369,373,375,376,416,420,422,430,441,443,444,445,448,449,455,456,460,465,467,469,470,539],inversecdfsampl:300,ipython:385,irf:[7,139,358,376,416,445,447,455,484],irf_registri:141,irfmap:140,isothermalprofil:22,isotrop:456,issu:384,iter:449,j:443,jan:389,jfactori:23,joint:[428,429,475],json:375,jul:392,june:[403,414],jupyt:[349,385],kernel:447,labelmapaxi:[177,449],lat:[429,456],law:[418,505,508,509,510,516,517,518,519,520,521,522],lazi:361,lazyfitsdata:287,lc:438,let:433,level:[0,5,355,358,365,463,464,478],li:441,licens:349,light:[364,438,439,440,533],lightcurv:[364,432,437,440,444],lightcurveestim:[118,477],lightcurvetemplatetemporalmodel:217,like:432,likelihood:541,limit:359,line:[11,349,538],linear:529,lineartemporalmodel:218,link:350,list:[360,361,362,363,364,365,366,432,439,444,449,450,451,452,465,476],literatur:422,livetim:448,load:[361,416,418,420,422,444,451],load_irf_dict_from_fil:[149,484],locat:349,log:[11,349,418,512,513],logparabolanormspectralmodel:219,logparabolaspectralmodel:220,logspir:34,loop:[417,448,464],lorimer2006:35,low:[355,464],lt:374,ma:441,mai:[391,402],maintain:[356,375],mainten:358,major:378,make:[349,352,378,430,433,441,464],make_base_catalog_galact:45,make_catalog_random_positions_cub:46,make_catalog_random_positions_spher:47,make_concentric_annulus_sky_region:310,make_counts_rad_max:164,make_edisp_kernel_map:165,make_edisp_map:166,make_effective_livetime_map:167,make_map_background_irf:168,make_map_exposure_true_energi:169,make_observation_time_map:170,make_orthogonal_rectangle_sky_region:311,make_path:315,make_psf_map:171,make_theta_squared_t:172,maker:[8,154,370,376,417,439,448,463,464,486,487,488],maker_registri:153,mamba:382,manag:[358,382],manual:[450,453],map:[9,178,182,355,358,359,424,425,426,429,430,436,441,443,447,449,450,451,462,465,477,490,491,492],mapax:179,mapaxi:180,mapcoord:[181,491],mapdataset:[97,361,428,432,445,457,475],mapdataseteventsampl:[98,362],mapdatasetmak:[155,487],mapdatasetonoff:[99,361],mappanelplott:336,mar:390,march:412,mask:[363,420,421,426,445,450,463],materi:375,matter:[443,467],measur:539,meet:358,messag:349,met:542,metadata:[375,376],method:[350,361,362,377,437,449,477,491],method_default:294,method_kwargs_default:295,meyercrabspectralmodel:222,miniconda:382,minor:370,mission:542,model:[10,223,225,358,360,368,371,372,376,377,417,420,421,422,425,428,429,430,432,433,438,439,440,443,444,445,446,451,452,455,463,464,465,469,470,471,472,473,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,539],model_registri:221,modelbas:224,modif:450,modifi:[349,449,452],modul:[5,8,13],mooreprofil:24,morpholog:[431,452],motion_since_birth:282,motiv:377,mpl_plot_check:327,multi:429,multipl:[432,451,475],multiprocessing_manag:298,n_jobs_default:296,naima:514,naimaspectralmodel:226,name:[349,360,484],nebula:472,next:[418,420,421,424,430,438,455,457,458,463,465],nfwprofil:25,night:438,non:[349,449,492],norm:[372,452,498,510,513,515,518],norm_bounds_cython:274,normal:[303,463],notat:540,note:[349,387,539],notebook:[11,349,357,385],nov:[397,398,399,400,406,410],novemb:411,now:364,nuisanc:377,number:[349,374,484],numpi:374,o:434,object:[349,350,359,371,425,426,432,433,444,453],observ:[3,84,87,358,359,420,421,430,432,433,438,439,448,453,463,464],observationeventsampl:102,observationfilt:85,observationseventssampl:88,observationt:86,observatory_loc:92,obtain:[416,431,440,453],off:[418,420,423,429],offset:[481,482,483,485],ogipdatasetread:100,ogipdatasetwrit:101,old:379,onto:449,open:441,oper:[449,450],option:[348,366,446],org:379,organ:[355,364],origin:[349,352],other:[349,350,359,379,382,467],outlin:377,outlook:[361,362,363,365,366,368,369,370,373],output:349,over:441,overview:[369,381,431,455,486,488,489],overwrit:349,own:538,packag:[0,1,2,3,4,5,7,8,9,10,12,13,14,368,370,379,382,402,460,467,468,536],paczynski1990:36,paczynski1990veloc:37,panel:543,paper:358,parabola:[418,512,513],parallel:[13,361],paramet:[193,194,360,372,377,421,431,446,451,452,463],parameterestim:119,parametr:360,parametricpsf:146,pdf:304,perform:[362,417,455,464],person:375,perspect:356,phase:[441,532],phasebackgroundmak:156,phasogram:441,piecewis:[498,515],piecewisenormspatialmodel:227,piecewisenormspectralmodel:228,pig:[353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377],pip:382,pixel:[349,363,450],plan:356,plot:[14,349,420,421,424,430,431,434,449,451,464,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,543],plot_contour_lin:341,plot_distribut:342,plot_heatmap:343,plot_map_rgb:344,plot_npred_sign:345,plot_spectrum_datasets_off_region:346,plot_theta_squared_t:347,png:350,point:[377,416,418,420,421,429,430,432,437,444,455,463,464,465,477,485,499],pointinginfo:89,pointingmod:90,pointspatialmodel:229,poisson:539,polar:283,polici:375,pool_kwargs_default:297,popul:[1,469],posit:[377,483],possibl:375,post:378,power:[418,505,508,509,510,516,517,518,519,520,521,522],powerlaw2spectralmodel:230,powerlaw:[418,530],powerlawnormspectralmodel:231,powerlawspectralmodel:232,powerlawtemporalmodel:233,precis:362,predict:475,prepar:[364,374,416,417,433,464],prerequisit:[417,418,420,421,422,423,425,429,431,432,433,434,436,437,438,439,440,446,450,451,463,464],pretti:444,primaryflux:26,print:444,prior:377,priorparamet:[195,196],produc:457,product:443,profil:[434,443,541],project:[358,379],propag:376,propos:[357,359,360,361,362,363,364,365,367,368,369,370,371,372,373,376,417,418,421,423,424,425,426,429,432,433,434,436,437,438,439,440,446,450,451,453,463,464],psf3d:142,psf:[447,456,485],psf_tabl:485,psfkernel:143,psfking:144,psfmap:[145,484],pull:[349,352,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],pulsar:[51,441,471,472],purpos:354,pwn:50,pydant:376,python:[349,350,356,374,385],qualiti:[358,379,420,422,428,446],quantiti:[453,477],quickstart:[381,383],radial:482,radial_distribut:48,radmax2d:147,rai:[364,443],random:[13,349],rang:[448,487],read:[424,429,433,434,449,450,451,492],read_yaml:316,reconstruct:482,recopsfmap:148,recursive_merge_dict:317,reduc:[4,425,426,445,463,464],reduct:[8,358,364,417,420,421,422,428,438,439,448,457,463,464,487,538],refer:[6,369,537,538,539],reflect:[448,488],reflectedregionsbackgroundmak:[157,488],reflectedregionsfind:158,region:[13,360,363,416,417,420,422,448,450,451,488,492],region_to_fram:312,regiongeom:[183,492],regionndmap:[184,491,492],regions_to_compound_region:313,regionsfind:159,relat:492,releas:[349,358,374,375,378,379,387],remark:354,remnant:473,remov:[349,451],renam:349,repositori:379,repr:349,represent:[372,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],request:[349,352,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],requir:[348,349,366,376],requires_data:328,requires_depend:329,resampl:445,resample_energy_edg:128,residu:[420,422,428,464],resolv:[370,441],respons:[7,484],restructur:369,result:[364,373,416,417,421,424,431,434,438,541],review:354,ring:[426,448,489],ringbackgroundmak:160,rmf:483,road:359,roadmap:358,rotat:363,rst:350,run:[11,352,420,421,422,431,433,434,438,463,538],run_multiprocess:299,s:[389,390,391,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,421,433,458,463],safe:[448,487],safemaskmak:161,sampl:[362,432,433],sample_powerlaw:305,sample_spher:306,sample_sphere_dist:307,sample_tim:308,sampler:433,save:[421,463,464],scale:542,scale_plot_flux:259,scaledregulargridinterpol:290,scalespectralmodel:236,scenario:359,schedul:374,scheme:[360,375],script:[11,13,349,385,460,462],section:369,select:[417,421,430,438,439,444,451,463,464,476],select_nested_model:260,sensit:416,sensitivityestim:120,sep:[393,409],serial:[361,376,429],serialis:[377,421,434,447,451,452,456,475],seril:360,set:[352,421,449,463],setup:[357,379,381,383,384,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],sever:349,share:452,shell2:501,shell2spatialmodel:237,shell:500,shellspatialmodel:238,shorter:372,should:349,show:[430,431,453],signal:431,signific:[417,424,426,450,540],simplepulsar:54,simplifi:372,simul:[358,361,422,423,432,433,436,440],sine:531,sinetemporalmodel:239,singl:[350,423],size:492,skip:349,sky:[9,360,363,430,432,450,483,491],sky_to_fov:284,skycoord:491,skymodel:[240,452],slice:449,small:352,smooth:[424,519],smoothbrokenpowerlawspectralmodel:241,snr:52,snrtruelovemcke:53,solut:376,some:[349,359,450],sourc:[1,2,416,417,420,424,430,431,432,433,440,444,450,455,465,469,470,471,472,474],sourcecatalog1lhaaso:57,sourcecatalog2fhl:58,sourcecatalog2hwc:59,sourcecatalog3fgl:60,sourcecatalog3fhl:[61,474],sourcecatalog3hwc:62,sourcecatalog4fgl:63,sourcecatalog:56,sourcecataloggammacat:[64,474],sourcecataloghgp:65,sourcecataloglargescalehgp:66,sourcecatalogobject1lhaaso:68,sourcecatalogobject2fhl:69,sourcecatalogobject2hwc:70,sourcecatalogobject3fgl:71,sourcecatalogobject3fhl:72,sourcecatalogobject3hwc:73,sourcecatalogobject4fgl:74,sourcecatalogobject:67,sourcecatalogobjectgammacat:75,sourcecatalogobjecthgp:76,sourcecatalogobjecthgpscompon:77,sourceirfmodel:360,sourcemodel:360,spatial:[360,372,430,443,449,452,469,492,493,494,495,496,497,498,499,500,501,502],spatial_model_registri:234,spatialirfmodel:360,spatialmodel:242,special:541,specif:[360,369,444],spectra:443,spectral:[372,377,417,418,420,421,422,429,430,443,452,460,465,493,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,523],spectral_model_registri:235,spectralirfmodel:360,spectralmodel:243,spectrum:[420,422,423,430,441,448,464],spectrumdataset:[103,361,445],spectrumdatasetmak:[162,487],spectrumdatasetonoff:[104,361,475],sphinx:[349,350],spiral:469,spread:[455,485],squar:[431,458],stack:[420,426,428,475],standard_scal:277,standardise_unit:334,start:[369,381,468,469,470,476,491],stat:12,stat_contour:446,stat_profile_ul_scipi:261,stat_surfac:446,statist:[12,420,450,539,540],statu:[354,359,368,374],step:[421,455,457,458,536],store:[364,421,483],str:349,structur:[368,370,402,465,536],studi:364,style:355,sub:[449,468],subclass:377,subpackag:355,subset:444,suggest:375,summari:[388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,428,456],superexpcutoffpowerlaw3fglspectralmodel:244,superexpcutoffpowerlaw4fgldr3spectralmodel:245,superexpcutoffpowerlaw4fglspectralmodel:246,supernova:473,support:[349,356,374,375,377,447,475],survei:[462,543],symmetr:482,systemat:377,tabl:[13,431,444,476],table_row_to_dict:320,table_standardise_units_copi:321,table_standardise_units_inplac:322,tag:372,target:420,task:[360,361,362,363,364,365,366],templat:[432,502,523],templatendspatialmodel:248,templatendspectralmodel:249,templatenpredmodel:250,templatephasecurvetemporalmodel:251,templatespatialmodel:252,templatespectralmodel:253,tempor:[433,440,452,493,525,526,527,528,529,530,531,532,533],temporal_model_registri:247,temporalmodel:254,term:375,terminolog:359,test:[13,349,352,431,441],text:349,theta:458,thi:352,thumbnail:350,time:[13,358,364,419,427,432,435,437,439,440,442,454,459,460,461,466,503,524,534,542],time_ref_from_dict:331,time_ref_to_dict:332,time_relative_to_ref:333,timemapaxi:[185,449],tool:[11,349,538],tooltip:350,touch:352,trapz_loglog:289,troubleshoot:[384,538],ts:[424,540],tsmapestim:121,tutori:[350,357,369,381,431,455,460],two:451,type:[349,376,475],uncertainti:367,underli:492,unfold:377,unfreez:451,unif:373,unifi:[360,373],unit:[13,349],unit_from_fits_image_hdu:335,unix:349,unreleas:415,up:[352,368,370],upsampl:492,us:[349,359,377,382,385,421,431,432,438,445,446,447,449,463,464,467,470,474,475,476,477,478,484,486,487,488,491,509,520,521,522,535],user:[356,480],util:[5,8,13,368,536,540,542],valid:376,valleespir:38,valu:[349,377,431,449],vari:440,variabl:[1,2,3,4,5,7,8,10,13,432,437],varianc:437,variou:453,veloc:469,velocity_distribut:49,velocity_glon_glat:285,venv:380,version:[349,374,378,387,436],virtual:380,visual:[14,370,449,492,543],volum:492,warn:349,wc:[449,492],wcsgeom:186,wcsmap:187,wcsndmap:[188,491],we:[357,364,365,373,457],webpag:379,what:[349,352,354,357,359,364,365,373,389,390,391,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,418,420,421,424,430,438,463,465],where:349,which:349,wind:472,wise:438,wobbleregionsfind:163,work:476,workflow:536,write:[349,354,421,433,449,450,476,492,538],write_yaml:318,wstat:[275,539,540,541],wstatcountsstatist:263,yaml:[372,421,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],your:[384,421,538],yusifovkucuk2004:39,yusifovkucuk2004b:40,zhaoprofil:27}})
\ No newline at end of file
+Search.setIndex({docnames:["api-reference/analysis","api-reference/astro","api-reference/catalog","api-reference/data","api-reference/datasets","api-reference/estimators","api-reference/index","api-reference/irf","api-reference/makers","api-reference/maps","api-reference/modeling","api-reference/scripts","api-reference/stats","api-reference/utils","api-reference/visualization","api/gammapy.analysis.Analysis","api/gammapy.analysis.AnalysisConfig","api/gammapy.astro.darkmatter.BurkertProfile","api/gammapy.astro.darkmatter.DMProfile","api/gammapy.astro.darkmatter.DarkMatterAnnihilationSpectralModel","api/gammapy.astro.darkmatter.DarkMatterDecaySpectralModel","api/gammapy.astro.darkmatter.EinastoProfile","api/gammapy.astro.darkmatter.IsothermalProfile","api/gammapy.astro.darkmatter.JFactory","api/gammapy.astro.darkmatter.MooreProfile","api/gammapy.astro.darkmatter.NFWProfile","api/gammapy.astro.darkmatter.PrimaryFlux","api/gammapy.astro.darkmatter.ZhaoProfile","api/gammapy.astro.population.CaseBattacharya1998","api/gammapy.astro.population.Exponential","api/gammapy.astro.population.FaucherKaspi2006","api/gammapy.astro.population.FaucherKaspi2006VelocityBimodal","api/gammapy.astro.population.FaucherKaspi2006VelocityMaxwellian","api/gammapy.astro.population.FaucherSpiral","api/gammapy.astro.population.LogSpiral","api/gammapy.astro.population.Lorimer2006","api/gammapy.astro.population.Paczynski1990","api/gammapy.astro.population.Paczynski1990Velocity","api/gammapy.astro.population.ValleeSpiral","api/gammapy.astro.population.YusifovKucuk2004","api/gammapy.astro.population.YusifovKucuk2004B","api/gammapy.astro.population.add_observed_parameters","api/gammapy.astro.population.add_pulsar_parameters","api/gammapy.astro.population.add_pwn_parameters","api/gammapy.astro.population.add_snr_parameters","api/gammapy.astro.population.make_base_catalog_galactic","api/gammapy.astro.population.make_catalog_random_positions_cube","api/gammapy.astro.population.make_catalog_random_positions_sphere","api/gammapy.astro.population.radial_distributions","api/gammapy.astro.population.velocity_distributions","api/gammapy.astro.source.PWN","api/gammapy.astro.source.Pulsar","api/gammapy.astro.source.SNR","api/gammapy.astro.source.SNRTrueloveMcKee","api/gammapy.astro.source.SimplePulsar","api/gammapy.catalog.CATALOG_REGISTRY","api/gammapy.catalog.SourceCatalog","api/gammapy.catalog.SourceCatalog1LHAASO","api/gammapy.catalog.SourceCatalog2FHL","api/gammapy.catalog.SourceCatalog2HWC","api/gammapy.catalog.SourceCatalog3FGL","api/gammapy.catalog.SourceCatalog3FHL","api/gammapy.catalog.SourceCatalog3HWC","api/gammapy.catalog.SourceCatalog4FGL","api/gammapy.catalog.SourceCatalogGammaCat","api/gammapy.catalog.SourceCatalogHGPS","api/gammapy.catalog.SourceCatalogLargeScaleHGPS","api/gammapy.catalog.SourceCatalogObject","api/gammapy.catalog.SourceCatalogObject1LHAASO","api/gammapy.catalog.SourceCatalogObject2FHL","api/gammapy.catalog.SourceCatalogObject2HWC","api/gammapy.catalog.SourceCatalogObject3FGL","api/gammapy.catalog.SourceCatalogObject3FHL","api/gammapy.catalog.SourceCatalogObject3HWC","api/gammapy.catalog.SourceCatalogObject4FGL","api/gammapy.catalog.SourceCatalogObjectGammaCat","api/gammapy.catalog.SourceCatalogObjectHGPS","api/gammapy.catalog.SourceCatalogObjectHGPSComponent","api/gammapy.data.DataStore","api/gammapy.data.EventList","api/gammapy.data.EventListMetaData","api/gammapy.data.FixedPointingInfo","api/gammapy.data.GTI","api/gammapy.data.HDUIndexTable","api/gammapy.data.Observation","api/gammapy.data.ObservationFilter","api/gammapy.data.ObservationTable","api/gammapy.data.Observations","api/gammapy.data.ObservationsEventsSampler","api/gammapy.data.PointingInfo","api/gammapy.data.PointingMode","api/gammapy.data.get_irfs_features","api/gammapy.data.observatory_locations","api/gammapy.datasets.DATASET_REGISTRY","api/gammapy.datasets.Dataset","api/gammapy.datasets.Datasets","api/gammapy.datasets.FluxPointsDataset","api/gammapy.datasets.MapDataset","api/gammapy.datasets.MapDatasetEventSampler","api/gammapy.datasets.MapDatasetOnOff","api/gammapy.datasets.OGIPDatasetReader","api/gammapy.datasets.OGIPDatasetWriter","api/gammapy.datasets.ObservationEventSampler","api/gammapy.datasets.SpectrumDataset","api/gammapy.datasets.SpectrumDatasetOnOff","api/gammapy.datasets.create_map_dataset_from_observation","api/gammapy.datasets.create_map_dataset_geoms","api/gammapy.estimators.ASmoothMapEstimator","api/gammapy.estimators.ESTIMATOR_REGISTRY","api/gammapy.estimators.EnergyDependentMorphologyEstimator","api/gammapy.estimators.Estimator","api/gammapy.estimators.ExcessMapEstimator","api/gammapy.estimators.FluxMaps","api/gammapy.estimators.FluxPoints","api/gammapy.estimators.FluxPointsEstimator","api/gammapy.estimators.FluxProfileEstimator","api/gammapy.estimators.ImageProfile","api/gammapy.estimators.ImageProfileEstimator","api/gammapy.estimators.LightCurveEstimator","api/gammapy.estimators.ParameterEstimator","api/gammapy.estimators.SensitivityEstimator","api/gammapy.estimators.TSMapEstimator","api/gammapy.estimators.utils.compute_lightcurve_doublingtime","api/gammapy.estimators.utils.compute_lightcurve_fpp","api/gammapy.estimators.utils.compute_lightcurve_fvar","api/gammapy.estimators.utils.estimate_exposure_reco_energy","api/gammapy.estimators.utils.find_peaks","api/gammapy.estimators.utils.find_peaks_in_flux_map","api/gammapy.estimators.utils.resample_energy_edges","api/gammapy.irf.Background2D","api/gammapy.irf.Background3D","api/gammapy.irf.BackgroundIRF","api/gammapy.irf.EDispKernel","api/gammapy.irf.EDispKernelMap","api/gammapy.irf.EDispMap","api/gammapy.irf.EffectiveAreaTable2D","api/gammapy.irf.EnergyDependentMultiGaussPSF","api/gammapy.irf.EnergyDispersion2D","api/gammapy.irf.FoVAlignment","api/gammapy.irf.IRF","api/gammapy.irf.IRFMap","api/gammapy.irf.IRF_REGISTRY","api/gammapy.irf.PSF3D","api/gammapy.irf.PSFKernel","api/gammapy.irf.PSFKing","api/gammapy.irf.PSFMap","api/gammapy.irf.ParametricPSF","api/gammapy.irf.RadMax2D","api/gammapy.irf.RecoPSFMap","api/gammapy.irf.load_irf_dict_from_file","api/gammapy.makers.AdaptiveRingBackgroundMaker","api/gammapy.makers.DatasetsMaker","api/gammapy.makers.FoVBackgroundMaker","api/gammapy.makers.MAKER_REGISTRY","api/gammapy.makers.Maker","api/gammapy.makers.MapDatasetMaker","api/gammapy.makers.PhaseBackgroundMaker","api/gammapy.makers.ReflectedRegionsBackgroundMaker","api/gammapy.makers.ReflectedRegionsFinder","api/gammapy.makers.RegionsFinder","api/gammapy.makers.RingBackgroundMaker","api/gammapy.makers.SafeMaskMaker","api/gammapy.makers.SpectrumDatasetMaker","api/gammapy.makers.WobbleRegionsFinder","api/gammapy.makers.utils.make_counts_rad_max","api/gammapy.makers.utils.make_edisp_kernel_map","api/gammapy.makers.utils.make_edisp_map","api/gammapy.makers.utils.make_effective_livetime_map","api/gammapy.makers.utils.make_map_background_irf","api/gammapy.makers.utils.make_map_exposure_true_energy","api/gammapy.makers.utils.make_observation_time_map","api/gammapy.makers.utils.make_psf_map","api/gammapy.makers.utils.make_theta_squared_table","api/gammapy.maps.Geom","api/gammapy.maps.HpxGeom","api/gammapy.maps.HpxMap","api/gammapy.maps.HpxNDMap","api/gammapy.maps.LabelMapAxis","api/gammapy.maps.Map","api/gammapy.maps.MapAxes","api/gammapy.maps.MapAxis","api/gammapy.maps.MapCoord","api/gammapy.maps.Maps","api/gammapy.maps.RegionGeom","api/gammapy.maps.RegionNDMap","api/gammapy.maps.TimeMapAxis","api/gammapy.maps.WcsGeom","api/gammapy.maps.WcsMap","api/gammapy.maps.WcsNDMap","api/gammapy.maps.containment_radius","api/gammapy.maps.containment_region","api/gammapy.modeling.Covariance","api/gammapy.modeling.Fit","api/gammapy.modeling.Parameter","api/gammapy.modeling.Parameters","api/gammapy.modeling.PriorParameter","api/gammapy.modeling.PriorParameters","api/gammapy.modeling.models.BrokenPowerLawSpectralModel","api/gammapy.modeling.models.CompoundSpectralModel","api/gammapy.modeling.models.ConstantFluxSpatialModel","api/gammapy.modeling.models.ConstantSpatialModel","api/gammapy.modeling.models.ConstantSpectralModel","api/gammapy.modeling.models.ConstantTemporalModel","api/gammapy.modeling.models.DatasetModels","api/gammapy.modeling.models.DiskSpatialModel","api/gammapy.modeling.models.EBLAbsorptionNormSpectralModel","api/gammapy.modeling.models.EBL_DATA_BUILTIN","api/gammapy.modeling.models.ExpCutoffPowerLaw3FGLSpectralModel","api/gammapy.modeling.models.ExpCutoffPowerLawNormSpectralModel","api/gammapy.modeling.models.ExpCutoffPowerLawSpectralModel","api/gammapy.modeling.models.ExpDecayTemporalModel","api/gammapy.modeling.models.FoVBackgroundModel","api/gammapy.modeling.models.GaussianSpatialModel","api/gammapy.modeling.models.GaussianSpectralModel","api/gammapy.modeling.models.GaussianTemporalModel","api/gammapy.modeling.models.GeneralizedGaussianSpatialModel","api/gammapy.modeling.models.GeneralizedGaussianTemporalModel","api/gammapy.modeling.models.LightCurveTemplateTemporalModel","api/gammapy.modeling.models.LinearTemporalModel","api/gammapy.modeling.models.LogParabolaNormSpectralModel","api/gammapy.modeling.models.LogParabolaSpectralModel","api/gammapy.modeling.models.MODEL_REGISTRY","api/gammapy.modeling.models.MeyerCrabSpectralModel","api/gammapy.modeling.models.Model","api/gammapy.modeling.models.ModelBase","api/gammapy.modeling.models.Models","api/gammapy.modeling.models.NaimaSpectralModel","api/gammapy.modeling.models.PiecewiseNormSpatialModel","api/gammapy.modeling.models.PiecewiseNormSpectralModel","api/gammapy.modeling.models.PointSpatialModel","api/gammapy.modeling.models.PowerLaw2SpectralModel","api/gammapy.modeling.models.PowerLawNormSpectralModel","api/gammapy.modeling.models.PowerLawSpectralModel","api/gammapy.modeling.models.PowerLawTemporalModel","api/gammapy.modeling.models.SPATIAL_MODEL_REGISTRY","api/gammapy.modeling.models.SPECTRAL_MODEL_REGISTRY","api/gammapy.modeling.models.ScaleSpectralModel","api/gammapy.modeling.models.Shell2SpatialModel","api/gammapy.modeling.models.ShellSpatialModel","api/gammapy.modeling.models.SineTemporalModel","api/gammapy.modeling.models.SkyModel","api/gammapy.modeling.models.SmoothBrokenPowerLawSpectralModel","api/gammapy.modeling.models.SpatialModel","api/gammapy.modeling.models.SpectralModel","api/gammapy.modeling.models.SuperExpCutoffPowerLaw3FGLSpectralModel","api/gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLDR3SpectralModel","api/gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLSpectralModel","api/gammapy.modeling.models.TEMPORAL_MODEL_REGISTRY","api/gammapy.modeling.models.TemplateNDSpatialModel","api/gammapy.modeling.models.TemplateNDSpectralModel","api/gammapy.modeling.models.TemplateNPredModel","api/gammapy.modeling.models.TemplatePhaseCurveTemporalModel","api/gammapy.modeling.models.TemplateSpatialModel","api/gammapy.modeling.models.TemplateSpectralModel","api/gammapy.modeling.models.TemporalModel","api/gammapy.modeling.models.create_cosmic_ray_spectral_model","api/gammapy.modeling.models.create_crab_spectral_model","api/gammapy.modeling.models.create_fermi_isotropic_diffuse_model","api/gammapy.modeling.models.integrate_spectrum","api/gammapy.modeling.models.scale_plot_flux","api/gammapy.modeling.select_nested_models","api/gammapy.modeling.stat_profile_ul_scipy","api/gammapy.stats.CashCountsStatistic","api/gammapy.stats.WStatCountsStatistic","api/gammapy.stats.cash","api/gammapy.stats.cash_sum_cython","api/gammapy.stats.compute_chisq","api/gammapy.stats.compute_flux_doubling","api/gammapy.stats.compute_fpp","api/gammapy.stats.compute_fvar","api/gammapy.stats.cstat","api/gammapy.stats.f_cash_root_cython","api/gammapy.stats.get_wstat_gof_terms","api/gammapy.stats.get_wstat_mu_bkg","api/gammapy.stats.norm_bounds_cython","api/gammapy.stats.wstat","api/gammapy.utils.cluster.hierarchical_clustering","api/gammapy.utils.cluster.standard_scaler","api/gammapy.utils.coordinates.D_SUN_TO_GALACTIC_CENTER","api/gammapy.utils.coordinates.cartesian","api/gammapy.utils.coordinates.fov_to_sky","api/gammapy.utils.coordinates.galactic","api/gammapy.utils.coordinates.motion_since_birth","api/gammapy.utils.coordinates.polar","api/gammapy.utils.coordinates.sky_to_fov","api/gammapy.utils.coordinates.velocity_glon_glat","api/gammapy.utils.fits.HDULocation","api/gammapy.utils.fits.LazyFitsData","api/gammapy.utils.fits.earth_location_from_dict","api/gammapy.utils.integrate.trapz_loglog","api/gammapy.utils.interpolation.ScaledRegularGridInterpolator","api/gammapy.utils.interpolation.interpolate_profile","api/gammapy.utils.interpolation.interpolation_scale","api/gammapy.utils.parallel.BACKEND_DEFAULT","api/gammapy.utils.parallel.METHOD_DEFAULT","api/gammapy.utils.parallel.METHOD_KWARGS_DEFAULT","api/gammapy.utils.parallel.N_JOBS_DEFAULT","api/gammapy.utils.parallel.POOL_KWARGS_DEFAULT","api/gammapy.utils.parallel.multiprocessing_manager","api/gammapy.utils.parallel.run_multiprocessing","api/gammapy.utils.random.InverseCDFSampler","api/gammapy.utils.random.draw","api/gammapy.utils.random.get_random_state","api/gammapy.utils.random.normalize","api/gammapy.utils.random.pdf","api/gammapy.utils.random.sample_powerlaw","api/gammapy.utils.random.sample_sphere","api/gammapy.utils.random.sample_sphere_distance","api/gammapy.utils.random.sample_times","api/gammapy.utils.regions.compound_region_to_regions","api/gammapy.utils.regions.make_concentric_annulus_sky_regions","api/gammapy.utils.regions.make_orthogonal_rectangle_sky_regions","api/gammapy.utils.regions.region_to_frame","api/gammapy.utils.regions.regions_to_compound_region","api/gammapy.utils.scripts.get_images_paths","api/gammapy.utils.scripts.make_path","api/gammapy.utils.scripts.read_yaml","api/gammapy.utils.scripts.recursive_merge_dicts","api/gammapy.utils.scripts.write_yaml","api/gammapy.utils.table.hstack_columns","api/gammapy.utils.table.table_row_to_dict","api/gammapy.utils.table.table_standardise_units_copy","api/gammapy.utils.table.table_standardise_units_inplace","api/gammapy.utils.testing.Checker","api/gammapy.utils.testing.assert_quantity_allclose","api/gammapy.utils.testing.assert_skycoord_allclose","api/gammapy.utils.testing.assert_time_allclose","api/gammapy.utils.testing.mpl_plot_check","api/gammapy.utils.testing.requires_data","api/gammapy.utils.testing.requires_dependency","api/gammapy.utils.time.absolute_time","api/gammapy.utils.time.time_ref_from_dict","api/gammapy.utils.time.time_ref_to_dict","api/gammapy.utils.time.time_relative_to_ref","api/gammapy.utils.units.standardise_unit","api/gammapy.utils.units.unit_from_fits_image_hdu","api/gammapy.visualization.MapPanelPlotter","api/gammapy.visualization.add_colorbar","api/gammapy.visualization.annotate_heatmap","api/gammapy.visualization.colormap_hess","api/gammapy.visualization.colormap_milagro","api/gammapy.visualization.plot_contour_line","api/gammapy.visualization.plot_distribution","api/gammapy.visualization.plot_heatmap","api/gammapy.visualization.plot_map_rgb","api/gammapy.visualization.plot_npred_signal","api/gammapy.visualization.plot_spectrum_datasets_off_regions","api/gammapy.visualization.plot_theta_squared_table","development/dependencies","development/dev_howto","development/doc_howto","development/index","development/intro","development/pigs/index","development/pigs/pig-001","development/pigs/pig-002","development/pigs/pig-003","development/pigs/pig-004","development/pigs/pig-005","development/pigs/pig-006","development/pigs/pig-007","development/pigs/pig-008","development/pigs/pig-009","development/pigs/pig-010","development/pigs/pig-011","development/pigs/pig-012","development/pigs/pig-013","development/pigs/pig-014","development/pigs/pig-016","development/pigs/pig-018","development/pigs/pig-019","development/pigs/pig-020","development/pigs/pig-021","development/pigs/pig-022","development/pigs/pig-023","development/pigs/pig-024","development/pigs/pig-025","development/pigs/pig-026","development/release","development/setup","getting-started/environments","getting-started/index","getting-started/install","getting-started/quickstart","getting-started/troubleshooting","getting-started/usage","index","release-notes/index","release-notes/v0.1","release-notes/v0.10","release-notes/v0.11","release-notes/v0.12","release-notes/v0.13","release-notes/v0.14","release-notes/v0.15","release-notes/v0.16","release-notes/v0.17","release-notes/v0.18","release-notes/v0.18.1","release-notes/v0.18.2","release-notes/v0.19","release-notes/v0.2","release-notes/v0.20","release-notes/v0.20.1","release-notes/v0.3","release-notes/v0.4","release-notes/v0.5","release-notes/v0.6","release-notes/v0.7","release-notes/v0.8","release-notes/v0.9","release-notes/v1.0","release-notes/v1.0.1","release-notes/v1.0.2","release-notes/v1.1","release-notes/v1.2","tutorials/analysis-1d/cta_sensitivity","tutorials/analysis-1d/extended_source_spectral_analysis","tutorials/analysis-1d/sed_fitting","tutorials/analysis-1d/sg_execution_times","tutorials/analysis-1d/spectral_analysis","tutorials/analysis-1d/spectral_analysis_hli","tutorials/analysis-1d/spectral_analysis_rad_max","tutorials/analysis-1d/spectrum_simulation","tutorials/analysis-2d/detect","tutorials/analysis-2d/modeling_2D","tutorials/analysis-2d/ring_background","tutorials/analysis-2d/sg_execution_times","tutorials/analysis-3d/analysis_3d","tutorials/analysis-3d/analysis_mwl","tutorials/analysis-3d/cta_data_analysis","tutorials/analysis-3d/energy_dependent_estimation","tutorials/analysis-3d/event_sampling","tutorials/analysis-3d/event_sampling_nrg_depend_models","tutorials/analysis-3d/flux_profiles","tutorials/analysis-3d/sg_execution_times","tutorials/analysis-3d/simulate_3d","tutorials/analysis-time/Variability_estimation","tutorials/analysis-time/light_curve","tutorials/analysis-time/light_curve_flare","tutorials/analysis-time/light_curve_simulation","tutorials/analysis-time/pulsar_analysis","tutorials/analysis-time/sg_execution_times","tutorials/api/astro_dark_matter","tutorials/api/catalog","tutorials/api/datasets","tutorials/api/fitting","tutorials/api/irfs","tutorials/api/makers","tutorials/api/maps","tutorials/api/mask_maps","tutorials/api/model_management","tutorials/api/models","tutorials/api/observation_clustering","tutorials/api/sg_execution_times","tutorials/data/cta","tutorials/data/fermi_lat","tutorials/data/hawc","tutorials/data/hess","tutorials/data/sg_execution_times","tutorials/index","tutorials/scripts/sg_execution_times","tutorials/scripts/survey_map","tutorials/starting/analysis_1","tutorials/starting/analysis_2","tutorials/starting/overview","tutorials/starting/sg_execution_times","user-guide/astro/darkmatter/index","user-guide/astro/index","user-guide/astro/population/index","user-guide/astro/source/index","user-guide/astro/source/pulsar","user-guide/astro/source/pwn","user-guide/astro/source/snr","user-guide/catalog","user-guide/datasets/index","user-guide/dl3","user-guide/estimators","user-guide/hli","user-guide/howto","user-guide/index","user-guide/irf/aeff","user-guide/irf/bkg","user-guide/irf/edisp","user-guide/irf/index","user-guide/irf/psf","user-guide/makers/fov","user-guide/makers/index","user-guide/makers/reflected","user-guide/makers/ring","user-guide/maps/hpxmap","user-guide/maps/index","user-guide/maps/regionmap","user-guide/model-gallery/index","user-guide/model-gallery/spatial/plot_constant","user-guide/model-gallery/spatial/plot_disk","user-guide/model-gallery/spatial/plot_gauss","user-guide/model-gallery/spatial/plot_gen_gauss","user-guide/model-gallery/spatial/plot_piecewise_norm_spatial","user-guide/model-gallery/spatial/plot_point","user-guide/model-gallery/spatial/plot_shell","user-guide/model-gallery/spatial/plot_shell2","user-guide/model-gallery/spatial/plot_template","user-guide/model-gallery/spatial/sg_execution_times","user-guide/model-gallery/spectral/plot_absorbed","user-guide/model-gallery/spectral/plot_broken_powerlaw","user-guide/model-gallery/spectral/plot_compound","user-guide/model-gallery/spectral/plot_constant_spectral","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw_3fgl","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw_norm_spectral","user-guide/model-gallery/spectral/plot_gauss_spectral","user-guide/model-gallery/spectral/plot_logparabola","user-guide/model-gallery/spectral/plot_logparabola_norm_spectral","user-guide/model-gallery/spectral/plot_naima","user-guide/model-gallery/spectral/plot_piecewise_norm_spectral","user-guide/model-gallery/spectral/plot_powerlaw","user-guide/model-gallery/spectral/plot_powerlaw2","user-guide/model-gallery/spectral/plot_powerlaw_norm_spectral","user-guide/model-gallery/spectral/plot_smooth_broken_powerlaw","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_3fgl","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_4fgl","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_4fgl_dr1","user-guide/model-gallery/spectral/plot_template_spectral","user-guide/model-gallery/spectral/sg_execution_times","user-guide/model-gallery/temporal/plot_constant_temporal","user-guide/model-gallery/temporal/plot_expdecay_temporal","user-guide/model-gallery/temporal/plot_gaussian_temporal","user-guide/model-gallery/temporal/plot_generalized_gaussian_temporal","user-guide/model-gallery/temporal/plot_linear_temporal","user-guide/model-gallery/temporal/plot_powerlaw_temporal","user-guide/model-gallery/temporal/plot_sine_temporal","user-guide/model-gallery/temporal/plot_template_phase_temporal","user-guide/model-gallery/temporal/plot_template_temporal","user-guide/model-gallery/temporal/sg_execution_times","user-guide/modeling","user-guide/package","user-guide/references","user-guide/scripts/index","user-guide/stats/fit_statistics","user-guide/stats/index","user-guide/stats/wstat_derivation","user-guide/utils","user-guide/visualization/index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["api-reference/analysis.rst","api-reference/astro.rst","api-reference/catalog.rst","api-reference/data.rst","api-reference/datasets.rst","api-reference/estimators.rst","api-reference/index.rst","api-reference/irf.rst","api-reference/makers.rst","api-reference/maps.rst","api-reference/modeling.rst","api-reference/scripts.rst","api-reference/stats.rst","api-reference/utils.rst","api-reference/visualization.rst","api/gammapy.analysis.Analysis.rst","api/gammapy.analysis.AnalysisConfig.rst","api/gammapy.astro.darkmatter.BurkertProfile.rst","api/gammapy.astro.darkmatter.DMProfile.rst","api/gammapy.astro.darkmatter.DarkMatterAnnihilationSpectralModel.rst","api/gammapy.astro.darkmatter.DarkMatterDecaySpectralModel.rst","api/gammapy.astro.darkmatter.EinastoProfile.rst","api/gammapy.astro.darkmatter.IsothermalProfile.rst","api/gammapy.astro.darkmatter.JFactory.rst","api/gammapy.astro.darkmatter.MooreProfile.rst","api/gammapy.astro.darkmatter.NFWProfile.rst","api/gammapy.astro.darkmatter.PrimaryFlux.rst","api/gammapy.astro.darkmatter.ZhaoProfile.rst","api/gammapy.astro.population.CaseBattacharya1998.rst","api/gammapy.astro.population.Exponential.rst","api/gammapy.astro.population.FaucherKaspi2006.rst","api/gammapy.astro.population.FaucherKaspi2006VelocityBimodal.rst","api/gammapy.astro.population.FaucherKaspi2006VelocityMaxwellian.rst","api/gammapy.astro.population.FaucherSpiral.rst","api/gammapy.astro.population.LogSpiral.rst","api/gammapy.astro.population.Lorimer2006.rst","api/gammapy.astro.population.Paczynski1990.rst","api/gammapy.astro.population.Paczynski1990Velocity.rst","api/gammapy.astro.population.ValleeSpiral.rst","api/gammapy.astro.population.YusifovKucuk2004.rst","api/gammapy.astro.population.YusifovKucuk2004B.rst","api/gammapy.astro.population.add_observed_parameters.rst","api/gammapy.astro.population.add_pulsar_parameters.rst","api/gammapy.astro.population.add_pwn_parameters.rst","api/gammapy.astro.population.add_snr_parameters.rst","api/gammapy.astro.population.make_base_catalog_galactic.rst","api/gammapy.astro.population.make_catalog_random_positions_cube.rst","api/gammapy.astro.population.make_catalog_random_positions_sphere.rst","api/gammapy.astro.population.radial_distributions.rst","api/gammapy.astro.population.velocity_distributions.rst","api/gammapy.astro.source.PWN.rst","api/gammapy.astro.source.Pulsar.rst","api/gammapy.astro.source.SNR.rst","api/gammapy.astro.source.SNRTrueloveMcKee.rst","api/gammapy.astro.source.SimplePulsar.rst","api/gammapy.catalog.CATALOG_REGISTRY.rst","api/gammapy.catalog.SourceCatalog.rst","api/gammapy.catalog.SourceCatalog1LHAASO.rst","api/gammapy.catalog.SourceCatalog2FHL.rst","api/gammapy.catalog.SourceCatalog2HWC.rst","api/gammapy.catalog.SourceCatalog3FGL.rst","api/gammapy.catalog.SourceCatalog3FHL.rst","api/gammapy.catalog.SourceCatalog3HWC.rst","api/gammapy.catalog.SourceCatalog4FGL.rst","api/gammapy.catalog.SourceCatalogGammaCat.rst","api/gammapy.catalog.SourceCatalogHGPS.rst","api/gammapy.catalog.SourceCatalogLargeScaleHGPS.rst","api/gammapy.catalog.SourceCatalogObject.rst","api/gammapy.catalog.SourceCatalogObject1LHAASO.rst","api/gammapy.catalog.SourceCatalogObject2FHL.rst","api/gammapy.catalog.SourceCatalogObject2HWC.rst","api/gammapy.catalog.SourceCatalogObject3FGL.rst","api/gammapy.catalog.SourceCatalogObject3FHL.rst","api/gammapy.catalog.SourceCatalogObject3HWC.rst","api/gammapy.catalog.SourceCatalogObject4FGL.rst","api/gammapy.catalog.SourceCatalogObjectGammaCat.rst","api/gammapy.catalog.SourceCatalogObjectHGPS.rst","api/gammapy.catalog.SourceCatalogObjectHGPSComponent.rst","api/gammapy.data.DataStore.rst","api/gammapy.data.EventList.rst","api/gammapy.data.EventListMetaData.rst","api/gammapy.data.FixedPointingInfo.rst","api/gammapy.data.GTI.rst","api/gammapy.data.HDUIndexTable.rst","api/gammapy.data.Observation.rst","api/gammapy.data.ObservationFilter.rst","api/gammapy.data.ObservationTable.rst","api/gammapy.data.Observations.rst","api/gammapy.data.ObservationsEventsSampler.rst","api/gammapy.data.PointingInfo.rst","api/gammapy.data.PointingMode.rst","api/gammapy.data.get_irfs_features.rst","api/gammapy.data.observatory_locations.rst","api/gammapy.datasets.DATASET_REGISTRY.rst","api/gammapy.datasets.Dataset.rst","api/gammapy.datasets.Datasets.rst","api/gammapy.datasets.FluxPointsDataset.rst","api/gammapy.datasets.MapDataset.rst","api/gammapy.datasets.MapDatasetEventSampler.rst","api/gammapy.datasets.MapDatasetOnOff.rst","api/gammapy.datasets.OGIPDatasetReader.rst","api/gammapy.datasets.OGIPDatasetWriter.rst","api/gammapy.datasets.ObservationEventSampler.rst","api/gammapy.datasets.SpectrumDataset.rst","api/gammapy.datasets.SpectrumDatasetOnOff.rst","api/gammapy.datasets.create_map_dataset_from_observation.rst","api/gammapy.datasets.create_map_dataset_geoms.rst","api/gammapy.estimators.ASmoothMapEstimator.rst","api/gammapy.estimators.ESTIMATOR_REGISTRY.rst","api/gammapy.estimators.EnergyDependentMorphologyEstimator.rst","api/gammapy.estimators.Estimator.rst","api/gammapy.estimators.ExcessMapEstimator.rst","api/gammapy.estimators.FluxMaps.rst","api/gammapy.estimators.FluxPoints.rst","api/gammapy.estimators.FluxPointsEstimator.rst","api/gammapy.estimators.FluxProfileEstimator.rst","api/gammapy.estimators.ImageProfile.rst","api/gammapy.estimators.ImageProfileEstimator.rst","api/gammapy.estimators.LightCurveEstimator.rst","api/gammapy.estimators.ParameterEstimator.rst","api/gammapy.estimators.SensitivityEstimator.rst","api/gammapy.estimators.TSMapEstimator.rst","api/gammapy.estimators.utils.compute_lightcurve_doublingtime.rst","api/gammapy.estimators.utils.compute_lightcurve_fpp.rst","api/gammapy.estimators.utils.compute_lightcurve_fvar.rst","api/gammapy.estimators.utils.estimate_exposure_reco_energy.rst","api/gammapy.estimators.utils.find_peaks.rst","api/gammapy.estimators.utils.find_peaks_in_flux_map.rst","api/gammapy.estimators.utils.resample_energy_edges.rst","api/gammapy.irf.Background2D.rst","api/gammapy.irf.Background3D.rst","api/gammapy.irf.BackgroundIRF.rst","api/gammapy.irf.EDispKernel.rst","api/gammapy.irf.EDispKernelMap.rst","api/gammapy.irf.EDispMap.rst","api/gammapy.irf.EffectiveAreaTable2D.rst","api/gammapy.irf.EnergyDependentMultiGaussPSF.rst","api/gammapy.irf.EnergyDispersion2D.rst","api/gammapy.irf.FoVAlignment.rst","api/gammapy.irf.IRF.rst","api/gammapy.irf.IRFMap.rst","api/gammapy.irf.IRF_REGISTRY.rst","api/gammapy.irf.PSF3D.rst","api/gammapy.irf.PSFKernel.rst","api/gammapy.irf.PSFKing.rst","api/gammapy.irf.PSFMap.rst","api/gammapy.irf.ParametricPSF.rst","api/gammapy.irf.RadMax2D.rst","api/gammapy.irf.RecoPSFMap.rst","api/gammapy.irf.load_irf_dict_from_file.rst","api/gammapy.makers.AdaptiveRingBackgroundMaker.rst","api/gammapy.makers.DatasetsMaker.rst","api/gammapy.makers.FoVBackgroundMaker.rst","api/gammapy.makers.MAKER_REGISTRY.rst","api/gammapy.makers.Maker.rst","api/gammapy.makers.MapDatasetMaker.rst","api/gammapy.makers.PhaseBackgroundMaker.rst","api/gammapy.makers.ReflectedRegionsBackgroundMaker.rst","api/gammapy.makers.ReflectedRegionsFinder.rst","api/gammapy.makers.RegionsFinder.rst","api/gammapy.makers.RingBackgroundMaker.rst","api/gammapy.makers.SafeMaskMaker.rst","api/gammapy.makers.SpectrumDatasetMaker.rst","api/gammapy.makers.WobbleRegionsFinder.rst","api/gammapy.makers.utils.make_counts_rad_max.rst","api/gammapy.makers.utils.make_edisp_kernel_map.rst","api/gammapy.makers.utils.make_edisp_map.rst","api/gammapy.makers.utils.make_effective_livetime_map.rst","api/gammapy.makers.utils.make_map_background_irf.rst","api/gammapy.makers.utils.make_map_exposure_true_energy.rst","api/gammapy.makers.utils.make_observation_time_map.rst","api/gammapy.makers.utils.make_psf_map.rst","api/gammapy.makers.utils.make_theta_squared_table.rst","api/gammapy.maps.Geom.rst","api/gammapy.maps.HpxGeom.rst","api/gammapy.maps.HpxMap.rst","api/gammapy.maps.HpxNDMap.rst","api/gammapy.maps.LabelMapAxis.rst","api/gammapy.maps.Map.rst","api/gammapy.maps.MapAxes.rst","api/gammapy.maps.MapAxis.rst","api/gammapy.maps.MapCoord.rst","api/gammapy.maps.Maps.rst","api/gammapy.maps.RegionGeom.rst","api/gammapy.maps.RegionNDMap.rst","api/gammapy.maps.TimeMapAxis.rst","api/gammapy.maps.WcsGeom.rst","api/gammapy.maps.WcsMap.rst","api/gammapy.maps.WcsNDMap.rst","api/gammapy.maps.containment_radius.rst","api/gammapy.maps.containment_region.rst","api/gammapy.modeling.Covariance.rst","api/gammapy.modeling.Fit.rst","api/gammapy.modeling.Parameter.rst","api/gammapy.modeling.Parameters.rst","api/gammapy.modeling.PriorParameter.rst","api/gammapy.modeling.PriorParameters.rst","api/gammapy.modeling.models.BrokenPowerLawSpectralModel.rst","api/gammapy.modeling.models.CompoundSpectralModel.rst","api/gammapy.modeling.models.ConstantFluxSpatialModel.rst","api/gammapy.modeling.models.ConstantSpatialModel.rst","api/gammapy.modeling.models.ConstantSpectralModel.rst","api/gammapy.modeling.models.ConstantTemporalModel.rst","api/gammapy.modeling.models.DatasetModels.rst","api/gammapy.modeling.models.DiskSpatialModel.rst","api/gammapy.modeling.models.EBLAbsorptionNormSpectralModel.rst","api/gammapy.modeling.models.EBL_DATA_BUILTIN.rst","api/gammapy.modeling.models.ExpCutoffPowerLaw3FGLSpectralModel.rst","api/gammapy.modeling.models.ExpCutoffPowerLawNormSpectralModel.rst","api/gammapy.modeling.models.ExpCutoffPowerLawSpectralModel.rst","api/gammapy.modeling.models.ExpDecayTemporalModel.rst","api/gammapy.modeling.models.FoVBackgroundModel.rst","api/gammapy.modeling.models.GaussianSpatialModel.rst","api/gammapy.modeling.models.GaussianSpectralModel.rst","api/gammapy.modeling.models.GaussianTemporalModel.rst","api/gammapy.modeling.models.GeneralizedGaussianSpatialModel.rst","api/gammapy.modeling.models.GeneralizedGaussianTemporalModel.rst","api/gammapy.modeling.models.LightCurveTemplateTemporalModel.rst","api/gammapy.modeling.models.LinearTemporalModel.rst","api/gammapy.modeling.models.LogParabolaNormSpectralModel.rst","api/gammapy.modeling.models.LogParabolaSpectralModel.rst","api/gammapy.modeling.models.MODEL_REGISTRY.rst","api/gammapy.modeling.models.MeyerCrabSpectralModel.rst","api/gammapy.modeling.models.Model.rst","api/gammapy.modeling.models.ModelBase.rst","api/gammapy.modeling.models.Models.rst","api/gammapy.modeling.models.NaimaSpectralModel.rst","api/gammapy.modeling.models.PiecewiseNormSpatialModel.rst","api/gammapy.modeling.models.PiecewiseNormSpectralModel.rst","api/gammapy.modeling.models.PointSpatialModel.rst","api/gammapy.modeling.models.PowerLaw2SpectralModel.rst","api/gammapy.modeling.models.PowerLawNormSpectralModel.rst","api/gammapy.modeling.models.PowerLawSpectralModel.rst","api/gammapy.modeling.models.PowerLawTemporalModel.rst","api/gammapy.modeling.models.SPATIAL_MODEL_REGISTRY.rst","api/gammapy.modeling.models.SPECTRAL_MODEL_REGISTRY.rst","api/gammapy.modeling.models.ScaleSpectralModel.rst","api/gammapy.modeling.models.Shell2SpatialModel.rst","api/gammapy.modeling.models.ShellSpatialModel.rst","api/gammapy.modeling.models.SineTemporalModel.rst","api/gammapy.modeling.models.SkyModel.rst","api/gammapy.modeling.models.SmoothBrokenPowerLawSpectralModel.rst","api/gammapy.modeling.models.SpatialModel.rst","api/gammapy.modeling.models.SpectralModel.rst","api/gammapy.modeling.models.SuperExpCutoffPowerLaw3FGLSpectralModel.rst","api/gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLDR3SpectralModel.rst","api/gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLSpectralModel.rst","api/gammapy.modeling.models.TEMPORAL_MODEL_REGISTRY.rst","api/gammapy.modeling.models.TemplateNDSpatialModel.rst","api/gammapy.modeling.models.TemplateNDSpectralModel.rst","api/gammapy.modeling.models.TemplateNPredModel.rst","api/gammapy.modeling.models.TemplatePhaseCurveTemporalModel.rst","api/gammapy.modeling.models.TemplateSpatialModel.rst","api/gammapy.modeling.models.TemplateSpectralModel.rst","api/gammapy.modeling.models.TemporalModel.rst","api/gammapy.modeling.models.create_cosmic_ray_spectral_model.rst","api/gammapy.modeling.models.create_crab_spectral_model.rst","api/gammapy.modeling.models.create_fermi_isotropic_diffuse_model.rst","api/gammapy.modeling.models.integrate_spectrum.rst","api/gammapy.modeling.models.scale_plot_flux.rst","api/gammapy.modeling.select_nested_models.rst","api/gammapy.modeling.stat_profile_ul_scipy.rst","api/gammapy.stats.CashCountsStatistic.rst","api/gammapy.stats.WStatCountsStatistic.rst","api/gammapy.stats.cash.rst","api/gammapy.stats.cash_sum_cython.rst","api/gammapy.stats.compute_chisq.rst","api/gammapy.stats.compute_flux_doubling.rst","api/gammapy.stats.compute_fpp.rst","api/gammapy.stats.compute_fvar.rst","api/gammapy.stats.cstat.rst","api/gammapy.stats.f_cash_root_cython.rst","api/gammapy.stats.get_wstat_gof_terms.rst","api/gammapy.stats.get_wstat_mu_bkg.rst","api/gammapy.stats.norm_bounds_cython.rst","api/gammapy.stats.wstat.rst","api/gammapy.utils.cluster.hierarchical_clustering.rst","api/gammapy.utils.cluster.standard_scaler.rst","api/gammapy.utils.coordinates.D_SUN_TO_GALACTIC_CENTER.rst","api/gammapy.utils.coordinates.cartesian.rst","api/gammapy.utils.coordinates.fov_to_sky.rst","api/gammapy.utils.coordinates.galactic.rst","api/gammapy.utils.coordinates.motion_since_birth.rst","api/gammapy.utils.coordinates.polar.rst","api/gammapy.utils.coordinates.sky_to_fov.rst","api/gammapy.utils.coordinates.velocity_glon_glat.rst","api/gammapy.utils.fits.HDULocation.rst","api/gammapy.utils.fits.LazyFitsData.rst","api/gammapy.utils.fits.earth_location_from_dict.rst","api/gammapy.utils.integrate.trapz_loglog.rst","api/gammapy.utils.interpolation.ScaledRegularGridInterpolator.rst","api/gammapy.utils.interpolation.interpolate_profile.rst","api/gammapy.utils.interpolation.interpolation_scale.rst","api/gammapy.utils.parallel.BACKEND_DEFAULT.rst","api/gammapy.utils.parallel.METHOD_DEFAULT.rst","api/gammapy.utils.parallel.METHOD_KWARGS_DEFAULT.rst","api/gammapy.utils.parallel.N_JOBS_DEFAULT.rst","api/gammapy.utils.parallel.POOL_KWARGS_DEFAULT.rst","api/gammapy.utils.parallel.multiprocessing_manager.rst","api/gammapy.utils.parallel.run_multiprocessing.rst","api/gammapy.utils.random.InverseCDFSampler.rst","api/gammapy.utils.random.draw.rst","api/gammapy.utils.random.get_random_state.rst","api/gammapy.utils.random.normalize.rst","api/gammapy.utils.random.pdf.rst","api/gammapy.utils.random.sample_powerlaw.rst","api/gammapy.utils.random.sample_sphere.rst","api/gammapy.utils.random.sample_sphere_distance.rst","api/gammapy.utils.random.sample_times.rst","api/gammapy.utils.regions.compound_region_to_regions.rst","api/gammapy.utils.regions.make_concentric_annulus_sky_regions.rst","api/gammapy.utils.regions.make_orthogonal_rectangle_sky_regions.rst","api/gammapy.utils.regions.region_to_frame.rst","api/gammapy.utils.regions.regions_to_compound_region.rst","api/gammapy.utils.scripts.get_images_paths.rst","api/gammapy.utils.scripts.make_path.rst","api/gammapy.utils.scripts.read_yaml.rst","api/gammapy.utils.scripts.recursive_merge_dicts.rst","api/gammapy.utils.scripts.write_yaml.rst","api/gammapy.utils.table.hstack_columns.rst","api/gammapy.utils.table.table_row_to_dict.rst","api/gammapy.utils.table.table_standardise_units_copy.rst","api/gammapy.utils.table.table_standardise_units_inplace.rst","api/gammapy.utils.testing.Checker.rst","api/gammapy.utils.testing.assert_quantity_allclose.rst","api/gammapy.utils.testing.assert_skycoord_allclose.rst","api/gammapy.utils.testing.assert_time_allclose.rst","api/gammapy.utils.testing.mpl_plot_check.rst","api/gammapy.utils.testing.requires_data.rst","api/gammapy.utils.testing.requires_dependency.rst","api/gammapy.utils.time.absolute_time.rst","api/gammapy.utils.time.time_ref_from_dict.rst","api/gammapy.utils.time.time_ref_to_dict.rst","api/gammapy.utils.time.time_relative_to_ref.rst","api/gammapy.utils.units.standardise_unit.rst","api/gammapy.utils.units.unit_from_fits_image_hdu.rst","api/gammapy.visualization.MapPanelPlotter.rst","api/gammapy.visualization.add_colorbar.rst","api/gammapy.visualization.annotate_heatmap.rst","api/gammapy.visualization.colormap_hess.rst","api/gammapy.visualization.colormap_milagro.rst","api/gammapy.visualization.plot_contour_line.rst","api/gammapy.visualization.plot_distribution.rst","api/gammapy.visualization.plot_heatmap.rst","api/gammapy.visualization.plot_map_rgb.rst","api/gammapy.visualization.plot_npred_signal.rst","api/gammapy.visualization.plot_spectrum_datasets_off_regions.rst","api/gammapy.visualization.plot_theta_squared_table.rst","development/dependencies.rst","development/dev_howto.rst","development/doc_howto.rst","development/index.rst","development/intro.rst","development/pigs/index.rst","development/pigs/pig-001.rst","development/pigs/pig-002.rst","development/pigs/pig-003.rst","development/pigs/pig-004.rst","development/pigs/pig-005.rst","development/pigs/pig-006.rst","development/pigs/pig-007.rst","development/pigs/pig-008.rst","development/pigs/pig-009.rst","development/pigs/pig-010.rst","development/pigs/pig-011.rst","development/pigs/pig-012.rst","development/pigs/pig-013.rst","development/pigs/pig-014.rst","development/pigs/pig-016.rst","development/pigs/pig-018.rst","development/pigs/pig-019.rst","development/pigs/pig-020.rst","development/pigs/pig-021.rst","development/pigs/pig-022.rst","development/pigs/pig-023.rst","development/pigs/pig-024.rst","development/pigs/pig-025.rst","development/pigs/pig-026.rst","development/release.rst","development/setup.rst","getting-started/environments.rst","getting-started/index.rst","getting-started/install.rst","getting-started/quickstart.rst","getting-started/troubleshooting.rst","getting-started/usage.rst","index.rst","release-notes/index.rst","release-notes/v0.1.rst","release-notes/v0.10.rst","release-notes/v0.11.rst","release-notes/v0.12.rst","release-notes/v0.13.rst","release-notes/v0.14.rst","release-notes/v0.15.rst","release-notes/v0.16.rst","release-notes/v0.17.rst","release-notes/v0.18.rst","release-notes/v0.18.1.rst","release-notes/v0.18.2.rst","release-notes/v0.19.rst","release-notes/v0.2.rst","release-notes/v0.20.rst","release-notes/v0.20.1.rst","release-notes/v0.3.rst","release-notes/v0.4.rst","release-notes/v0.5.rst","release-notes/v0.6.rst","release-notes/v0.7.rst","release-notes/v0.8.rst","release-notes/v0.9.rst","release-notes/v1.0.rst","release-notes/v1.0.1.rst","release-notes/v1.0.2.rst","release-notes/v1.1.rst","release-notes/v1.2.rst","tutorials/analysis-1d/cta_sensitivity.rst","tutorials/analysis-1d/extended_source_spectral_analysis.rst","tutorials/analysis-1d/sed_fitting.rst","tutorials/analysis-1d/sg_execution_times.rst","tutorials/analysis-1d/spectral_analysis.rst","tutorials/analysis-1d/spectral_analysis_hli.rst","tutorials/analysis-1d/spectral_analysis_rad_max.rst","tutorials/analysis-1d/spectrum_simulation.rst","tutorials/analysis-2d/detect.rst","tutorials/analysis-2d/modeling_2D.rst","tutorials/analysis-2d/ring_background.rst","tutorials/analysis-2d/sg_execution_times.rst","tutorials/analysis-3d/analysis_3d.rst","tutorials/analysis-3d/analysis_mwl.rst","tutorials/analysis-3d/cta_data_analysis.rst","tutorials/analysis-3d/energy_dependent_estimation.rst","tutorials/analysis-3d/event_sampling.rst","tutorials/analysis-3d/event_sampling_nrg_depend_models.rst","tutorials/analysis-3d/flux_profiles.rst","tutorials/analysis-3d/sg_execution_times.rst","tutorials/analysis-3d/simulate_3d.rst","tutorials/analysis-time/Variability_estimation.rst","tutorials/analysis-time/light_curve.rst","tutorials/analysis-time/light_curve_flare.rst","tutorials/analysis-time/light_curve_simulation.rst","tutorials/analysis-time/pulsar_analysis.rst","tutorials/analysis-time/sg_execution_times.rst","tutorials/api/astro_dark_matter.rst","tutorials/api/catalog.rst","tutorials/api/datasets.rst","tutorials/api/fitting.rst","tutorials/api/irfs.rst","tutorials/api/makers.rst","tutorials/api/maps.rst","tutorials/api/mask_maps.rst","tutorials/api/model_management.rst","tutorials/api/models.rst","tutorials/api/observation_clustering.rst","tutorials/api/sg_execution_times.rst","tutorials/data/cta.rst","tutorials/data/fermi_lat.rst","tutorials/data/hawc.rst","tutorials/data/hess.rst","tutorials/data/sg_execution_times.rst","tutorials/index.rst","tutorials/scripts/sg_execution_times.rst","tutorials/scripts/survey_map.rst","tutorials/starting/analysis_1.rst","tutorials/starting/analysis_2.rst","tutorials/starting/overview.rst","tutorials/starting/sg_execution_times.rst","user-guide/astro/darkmatter/index.rst","user-guide/astro/index.rst","user-guide/astro/population/index.rst","user-guide/astro/source/index.rst","user-guide/astro/source/pulsar.rst","user-guide/astro/source/pwn.rst","user-guide/astro/source/snr.rst","user-guide/catalog.rst","user-guide/datasets/index.rst","user-guide/dl3.rst","user-guide/estimators.rst","user-guide/hli.rst","user-guide/howto.rst","user-guide/index.rst","user-guide/irf/aeff.rst","user-guide/irf/bkg.rst","user-guide/irf/edisp.rst","user-guide/irf/index.rst","user-guide/irf/psf.rst","user-guide/makers/fov.rst","user-guide/makers/index.rst","user-guide/makers/reflected.rst","user-guide/makers/ring.rst","user-guide/maps/hpxmap.rst","user-guide/maps/index.rst","user-guide/maps/regionmap.rst","user-guide/model-gallery/index.rst","user-guide/model-gallery/spatial/plot_constant.rst","user-guide/model-gallery/spatial/plot_disk.rst","user-guide/model-gallery/spatial/plot_gauss.rst","user-guide/model-gallery/spatial/plot_gen_gauss.rst","user-guide/model-gallery/spatial/plot_piecewise_norm_spatial.rst","user-guide/model-gallery/spatial/plot_point.rst","user-guide/model-gallery/spatial/plot_shell.rst","user-guide/model-gallery/spatial/plot_shell2.rst","user-guide/model-gallery/spatial/plot_template.rst","user-guide/model-gallery/spatial/sg_execution_times.rst","user-guide/model-gallery/spectral/plot_absorbed.rst","user-guide/model-gallery/spectral/plot_broken_powerlaw.rst","user-guide/model-gallery/spectral/plot_compound.rst","user-guide/model-gallery/spectral/plot_constant_spectral.rst","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw.rst","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw_3fgl.rst","user-guide/model-gallery/spectral/plot_exp_cutoff_powerlaw_norm_spectral.rst","user-guide/model-gallery/spectral/plot_gauss_spectral.rst","user-guide/model-gallery/spectral/plot_logparabola.rst","user-guide/model-gallery/spectral/plot_logparabola_norm_spectral.rst","user-guide/model-gallery/spectral/plot_naima.rst","user-guide/model-gallery/spectral/plot_piecewise_norm_spectral.rst","user-guide/model-gallery/spectral/plot_powerlaw.rst","user-guide/model-gallery/spectral/plot_powerlaw2.rst","user-guide/model-gallery/spectral/plot_powerlaw_norm_spectral.rst","user-guide/model-gallery/spectral/plot_smooth_broken_powerlaw.rst","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_3fgl.rst","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_4fgl.rst","user-guide/model-gallery/spectral/plot_super_exp_cutoff_powerlaw_4fgl_dr1.rst","user-guide/model-gallery/spectral/plot_template_spectral.rst","user-guide/model-gallery/spectral/sg_execution_times.rst","user-guide/model-gallery/temporal/plot_constant_temporal.rst","user-guide/model-gallery/temporal/plot_expdecay_temporal.rst","user-guide/model-gallery/temporal/plot_gaussian_temporal.rst","user-guide/model-gallery/temporal/plot_generalized_gaussian_temporal.rst","user-guide/model-gallery/temporal/plot_linear_temporal.rst","user-guide/model-gallery/temporal/plot_powerlaw_temporal.rst","user-guide/model-gallery/temporal/plot_sine_temporal.rst","user-guide/model-gallery/temporal/plot_template_phase_temporal.rst","user-guide/model-gallery/temporal/plot_template_temporal.rst","user-guide/model-gallery/temporal/sg_execution_times.rst","user-guide/modeling.rst","user-guide/package.rst","user-guide/references.rst","user-guide/scripts/index.rst","user-guide/stats/fit_statistics.rst","user-guide/stats/index.rst","user-guide/stats/wstat_derivation.rst","user-guide/utils.rst","user-guide/visualization/index.rst"],objects:{"gammapy-analysis-config":[[11,6,1,"cmdoption-gammapy-analysis-config-filename","--filename"],[11,6,1,"cmdoption-gammapy-analysis-config-overwrite","--overwrite"]],"gammapy-analysis-run":[[11,6,1,"cmdoption-gammapy-analysis-run-filename","--filename"],[11,6,1,"cmdoption-gammapy-analysis-run-out","--out"],[11,6,1,"cmdoption-gammapy-analysis-run-overwrite","--overwrite"]],"gammapy-download-datasets":[[11,6,1,"cmdoption-gammapy-download-datasets-out","--out"],[11,6,1,"cmdoption-gammapy-download-datasets-release","--release"]],"gammapy-download-notebooks":[[11,6,1,"cmdoption-gammapy-download-notebooks-out","--out"],[11,6,1,"cmdoption-gammapy-download-notebooks-release","--release"]],"gammapy-info":[[11,6,1,"cmdoption-gammapy-info-dependencies","--dependencies"],[11,6,1,"cmdoption-gammapy-info-envvar","--envvar"],[11,6,1,"cmdoption-gammapy-info-dependencies","--no-dependencies"],[11,6,1,"cmdoption-gammapy-info-envvar","--no-envvar"],[11,6,1,"cmdoption-gammapy-info-system","--no-system"],[11,6,1,"cmdoption-gammapy-info-version","--no-version"],[11,6,1,"cmdoption-gammapy-info-system","--system"],[11,6,1,"cmdoption-gammapy-info-version","--version"]],"gammapy.analysis":[[15,1,1,"","Analysis"],[16,1,1,"","AnalysisConfig"]],"gammapy.analysis.Analysis":[[15,2,1,"","config"],[15,3,1,"","get_datasets"],[15,3,1,"","get_excess_map"],[15,3,1,"","get_flux_points"],[15,3,1,"","get_light_curve"],[15,3,1,"","get_observations"],[15,2,1,"","models"],[15,3,1,"","read_datasets"],[15,3,1,"","read_models"],[15,3,1,"","run_fit"],[15,3,1,"","set_models"],[15,3,1,"","update_config"],[15,3,1,"","write_datasets"],[15,3,1,"","write_models"]],"gammapy.analysis.AnalysisConfig":[[16,3,1,"","construct"],[16,3,1,"","copy"],[16,3,1,"","dict"],[16,3,1,"","from_orm"],[16,3,1,"","from_yaml"],[16,3,1,"","json"],[16,2,1,"","model_computed_fields"],[16,2,1,"","model_config"],[16,3,1,"","model_construct"],[16,3,1,"","model_copy"],[16,3,1,"","model_dump"],[16,3,1,"","model_dump_json"],[16,2,1,"","model_extra"],[16,2,1,"","model_fields"],[16,2,1,"","model_fields_set"],[16,3,1,"","model_json_schema"],[16,3,1,"","model_parametrized_name"],[16,3,1,"","model_post_init"],[16,3,1,"","model_rebuild"],[16,3,1,"","model_validate"],[16,3,1,"","model_validate_json"],[16,3,1,"","model_validate_strings"],[16,3,1,"","parse_file"],[16,3,1,"","parse_obj"],[16,3,1,"","parse_raw"],[16,3,1,"","read"],[16,3,1,"","schema"],[16,3,1,"","schema_json"],[16,3,1,"","set_logging"],[16,3,1,"","to_yaml"],[16,3,1,"","update"],[16,3,1,"","update_forward_refs"],[16,3,1,"","validate"],[16,3,1,"","write"]],"gammapy.astro":[[1,0,0,"-","darkmatter"],[1,0,0,"-","population"],[1,0,0,"-","source"]],"gammapy.astro.darkmatter":[[17,1,1,"","BurkertProfile"],[18,1,1,"","DMProfile"],[19,1,1,"","DarkMatterAnnihilationSpectralModel"],[20,1,1,"","DarkMatterDecaySpectralModel"],[21,1,1,"","EinastoProfile"],[22,1,1,"","IsothermalProfile"],[23,1,1,"","JFactory"],[24,1,1,"","MooreProfile"],[25,1,1,"","NFWProfile"],[26,1,1,"","PrimaryFlux"],[27,1,1,"","ZhaoProfile"]],"gammapy.astro.darkmatter.BurkertProfile":[[17,2,1,"","DEFAULT_SCALE_RADIUS"],[17,2,1,"","DISTANCE_GC"],[17,2,1,"","LOCAL_DENSITY"],[17,3,1,"","__call__"],[17,3,1,"","evaluate"],[17,3,1,"","integral"],[17,3,1,"","integrate_spectrum_separation"],[17,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.DMProfile":[[18,2,1,"","DISTANCE_GC"],[18,2,1,"","LOCAL_DENSITY"],[18,3,1,"","__call__"],[18,3,1,"","integral"],[18,3,1,"","integrate_spectrum_separation"],[18,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.DarkMatterAnnihilationSpectralModel":[[19,2,1,"","THERMAL_RELIC_CROSS_SECTION"],[19,3,1,"","__call__"],[19,3,1,"","copy"],[19,2,1,"","covariance"],[19,2,1,"","default_parameters"],[19,3,1,"","energy_flux"],[19,3,1,"","energy_flux_error"],[19,3,1,"","evaluate"],[19,3,1,"","evaluate_error"],[19,3,1,"","freeze"],[19,3,1,"","from_dict"],[19,3,1,"","from_parameters"],[19,2,1,"","frozen"],[19,3,1,"","integral"],[19,3,1,"","integral_error"],[19,3,1,"","inverse"],[19,3,1,"","inverse_all"],[19,2,1,"","is_norm_spectral_model"],[19,2,1,"","parameters"],[19,2,1,"","pivot_energy"],[19,3,1,"","plot"],[19,3,1,"","plot_error"],[19,3,1,"","reassign"],[19,3,1,"","reference_fluxes"],[19,2,1,"","scale"],[19,3,1,"","spectral_index"],[19,3,1,"","spectral_index_error"],[19,2,1,"","tag"],[19,3,1,"","to_dict"],[19,2,1,"","type"],[19,3,1,"","unfreeze"]],"gammapy.astro.darkmatter.DarkMatterDecaySpectralModel":[[20,2,1,"","LIFETIME_AGE_OF_UNIVERSE"],[20,3,1,"","__call__"],[20,3,1,"","copy"],[20,2,1,"","covariance"],[20,2,1,"","default_parameters"],[20,3,1,"","energy_flux"],[20,3,1,"","energy_flux_error"],[20,3,1,"","evaluate"],[20,3,1,"","evaluate_error"],[20,3,1,"","freeze"],[20,3,1,"","from_dict"],[20,3,1,"","from_parameters"],[20,2,1,"","frozen"],[20,3,1,"","integral"],[20,3,1,"","integral_error"],[20,3,1,"","inverse"],[20,3,1,"","inverse_all"],[20,2,1,"","is_norm_spectral_model"],[20,2,1,"","parameters"],[20,2,1,"","pivot_energy"],[20,3,1,"","plot"],[20,3,1,"","plot_error"],[20,3,1,"","reassign"],[20,3,1,"","reference_fluxes"],[20,2,1,"","scale"],[20,3,1,"","spectral_index"],[20,3,1,"","spectral_index_error"],[20,2,1,"","tag"],[20,3,1,"","to_dict"],[20,2,1,"","type"],[20,3,1,"","unfreeze"]],"gammapy.astro.darkmatter.EinastoProfile":[[21,2,1,"","DEFAULT_ALPHA"],[21,2,1,"","DEFAULT_SCALE_RADIUS"],[21,2,1,"","DISTANCE_GC"],[21,2,1,"","LOCAL_DENSITY"],[21,3,1,"","__call__"],[21,3,1,"","evaluate"],[21,3,1,"","integral"],[21,3,1,"","integrate_spectrum_separation"],[21,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.IsothermalProfile":[[22,2,1,"","DEFAULT_SCALE_RADIUS"],[22,2,1,"","DISTANCE_GC"],[22,2,1,"","LOCAL_DENSITY"],[22,3,1,"","__call__"],[22,3,1,"","evaluate"],[22,3,1,"","integral"],[22,3,1,"","integrate_spectrum_separation"],[22,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.JFactory":[[23,3,1,"","compute_differential_jfactor"],[23,3,1,"","compute_jfactor"]],"gammapy.astro.darkmatter.MooreProfile":[[24,2,1,"","DEFAULT_SCALE_RADIUS"],[24,2,1,"","DISTANCE_GC"],[24,2,1,"","LOCAL_DENSITY"],[24,3,1,"","__call__"],[24,3,1,"","evaluate"],[24,3,1,"","integral"],[24,3,1,"","integrate_spectrum_separation"],[24,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.NFWProfile":[[25,2,1,"","DEFAULT_SCALE_RADIUS"],[25,2,1,"","DISTANCE_GC"],[25,2,1,"","LOCAL_DENSITY"],[25,3,1,"","__call__"],[25,3,1,"","evaluate"],[25,3,1,"","integral"],[25,3,1,"","integrate_spectrum_separation"],[25,3,1,"","scale_to_local_density"]],"gammapy.astro.darkmatter.PrimaryFlux":[[26,3,1,"","__call__"],[26,2,1,"","allowed_channels"],[26,2,1,"","channel"],[26,2,1,"","channel_registry"],[26,3,1,"","copy"],[26,2,1,"","covariance"],[26,2,1,"","default_parameters"],[26,3,1,"","energy_flux"],[26,3,1,"","energy_flux_error"],[26,3,1,"","evaluate"],[26,3,1,"","evaluate_error"],[26,3,1,"","freeze"],[26,3,1,"","from_dict"],[26,3,1,"","from_parameters"],[26,2,1,"","frozen"],[26,3,1,"","integral"],[26,3,1,"","integral_error"],[26,3,1,"","inverse"],[26,3,1,"","inverse_all"],[26,2,1,"","is_norm_spectral_model"],[26,2,1,"","mDM"],[26,2,1,"","map"],[26,2,1,"","parameters"],[26,2,1,"","pivot_energy"],[26,3,1,"","plot"],[26,3,1,"","plot_error"],[26,3,1,"","reassign"],[26,3,1,"","reference_fluxes"],[26,3,1,"","spectral_index"],[26,3,1,"","spectral_index_error"],[26,2,1,"","table_filename"],[26,2,1,"","tag"],[26,3,1,"","to_dict"],[26,2,1,"","type"],[26,3,1,"","unfreeze"],[26,3,1,"","write"]],"gammapy.astro.darkmatter.ZhaoProfile":[[27,2,1,"","DEFAULT_ALPHA"],[27,2,1,"","DEFAULT_BETA"],[27,2,1,"","DEFAULT_GAMMA"],[27,2,1,"","DEFAULT_SCALE_RADIUS"],[27,2,1,"","DISTANCE_GC"],[27,2,1,"","LOCAL_DENSITY"],[27,3,1,"","__call__"],[27,3,1,"","evaluate"],[27,3,1,"","integral"],[27,3,1,"","integrate_spectrum_separation"],[27,3,1,"","scale_to_local_density"]],"gammapy.astro.population":[[28,1,1,"","CaseBattacharya1998"],[29,1,1,"","Exponential"],[30,1,1,"","FaucherKaspi2006"],[31,1,1,"","FaucherKaspi2006VelocityBimodal"],[32,1,1,"","FaucherKaspi2006VelocityMaxwellian"],[33,1,1,"","FaucherSpiral"],[34,1,1,"","LogSpiral"],[35,1,1,"","Lorimer2006"],[36,1,1,"","Paczynski1990"],[37,1,1,"","Paczynski1990Velocity"],[38,1,1,"","ValleeSpiral"],[39,1,1,"","YusifovKucuk2004"],[40,1,1,"","YusifovKucuk2004B"],[41,4,1,"","add_observed_parameters"],[42,4,1,"","add_pulsar_parameters"],[43,4,1,"","add_pwn_parameters"],[44,4,1,"","add_snr_parameters"],[45,4,1,"","make_base_catalog_galactic"],[46,4,1,"","make_catalog_random_positions_cube"],[47,4,1,"","make_catalog_random_positions_sphere"],[48,5,1,"","radial_distributions"],[49,5,1,"","velocity_distributions"]],"gammapy.astro.population.CaseBattacharya1998":[[28,3,1,"","__call__"],[28,2,1,"","alpha"],[28,2,1,"","amplitude"],[28,2,1,"","bbox_with_units"],[28,2,1,"","beta"],[28,2,1,"","bounding_box"],[28,2,1,"","bounds"],[28,3,1,"","coerce_units"],[28,2,1,"","col_fit_deriv"],[28,3,1,"","copy"],[28,2,1,"","cov_matrix"],[28,3,1,"","deepcopy"],[28,2,1,"","eqcons"],[28,3,1,"","evaluate"],[28,2,1,"","evolved"],[28,2,1,"","fit_deriv"],[28,2,1,"","fittable"],[28,2,1,"","fixed"],[28,3,1,"","get_bounding_box"],[28,3,1,"","has_inverse"],[28,2,1,"","has_user_bounding_box"],[28,2,1,"","has_user_inverse"],[28,2,1,"","ineqcons"],[28,3,1,"","input_shape"],[28,2,1,"","input_units"],[28,2,1,"","input_units_allow_dimensionless"],[28,2,1,"","input_units_equivalencies"],[28,2,1,"","input_units_strict"],[28,2,1,"","inputs"],[28,2,1,"","inverse"],[28,2,1,"","linear"],[28,2,1,"","meta"],[28,2,1,"","model_constraints"],[28,2,1,"","model_set_axis"],[28,2,1,"","n_inputs"],[28,2,1,"","n_outputs"],[28,2,1,"","n_submodels"],[28,2,1,"","name"],[28,3,1,"","output_units"],[28,2,1,"","outputs"],[28,2,1,"","param_names"],[28,2,1,"","param_sets"],[28,2,1,"","parameter_constraints"],[28,2,1,"","parameters"],[28,3,1,"","prepare_inputs"],[28,3,1,"","prepare_outputs"],[28,3,1,"","rename"],[28,3,1,"","render"],[28,2,1,"","return_units"],[28,2,1,"","separable"],[28,3,1,"","set_slice_args"],[28,2,1,"","standard_broadcasting"],[28,2,1,"","stds"],[28,3,1,"","strip_units_from_tree"],[28,3,1,"","sum_of_implicit_terms"],[28,2,1,"","sync_constraints"],[28,2,1,"","tied"],[28,2,1,"","uses_quantity"],[28,3,1,"","with_units_from_data"],[28,3,1,"","without_units_for_data"]],"gammapy.astro.population.Exponential":[[29,3,1,"","__call__"],[29,2,1,"","amplitude"],[29,2,1,"","bbox_with_units"],[29,2,1,"","bounding_box"],[29,2,1,"","bounds"],[29,3,1,"","coerce_units"],[29,2,1,"","col_fit_deriv"],[29,3,1,"","copy"],[29,2,1,"","cov_matrix"],[29,3,1,"","deepcopy"],[29,2,1,"","eqcons"],[29,3,1,"","evaluate"],[29,2,1,"","evolved"],[29,2,1,"","fit_deriv"],[29,2,1,"","fittable"],[29,2,1,"","fixed"],[29,3,1,"","get_bounding_box"],[29,3,1,"","has_inverse"],[29,2,1,"","has_user_bounding_box"],[29,2,1,"","has_user_inverse"],[29,2,1,"","ineqcons"],[29,3,1,"","input_shape"],[29,2,1,"","input_units"],[29,2,1,"","input_units_allow_dimensionless"],[29,2,1,"","input_units_equivalencies"],[29,2,1,"","input_units_strict"],[29,2,1,"","inputs"],[29,2,1,"","inverse"],[29,2,1,"","linear"],[29,2,1,"","meta"],[29,2,1,"","model_constraints"],[29,2,1,"","model_set_axis"],[29,2,1,"","n_inputs"],[29,2,1,"","n_outputs"],[29,2,1,"","n_submodels"],[29,2,1,"","name"],[29,3,1,"","output_units"],[29,2,1,"","outputs"],[29,2,1,"","param_names"],[29,2,1,"","param_sets"],[29,2,1,"","parameter_constraints"],[29,2,1,"","parameters"],[29,3,1,"","prepare_inputs"],[29,3,1,"","prepare_outputs"],[29,3,1,"","rename"],[29,3,1,"","render"],[29,2,1,"","return_units"],[29,2,1,"","separable"],[29,3,1,"","set_slice_args"],[29,2,1,"","standard_broadcasting"],[29,2,1,"","stds"],[29,3,1,"","strip_units_from_tree"],[29,3,1,"","sum_of_implicit_terms"],[29,2,1,"","sync_constraints"],[29,2,1,"","tied"],[29,2,1,"","uses_quantity"],[29,3,1,"","with_units_from_data"],[29,3,1,"","without_units_for_data"],[29,2,1,"","z_0"]],"gammapy.astro.population.FaucherKaspi2006":[[30,3,1,"","__call__"],[30,2,1,"","amplitude"],[30,2,1,"","bbox_with_units"],[30,2,1,"","bounding_box"],[30,2,1,"","bounds"],[30,3,1,"","coerce_units"],[30,2,1,"","col_fit_deriv"],[30,3,1,"","copy"],[30,2,1,"","cov_matrix"],[30,3,1,"","deepcopy"],[30,2,1,"","eqcons"],[30,3,1,"","evaluate"],[30,2,1,"","evolved"],[30,2,1,"","fit_deriv"],[30,2,1,"","fittable"],[30,2,1,"","fixed"],[30,3,1,"","get_bounding_box"],[30,3,1,"","has_inverse"],[30,2,1,"","has_user_bounding_box"],[30,2,1,"","has_user_inverse"],[30,2,1,"","ineqcons"],[30,3,1,"","input_shape"],[30,2,1,"","input_units"],[30,2,1,"","input_units_allow_dimensionless"],[30,2,1,"","input_units_equivalencies"],[30,2,1,"","input_units_strict"],[30,2,1,"","inputs"],[30,2,1,"","inverse"],[30,2,1,"","linear"],[30,2,1,"","meta"],[30,2,1,"","model_constraints"],[30,2,1,"","model_set_axis"],[30,2,1,"","n_inputs"],[30,2,1,"","n_outputs"],[30,2,1,"","n_submodels"],[30,2,1,"","name"],[30,3,1,"","output_units"],[30,2,1,"","outputs"],[30,2,1,"","param_names"],[30,2,1,"","param_sets"],[30,2,1,"","parameter_constraints"],[30,2,1,"","parameters"],[30,3,1,"","prepare_inputs"],[30,3,1,"","prepare_outputs"],[30,2,1,"","r_0"],[30,3,1,"","rename"],[30,3,1,"","render"],[30,2,1,"","return_units"],[30,2,1,"","separable"],[30,3,1,"","set_slice_args"],[30,2,1,"","sigma"],[30,2,1,"","standard_broadcasting"],[30,2,1,"","stds"],[30,3,1,"","strip_units_from_tree"],[30,3,1,"","sum_of_implicit_terms"],[30,2,1,"","sync_constraints"],[30,2,1,"","tied"],[30,2,1,"","uses_quantity"],[30,3,1,"","with_units_from_data"],[30,3,1,"","without_units_for_data"]],"gammapy.astro.population.FaucherKaspi2006VelocityBimodal":[[31,3,1,"","__call__"],[31,2,1,"","amplitude"],[31,2,1,"","bbox_with_units"],[31,2,1,"","bounding_box"],[31,2,1,"","bounds"],[31,3,1,"","coerce_units"],[31,2,1,"","col_fit_deriv"],[31,3,1,"","copy"],[31,2,1,"","cov_matrix"],[31,3,1,"","deepcopy"],[31,2,1,"","eqcons"],[31,3,1,"","evaluate"],[31,2,1,"","fit_deriv"],[31,2,1,"","fittable"],[31,2,1,"","fixed"],[31,3,1,"","get_bounding_box"],[31,3,1,"","has_inverse"],[31,2,1,"","has_user_bounding_box"],[31,2,1,"","has_user_inverse"],[31,2,1,"","ineqcons"],[31,3,1,"","input_shape"],[31,2,1,"","input_units"],[31,2,1,"","input_units_allow_dimensionless"],[31,2,1,"","input_units_equivalencies"],[31,2,1,"","input_units_strict"],[31,2,1,"","inputs"],[31,2,1,"","inverse"],[31,2,1,"","linear"],[31,2,1,"","meta"],[31,2,1,"","model_constraints"],[31,2,1,"","model_set_axis"],[31,2,1,"","n_inputs"],[31,2,1,"","n_outputs"],[31,2,1,"","n_submodels"],[31,2,1,"","name"],[31,3,1,"","output_units"],[31,2,1,"","outputs"],[31,2,1,"","param_names"],[31,2,1,"","param_sets"],[31,2,1,"","parameter_constraints"],[31,2,1,"","parameters"],[31,3,1,"","prepare_inputs"],[31,3,1,"","prepare_outputs"],[31,3,1,"","rename"],[31,3,1,"","render"],[31,2,1,"","return_units"],[31,2,1,"","separable"],[31,3,1,"","set_slice_args"],[31,2,1,"","sigma_1"],[31,2,1,"","sigma_2"],[31,2,1,"","standard_broadcasting"],[31,2,1,"","stds"],[31,3,1,"","strip_units_from_tree"],[31,3,1,"","sum_of_implicit_terms"],[31,2,1,"","sync_constraints"],[31,2,1,"","tied"],[31,2,1,"","uses_quantity"],[31,2,1,"","w"],[31,3,1,"","with_units_from_data"],[31,3,1,"","without_units_for_data"]],"gammapy.astro.population.FaucherKaspi2006VelocityMaxwellian":[[32,3,1,"","__call__"],[32,2,1,"","amplitude"],[32,2,1,"","bbox_with_units"],[32,2,1,"","bounding_box"],[32,2,1,"","bounds"],[32,3,1,"","coerce_units"],[32,2,1,"","col_fit_deriv"],[32,3,1,"","copy"],[32,2,1,"","cov_matrix"],[32,3,1,"","deepcopy"],[32,2,1,"","eqcons"],[32,3,1,"","evaluate"],[32,2,1,"","fit_deriv"],[32,2,1,"","fittable"],[32,2,1,"","fixed"],[32,3,1,"","get_bounding_box"],[32,3,1,"","has_inverse"],[32,2,1,"","has_user_bounding_box"],[32,2,1,"","has_user_inverse"],[32,2,1,"","ineqcons"],[32,3,1,"","input_shape"],[32,2,1,"","input_units"],[32,2,1,"","input_units_allow_dimensionless"],[32,2,1,"","input_units_equivalencies"],[32,2,1,"","input_units_strict"],[32,2,1,"","inputs"],[32,2,1,"","inverse"],[32,2,1,"","linear"],[32,2,1,"","meta"],[32,2,1,"","model_constraints"],[32,2,1,"","model_set_axis"],[32,2,1,"","n_inputs"],[32,2,1,"","n_outputs"],[32,2,1,"","n_submodels"],[32,2,1,"","name"],[32,3,1,"","output_units"],[32,2,1,"","outputs"],[32,2,1,"","param_names"],[32,2,1,"","param_sets"],[32,2,1,"","parameter_constraints"],[32,2,1,"","parameters"],[32,3,1,"","prepare_inputs"],[32,3,1,"","prepare_outputs"],[32,3,1,"","rename"],[32,3,1,"","render"],[32,2,1,"","return_units"],[32,2,1,"","separable"],[32,3,1,"","set_slice_args"],[32,2,1,"","sigma"],[32,2,1,"","standard_broadcasting"],[32,2,1,"","stds"],[32,3,1,"","strip_units_from_tree"],[32,3,1,"","sum_of_implicit_terms"],[32,2,1,"","sync_constraints"],[32,2,1,"","tied"],[32,2,1,"","uses_quantity"],[32,3,1,"","with_units_from_data"],[32,3,1,"","without_units_for_data"]],"gammapy.astro.population.FaucherSpiral":[[33,3,1,"","__call__"],[33,2,1,"","k"],[33,2,1,"","r_0"],[33,3,1,"","radius"],[33,2,1,"","spiralarms"],[33,3,1,"","theta"],[33,2,1,"","theta_0"],[33,3,1,"","xy_position"]],"gammapy.astro.population.LogSpiral":[[34,3,1,"","radius"],[34,3,1,"","theta"],[34,3,1,"","xy_position"]],"gammapy.astro.population.Lorimer2006":[[35,2,1,"","B"],[35,2,1,"","C"],[35,3,1,"","__call__"],[35,2,1,"","amplitude"],[35,2,1,"","bbox_with_units"],[35,2,1,"","bounding_box"],[35,2,1,"","bounds"],[35,3,1,"","coerce_units"],[35,2,1,"","col_fit_deriv"],[35,3,1,"","copy"],[35,2,1,"","cov_matrix"],[35,3,1,"","deepcopy"],[35,2,1,"","eqcons"],[35,3,1,"","evaluate"],[35,2,1,"","evolved"],[35,2,1,"","fit_deriv"],[35,2,1,"","fittable"],[35,2,1,"","fixed"],[35,3,1,"","get_bounding_box"],[35,3,1,"","has_inverse"],[35,2,1,"","has_user_bounding_box"],[35,2,1,"","has_user_inverse"],[35,2,1,"","ineqcons"],[35,3,1,"","input_shape"],[35,2,1,"","input_units"],[35,2,1,"","input_units_allow_dimensionless"],[35,2,1,"","input_units_equivalencies"],[35,2,1,"","input_units_strict"],[35,2,1,"","inputs"],[35,2,1,"","inverse"],[35,2,1,"","linear"],[35,2,1,"","meta"],[35,2,1,"","model_constraints"],[35,2,1,"","model_set_axis"],[35,2,1,"","n_inputs"],[35,2,1,"","n_outputs"],[35,2,1,"","n_submodels"],[35,2,1,"","name"],[35,3,1,"","output_units"],[35,2,1,"","outputs"],[35,2,1,"","param_names"],[35,2,1,"","param_sets"],[35,2,1,"","parameter_constraints"],[35,2,1,"","parameters"],[35,3,1,"","prepare_inputs"],[35,3,1,"","prepare_outputs"],[35,3,1,"","rename"],[35,3,1,"","render"],[35,2,1,"","return_units"],[35,2,1,"","separable"],[35,3,1,"","set_slice_args"],[35,2,1,"","standard_broadcasting"],[35,2,1,"","stds"],[35,3,1,"","strip_units_from_tree"],[35,3,1,"","sum_of_implicit_terms"],[35,2,1,"","sync_constraints"],[35,2,1,"","tied"],[35,2,1,"","uses_quantity"],[35,3,1,"","with_units_from_data"],[35,3,1,"","without_units_for_data"]],"gammapy.astro.population.Paczynski1990":[[36,3,1,"","__call__"],[36,2,1,"","amplitude"],[36,2,1,"","bbox_with_units"],[36,2,1,"","bounding_box"],[36,2,1,"","bounds"],[36,3,1,"","coerce_units"],[36,2,1,"","col_fit_deriv"],[36,3,1,"","copy"],[36,2,1,"","cov_matrix"],[36,3,1,"","deepcopy"],[36,2,1,"","eqcons"],[36,3,1,"","evaluate"],[36,2,1,"","evolved"],[36,2,1,"","fit_deriv"],[36,2,1,"","fittable"],[36,2,1,"","fixed"],[36,3,1,"","get_bounding_box"],[36,3,1,"","has_inverse"],[36,2,1,"","has_user_bounding_box"],[36,2,1,"","has_user_inverse"],[36,2,1,"","ineqcons"],[36,3,1,"","input_shape"],[36,2,1,"","input_units"],[36,2,1,"","input_units_allow_dimensionless"],[36,2,1,"","input_units_equivalencies"],[36,2,1,"","input_units_strict"],[36,2,1,"","inputs"],[36,2,1,"","inverse"],[36,2,1,"","linear"],[36,2,1,"","meta"],[36,2,1,"","model_constraints"],[36,2,1,"","model_set_axis"],[36,2,1,"","n_inputs"],[36,2,1,"","n_outputs"],[36,2,1,"","n_submodels"],[36,2,1,"","name"],[36,3,1,"","output_units"],[36,2,1,"","outputs"],[36,2,1,"","param_names"],[36,2,1,"","param_sets"],[36,2,1,"","parameter_constraints"],[36,2,1,"","parameters"],[36,3,1,"","prepare_inputs"],[36,3,1,"","prepare_outputs"],[36,2,1,"","r_exp"],[36,3,1,"","rename"],[36,3,1,"","render"],[36,2,1,"","return_units"],[36,2,1,"","separable"],[36,3,1,"","set_slice_args"],[36,2,1,"","standard_broadcasting"],[36,2,1,"","stds"],[36,3,1,"","strip_units_from_tree"],[36,3,1,"","sum_of_implicit_terms"],[36,2,1,"","sync_constraints"],[36,2,1,"","tied"],[36,2,1,"","uses_quantity"],[36,3,1,"","with_units_from_data"],[36,3,1,"","without_units_for_data"]],"gammapy.astro.population.Paczynski1990Velocity":[[37,3,1,"","__call__"],[37,2,1,"","amplitude"],[37,2,1,"","bbox_with_units"],[37,2,1,"","bounding_box"],[37,2,1,"","bounds"],[37,3,1,"","coerce_units"],[37,2,1,"","col_fit_deriv"],[37,3,1,"","copy"],[37,2,1,"","cov_matrix"],[37,3,1,"","deepcopy"],[37,2,1,"","eqcons"],[37,3,1,"","evaluate"],[37,2,1,"","fit_deriv"],[37,2,1,"","fittable"],[37,2,1,"","fixed"],[37,3,1,"","get_bounding_box"],[37,3,1,"","has_inverse"],[37,2,1,"","has_user_bounding_box"],[37,2,1,"","has_user_inverse"],[37,2,1,"","ineqcons"],[37,3,1,"","input_shape"],[37,2,1,"","input_units"],[37,2,1,"","input_units_allow_dimensionless"],[37,2,1,"","input_units_equivalencies"],[37,2,1,"","input_units_strict"],[37,2,1,"","inputs"],[37,2,1,"","inverse"],[37,2,1,"","linear"],[37,2,1,"","meta"],[37,2,1,"","model_constraints"],[37,2,1,"","model_set_axis"],[37,2,1,"","n_inputs"],[37,2,1,"","n_outputs"],[37,2,1,"","n_submodels"],[37,2,1,"","name"],[37,3,1,"","output_units"],[37,2,1,"","outputs"],[37,2,1,"","param_names"],[37,2,1,"","param_sets"],[37,2,1,"","parameter_constraints"],[37,2,1,"","parameters"],[37,3,1,"","prepare_inputs"],[37,3,1,"","prepare_outputs"],[37,3,1,"","rename"],[37,3,1,"","render"],[37,2,1,"","return_units"],[37,2,1,"","separable"],[37,3,1,"","set_slice_args"],[37,2,1,"","standard_broadcasting"],[37,2,1,"","stds"],[37,3,1,"","strip_units_from_tree"],[37,3,1,"","sum_of_implicit_terms"],[37,2,1,"","sync_constraints"],[37,2,1,"","tied"],[37,2,1,"","uses_quantity"],[37,2,1,"","v_0"],[37,3,1,"","with_units_from_data"],[37,3,1,"","without_units_for_data"]],"gammapy.astro.population.ValleeSpiral":[[38,2,1,"","bar_radius"],[38,2,1,"","m"],[38,2,1,"","p"],[38,2,1,"","r_0"],[38,2,1,"","r_sun"],[38,3,1,"","radius"],[38,2,1,"","spiralarms"],[38,3,1,"","theta"],[38,2,1,"","theta_0"],[38,3,1,"","xy_position"]],"gammapy.astro.population.YusifovKucuk2004":[[39,3,1,"","__call__"],[39,2,1,"","a"],[39,2,1,"","amplitude"],[39,2,1,"","b"],[39,2,1,"","bbox_with_units"],[39,2,1,"","bounding_box"],[39,2,1,"","bounds"],[39,3,1,"","coerce_units"],[39,2,1,"","col_fit_deriv"],[39,3,1,"","copy"],[39,2,1,"","cov_matrix"],[39,3,1,"","deepcopy"],[39,2,1,"","eqcons"],[39,3,1,"","evaluate"],[39,2,1,"","evolved"],[39,2,1,"","fit_deriv"],[39,2,1,"","fittable"],[39,2,1,"","fixed"],[39,3,1,"","get_bounding_box"],[39,3,1,"","has_inverse"],[39,2,1,"","has_user_bounding_box"],[39,2,1,"","has_user_inverse"],[39,2,1,"","ineqcons"],[39,3,1,"","input_shape"],[39,2,1,"","input_units"],[39,2,1,"","input_units_allow_dimensionless"],[39,2,1,"","input_units_equivalencies"],[39,2,1,"","input_units_strict"],[39,2,1,"","inputs"],[39,2,1,"","inverse"],[39,2,1,"","linear"],[39,2,1,"","meta"],[39,2,1,"","model_constraints"],[39,2,1,"","model_set_axis"],[39,2,1,"","n_inputs"],[39,2,1,"","n_outputs"],[39,2,1,"","n_submodels"],[39,2,1,"","name"],[39,3,1,"","output_units"],[39,2,1,"","outputs"],[39,2,1,"","param_names"],[39,2,1,"","param_sets"],[39,2,1,"","parameter_constraints"],[39,2,1,"","parameters"],[39,3,1,"","prepare_inputs"],[39,3,1,"","prepare_outputs"],[39,2,1,"","r_1"],[39,3,1,"","rename"],[39,3,1,"","render"],[39,2,1,"","return_units"],[39,2,1,"","separable"],[39,3,1,"","set_slice_args"],[39,2,1,"","standard_broadcasting"],[39,2,1,"","stds"],[39,3,1,"","strip_units_from_tree"],[39,3,1,"","sum_of_implicit_terms"],[39,2,1,"","sync_constraints"],[39,2,1,"","tied"],[39,2,1,"","uses_quantity"],[39,3,1,"","with_units_from_data"],[39,3,1,"","without_units_for_data"]],"gammapy.astro.population.YusifovKucuk2004B":[[40,3,1,"","__call__"],[40,2,1,"","a"],[40,2,1,"","amplitude"],[40,2,1,"","b"],[40,2,1,"","bbox_with_units"],[40,2,1,"","bounding_box"],[40,2,1,"","bounds"],[40,3,1,"","coerce_units"],[40,2,1,"","col_fit_deriv"],[40,3,1,"","copy"],[40,2,1,"","cov_matrix"],[40,3,1,"","deepcopy"],[40,2,1,"","eqcons"],[40,3,1,"","evaluate"],[40,2,1,"","evolved"],[40,2,1,"","fit_deriv"],[40,2,1,"","fittable"],[40,2,1,"","fixed"],[40,3,1,"","get_bounding_box"],[40,3,1,"","has_inverse"],[40,2,1,"","has_user_bounding_box"],[40,2,1,"","has_user_inverse"],[40,2,1,"","ineqcons"],[40,3,1,"","input_shape"],[40,2,1,"","input_units"],[40,2,1,"","input_units_allow_dimensionless"],[40,2,1,"","input_units_equivalencies"],[40,2,1,"","input_units_strict"],[40,2,1,"","inputs"],[40,2,1,"","inverse"],[40,2,1,"","linear"],[40,2,1,"","meta"],[40,2,1,"","model_constraints"],[40,2,1,"","model_set_axis"],[40,2,1,"","n_inputs"],[40,2,1,"","n_outputs"],[40,2,1,"","n_submodels"],[40,2,1,"","name"],[40,3,1,"","output_units"],[40,2,1,"","outputs"],[40,2,1,"","param_names"],[40,2,1,"","param_sets"],[40,2,1,"","parameter_constraints"],[40,2,1,"","parameters"],[40,3,1,"","prepare_inputs"],[40,3,1,"","prepare_outputs"],[40,3,1,"","rename"],[40,3,1,"","render"],[40,2,1,"","return_units"],[40,2,1,"","separable"],[40,3,1,"","set_slice_args"],[40,2,1,"","standard_broadcasting"],[40,2,1,"","stds"],[40,3,1,"","strip_units_from_tree"],[40,3,1,"","sum_of_implicit_terms"],[40,2,1,"","sync_constraints"],[40,2,1,"","tied"],[40,2,1,"","uses_quantity"],[40,3,1,"","with_units_from_data"],[40,3,1,"","without_units_for_data"]],"gammapy.astro.source":[[50,1,1,"","PWN"],[51,1,1,"","Pulsar"],[52,1,1,"","SNR"],[53,1,1,"","SNRTrueloveMcKee"],[54,1,1,"","SimplePulsar"]],"gammapy.astro.source.PWN":[[50,3,1,"","magnetic_field"],[50,3,1,"","radius"]],"gammapy.astro.source.Pulsar":[[51,3,1,"","energy_integrated"],[51,3,1,"","luminosity_spindown"],[51,3,1,"","magnetic_field"],[51,3,1,"","period"],[51,3,1,"","period_dot"],[51,3,1,"","tau"]],"gammapy.astro.source.SNR":[[52,3,1,"","luminosity_tev"],[52,3,1,"","radius"],[52,3,1,"","radius_inner"],[52,2,1,"","sedov_taylor_begin"],[52,2,1,"","sedov_taylor_end"]],"gammapy.astro.source.SNRTrueloveMcKee":[[53,3,1,"","luminosity_tev"],[53,3,1,"","radius"],[53,3,1,"","radius_inner"],[53,3,1,"","radius_reverse_shock"],[53,2,1,"","sedov_taylor_begin"],[53,2,1,"","sedov_taylor_end"]],"gammapy.astro.source.SimplePulsar":[[54,2,1,"","luminosity_spindown"],[54,2,1,"","magnetic_field"],[54,2,1,"","tau"]],"gammapy.catalog":[[55,5,1,"","CATALOG_REGISTRY"],[56,1,1,"","SourceCatalog"],[57,1,1,"","SourceCatalog1LHAASO"],[58,1,1,"","SourceCatalog2FHL"],[59,1,1,"","SourceCatalog2HWC"],[60,1,1,"","SourceCatalog3FGL"],[61,1,1,"","SourceCatalog3FHL"],[62,1,1,"","SourceCatalog3HWC"],[63,1,1,"","SourceCatalog4FGL"],[64,1,1,"","SourceCatalogGammaCat"],[65,1,1,"","SourceCatalogHGPS"],[66,1,1,"","SourceCatalogLargeScaleHGPS"],[67,1,1,"","SourceCatalogObject"],[68,1,1,"","SourceCatalogObject1LHAASO"],[69,1,1,"","SourceCatalogObject2FHL"],[70,1,1,"","SourceCatalogObject2HWC"],[71,1,1,"","SourceCatalogObject3FGL"],[72,1,1,"","SourceCatalogObject3FHL"],[73,1,1,"","SourceCatalogObject3HWC"],[74,1,1,"","SourceCatalogObject4FGL"],[75,1,1,"","SourceCatalogObjectGammaCat"],[76,1,1,"","SourceCatalogObjectHGPS"],[77,1,1,"","SourceCatalogObjectHGPSComponent"]],"gammapy.catalog.SourceCatalog":[[56,3,1,"","description"],[56,2,1,"","positions"],[56,3,1,"","row_index"],[56,3,1,"","source_name"],[56,2,1,"","tag"],[56,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog1LHAASO":[[57,2,1,"","description"],[57,2,1,"","positions"],[57,3,1,"","row_index"],[57,3,1,"","source_name"],[57,2,1,"","tag"],[57,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog2FHL":[[58,2,1,"","description"],[58,2,1,"","positions"],[58,3,1,"","row_index"],[58,3,1,"","source_name"],[58,2,1,"","tag"],[58,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog2HWC":[[59,2,1,"","description"],[59,2,1,"","positions"],[59,3,1,"","row_index"],[59,3,1,"","source_name"],[59,2,1,"","tag"],[59,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog3FGL":[[60,2,1,"","description"],[60,2,1,"","positions"],[60,3,1,"","row_index"],[60,3,1,"","source_name"],[60,2,1,"","tag"],[60,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog3FHL":[[61,2,1,"","description"],[61,2,1,"","positions"],[61,3,1,"","row_index"],[61,3,1,"","source_name"],[61,2,1,"","tag"],[61,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog3HWC":[[62,2,1,"","description"],[62,2,1,"","positions"],[62,3,1,"","row_index"],[62,3,1,"","source_name"],[62,2,1,"","tag"],[62,3,1,"","to_models"]],"gammapy.catalog.SourceCatalog4FGL":[[63,2,1,"","description"],[63,2,1,"","positions"],[63,3,1,"","row_index"],[63,3,1,"","source_name"],[63,2,1,"","tag"],[63,3,1,"","to_models"]],"gammapy.catalog.SourceCatalogGammaCat":[[64,2,1,"","description"],[64,2,1,"","positions"],[64,3,1,"","row_index"],[64,3,1,"","source_name"],[64,2,1,"","tag"],[64,3,1,"","to_models"]],"gammapy.catalog.SourceCatalogHGPS":[[65,2,1,"","description"],[65,3,1,"","gaussian_component"],[65,2,1,"","large_scale_component"],[65,2,1,"","positions"],[65,3,1,"","row_index"],[65,3,1,"","source_name"],[65,2,1,"","table_associations"],[65,2,1,"","table_components"],[65,2,1,"","table_identifications"],[65,2,1,"","table_large_scale_component"],[65,2,1,"","tag"],[65,3,1,"","to_models"]],"gammapy.catalog.SourceCatalogLargeScaleHGPS":[[66,3,1,"","evaluate"],[66,3,1,"","peak_brightness"],[66,3,1,"","peak_brightness_error"],[66,3,1,"","peak_latitude"],[66,3,1,"","peak_latitude_error"],[66,3,1,"","width"],[66,3,1,"","width_error"]],"gammapy.catalog.SourceCatalogObject":[[67,2,1,"","name"],[67,2,1,"","position"],[67,2,1,"","row_index"]],"gammapy.catalog.SourceCatalogObject1LHAASO":[[68,2,1,"","name"],[68,2,1,"","position"],[68,2,1,"","row_index"],[68,3,1,"","sky_model"],[68,3,1,"","spatial_model"],[68,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject2FHL":[[69,2,1,"","asso"],[69,2,1,"","energy_range"],[69,2,1,"","flux_points"],[69,2,1,"","flux_points_meta"],[69,2,1,"","flux_points_table"],[69,3,1,"","info"],[69,2,1,"","is_pointlike"],[69,2,1,"","name"],[69,2,1,"","position"],[69,2,1,"","row_index"],[69,3,1,"","sky_model"],[69,3,1,"","spatial_model"],[69,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject2HWC":[[70,3,1,"","info"],[70,2,1,"","n_models"],[70,2,1,"","name"],[70,2,1,"","position"],[70,2,1,"","row_index"],[70,3,1,"","sky_model"],[70,3,1,"","spatial_model"],[70,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject3FGL":[[71,2,1,"","asso"],[71,2,1,"","energy_range"],[71,2,1,"","flux_points"],[71,2,1,"","flux_points_meta"],[71,2,1,"","flux_points_table"],[71,3,1,"","info"],[71,2,1,"","is_pointlike"],[71,3,1,"","lightcurve"],[71,2,1,"","name"],[71,2,1,"","position"],[71,2,1,"","row_index"],[71,3,1,"","sky_model"],[71,3,1,"","spatial_model"],[71,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject3FHL":[[72,2,1,"","asso"],[72,2,1,"","energy_range"],[72,2,1,"","flux_points"],[72,2,1,"","flux_points_meta"],[72,2,1,"","flux_points_table"],[72,3,1,"","info"],[72,2,1,"","is_pointlike"],[72,2,1,"","name"],[72,2,1,"","position"],[72,2,1,"","row_index"],[72,3,1,"","sky_model"],[72,3,1,"","spatial_model"],[72,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject3HWC":[[73,3,1,"","info"],[73,2,1,"","is_pointlike"],[73,2,1,"","n_models"],[73,2,1,"","name"],[73,2,1,"","position"],[73,2,1,"","row_index"],[73,3,1,"","sky_model"],[73,3,1,"","spatial_model"],[73,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObject4FGL":[[74,2,1,"","asso"],[74,2,1,"","flux_points"],[74,2,1,"","flux_points_meta"],[74,2,1,"","flux_points_table"],[74,3,1,"","info"],[74,2,1,"","is_pointlike"],[74,3,1,"","lightcurve"],[74,2,1,"","name"],[74,2,1,"","position"],[74,2,1,"","row_index"],[74,3,1,"","sky_model"],[74,3,1,"","spatial_model"],[74,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObjectGammaCat":[[75,2,1,"","flux_points"],[75,2,1,"","flux_points_table"],[75,3,1,"","info"],[75,2,1,"","name"],[75,2,1,"","position"],[75,2,1,"","row_index"],[75,3,1,"","sky_model"],[75,3,1,"","spatial_model"],[75,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObjectHGPS":[[76,3,1,"","components_models"],[76,2,1,"","energy_range"],[76,2,1,"","flux_points"],[76,2,1,"","flux_points_table"],[76,3,1,"","info"],[76,2,1,"","name"],[76,2,1,"","position"],[76,2,1,"","row_index"],[76,3,1,"","sky_model"],[76,3,1,"","spatial_model"],[76,3,1,"","spectral_model"]],"gammapy.catalog.SourceCatalogObjectHGPSComponent":[[77,2,1,"","name"],[77,2,1,"","position"],[77,2,1,"","row_index"],[77,3,1,"","spatial_model"]],"gammapy.data":[[78,1,1,"","DataStore"],[79,1,1,"","EventList"],[80,1,1,"","EventListMetaData"],[81,1,1,"","FixedPointingInfo"],[82,1,1,"","GTI"],[83,1,1,"","HDUIndexTable"],[84,1,1,"","Observation"],[85,1,1,"","ObservationFilter"],[86,1,1,"","ObservationTable"],[87,1,1,"","Observations"],[88,1,1,"","ObservationsEventsSampler"],[89,1,1,"","PointingInfo"],[90,1,1,"","PointingMode"],[91,4,1,"","get_irfs_features"],[92,5,1,"","observatory_locations"]],"gammapy.data.DataStore":[[78,2,1,"","DEFAULT_HDU_TABLE"],[78,2,1,"","DEFAULT_OBS_TABLE"],[78,3,1,"","check"],[78,3,1,"","copy_obs"],[78,3,1,"","from_dir"],[78,3,1,"","from_events_files"],[78,3,1,"","from_file"],[78,3,1,"","get_observations"],[78,3,1,"","info"],[78,3,1,"","obs"],[78,2,1,"","obs_ids"]],"gammapy.data.EventList":[[79,2,1,"","altaz"],[79,2,1,"","altaz_frame"],[79,2,1,"","altaz_from_table"],[79,3,1,"","check"],[79,3,1,"","copy"],[79,2,1,"","energy"],[79,3,1,"","from_stack"],[79,2,1,"","galactic"],[79,2,1,"","galactic_median"],[79,2,1,"","is_pointed_observation"],[79,3,1,"","map_coord"],[79,2,1,"","observation_dead_time_fraction"],[79,2,1,"","observation_live_time_duration"],[79,2,1,"","observation_time_duration"],[79,2,1,"","observation_time_start"],[79,2,1,"","observation_time_stop"],[79,2,1,"","observatory_earth_location"],[79,2,1,"","offset"],[79,2,1,"","offset_from_median"],[79,3,1,"","peek"],[79,3,1,"","plot_energy"],[79,3,1,"","plot_energy_offset"],[79,3,1,"","plot_image"],[79,3,1,"","plot_offset2_distribution"],[79,3,1,"","plot_time"],[79,2,1,"","pointing_radec"],[79,2,1,"","radec"],[79,3,1,"","read"],[79,3,1,"","select_energy"],[79,3,1,"","select_mask"],[79,3,1,"","select_offset"],[79,3,1,"","select_parameter"],[79,3,1,"","select_rad_max"],[79,3,1,"","select_region"],[79,3,1,"","select_row_subset"],[79,3,1,"","select_time"],[79,3,1,"","stack"],[79,2,1,"","time"],[79,2,1,"","time_ref"],[79,3,1,"","to_table_hdu"],[79,3,1,"","write"]],"gammapy.data.EventListMetaData":[[80,3,1,"","construct"],[80,3,1,"","copy"],[80,3,1,"","dict"],[80,3,1,"","from_header"],[80,3,1,"","from_orm"],[80,3,1,"","json"],[80,2,1,"","model_computed_fields"],[80,2,1,"","model_config"],[80,3,1,"","model_construct"],[80,3,1,"","model_copy"],[80,3,1,"","model_dump"],[80,3,1,"","model_dump_json"],[80,2,1,"","model_extra"],[80,2,1,"","model_fields"],[80,2,1,"","model_fields_set"],[80,3,1,"","model_json_schema"],[80,3,1,"","model_parametrized_name"],[80,3,1,"","model_post_init"],[80,3,1,"","model_rebuild"],[80,3,1,"","model_validate"],[80,3,1,"","model_validate_json"],[80,3,1,"","model_validate_strings"],[80,3,1,"","parse_file"],[80,3,1,"","parse_obj"],[80,3,1,"","parse_raw"],[80,3,1,"","schema"],[80,3,1,"","schema_json"],[80,2,1,"","tag"],[80,3,1,"","to_header"],[80,3,1,"","to_yaml"],[80,3,1,"","update_forward_refs"],[80,3,1,"","validate"]],"gammapy.data.FixedPointingInfo":[[81,2,1,"","fixed_altaz"],[81,2,1,"","fixed_icrs"],[81,3,1,"","from_fits_header"],[81,3,1,"","get_altaz"],[81,3,1,"","get_icrs"],[81,2,1,"","mode"],[81,3,1,"","read"],[81,3,1,"","to_fits_header"]],"gammapy.data.GTI":[[82,3,1,"","copy"],[82,3,1,"","create"],[82,3,1,"","delete_interval"],[82,3,1,"","from_stack"],[82,3,1,"","from_table_hdu"],[82,3,1,"","from_time_intervals"],[82,3,1,"","group_table"],[82,2,1,"","met_start"],[82,2,1,"","met_stop"],[82,3,1,"","read"],[82,3,1,"","select_time"],[82,3,1,"","stack"],[82,2,1,"","time_delta"],[82,2,1,"","time_intervals"],[82,2,1,"","time_ref"],[82,2,1,"","time_start"],[82,2,1,"","time_stop"],[82,2,1,"","time_sum"],[82,3,1,"","to_table_hdu"],[82,3,1,"","union"],[82,3,1,"","write"]],"gammapy.data.HDUIndexTable":[[83,2,1,"","ColumnClass"],[83,2,1,"","VALID_HDU_CLASS"],[83,2,1,"","VALID_HDU_TYPE"],[83,3,1,"","add_column"],[83,3,1,"","add_columns"],[83,3,1,"","add_index"],[83,3,1,"","add_row"],[83,3,1,"","argsort"],[83,3,1,"","as_array"],[83,2,1,"","base_dir"],[83,2,1,"","colnames"],[83,3,1,"","convert_bytestring_to_unicode"],[83,3,1,"","convert_unicode_to_bytestring"],[83,3,1,"","copy"],[83,2,1,"","dtype"],[83,3,1,"","field"],[83,3,1,"","filled"],[83,3,1,"","from_pandas"],[83,3,1,"","group_by"],[83,2,1,"","groups"],[83,2,1,"","has_masked_columns"],[83,2,1,"","has_masked_values"],[83,2,1,"","has_mixin_columns"],[83,2,1,"","hdu_class_unique"],[83,3,1,"","hdu_location"],[83,2,1,"","hdu_type_unique"],[83,2,1,"","iloc"],[83,3,1,"","index_column"],[83,3,1,"","index_mode"],[83,2,1,"","indices"],[83,2,1,"","info"],[83,3,1,"","insert_row"],[83,3,1,"","items"],[83,3,1,"","itercols"],[83,3,1,"","iterrows"],[83,3,1,"","keep_columns"],[83,3,1,"","keys"],[83,2,1,"","loc"],[83,2,1,"","loc_indices"],[83,3,1,"","location_info"],[83,2,1,"","mask"],[83,2,1,"","masked"],[83,2,1,"","meta"],[83,3,1,"","more"],[83,2,1,"","obs_id_unique"],[83,3,1,"","pformat"],[83,3,1,"","pformat_all"],[83,3,1,"","pprint"],[83,3,1,"","pprint_all"],[83,2,1,"","pprint_exclude_names"],[83,2,1,"","pprint_include_names"],[83,3,1,"","read"],[83,3,1,"","remove_column"],[83,3,1,"","remove_columns"],[83,3,1,"","remove_indices"],[83,3,1,"","remove_row"],[83,3,1,"","remove_rows"],[83,3,1,"","rename_column"],[83,3,1,"","rename_columns"],[83,3,1,"","replace_column"],[83,3,1,"","reverse"],[83,3,1,"","round"],[83,3,1,"","row_idx"],[83,3,1,"","show_in_browser"],[83,3,1,"","show_in_notebook"],[83,3,1,"","sort"],[83,3,1,"","summary"],[83,3,1,"","to_pandas"],[83,3,1,"","update"],[83,3,1,"","values"],[83,3,1,"","values_equal"],[83,2,1,"","write"]],"gammapy.data.Observation":[[84,2,1,"","aeff"],[84,2,1,"","available_hdus"],[84,2,1,"","available_irfs"],[84,2,1,"","bkg"],[84,3,1,"","check"],[84,3,1,"","copy"],[84,3,1,"","create"],[84,2,1,"","edisp"],[84,2,1,"","events"],[84,3,1,"","get_pointing_altaz"],[84,3,1,"","get_pointing_icrs"],[84,2,1,"","gti"],[84,2,1,"","meta"],[84,2,1,"","muoneff"],[84,2,1,"","obs_info"],[84,2,1,"","observation_dead_time_fraction"],[84,2,1,"","observation_live_time_duration"],[84,2,1,"","observation_time_duration"],[84,2,1,"","observatory_earth_location"],[84,3,1,"","peek"],[84,2,1,"","pointing"],[84,2,1,"","psf"],[84,2,1,"","rad_max"],[84,3,1,"","read"],[84,3,1,"","select_time"],[84,2,1,"","target_radec"],[84,2,1,"","tmid"],[84,2,1,"","tstart"],[84,2,1,"","tstop"],[84,3,1,"","write"]],"gammapy.data.ObservationFilter":[[85,2,1,"","EVENT_FILTER_TYPES"],[85,3,1,"","copy"],[85,3,1,"","filter_events"],[85,3,1,"","filter_gti"],[85,2,1,"","livetime_fraction"]],"gammapy.data.ObservationTable":[[86,2,1,"","ColumnClass"],[86,3,1,"","add_column"],[86,3,1,"","add_columns"],[86,3,1,"","add_index"],[86,3,1,"","add_row"],[86,3,1,"","argsort"],[86,3,1,"","as_array"],[86,2,1,"","colnames"],[86,3,1,"","convert_bytestring_to_unicode"],[86,3,1,"","convert_unicode_to_bytestring"],[86,3,1,"","copy"],[86,2,1,"","dtype"],[86,3,1,"","field"],[86,3,1,"","filled"],[86,3,1,"","from_pandas"],[86,3,1,"","group_by"],[86,2,1,"","groups"],[86,2,1,"","has_masked_columns"],[86,2,1,"","has_masked_values"],[86,2,1,"","has_mixin_columns"],[86,2,1,"","iloc"],[86,3,1,"","index_column"],[86,3,1,"","index_mode"],[86,2,1,"","indices"],[86,2,1,"","info"],[86,3,1,"","insert_row"],[86,3,1,"","items"],[86,3,1,"","itercols"],[86,3,1,"","iterrows"],[86,3,1,"","keep_columns"],[86,3,1,"","keys"],[86,2,1,"","loc"],[86,2,1,"","loc_indices"],[86,2,1,"","mask"],[86,2,1,"","masked"],[86,2,1,"","meta"],[86,3,1,"","more"],[86,3,1,"","pformat"],[86,3,1,"","pformat_all"],[86,2,1,"","pointing_galactic"],[86,2,1,"","pointing_radec"],[86,3,1,"","pprint"],[86,3,1,"","pprint_all"],[86,2,1,"","pprint_exclude_names"],[86,2,1,"","pprint_include_names"],[86,3,1,"","read"],[86,3,1,"","remove_column"],[86,3,1,"","remove_columns"],[86,3,1,"","remove_indices"],[86,3,1,"","remove_row"],[86,3,1,"","remove_rows"],[86,3,1,"","rename_column"],[86,3,1,"","rename_columns"],[86,3,1,"","replace_column"],[86,3,1,"","reverse"],[86,3,1,"","round"],[86,3,1,"","select_obs_id"],[86,3,1,"","select_observations"],[86,3,1,"","select_range"],[86,3,1,"","select_sky_circle"],[86,3,1,"","select_time_range"],[86,3,1,"","show_in_browser"],[86,3,1,"","show_in_notebook"],[86,3,1,"","sort"],[86,3,1,"","summary"],[86,2,1,"","time_ref"],[86,2,1,"","time_start"],[86,2,1,"","time_stop"],[86,3,1,"","to_pandas"],[86,3,1,"","update"],[86,3,1,"","values"],[86,3,1,"","values_equal"],[86,2,1,"","write"]],"gammapy.data.Observations":[[87,3,1,"","append"],[87,3,1,"","clear"],[87,3,1,"","count"],[87,3,1,"","extend"],[87,3,1,"","from_stack"],[87,3,1,"","group_by_label"],[87,2,1,"","ids"],[87,3,1,"","in_memory_generator"],[87,3,1,"","index"],[87,3,1,"","insert"],[87,3,1,"","pop"],[87,3,1,"","remove"],[87,3,1,"","reverse"],[87,3,1,"","select_time"]],"gammapy.data.ObservationsEventsSampler":[[88,2,1,"","n_jobs"],[88,2,1,"","parallel_backend"],[88,3,1,"","run"],[88,3,1,"","simulate_observation"]],"gammapy.data.PointingInfo":[[89,2,1,"","altaz"],[89,2,1,"","altaz_frame"],[89,2,1,"","altaz_from_table"],[89,3,1,"","altaz_interpolate"],[89,2,1,"","duration"],[89,3,1,"","get_altaz"],[89,3,1,"","get_icrs"],[89,2,1,"","location"],[89,2,1,"","radec"],[89,3,1,"","read"],[89,2,1,"","time"],[89,2,1,"","time_ref"]],"gammapy.data.PointingMode":[[90,2,1,"","DRIFT"],[90,2,1,"","POINTING"]],"gammapy.datasets":[[93,5,1,"","DATASET_REGISTRY"],[94,1,1,"","Dataset"],[95,1,1,"","Datasets"],[96,1,1,"","FluxPointsDataset"],[97,1,1,"","MapDataset"],[98,1,1,"","MapDatasetEventSampler"],[99,1,1,"","MapDatasetOnOff"],[100,1,1,"","OGIPDatasetReader"],[101,1,1,"","OGIPDatasetWriter"],[102,1,1,"","ObservationEventSampler"],[103,1,1,"","SpectrumDataset"],[104,1,1,"","SpectrumDatasetOnOff"],[105,4,1,"","create_map_dataset_from_observation"],[106,4,1,"","create_map_dataset_geoms"]],"gammapy.datasets.Dataset":[[94,3,1,"","copy"],[94,2,1,"","mask"],[94,2,1,"","name"],[94,3,1,"","stat_array"],[94,3,1,"","stat_sum"],[94,2,1,"","tag"],[94,3,1,"","to_dict"]],"gammapy.datasets.Datasets":[[95,3,1,"","append"],[95,3,1,"","clear"],[95,2,1,"","contributes_to_stat"],[95,3,1,"","copy"],[95,3,1,"","count"],[95,2,1,"","energy_axes_are_aligned"],[95,2,1,"","energy_ranges"],[95,3,1,"","extend"],[95,2,1,"","gti"],[95,3,1,"","index"],[95,3,1,"","info_table"],[95,3,1,"","insert"],[95,2,1,"","is_all_same_energy_shape"],[95,2,1,"","is_all_same_shape"],[95,2,1,"","is_all_same_type"],[95,2,1,"","meta_table"],[95,2,1,"","models"],[95,2,1,"","names"],[95,2,1,"","parameters"],[95,3,1,"","pop"],[95,3,1,"","read"],[95,3,1,"","remove"],[95,3,1,"","reverse"],[95,3,1,"","select_time"],[95,3,1,"","slice_by_energy"],[95,3,1,"","stack_reduce"],[95,3,1,"","stat_sum"],[95,3,1,"","to_spectrum_datasets"],[95,3,1,"","write"]],"gammapy.datasets.FluxPointsDataset":[[96,3,1,"","copy"],[96,3,1,"","data_shape"],[96,3,1,"","flux_pred"],[96,3,1,"","from_dict"],[96,2,1,"","gti"],[96,2,1,"","mask"],[96,2,1,"","models"],[96,2,1,"","name"],[96,3,1,"","plot_fit"],[96,3,1,"","plot_residuals"],[96,3,1,"","plot_spectrum"],[96,3,1,"","read"],[96,3,1,"","residuals"],[96,3,1,"","stat_array"],[96,3,1,"","stat_sum"],[96,2,1,"","stat_type"],[96,2,1,"","tag"],[96,3,1,"","to_dict"],[96,3,1,"","write"]],"gammapy.datasets.MapDataset":[[97,2,1,"","background"],[97,2,1,"","background_model"],[97,3,1,"","copy"],[97,2,1,"","counts"],[97,3,1,"","create"],[97,3,1,"","cutout"],[97,2,1,"","data_shape"],[97,3,1,"","downsample"],[97,2,1,"","edisp"],[97,2,1,"","energy_range"],[97,2,1,"","energy_range_fit"],[97,2,1,"","energy_range_safe"],[97,2,1,"","energy_range_total"],[97,2,1,"","evaluators"],[97,2,1,"","excess"],[97,2,1,"","exposure"],[97,3,1,"","fake"],[97,3,1,"","from_dict"],[97,3,1,"","from_geoms"],[97,3,1,"","from_hdulist"],[97,2,1,"","geoms"],[97,2,1,"","gti"],[97,3,1,"","info_dict"],[97,2,1,"","mask"],[97,2,1,"","mask_fit"],[97,2,1,"","mask_fit_image"],[97,2,1,"","mask_image"],[97,2,1,"","mask_safe"],[97,2,1,"","mask_safe_edisp"],[97,2,1,"","mask_safe_image"],[97,2,1,"","mask_safe_psf"],[97,2,1,"","meta_table"],[97,2,1,"","models"],[97,2,1,"","name"],[97,3,1,"","npred"],[97,3,1,"","npred_background"],[97,3,1,"","npred_signal"],[97,3,1,"","pad"],[97,3,1,"","peek"],[97,3,1,"","plot_residuals"],[97,3,1,"","plot_residuals_spatial"],[97,3,1,"","plot_residuals_spectral"],[97,2,1,"","psf"],[97,3,1,"","read"],[97,3,1,"","resample_energy_axis"],[97,3,1,"","reset_data_cache"],[97,3,1,"","residuals"],[97,3,1,"","slice_by_energy"],[97,3,1,"","slice_by_idx"],[97,3,1,"","stack"],[97,3,1,"","stat_array"],[97,3,1,"","stat_sum"],[97,2,1,"","stat_type"],[97,2,1,"","tag"],[97,3,1,"","to_dict"],[97,3,1,"","to_hdulist"],[97,3,1,"","to_image"],[97,3,1,"","to_masked"],[97,3,1,"","to_region_map_dataset"],[97,3,1,"","to_spectrum_dataset"],[97,3,1,"","write"]],"gammapy.datasets.MapDatasetEventSampler":[[98,3,1,"","event_det_coords"],[98,3,1,"","event_list_meta"],[98,3,1,"","run"],[98,3,1,"","sample_background"],[98,3,1,"","sample_edisp"],[98,3,1,"","sample_psf"],[98,3,1,"","sample_sources"]],"gammapy.datasets.MapDatasetOnOff":[[99,2,1,"","alpha"],[99,2,1,"","background"],[99,2,1,"","background_model"],[99,3,1,"","copy"],[99,2,1,"","counts"],[99,3,1,"","create"],[99,3,1,"","cutout"],[99,2,1,"","data_shape"],[99,3,1,"","downsample"],[99,2,1,"","edisp"],[99,2,1,"","energy_range"],[99,2,1,"","energy_range_fit"],[99,2,1,"","energy_range_safe"],[99,2,1,"","energy_range_total"],[99,2,1,"","evaluators"],[99,2,1,"","excess"],[99,2,1,"","exposure"],[99,3,1,"","fake"],[99,3,1,"","from_dict"],[99,3,1,"","from_geoms"],[99,3,1,"","from_hdulist"],[99,3,1,"","from_map_dataset"],[99,2,1,"","geoms"],[99,2,1,"","gti"],[99,3,1,"","info_dict"],[99,2,1,"","mask"],[99,2,1,"","mask_fit"],[99,2,1,"","mask_fit_image"],[99,2,1,"","mask_image"],[99,2,1,"","mask_safe"],[99,2,1,"","mask_safe_edisp"],[99,2,1,"","mask_safe_image"],[99,2,1,"","mask_safe_psf"],[99,2,1,"","meta_table"],[99,2,1,"","models"],[99,2,1,"","name"],[99,3,1,"","npred"],[99,3,1,"","npred_background"],[99,3,1,"","npred_off"],[99,3,1,"","npred_signal"],[99,3,1,"","pad"],[99,3,1,"","peek"],[99,3,1,"","plot_residuals"],[99,3,1,"","plot_residuals_spatial"],[99,3,1,"","plot_residuals_spectral"],[99,2,1,"","psf"],[99,3,1,"","read"],[99,3,1,"","resample_energy_axis"],[99,3,1,"","reset_data_cache"],[99,3,1,"","residuals"],[99,3,1,"","slice_by_energy"],[99,3,1,"","slice_by_idx"],[99,3,1,"","stack"],[99,3,1,"","stat_array"],[99,3,1,"","stat_sum"],[99,2,1,"","stat_type"],[99,2,1,"","tag"],[99,3,1,"","to_dict"],[99,3,1,"","to_hdulist"],[99,3,1,"","to_image"],[99,3,1,"","to_map_dataset"],[99,3,1,"","to_masked"],[99,3,1,"","to_region_map_dataset"],[99,3,1,"","to_spectrum_dataset"],[99,3,1,"","write"]],"gammapy.datasets.OGIPDatasetReader":[[100,3,1,"","get_filenames"],[100,3,1,"","get_valid_path"],[100,3,1,"","read"],[100,3,1,"","read_arf"],[100,3,1,"","read_bkg"],[100,3,1,"","read_pha"],[100,3,1,"","read_rmf"],[100,2,1,"","tag"]],"gammapy.datasets.OGIPDatasetWriter":[[101,3,1,"","get_filenames"],[101,3,1,"","get_ogip_meta"],[101,2,1,"","tag"],[101,3,1,"","to_counts_hdulist"],[101,3,1,"","write"],[101,3,1,"","write_arf"],[101,3,1,"","write_bkg"],[101,3,1,"","write_pha"],[101,3,1,"","write_rmf"]],"gammapy.datasets.ObservationEventSampler":[[102,3,1,"","event_det_coords"],[102,3,1,"","event_list_meta"],[102,3,1,"","run"],[102,3,1,"","sample_background"],[102,3,1,"","sample_edisp"],[102,3,1,"","sample_psf"],[102,3,1,"","sample_sources"]],"gammapy.datasets.SpectrumDataset":[[103,2,1,"","background"],[103,2,1,"","background_model"],[103,3,1,"","copy"],[103,2,1,"","counts"],[103,3,1,"","create"],[103,3,1,"","cutout"],[103,2,1,"","data_shape"],[103,3,1,"","downsample"],[103,2,1,"","edisp"],[103,2,1,"","energy_range"],[103,2,1,"","energy_range_fit"],[103,2,1,"","energy_range_safe"],[103,2,1,"","energy_range_total"],[103,2,1,"","evaluators"],[103,2,1,"","excess"],[103,2,1,"","exposure"],[103,3,1,"","fake"],[103,3,1,"","from_dict"],[103,3,1,"","from_geoms"],[103,3,1,"","from_hdulist"],[103,2,1,"","geoms"],[103,2,1,"","gti"],[103,3,1,"","info_dict"],[103,2,1,"","mask"],[103,2,1,"","mask_fit"],[103,2,1,"","mask_fit_image"],[103,2,1,"","mask_image"],[103,2,1,"","mask_safe"],[103,2,1,"","mask_safe_edisp"],[103,2,1,"","mask_safe_image"],[103,2,1,"","mask_safe_psf"],[103,2,1,"","meta_table"],[103,2,1,"","models"],[103,2,1,"","name"],[103,3,1,"","npred"],[103,3,1,"","npred_background"],[103,3,1,"","npred_signal"],[103,3,1,"","pad"],[103,3,1,"","peek"],[103,3,1,"","plot_counts"],[103,3,1,"","plot_excess"],[103,3,1,"","plot_fit"],[103,3,1,"","plot_masks"],[103,3,1,"","plot_residuals"],[103,3,1,"","plot_residuals_spatial"],[103,3,1,"","plot_residuals_spectral"],[103,2,1,"","psf"],[103,3,1,"","read"],[103,3,1,"","resample_energy_axis"],[103,3,1,"","reset_data_cache"],[103,3,1,"","residuals"],[103,3,1,"","slice_by_energy"],[103,3,1,"","slice_by_idx"],[103,3,1,"","stack"],[103,3,1,"","stat_array"],[103,3,1,"","stat_sum"],[103,2,1,"","stat_type"],[103,2,1,"","tag"],[103,3,1,"","to_dict"],[103,3,1,"","to_hdulist"],[103,3,1,"","to_image"],[103,3,1,"","to_masked"],[103,3,1,"","to_region_map_dataset"],[103,3,1,"","to_spectrum_dataset"],[103,3,1,"","write"]],"gammapy.datasets.SpectrumDatasetOnOff":[[104,2,1,"","alpha"],[104,2,1,"","background"],[104,2,1,"","background_model"],[104,3,1,"","copy"],[104,2,1,"","counts"],[104,3,1,"","create"],[104,3,1,"","cutout"],[104,2,1,"","data_shape"],[104,3,1,"","downsample"],[104,2,1,"","edisp"],[104,2,1,"","energy_range"],[104,2,1,"","energy_range_fit"],[104,2,1,"","energy_range_safe"],[104,2,1,"","energy_range_total"],[104,2,1,"","evaluators"],[104,2,1,"","excess"],[104,2,1,"","exposure"],[104,3,1,"","fake"],[104,3,1,"","from_dict"],[104,3,1,"","from_geoms"],[104,3,1,"","from_hdulist"],[104,3,1,"","from_map_dataset"],[104,3,1,"","from_spectrum_dataset"],[104,2,1,"","geoms"],[104,2,1,"","gti"],[104,3,1,"","info_dict"],[104,2,1,"","mask"],[104,2,1,"","mask_fit"],[104,2,1,"","mask_fit_image"],[104,2,1,"","mask_image"],[104,2,1,"","mask_safe"],[104,2,1,"","mask_safe_edisp"],[104,2,1,"","mask_safe_image"],[104,2,1,"","mask_safe_psf"],[104,2,1,"","meta_table"],[104,2,1,"","models"],[104,2,1,"","name"],[104,3,1,"","npred"],[104,3,1,"","npred_background"],[104,3,1,"","npred_off"],[104,3,1,"","npred_signal"],[104,3,1,"","pad"],[104,3,1,"","peek"],[104,3,1,"","plot_counts"],[104,3,1,"","plot_excess"],[104,3,1,"","plot_fit"],[104,3,1,"","plot_masks"],[104,3,1,"","plot_residuals"],[104,3,1,"","plot_residuals_spatial"],[104,3,1,"","plot_residuals_spectral"],[104,2,1,"","psf"],[104,3,1,"","read"],[104,3,1,"","resample_energy_axis"],[104,3,1,"","reset_data_cache"],[104,3,1,"","residuals"],[104,3,1,"","slice_by_energy"],[104,3,1,"","slice_by_idx"],[104,3,1,"","stack"],[104,3,1,"","stat_array"],[104,3,1,"","stat_sum"],[104,2,1,"","stat_type"],[104,2,1,"","tag"],[104,3,1,"","to_dict"],[104,3,1,"","to_hdulist"],[104,3,1,"","to_image"],[104,3,1,"","to_map_dataset"],[104,3,1,"","to_masked"],[104,3,1,"","to_region_map_dataset"],[104,3,1,"","to_spectrum_dataset"],[104,3,1,"","write"]],"gammapy.estimators":[[107,1,1,"","ASmoothMapEstimator"],[108,5,1,"","ESTIMATOR_REGISTRY"],[109,1,1,"","EnergyDependentMorphologyEstimator"],[110,1,1,"","Estimator"],[111,1,1,"","ExcessMapEstimator"],[112,1,1,"","FluxMaps"],[113,1,1,"","FluxPoints"],[114,1,1,"","FluxPointsEstimator"],[115,1,1,"","FluxProfileEstimator"],[116,1,1,"","ImageProfile"],[117,1,1,"","ImageProfileEstimator"],[118,1,1,"","LightCurveEstimator"],[119,1,1,"","ParameterEstimator"],[120,1,1,"","SensitivityEstimator"],[121,1,1,"","TSMapEstimator"],[5,0,0,"-","utils"]],"gammapy.estimators.ASmoothMapEstimator":[[107,2,1,"","config_parameters"],[107,3,1,"","copy"],[107,3,1,"","estimate_maps"],[107,3,1,"","get_kernels"],[107,3,1,"","get_scales"],[107,3,1,"","run"],[107,3,1,"","selection_all"],[107,2,1,"","selection_optional"],[107,2,1,"","tag"]],"gammapy.estimators.EnergyDependentMorphologyEstimator":[[109,2,1,"","config_parameters"],[109,3,1,"","copy"],[109,3,1,"","estimate_energy_dependence"],[109,3,1,"","run"],[109,2,1,"","selection_optional"],[109,2,1,"","tag"]],"gammapy.estimators.Estimator":[[110,2,1,"","config_parameters"],[110,3,1,"","copy"],[110,3,1,"","run"],[110,2,1,"","selection_optional"],[110,2,1,"","tag"]],"gammapy.estimators.ExcessMapEstimator":[[111,2,1,"","config_parameters"],[111,3,1,"","copy"],[111,2,1,"","correlation_radius"],[111,3,1,"","estimate_excess_map"],[111,3,1,"","estimate_exposure_reco_energy"],[111,3,1,"","estimate_kernel"],[111,3,1,"","estimate_mask_default"],[111,3,1,"","run"],[111,2,1,"","selection_optional"],[111,2,1,"","tag"]],"gammapy.estimators.FluxMaps":[[112,3,1,"","all_quantities"],[112,2,1,"","available_quantities"],[112,2,1,"","counts"],[112,2,1,"","dnde"],[112,2,1,"","dnde_err"],[112,2,1,"","dnde_errn"],[112,2,1,"","dnde_errp"],[112,2,1,"","dnde_ref"],[112,2,1,"","dnde_ul"],[112,2,1,"","e2dnde"],[112,2,1,"","e2dnde_err"],[112,2,1,"","e2dnde_errn"],[112,2,1,"","e2dnde_errp"],[112,2,1,"","e2dnde_ref"],[112,2,1,"","e2dnde_ul"],[112,2,1,"","eflux"],[112,2,1,"","eflux_err"],[112,2,1,"","eflux_errn"],[112,2,1,"","eflux_errp"],[112,2,1,"","eflux_ref"],[112,2,1,"","eflux_ul"],[112,2,1,"","energy_axis"],[112,2,1,"","energy_max"],[112,2,1,"","energy_min"],[112,2,1,"","energy_ref"],[112,2,1,"","filter_success_nan"],[112,2,1,"","flux"],[112,2,1,"","flux_err"],[112,2,1,"","flux_errn"],[112,2,1,"","flux_errp"],[112,2,1,"","flux_ref"],[112,2,1,"","flux_sensitivity"],[112,2,1,"","flux_ul"],[112,3,1,"","from_hdulist"],[112,3,1,"","from_maps"],[112,3,1,"","from_stack"],[112,2,1,"","geom"],[112,3,1,"","get_flux_points"],[112,2,1,"","has_any_ts"],[112,2,1,"","has_stat_profiles"],[112,2,1,"","has_success"],[112,2,1,"","has_ul"],[112,2,1,"","is_convertible_to_flux_sed_type"],[112,2,1,"","is_ul"],[112,3,1,"","iter_by_axis"],[112,2,1,"","n_dof"],[112,2,1,"","n_sigma"],[112,2,1,"","n_sigma_ul"],[112,2,1,"","niter"],[112,2,1,"","norm"],[112,2,1,"","norm_err"],[112,2,1,"","norm_errn"],[112,2,1,"","norm_errp"],[112,2,1,"","norm_sensitivity"],[112,2,1,"","norm_ul"],[112,2,1,"","npred"],[112,2,1,"","npred_background"],[112,2,1,"","npred_excess"],[112,2,1,"","npred_excess_err"],[112,2,1,"","npred_excess_errn"],[112,2,1,"","npred_excess_errp"],[112,2,1,"","npred_excess_ref"],[112,2,1,"","npred_excess_ul"],[112,3,1,"","read"],[112,2,1,"","reference_model"],[112,2,1,"","reference_model_default"],[112,2,1,"","reference_spectral_model"],[112,2,1,"","sed_type_init"],[112,2,1,"","sed_type_plot_default"],[112,3,1,"","slice_by_coord"],[112,3,1,"","slice_by_energy"],[112,3,1,"","slice_by_idx"],[112,3,1,"","slice_by_time"],[112,2,1,"","sqrt_ts"],[112,2,1,"","sqrt_ts_threshold_ul"],[112,2,1,"","stat"],[112,2,1,"","stat_null"],[112,2,1,"","stat_scan"],[112,2,1,"","success"],[112,3,1,"","to_hdulist"],[112,3,1,"","to_maps"],[112,2,1,"","ts"],[112,2,1,"","ts_scan"],[112,3,1,"","write"]],"gammapy.estimators.FluxPoints":[[113,3,1,"","all_quantities"],[113,2,1,"","available_quantities"],[113,2,1,"","counts"],[113,2,1,"","dnde"],[113,2,1,"","dnde_err"],[113,2,1,"","dnde_errn"],[113,2,1,"","dnde_errp"],[113,2,1,"","dnde_ref"],[113,2,1,"","dnde_ul"],[113,2,1,"","e2dnde"],[113,2,1,"","e2dnde_err"],[113,2,1,"","e2dnde_errn"],[113,2,1,"","e2dnde_errp"],[113,2,1,"","e2dnde_ref"],[113,2,1,"","e2dnde_ul"],[113,2,1,"","eflux"],[113,2,1,"","eflux_err"],[113,2,1,"","eflux_errn"],[113,2,1,"","eflux_errp"],[113,2,1,"","eflux_ref"],[113,2,1,"","eflux_ul"],[113,2,1,"","energy_axis"],[113,2,1,"","energy_max"],[113,2,1,"","energy_min"],[113,2,1,"","energy_ref"],[113,2,1,"","filter_success_nan"],[113,2,1,"","flux"],[113,2,1,"","flux_err"],[113,2,1,"","flux_errn"],[113,2,1,"","flux_errp"],[113,2,1,"","flux_ref"],[113,2,1,"","flux_sensitivity"],[113,2,1,"","flux_ul"],[113,3,1,"","from_hdulist"],[113,3,1,"","from_maps"],[113,3,1,"","from_stack"],[113,3,1,"","from_table"],[113,2,1,"","geom"],[113,3,1,"","get_flux_points"],[113,2,1,"","has_any_ts"],[113,2,1,"","has_stat_profiles"],[113,2,1,"","has_success"],[113,2,1,"","has_ul"],[113,2,1,"","is_convertible_to_flux_sed_type"],[113,2,1,"","is_ul"],[113,3,1,"","iter_by_axis"],[113,2,1,"","n_dof"],[113,2,1,"","n_sigma"],[113,2,1,"","n_sigma_ul"],[113,2,1,"","niter"],[113,2,1,"","norm"],[113,2,1,"","norm_err"],[113,2,1,"","norm_errn"],[113,2,1,"","norm_errp"],[113,2,1,"","norm_sensitivity"],[113,2,1,"","norm_ul"],[113,2,1,"","npred"],[113,2,1,"","npred_background"],[113,2,1,"","npred_excess"],[113,2,1,"","npred_excess_err"],[113,2,1,"","npred_excess_errn"],[113,2,1,"","npred_excess_errp"],[113,2,1,"","npred_excess_ref"],[113,2,1,"","npred_excess_ul"],[113,3,1,"","plot"],[113,3,1,"","plot_ts_profiles"],[113,3,1,"","read"],[113,3,1,"","recompute_ul"],[113,2,1,"","reference_model"],[113,2,1,"","reference_model_default"],[113,2,1,"","reference_spectral_model"],[113,2,1,"","sed_type_init"],[113,2,1,"","sed_type_plot_default"],[113,3,1,"","slice_by_coord"],[113,3,1,"","slice_by_energy"],[113,3,1,"","slice_by_idx"],[113,3,1,"","slice_by_time"],[113,2,1,"","sqrt_ts"],[113,2,1,"","sqrt_ts_threshold_ul"],[113,2,1,"","stat"],[113,2,1,"","stat_null"],[113,2,1,"","stat_scan"],[113,2,1,"","success"],[113,3,1,"","to_hdulist"],[113,3,1,"","to_maps"],[113,3,1,"","to_table"],[113,2,1,"","ts"],[113,2,1,"","ts_scan"],[113,3,1,"","write"]],"gammapy.estimators.FluxPointsEstimator":[[114,2,1,"","config_parameters"],[114,3,1,"","copy"],[114,3,1,"","estimate_best_fit"],[114,3,1,"","estimate_counts"],[114,3,1,"","estimate_errn_errp"],[114,3,1,"","estimate_flux_point"],[114,3,1,"","estimate_npred"],[114,3,1,"","estimate_npred_excess"],[114,3,1,"","estimate_scan"],[114,3,1,"","estimate_ts"],[114,3,1,"","estimate_ul"],[114,3,1,"","get_scale_model"],[114,2,1,"","n_jobs"],[114,2,1,"","norm_max"],[114,2,1,"","norm_min"],[114,2,1,"","norm_n_values"],[114,2,1,"","norm_values"],[114,2,1,"","parallel_backend"],[114,3,1,"","run"],[114,2,1,"","selection_optional"],[114,2,1,"","tag"]],"gammapy.estimators.FluxProfileEstimator":[[115,2,1,"","config_parameters"],[115,3,1,"","copy"],[115,3,1,"","estimate_best_fit"],[115,3,1,"","estimate_counts"],[115,3,1,"","estimate_errn_errp"],[115,3,1,"","estimate_flux_point"],[115,3,1,"","estimate_npred"],[115,3,1,"","estimate_npred_excess"],[115,3,1,"","estimate_scan"],[115,3,1,"","estimate_ts"],[115,3,1,"","estimate_ul"],[115,3,1,"","get_scale_model"],[115,2,1,"","n_jobs"],[115,2,1,"","norm_max"],[115,2,1,"","norm_min"],[115,2,1,"","norm_n_values"],[115,2,1,"","norm_values"],[115,2,1,"","parallel_backend"],[115,2,1,"","projected_distance_axis"],[115,3,1,"","run"],[115,2,1,"","selection_optional"],[115,2,1,"","tag"]],"gammapy.estimators.ImageProfile":[[116,3,1,"","normalize"],[116,3,1,"","peek"],[116,3,1,"","plot"],[116,3,1,"","plot_err"],[116,2,1,"","profile"],[116,2,1,"","profile_err"],[116,3,1,"","smooth"],[116,2,1,"","x_max"],[116,2,1,"","x_min"],[116,2,1,"","x_ref"]],"gammapy.estimators.ImageProfileEstimator":[[117,2,1,"","config_parameters"],[117,3,1,"","copy"],[117,3,1,"","run"],[117,2,1,"","selection_optional"],[117,2,1,"","tag"]],"gammapy.estimators.LightCurveEstimator":[[118,2,1,"","config_parameters"],[118,3,1,"","copy"],[118,3,1,"","estimate_best_fit"],[118,3,1,"","estimate_counts"],[118,3,1,"","estimate_errn_errp"],[118,3,1,"","estimate_flux_point"],[118,3,1,"","estimate_npred"],[118,3,1,"","estimate_npred_excess"],[118,3,1,"","estimate_scan"],[118,3,1,"","estimate_time_bin_flux"],[118,3,1,"","estimate_ts"],[118,3,1,"","estimate_ul"],[118,3,1,"","expand_map"],[118,3,1,"","get_scale_model"],[118,2,1,"","n_jobs"],[118,2,1,"","norm_max"],[118,2,1,"","norm_min"],[118,2,1,"","norm_n_values"],[118,2,1,"","norm_values"],[118,2,1,"","parallel_backend"],[118,3,1,"","run"],[118,2,1,"","selection_optional"],[118,2,1,"","tag"]],"gammapy.estimators.ParameterEstimator":[[119,2,1,"","config_parameters"],[119,3,1,"","copy"],[119,3,1,"","estimate_best_fit"],[119,3,1,"","estimate_counts"],[119,3,1,"","estimate_errn_errp"],[119,3,1,"","estimate_npred"],[119,3,1,"","estimate_scan"],[119,3,1,"","estimate_ts"],[119,3,1,"","estimate_ul"],[119,3,1,"","run"],[119,2,1,"","selection_optional"],[119,2,1,"","tag"]],"gammapy.estimators.SensitivityEstimator":[[120,2,1,"","config_parameters"],[120,3,1,"","copy"],[120,3,1,"","estimate_min_e2dnde"],[120,3,1,"","estimate_min_excess"],[120,3,1,"","run"],[120,2,1,"","selection_optional"],[120,2,1,"","tag"]],"gammapy.estimators.TSMapEstimator":[[121,2,1,"","config_parameters"],[121,3,1,"","copy"],[121,3,1,"","estimate_fit_input_maps"],[121,3,1,"","estimate_flux_default"],[121,3,1,"","estimate_flux_map"],[121,3,1,"","estimate_kernel"],[121,3,1,"","estimate_mask_default"],[121,3,1,"","estimate_pad_width"],[121,2,1,"","n_jobs"],[121,2,1,"","parallel_backend"],[121,3,1,"","run"],[121,2,1,"","selection_all"],[121,2,1,"","selection_optional"],[121,2,1,"","tag"]],"gammapy.estimators.utils":[[122,4,1,"","compute_lightcurve_doublingtime"],[123,4,1,"","compute_lightcurve_fpp"],[124,4,1,"","compute_lightcurve_fvar"],[125,4,1,"","estimate_exposure_reco_energy"],[126,4,1,"","find_peaks"],[127,4,1,"","find_peaks_in_flux_map"],[128,4,1,"","resample_energy_edges"]],"gammapy.irf":[[129,1,1,"","Background2D"],[130,1,1,"","Background3D"],[131,1,1,"","BackgroundIRF"],[132,1,1,"","EDispKernel"],[133,1,1,"","EDispKernelMap"],[134,1,1,"","EDispMap"],[135,1,1,"","EffectiveAreaTable2D"],[136,1,1,"","EnergyDependentMultiGaussPSF"],[137,1,1,"","EnergyDispersion2D"],[138,1,1,"","FoVAlignment"],[139,1,1,"","IRF"],[140,1,1,"","IRFMap"],[141,5,1,"","IRF_REGISTRY"],[142,1,1,"","PSF3D"],[143,1,1,"","PSFKernel"],[144,1,1,"","PSFKing"],[145,1,1,"","PSFMap"],[146,1,1,"","ParametricPSF"],[147,1,1,"","RadMax2D"],[148,1,1,"","RecoPSFMap"],[149,4,1,"","load_irf_dict_from_file"]],"gammapy.irf.Background2D":[[129,2,1,"","axes"],[129,3,1,"","cumsum"],[129,2,1,"","data"],[129,2,1,"","default_interp_kwargs"],[129,2,1,"","default_unit"],[129,3,1,"","evaluate"],[129,2,1,"","fov_alignment"],[129,3,1,"","from_hdulist"],[129,3,1,"","from_table"],[129,2,1,"","has_offset_axis"],[129,3,1,"","integral"],[129,3,1,"","integrate_log_log"],[129,3,1,"","interp_missing_data"],[129,3,1,"","is_allclose"],[129,2,1,"","is_pointlike"],[129,3,1,"","normalize"],[129,3,1,"","pad"],[129,3,1,"","peek"],[129,3,1,"","plot"],[129,3,1,"","plot_at_energy"],[129,3,1,"","plot_energy_dependence"],[129,3,1,"","plot_offset_dependence"],[129,3,1,"","plot_spectrum"],[129,2,1,"","quantity"],[129,3,1,"","read"],[129,2,1,"","required_axes"],[129,3,1,"","slice_by_idx"],[129,2,1,"","tag"],[129,3,1,"","to_3d"],[129,3,1,"","to_hdulist"],[129,3,1,"","to_table"],[129,3,1,"","to_table_hdu"],[129,3,1,"","to_unit"],[129,2,1,"","unit"],[129,3,1,"","write"]],"gammapy.irf.Background3D":[[130,2,1,"","axes"],[130,3,1,"","cumsum"],[130,2,1,"","data"],[130,2,1,"","default_interp_kwargs"],[130,2,1,"","default_unit"],[130,3,1,"","evaluate"],[130,2,1,"","fov_alignment"],[130,3,1,"","from_hdulist"],[130,3,1,"","from_table"],[130,2,1,"","has_offset_axis"],[130,3,1,"","integral"],[130,3,1,"","integrate_log_log"],[130,3,1,"","interp_missing_data"],[130,3,1,"","is_allclose"],[130,2,1,"","is_pointlike"],[130,3,1,"","normalize"],[130,3,1,"","pad"],[130,3,1,"","peek"],[130,3,1,"","plot_at_energy"],[130,2,1,"","quantity"],[130,3,1,"","read"],[130,2,1,"","required_axes"],[130,3,1,"","slice_by_idx"],[130,2,1,"","tag"],[130,3,1,"","to_2d"],[130,3,1,"","to_hdulist"],[130,3,1,"","to_table"],[130,3,1,"","to_table_hdu"],[130,3,1,"","to_unit"],[130,2,1,"","unit"],[130,3,1,"","write"]],"gammapy.irf.BackgroundIRF":[[131,2,1,"","axes"],[131,3,1,"","cumsum"],[131,2,1,"","data"],[131,2,1,"","default_interp_kwargs"],[131,3,1,"","evaluate"],[131,2,1,"","fov_alignment"],[131,3,1,"","from_hdulist"],[131,3,1,"","from_table"],[131,2,1,"","has_offset_axis"],[131,3,1,"","integral"],[131,3,1,"","integrate_log_log"],[131,3,1,"","interp_missing_data"],[131,3,1,"","is_allclose"],[131,2,1,"","is_pointlike"],[131,3,1,"","normalize"],[131,3,1,"","pad"],[131,2,1,"","quantity"],[131,3,1,"","read"],[131,2,1,"","required_axes"],[131,3,1,"","slice_by_idx"],[131,2,1,"","tag"],[131,3,1,"","to_hdulist"],[131,3,1,"","to_table"],[131,3,1,"","to_table_hdu"],[131,3,1,"","to_unit"],[131,2,1,"","unit"],[131,3,1,"","write"]],"gammapy.irf.EDispKernel":[[132,2,1,"","axes"],[132,3,1,"","cumsum"],[132,2,1,"","data"],[132,2,1,"","default_interp_kwargs"],[132,3,1,"","evaluate"],[132,2,1,"","fov_alignment"],[132,3,1,"","from_diagonal_response"],[132,3,1,"","from_gauss"],[132,3,1,"","from_hdulist"],[132,3,1,"","from_table"],[132,3,1,"","get_bias"],[132,3,1,"","get_bias_energy"],[132,3,1,"","get_mean"],[132,3,1,"","get_resolution"],[132,2,1,"","has_offset_axis"],[132,3,1,"","integral"],[132,3,1,"","integrate_log_log"],[132,3,1,"","interp_missing_data"],[132,3,1,"","is_allclose"],[132,2,1,"","is_pointlike"],[132,3,1,"","normalize"],[132,3,1,"","pad"],[132,3,1,"","pdf_in_safe_range"],[132,2,1,"","pdf_matrix"],[132,3,1,"","peek"],[132,3,1,"","plot_bias"],[132,3,1,"","plot_matrix"],[132,2,1,"","quantity"],[132,3,1,"","read"],[132,2,1,"","required_axes"],[132,3,1,"","slice_by_idx"],[132,2,1,"","tag"],[132,3,1,"","to_hdulist"],[132,3,1,"","to_image"],[132,3,1,"","to_table"],[132,3,1,"","to_table_hdu"],[132,3,1,"","to_unit"],[132,2,1,"","unit"],[132,3,1,"","write"]],"gammapy.irf.EDispKernelMap":[[133,3,1,"","copy"],[133,3,1,"","cutout"],[133,3,1,"","downsample"],[133,2,1,"","edisp_map"],[133,3,1,"","from_diagonal_response"],[133,3,1,"","from_edisp_kernel"],[133,3,1,"","from_gauss"],[133,3,1,"","from_geom"],[133,3,1,"","from_hdulist"],[133,3,1,"","get_edisp_kernel"],[133,2,1,"","mask_safe_image"],[133,3,1,"","peek"],[133,3,1,"","read"],[133,2,1,"","required_axes"],[133,3,1,"","resample_energy_axis"],[133,3,1,"","slice_by_idx"],[133,3,1,"","stack"],[133,2,1,"","tag"],[133,3,1,"","to_hdulist"],[133,3,1,"","to_image"],[133,3,1,"","to_region_nd_map"],[133,3,1,"","write"]],"gammapy.irf.EDispMap":[[134,3,1,"","copy"],[134,3,1,"","cutout"],[134,3,1,"","downsample"],[134,2,1,"","edisp_map"],[134,3,1,"","from_diagonal_response"],[134,3,1,"","from_geom"],[134,3,1,"","from_hdulist"],[134,3,1,"","get_edisp_kernel"],[134,2,1,"","mask_safe_image"],[134,3,1,"","normalize"],[134,3,1,"","peek"],[134,3,1,"","read"],[134,2,1,"","required_axes"],[134,3,1,"","sample_coord"],[134,3,1,"","slice_by_idx"],[134,3,1,"","stack"],[134,2,1,"","tag"],[134,3,1,"","to_edisp_kernel_map"],[134,3,1,"","to_hdulist"],[134,3,1,"","to_region_nd_map"],[134,3,1,"","write"]],"gammapy.irf.EffectiveAreaTable2D":[[135,2,1,"","axes"],[135,3,1,"","cumsum"],[135,2,1,"","data"],[135,2,1,"","default_interp_kwargs"],[135,2,1,"","default_unit"],[135,3,1,"","evaluate"],[135,2,1,"","fov_alignment"],[135,3,1,"","from_hdulist"],[135,3,1,"","from_parametrization"],[135,3,1,"","from_table"],[135,2,1,"","has_offset_axis"],[135,3,1,"","integral"],[135,3,1,"","integrate_log_log"],[135,3,1,"","interp_missing_data"],[135,3,1,"","is_allclose"],[135,2,1,"","is_pointlike"],[135,3,1,"","normalize"],[135,3,1,"","pad"],[135,3,1,"","peek"],[135,3,1,"","plot"],[135,3,1,"","plot_energy_dependence"],[135,3,1,"","plot_offset_dependence"],[135,2,1,"","quantity"],[135,3,1,"","read"],[135,2,1,"","required_axes"],[135,3,1,"","slice_by_idx"],[135,2,1,"","tag"],[135,3,1,"","to_hdulist"],[135,3,1,"","to_table"],[135,3,1,"","to_table_hdu"],[135,3,1,"","to_unit"],[135,2,1,"","unit"],[135,3,1,"","write"]],"gammapy.irf.EnergyDependentMultiGaussPSF":[[136,2,1,"","axes"],[136,3,1,"","containment"],[136,3,1,"","containment_radius"],[136,3,1,"","cumsum"],[136,2,1,"","data"],[136,2,1,"","default_interp_kwargs"],[136,3,1,"","evaluate"],[136,3,1,"","evaluate_containment"],[136,3,1,"","evaluate_direct"],[136,3,1,"","evaluate_parameters"],[136,2,1,"","fov_alignment"],[136,3,1,"","from_hdulist"],[136,3,1,"","from_table"],[136,2,1,"","has_offset_axis"],[136,3,1,"","info"],[136,3,1,"","integral"],[136,3,1,"","integrate_log_log"],[136,3,1,"","interp_missing_data"],[136,3,1,"","is_allclose"],[136,2,1,"","is_pointlike"],[136,3,1,"","normalize"],[136,3,1,"","pad"],[136,3,1,"","peek"],[136,3,1,"","plot_containment_radius"],[136,3,1,"","plot_containment_radius_vs_energy"],[136,3,1,"","plot_psf_vs_rad"],[136,2,1,"","quantity"],[136,3,1,"","read"],[136,2,1,"","required_axes"],[136,2,1,"","required_parameters"],[136,3,1,"","slice_by_idx"],[136,2,1,"","tag"],[136,3,1,"","to_hdulist"],[136,3,1,"","to_psf3d"],[136,3,1,"","to_table"],[136,3,1,"","to_table_hdu"],[136,3,1,"","to_unit"],[136,2,1,"","unit"],[136,3,1,"","write"]],"gammapy.irf.EnergyDispersion2D":[[137,2,1,"","axes"],[137,3,1,"","cumsum"],[137,2,1,"","data"],[137,2,1,"","default_interp_kwargs"],[137,2,1,"","default_unit"],[137,3,1,"","evaluate"],[137,2,1,"","fov_alignment"],[137,3,1,"","from_gauss"],[137,3,1,"","from_hdulist"],[137,3,1,"","from_table"],[137,2,1,"","has_offset_axis"],[137,3,1,"","integral"],[137,3,1,"","integrate_log_log"],[137,3,1,"","interp_missing_data"],[137,3,1,"","is_allclose"],[137,2,1,"","is_pointlike"],[137,3,1,"","normalize"],[137,3,1,"","pad"],[137,3,1,"","peek"],[137,3,1,"","plot_bias"],[137,3,1,"","plot_migration"],[137,2,1,"","quantity"],[137,3,1,"","read"],[137,2,1,"","required_axes"],[137,3,1,"","slice_by_idx"],[137,2,1,"","tag"],[137,3,1,"","to_edisp_kernel"],[137,3,1,"","to_hdulist"],[137,3,1,"","to_table"],[137,3,1,"","to_table_hdu"],[137,3,1,"","to_unit"],[137,2,1,"","unit"],[137,3,1,"","write"]],"gammapy.irf.FoVAlignment":[[138,2,1,"","ALTAZ"],[138,2,1,"","RADEC"]],"gammapy.irf.IRF":[[139,2,1,"","axes"],[139,3,1,"","cumsum"],[139,2,1,"","data"],[139,2,1,"","default_interp_kwargs"],[139,3,1,"","evaluate"],[139,2,1,"","fov_alignment"],[139,3,1,"","from_hdulist"],[139,3,1,"","from_table"],[139,2,1,"","has_offset_axis"],[139,3,1,"","integral"],[139,3,1,"","integrate_log_log"],[139,3,1,"","interp_missing_data"],[139,3,1,"","is_allclose"],[139,2,1,"","is_pointlike"],[139,3,1,"","normalize"],[139,3,1,"","pad"],[139,2,1,"","quantity"],[139,3,1,"","read"],[139,2,1,"","required_axes"],[139,3,1,"","slice_by_idx"],[139,2,1,"","tag"],[139,3,1,"","to_hdulist"],[139,3,1,"","to_table"],[139,3,1,"","to_table_hdu"],[139,3,1,"","to_unit"],[139,2,1,"","unit"],[139,3,1,"","write"]],"gammapy.irf.IRFMap":[[140,3,1,"","copy"],[140,3,1,"","cutout"],[140,3,1,"","downsample"],[140,3,1,"","from_hdulist"],[140,2,1,"","mask_safe_image"],[140,3,1,"","read"],[140,2,1,"","required_axes"],[140,3,1,"","slice_by_idx"],[140,3,1,"","stack"],[140,2,1,"","tag"],[140,3,1,"","to_hdulist"],[140,3,1,"","to_region_nd_map"],[140,3,1,"","write"]],"gammapy.irf.PSF3D":[[142,2,1,"","axes"],[142,3,1,"","containment"],[142,3,1,"","containment_radius"],[142,3,1,"","cumsum"],[142,2,1,"","data"],[142,2,1,"","default_interp_kwargs"],[142,2,1,"","default_unit"],[142,3,1,"","evaluate"],[142,2,1,"","fov_alignment"],[142,3,1,"","from_hdulist"],[142,3,1,"","from_table"],[142,2,1,"","has_offset_axis"],[142,3,1,"","info"],[142,3,1,"","integral"],[142,3,1,"","integrate_log_log"],[142,3,1,"","interp_missing_data"],[142,3,1,"","is_allclose"],[142,2,1,"","is_pointlike"],[142,3,1,"","normalize"],[142,3,1,"","pad"],[142,3,1,"","peek"],[142,3,1,"","plot_containment_radius"],[142,3,1,"","plot_containment_radius_vs_energy"],[142,3,1,"","plot_psf_vs_rad"],[142,2,1,"","quantity"],[142,3,1,"","read"],[142,2,1,"","required_axes"],[142,3,1,"","slice_by_idx"],[142,2,1,"","tag"],[142,3,1,"","to_hdulist"],[142,3,1,"","to_table"],[142,3,1,"","to_table_hdu"],[142,3,1,"","to_unit"],[142,2,1,"","unit"],[142,3,1,"","write"]],"gammapy.irf.PSFKernel":[[143,2,1,"","data"],[143,3,1,"","from_gauss"],[143,3,1,"","from_spatial_model"],[143,3,1,"","normalize"],[143,3,1,"","peek"],[143,3,1,"","plot_kernel"],[143,2,1,"","psf_kernel_map"],[143,3,1,"","read"],[143,3,1,"","slice_by_idx"],[143,3,1,"","to_image"],[143,3,1,"","write"]],"gammapy.irf.PSFKing":[[144,2,1,"","axes"],[144,3,1,"","containment"],[144,3,1,"","containment_radius"],[144,3,1,"","cumsum"],[144,2,1,"","data"],[144,2,1,"","default_interp_kwargs"],[144,3,1,"","evaluate"],[144,3,1,"","evaluate_containment"],[144,3,1,"","evaluate_direct"],[144,3,1,"","evaluate_parameters"],[144,2,1,"","fov_alignment"],[144,3,1,"","from_hdulist"],[144,3,1,"","from_table"],[144,2,1,"","has_offset_axis"],[144,3,1,"","info"],[144,3,1,"","integral"],[144,3,1,"","integrate_log_log"],[144,3,1,"","interp_missing_data"],[144,3,1,"","is_allclose"],[144,2,1,"","is_pointlike"],[144,3,1,"","normalize"],[144,3,1,"","pad"],[144,3,1,"","peek"],[144,3,1,"","plot_containment_radius"],[144,3,1,"","plot_containment_radius_vs_energy"],[144,3,1,"","plot_psf_vs_rad"],[144,2,1,"","quantity"],[144,3,1,"","read"],[144,2,1,"","required_axes"],[144,2,1,"","required_parameters"],[144,3,1,"","slice_by_idx"],[144,2,1,"","tag"],[144,3,1,"","to_hdulist"],[144,3,1,"","to_psf3d"],[144,3,1,"","to_table"],[144,3,1,"","to_table_hdu"],[144,3,1,"","to_unit"],[144,2,1,"","unit"],[144,3,1,"","write"]],"gammapy.irf.PSFMap":[[145,3,1,"","containment"],[145,3,1,"","containment_radius"],[145,3,1,"","containment_radius_map"],[145,3,1,"","copy"],[145,3,1,"","cutout"],[145,3,1,"","downsample"],[145,2,1,"","energy_name"],[145,3,1,"","from_gauss"],[145,3,1,"","from_geom"],[145,3,1,"","from_hdulist"],[145,3,1,"","get_psf_kernel"],[145,2,1,"","mask_safe_image"],[145,3,1,"","normalize"],[145,3,1,"","peek"],[145,3,1,"","plot_containment_radius_vs_energy"],[145,3,1,"","plot_psf_vs_rad"],[145,2,1,"","psf_map"],[145,3,1,"","read"],[145,2,1,"","required_axes"],[145,3,1,"","sample_coord"],[145,3,1,"","slice_by_idx"],[145,3,1,"","stack"],[145,2,1,"","tag"],[145,3,1,"","to_hdulist"],[145,3,1,"","to_image"],[145,3,1,"","to_region_nd_map"],[145,3,1,"","write"]],"gammapy.irf.ParametricPSF":[[146,2,1,"","axes"],[146,3,1,"","containment"],[146,3,1,"","containment_radius"],[146,3,1,"","cumsum"],[146,2,1,"","data"],[146,2,1,"","default_interp_kwargs"],[146,3,1,"","evaluate"],[146,3,1,"","evaluate_containment"],[146,3,1,"","evaluate_direct"],[146,3,1,"","evaluate_parameters"],[146,2,1,"","fov_alignment"],[146,3,1,"","from_hdulist"],[146,3,1,"","from_table"],[146,2,1,"","has_offset_axis"],[146,3,1,"","info"],[146,3,1,"","integral"],[146,3,1,"","integrate_log_log"],[146,3,1,"","interp_missing_data"],[146,3,1,"","is_allclose"],[146,2,1,"","is_pointlike"],[146,3,1,"","normalize"],[146,3,1,"","pad"],[146,3,1,"","peek"],[146,3,1,"","plot_containment_radius"],[146,3,1,"","plot_containment_radius_vs_energy"],[146,3,1,"","plot_psf_vs_rad"],[146,2,1,"","quantity"],[146,3,1,"","read"],[146,2,1,"","required_axes"],[146,2,1,"","required_parameters"],[146,3,1,"","slice_by_idx"],[146,2,1,"","tag"],[146,3,1,"","to_hdulist"],[146,3,1,"","to_psf3d"],[146,3,1,"","to_table"],[146,3,1,"","to_table_hdu"],[146,3,1,"","to_unit"],[146,2,1,"","unit"],[146,3,1,"","write"]],"gammapy.irf.RadMax2D":[[147,2,1,"","axes"],[147,3,1,"","cumsum"],[147,2,1,"","data"],[147,2,1,"","default_interp_kwargs"],[147,2,1,"","default_unit"],[147,3,1,"","evaluate"],[147,2,1,"","fov_alignment"],[147,3,1,"","from_hdulist"],[147,3,1,"","from_irf"],[147,3,1,"","from_table"],[147,2,1,"","has_offset_axis"],[147,3,1,"","integral"],[147,3,1,"","integrate_log_log"],[147,3,1,"","interp_missing_data"],[147,3,1,"","is_allclose"],[147,2,1,"","is_fixed_rad_max"],[147,2,1,"","is_pointlike"],[147,3,1,"","normalize"],[147,3,1,"","pad"],[147,3,1,"","plot_rad_max_vs_energy"],[147,2,1,"","quantity"],[147,3,1,"","read"],[147,2,1,"","required_axes"],[147,3,1,"","slice_by_idx"],[147,2,1,"","tag"],[147,3,1,"","to_hdulist"],[147,3,1,"","to_table"],[147,3,1,"","to_table_hdu"],[147,3,1,"","to_unit"],[147,2,1,"","unit"],[147,3,1,"","write"]],"gammapy.irf.RecoPSFMap":[[148,3,1,"","containment"],[148,3,1,"","containment_radius"],[148,3,1,"","containment_radius_map"],[148,3,1,"","copy"],[148,3,1,"","cutout"],[148,3,1,"","downsample"],[148,2,1,"","energy_name"],[148,3,1,"","from_gauss"],[148,3,1,"","from_geom"],[148,3,1,"","from_hdulist"],[148,3,1,"","get_psf_kernel"],[148,2,1,"","mask_safe_image"],[148,3,1,"","normalize"],[148,3,1,"","peek"],[148,3,1,"","plot_containment_radius_vs_energy"],[148,3,1,"","plot_psf_vs_rad"],[148,2,1,"","psf_map"],[148,3,1,"","read"],[148,2,1,"","required_axes"],[148,3,1,"","sample_coord"],[148,3,1,"","slice_by_idx"],[148,3,1,"","stack"],[148,2,1,"","tag"],[148,3,1,"","to_hdulist"],[148,3,1,"","to_image"],[148,3,1,"","to_region_nd_map"],[148,3,1,"","write"]],"gammapy.makers":[[150,1,1,"","AdaptiveRingBackgroundMaker"],[151,1,1,"","DatasetsMaker"],[152,1,1,"","FoVBackgroundMaker"],[153,5,1,"","MAKER_REGISTRY"],[154,1,1,"","Maker"],[155,1,1,"","MapDatasetMaker"],[156,1,1,"","PhaseBackgroundMaker"],[157,1,1,"","ReflectedRegionsBackgroundMaker"],[158,1,1,"","ReflectedRegionsFinder"],[159,1,1,"","RegionsFinder"],[160,1,1,"","RingBackgroundMaker"],[161,1,1,"","SafeMaskMaker"],[162,1,1,"","SpectrumDatasetMaker"],[163,1,1,"","WobbleRegionsFinder"],[8,0,0,"-","utils"]],"gammapy.makers.AdaptiveRingBackgroundMaker":[[150,3,1,"","kernels"],[150,3,1,"","make_cubes"],[150,3,1,"","run"],[150,2,1,"","tag"]],"gammapy.makers.DatasetsMaker":[[151,3,1,"","callback"],[151,3,1,"","error_callback"],[151,3,1,"","make_dataset"],[151,2,1,"","n_jobs"],[151,2,1,"","offset_max"],[151,2,1,"","parallel_backend"],[151,3,1,"","run"],[151,2,1,"","safe_mask_maker"],[151,2,1,"","tag"]],"gammapy.makers.FoVBackgroundMaker":[[152,2,1,"","available_methods"],[152,3,1,"","make_background_fit"],[152,3,1,"","make_background_scale"],[152,3,1,"","make_default_fov_background_model"],[152,3,1,"","make_exclusion_mask"],[152,2,1,"","method"],[152,3,1,"","run"],[152,2,1,"","tag"]],"gammapy.makers.Maker":[[154,3,1,"","run"],[154,2,1,"","tag"]],"gammapy.makers.MapDatasetMaker":[[155,2,1,"","available_selection"],[155,3,1,"","make_background"],[155,3,1,"","make_counts"],[155,3,1,"","make_edisp"],[155,3,1,"","make_edisp_kernel"],[155,3,1,"","make_exposure"],[155,3,1,"","make_exposure_irf"],[155,3,1,"","make_meta_table"],[155,3,1,"","make_psf"],[155,3,1,"","run"],[155,2,1,"","tag"]],"gammapy.makers.PhaseBackgroundMaker":[[156,3,1,"","make_counts"],[156,3,1,"","make_counts_off"],[156,3,1,"","run"],[156,2,1,"","tag"]],"gammapy.makers.ReflectedRegionsBackgroundMaker":[[157,3,1,"","make_counts_off"],[157,3,1,"","run"],[157,2,1,"","tag"]],"gammapy.makers.ReflectedRegionsFinder":[[158,3,1,"","run"]],"gammapy.makers.RegionsFinder":[[159,3,1,"","run"]],"gammapy.makers.RingBackgroundMaker":[[160,3,1,"","kernel"],[160,3,1,"","make_maps_off"],[160,3,1,"","run"],[160,2,1,"","tag"]],"gammapy.makers.SafeMaskMaker":[[161,2,1,"","available_methods"],[161,3,1,"","make_mask_bkg_invalid"],[161,3,1,"","make_mask_energy_aeff_default"],[161,3,1,"","make_mask_energy_aeff_max"],[161,3,1,"","make_mask_energy_bkg_peak"],[161,3,1,"","make_mask_energy_edisp_bias"],[161,3,1,"","make_mask_offset_max"],[161,3,1,"","run"],[161,2,1,"","tag"]],"gammapy.makers.SpectrumDatasetMaker":[[162,2,1,"","available_selection"],[162,3,1,"","make_background"],[162,3,1,"","make_counts"],[162,3,1,"","make_edisp"],[162,3,1,"","make_edisp_kernel"],[162,3,1,"","make_exposure"],[162,3,1,"","make_exposure_irf"],[162,3,1,"","make_meta_table"],[162,3,1,"","make_psf"],[162,3,1,"","run"],[162,2,1,"","tag"]],"gammapy.makers.WobbleRegionsFinder":[[163,3,1,"","run"]],"gammapy.makers.utils":[[164,4,1,"","make_counts_rad_max"],[165,4,1,"","make_edisp_kernel_map"],[166,4,1,"","make_edisp_map"],[167,4,1,"","make_effective_livetime_map"],[168,4,1,"","make_map_background_irf"],[169,4,1,"","make_map_exposure_true_energy"],[170,4,1,"","make_observation_time_map"],[171,4,1,"","make_psf_map"],[172,4,1,"","make_theta_squared_table"]],"gammapy.maps":[[173,1,1,"","Geom"],[174,1,1,"","HpxGeom"],[175,1,1,"","HpxMap"],[176,1,1,"","HpxNDMap"],[177,1,1,"","LabelMapAxis"],[178,1,1,"","Map"],[179,1,1,"","MapAxes"],[180,1,1,"","MapAxis"],[181,1,1,"","MapCoord"],[182,1,1,"","Maps"],[183,1,1,"","RegionGeom"],[184,1,1,"","RegionNDMap"],[185,1,1,"","TimeMapAxis"],[186,1,1,"","WcsGeom"],[187,1,1,"","WcsMap"],[188,1,1,"","WcsNDMap"],[189,4,1,"","containment_radius"],[190,4,1,"","containment_region"]],"gammapy.maps.Geom":[[173,2,1,"","as_energy_true"],[173,2,1,"","center_coord"],[173,2,1,"","center_pix"],[173,2,1,"","center_skydir"],[173,3,1,"","contains"],[173,3,1,"","contains_pix"],[173,3,1,"","coord_to_idx"],[173,3,1,"","coord_to_pix"],[173,3,1,"","copy"],[173,3,1,"","crop"],[173,3,1,"","data_nbytes"],[173,2,1,"","data_shape"],[173,3,1,"","downsample"],[173,3,1,"","drop"],[173,3,1,"","energy_mask"],[173,3,1,"","from_hdulist"],[173,3,1,"","get_coord"],[173,3,1,"","get_idx"],[173,2,1,"","has_energy_axis"],[173,2,1,"","is_allsky"],[173,2,1,"","is_flat"],[173,2,1,"","is_image"],[173,3,1,"","pad"],[173,3,1,"","pix_to_coord"],[173,3,1,"","pix_to_idx"],[173,3,1,"","rename_axes"],[173,3,1,"","replace_axis"],[173,3,1,"","resample_axis"],[173,3,1,"","slice_by_idx"],[173,3,1,"","solid_angle"],[173,3,1,"","squash"],[173,3,1,"","to_bands_hdu"],[173,3,1,"","to_cube"],[173,3,1,"","to_image"],[173,3,1,"","upsample"]],"gammapy.maps.HpxGeom":[[174,2,1,"","as_energy_true"],[174,2,1,"","axes"],[174,2,1,"","axes_names"],[174,2,1,"","center_coord"],[174,2,1,"","center_pix"],[174,2,1,"","center_skydir"],[174,3,1,"","contains"],[174,3,1,"","contains_pix"],[174,3,1,"","coord_to_idx"],[174,3,1,"","coord_to_pix"],[174,3,1,"","copy"],[174,3,1,"","create"],[174,3,1,"","crop"],[174,3,1,"","cutout"],[174,3,1,"","data_nbytes"],[174,2,1,"","data_shape"],[174,2,1,"","data_shape_axes"],[174,3,1,"","downsample"],[174,3,1,"","drop"],[174,3,1,"","energy_mask"],[174,2,1,"","frame"],[174,3,1,"","from_hdu"],[174,3,1,"","from_hdulist"],[174,3,1,"","from_header"],[174,3,1,"","get_coord"],[174,3,1,"","get_idx"],[174,3,1,"","get_index_list"],[174,3,1,"","global_to_local"],[174,2,1,"","has_energy_axis"],[174,3,1,"","interp_weights"],[174,2,1,"","ipix"],[174,3,1,"","is_aligned"],[174,3,1,"","is_allclose"],[174,2,1,"","is_allsky"],[174,2,1,"","is_flat"],[174,2,1,"","is_hpx"],[174,2,1,"","is_image"],[174,2,1,"","is_region"],[174,2,1,"","is_regular"],[174,3,1,"","local_to_global"],[174,2,1,"","ndim"],[174,2,1,"","nest"],[174,2,1,"","npix"],[174,2,1,"","npix_max"],[174,2,1,"","nside"],[174,2,1,"","order"],[174,2,1,"","ordering"],[174,3,1,"","pad"],[174,3,1,"","pix_to_coord"],[174,3,1,"","pix_to_idx"],[174,2,1,"","pixel_scales"],[174,2,1,"","projection"],[174,2,1,"","region"],[174,3,1,"","region_mask"],[174,3,1,"","rename_axes"],[174,3,1,"","replace_axis"],[174,3,1,"","resample_axis"],[174,3,1,"","separation"],[174,2,1,"","shape_axes"],[174,3,1,"","slice_by_idx"],[174,3,1,"","solid_angle"],[174,3,1,"","squash"],[174,3,1,"","to_bands_hdu"],[174,3,1,"","to_binsz"],[174,3,1,"","to_cube"],[174,3,1,"","to_header"],[174,3,1,"","to_image"],[174,3,1,"","to_nside"],[174,3,1,"","to_swapped"],[174,3,1,"","to_wcs_geom"],[174,3,1,"","to_wcs_tiles"],[174,3,1,"","upsample"],[174,2,1,"","width"]],"gammapy.maps.HpxMap":[[175,3,1,"","coadd"],[175,3,1,"","copy"],[175,3,1,"","create"],[175,3,1,"","crop"],[175,3,1,"","cumsum"],[175,2,1,"","data"],[175,3,1,"","dot"],[175,3,1,"","downsample"],[175,3,1,"","fill_by_coord"],[175,3,1,"","fill_by_idx"],[175,3,1,"","fill_by_pix"],[175,3,1,"","fill_events"],[175,3,1,"","from_geom"],[175,3,1,"","from_hdulist"],[175,3,1,"","from_stack"],[175,2,1,"","geom"],[175,3,1,"","get_by_coord"],[175,3,1,"","get_by_idx"],[175,3,1,"","get_by_pix"],[175,3,1,"","get_image_by_coord"],[175,3,1,"","get_image_by_idx"],[175,3,1,"","get_image_by_pix"],[175,3,1,"","get_spectrum"],[175,3,1,"","integral"],[175,3,1,"","interp_by_coord"],[175,3,1,"","interp_by_pix"],[175,3,1,"","interp_to_geom"],[175,3,1,"","is_allclose"],[175,2,1,"","is_mask"],[175,3,1,"","iter_by_axis"],[175,3,1,"","iter_by_image"],[175,3,1,"","iter_by_image_data"],[175,3,1,"","iter_by_image_index"],[175,3,1,"","mask_nearest_position"],[175,2,1,"","meta"],[175,3,1,"","normalize"],[175,3,1,"","pad"],[175,3,1,"","plot_grid"],[175,3,1,"","plot_interactive"],[175,2,1,"","quantity"],[175,3,1,"","read"],[175,3,1,"","reduce"],[175,3,1,"","reduce_over_axes"],[175,3,1,"","rename_axes"],[175,3,1,"","reorder_axes"],[175,3,1,"","reproject_by_image"],[175,3,1,"","reproject_to_geom"],[175,3,1,"","resample"],[175,3,1,"","resample_axis"],[175,3,1,"","sample_coord"],[175,3,1,"","set_by_coord"],[175,3,1,"","set_by_idx"],[175,3,1,"","set_by_pix"],[175,3,1,"","slice_by_idx"],[175,3,1,"","split_by_axis"],[175,3,1,"","sum_over_axes"],[175,2,1,"","tag"],[175,3,1,"","to_cube"],[175,3,1,"","to_hdu"],[175,3,1,"","to_hdulist"],[175,3,1,"","to_swapped"],[175,3,1,"","to_unit"],[175,3,1,"","to_wcs"],[175,2,1,"","unit"],[175,3,1,"","upsample"],[175,3,1,"","write"]],"gammapy.maps.HpxNDMap":[[176,3,1,"","coadd"],[176,3,1,"","convolve"],[176,3,1,"","convolve_full"],[176,3,1,"","convolve_wcs"],[176,3,1,"","copy"],[176,3,1,"","create"],[176,3,1,"","crop"],[176,3,1,"","cumsum"],[176,3,1,"","cutout"],[176,2,1,"","data"],[176,3,1,"","dot"],[176,3,1,"","downsample"],[176,3,1,"","fill_by_coord"],[176,3,1,"","fill_by_idx"],[176,3,1,"","fill_by_pix"],[176,3,1,"","fill_events"],[176,3,1,"","from_geom"],[176,3,1,"","from_hdu"],[176,3,1,"","from_hdulist"],[176,3,1,"","from_stack"],[176,3,1,"","from_wcs_tiles"],[176,2,1,"","geom"],[176,3,1,"","get_by_coord"],[176,3,1,"","get_by_idx"],[176,3,1,"","get_by_pix"],[176,3,1,"","get_image_by_coord"],[176,3,1,"","get_image_by_idx"],[176,3,1,"","get_image_by_pix"],[176,3,1,"","get_spectrum"],[176,3,1,"","integral"],[176,3,1,"","interp_by_coord"],[176,3,1,"","interp_by_pix"],[176,3,1,"","interp_to_geom"],[176,3,1,"","is_allclose"],[176,2,1,"","is_mask"],[176,3,1,"","iter_by_axis"],[176,3,1,"","iter_by_image"],[176,3,1,"","iter_by_image_data"],[176,3,1,"","iter_by_image_index"],[176,3,1,"","mask_nearest_position"],[176,2,1,"","meta"],[176,3,1,"","normalize"],[176,3,1,"","pad"],[176,3,1,"","plot"],[176,3,1,"","plot_grid"],[176,3,1,"","plot_interactive"],[176,3,1,"","plot_mask"],[176,2,1,"","quantity"],[176,3,1,"","read"],[176,3,1,"","reduce"],[176,3,1,"","reduce_over_axes"],[176,3,1,"","rename_axes"],[176,3,1,"","reorder_axes"],[176,3,1,"","reproject_by_image"],[176,3,1,"","reproject_to_geom"],[176,3,1,"","resample"],[176,3,1,"","resample_axis"],[176,3,1,"","sample_coord"],[176,3,1,"","set_by_coord"],[176,3,1,"","set_by_idx"],[176,3,1,"","set_by_pix"],[176,3,1,"","slice_by_idx"],[176,3,1,"","smooth"],[176,3,1,"","split_by_axis"],[176,3,1,"","stack"],[176,3,1,"","sum_over_axes"],[176,2,1,"","tag"],[176,3,1,"","to_cube"],[176,3,1,"","to_hdu"],[176,3,1,"","to_hdulist"],[176,3,1,"","to_nside"],[176,3,1,"","to_region_nd_map"],[176,3,1,"","to_swapped"],[176,3,1,"","to_unit"],[176,3,1,"","to_wcs"],[176,3,1,"","to_wcs_tiles"],[176,2,1,"","unit"],[176,3,1,"","upsample"],[176,3,1,"","write"]],"gammapy.maps.LabelMapAxis":[[177,2,1,"","as_plot_center"],[177,2,1,"","as_plot_edges"],[177,2,1,"","as_plot_labels"],[177,2,1,"","as_plot_xerr"],[177,3,1,"","assert_name"],[177,2,1,"","bin_width"],[177,2,1,"","center"],[177,3,1,"","concatenate"],[177,3,1,"","coord_to_idx"],[177,3,1,"","coord_to_pix"],[177,3,1,"","copy"],[177,3,1,"","downsample"],[177,2,1,"","edges"],[177,2,1,"","edges_max"],[177,2,1,"","edges_min"],[177,3,1,"","format_plot_xaxis"],[177,3,1,"","from_stack"],[177,3,1,"","from_table"],[177,3,1,"","is_allclose"],[177,2,1,"","name"],[177,2,1,"","nbin"],[177,2,1,"","node_type"],[177,3,1,"","pad"],[177,3,1,"","pix_to_coord"],[177,3,1,"","pix_to_idx"],[177,3,1,"","resample"],[177,3,1,"","slice"],[177,3,1,"","squash"],[177,3,1,"","to_header"],[177,2,1,"","unit"],[177,3,1,"","upsample"]],"gammapy.maps.Map":[[178,3,1,"","coadd"],[178,3,1,"","copy"],[178,3,1,"","create"],[178,3,1,"","crop"],[178,3,1,"","cumsum"],[178,2,1,"","data"],[178,3,1,"","dot"],[178,3,1,"","downsample"],[178,3,1,"","fill_by_coord"],[178,3,1,"","fill_by_idx"],[178,3,1,"","fill_by_pix"],[178,3,1,"","fill_events"],[178,3,1,"","from_geom"],[178,3,1,"","from_hdulist"],[178,3,1,"","from_stack"],[178,2,1,"","geom"],[178,3,1,"","get_by_coord"],[178,3,1,"","get_by_idx"],[178,3,1,"","get_by_pix"],[178,3,1,"","get_image_by_coord"],[178,3,1,"","get_image_by_idx"],[178,3,1,"","get_image_by_pix"],[178,3,1,"","get_spectrum"],[178,3,1,"","integral"],[178,3,1,"","interp_by_coord"],[178,3,1,"","interp_by_pix"],[178,3,1,"","interp_to_geom"],[178,3,1,"","is_allclose"],[178,2,1,"","is_mask"],[178,3,1,"","iter_by_axis"],[178,3,1,"","iter_by_image"],[178,3,1,"","iter_by_image_data"],[178,3,1,"","iter_by_image_index"],[178,3,1,"","mask_nearest_position"],[178,2,1,"","meta"],[178,3,1,"","normalize"],[178,3,1,"","pad"],[178,3,1,"","plot_grid"],[178,3,1,"","plot_interactive"],[178,2,1,"","quantity"],[178,3,1,"","read"],[178,3,1,"","reduce"],[178,3,1,"","reduce_over_axes"],[178,3,1,"","rename_axes"],[178,3,1,"","reorder_axes"],[178,3,1,"","reproject_by_image"],[178,3,1,"","reproject_to_geom"],[178,3,1,"","resample"],[178,3,1,"","resample_axis"],[178,3,1,"","sample_coord"],[178,3,1,"","set_by_coord"],[178,3,1,"","set_by_idx"],[178,3,1,"","set_by_pix"],[178,3,1,"","slice_by_idx"],[178,3,1,"","split_by_axis"],[178,3,1,"","sum_over_axes"],[178,2,1,"","tag"],[178,3,1,"","to_cube"],[178,3,1,"","to_unit"],[178,2,1,"","unit"],[178,3,1,"","upsample"],[178,3,1,"","write"]],"gammapy.maps.MapAxes":[[179,3,1,"","assert_names"],[179,3,1,"","bin_volume"],[179,2,1,"","center_coord"],[179,3,1,"","coord_to_idx"],[179,3,1,"","coord_to_pix"],[179,3,1,"","copy"],[179,3,1,"","count"],[179,3,1,"","downsample"],[179,3,1,"","drop"],[179,3,1,"","from_default"],[179,3,1,"","from_table"],[179,3,1,"","from_table_hdu"],[179,3,1,"","get_coord"],[179,3,1,"","index"],[179,3,1,"","index_data"],[179,3,1,"","is_allclose"],[179,2,1,"","is_flat"],[179,2,1,"","is_unidimensional"],[179,2,1,"","iter_with_reshape"],[179,2,1,"","names"],[179,3,1,"","pad"],[179,3,1,"","pix_to_coord"],[179,3,1,"","pix_to_idx"],[179,2,1,"","primary_axis"],[179,3,1,"","rename_axes"],[179,3,1,"","replace"],[179,3,1,"","resample"],[179,2,1,"","reverse"],[179,2,1,"","shape"],[179,3,1,"","slice_by_idx"],[179,3,1,"","squash"],[179,3,1,"","to_header"],[179,3,1,"","to_table"],[179,3,1,"","to_table_hdu"],[179,3,1,"","upsample"]],"gammapy.maps.MapAxis":[[180,2,1,"","as_plot_center"],[180,2,1,"","as_plot_edges"],[180,2,1,"","as_plot_labels"],[180,2,1,"","as_plot_scale"],[180,2,1,"","as_plot_xerr"],[180,3,1,"","assert_name"],[180,2,1,"","bin_width"],[180,2,1,"","bounds"],[180,2,1,"","center"],[180,3,1,"","concatenate"],[180,3,1,"","coord_to_idx"],[180,3,1,"","coord_to_pix"],[180,3,1,"","copy"],[180,3,1,"","downsample"],[180,2,1,"","edges"],[180,2,1,"","edges_max"],[180,2,1,"","edges_min"],[180,3,1,"","format_plot_xaxis"],[180,3,1,"","format_plot_yaxis"],[180,3,1,"","from_bounds"],[180,3,1,"","from_edges"],[180,3,1,"","from_energy_bounds"],[180,3,1,"","from_energy_edges"],[180,3,1,"","from_nodes"],[180,3,1,"","from_stack"],[180,3,1,"","from_table"],[180,3,1,"","from_table_hdu"],[180,3,1,"","group_table"],[180,2,1,"","interp"],[180,3,1,"","is_aligned"],[180,3,1,"","is_allclose"],[180,2,1,"","is_energy_axis"],[180,2,1,"","iter_by_edges"],[180,2,1,"","name"],[180,2,1,"","nbin"],[180,2,1,"","nbin_per_decade"],[180,2,1,"","node_type"],[180,3,1,"","pad"],[180,3,1,"","pix_to_coord"],[180,3,1,"","pix_to_idx"],[180,3,1,"","rename"],[180,3,1,"","round"],[180,3,1,"","slice"],[180,3,1,"","squash"],[180,3,1,"","to_header"],[180,3,1,"","to_node_type"],[180,3,1,"","to_table"],[180,3,1,"","to_table_hdu"],[180,2,1,"","unit"],[180,3,1,"","upsample"],[180,2,1,"","use_center_as_plot_labels"]],"gammapy.maps.MapCoord":[[181,3,1,"","apply_mask"],[181,2,1,"","axis_names"],[181,2,1,"","broadcasted"],[181,3,1,"","copy"],[181,3,1,"","create"],[181,2,1,"","flat"],[181,2,1,"","frame"],[181,2,1,"","lat"],[181,2,1,"","lon"],[181,2,1,"","match_by_name"],[181,2,1,"","ndim"],[181,2,1,"","phi"],[181,2,1,"","shape"],[181,2,1,"","size"],[181,2,1,"","skycoord"],[181,2,1,"","theta"],[181,3,1,"","to_frame"]],"gammapy.maps.Maps":[[182,3,1,"","clear"],[182,3,1,"","from_geom"],[182,3,1,"","from_hdulist"],[182,2,1,"","geom"],[182,3,1,"","get"],[182,3,1,"","items"],[182,3,1,"","keys"],[182,3,1,"","pop"],[182,3,1,"","popitem"],[182,3,1,"","read"],[182,3,1,"","setdefault"],[182,3,1,"","to_hdulist"],[182,3,1,"","update"],[182,3,1,"","values"],[182,3,1,"","write"]],"gammapy.maps.RegionGeom":[[183,2,1,"","as_energy_true"],[183,2,1,"","axes"],[183,2,1,"","axes_names"],[183,3,1,"","bin_volume"],[183,2,1,"","binsz_wcs"],[183,2,1,"","center_coord"],[183,2,1,"","center_pix"],[183,2,1,"","center_skydir"],[183,3,1,"","contains"],[183,3,1,"","contains_pix"],[183,3,1,"","contains_wcs_pix"],[183,3,1,"","coord_to_idx"],[183,3,1,"","coord_to_pix"],[183,3,1,"","copy"],[183,3,1,"","create"],[183,3,1,"","crop"],[183,3,1,"","data_nbytes"],[183,2,1,"","data_shape"],[183,2,1,"","data_shape_axes"],[183,3,1,"","downsample"],[183,3,1,"","drop"],[183,3,1,"","energy_mask"],[183,2,1,"","frame"],[183,3,1,"","from_hdulist"],[183,3,1,"","from_regions"],[183,3,1,"","get_coord"],[183,3,1,"","get_idx"],[183,3,1,"","get_wcs_coord_and_weights"],[183,2,1,"","has_energy_axis"],[183,2,1,"","is_all_point_sky_regions"],[183,3,1,"","is_allclose"],[183,2,1,"","is_allsky"],[183,2,1,"","is_flat"],[183,2,1,"","is_hpx"],[183,2,1,"","is_image"],[183,2,1,"","is_region"],[183,2,1,"","is_regular"],[183,2,1,"","npix"],[183,3,1,"","pad"],[183,3,1,"","pix_to_coord"],[183,3,1,"","pix_to_idx"],[183,3,1,"","plot_region"],[183,2,1,"","projection"],[183,2,1,"","region"],[183,3,1,"","rename_axes"],[183,3,1,"","replace_axis"],[183,3,1,"","resample_axis"],[183,3,1,"","separation"],[183,3,1,"","slice_by_idx"],[183,3,1,"","solid_angle"],[183,3,1,"","squash"],[183,3,1,"","to_bands_hdu"],[183,3,1,"","to_binsz"],[183,3,1,"","to_binsz_wcs"],[183,3,1,"","to_cube"],[183,3,1,"","to_hdulist"],[183,3,1,"","to_image"],[183,3,1,"","to_wcs_geom"],[183,3,1,"","union"],[183,3,1,"","upsample"],[183,2,1,"","wcs"],[183,2,1,"","width"]],"gammapy.maps.RegionNDMap":[[184,3,1,"","coadd"],[184,3,1,"","copy"],[184,3,1,"","create"],[184,3,1,"","crop"],[184,3,1,"","cumsum"],[184,3,1,"","cutout"],[184,2,1,"","data"],[184,3,1,"","dot"],[184,3,1,"","downsample"],[184,3,1,"","fill_by_coord"],[184,3,1,"","fill_by_idx"],[184,3,1,"","fill_by_pix"],[184,3,1,"","fill_events"],[184,3,1,"","from_geom"],[184,3,1,"","from_hdulist"],[184,3,1,"","from_stack"],[184,3,1,"","from_table"],[184,2,1,"","geom"],[184,3,1,"","get_by_coord"],[184,3,1,"","get_by_idx"],[184,3,1,"","get_by_pix"],[184,3,1,"","get_image_by_coord"],[184,3,1,"","get_image_by_idx"],[184,3,1,"","get_image_by_pix"],[184,3,1,"","get_spectrum"],[184,3,1,"","integral"],[184,3,1,"","interp_by_coord"],[184,3,1,"","interp_by_pix"],[184,3,1,"","interp_to_geom"],[184,3,1,"","is_allclose"],[184,2,1,"","is_mask"],[184,3,1,"","iter_by_axis"],[184,3,1,"","iter_by_axis_data"],[184,3,1,"","iter_by_image"],[184,3,1,"","iter_by_image_data"],[184,3,1,"","iter_by_image_index"],[184,3,1,"","mask_nearest_position"],[184,2,1,"","meta"],[184,3,1,"","normalize"],[184,3,1,"","pad"],[184,3,1,"","plot"],[184,3,1,"","plot_grid"],[184,3,1,"","plot_hist"],[184,3,1,"","plot_interactive"],[184,3,1,"","plot_mask"],[184,3,1,"","plot_region"],[184,2,1,"","quantity"],[184,3,1,"","read"],[184,3,1,"","reduce"],[184,3,1,"","reduce_over_axes"],[184,3,1,"","rename_axes"],[184,3,1,"","reorder_axes"],[184,3,1,"","reproject_by_image"],[184,3,1,"","reproject_to_geom"],[184,3,1,"","resample"],[184,3,1,"","resample_axis"],[184,3,1,"","sample_coord"],[184,3,1,"","set_by_coord"],[184,3,1,"","set_by_idx"],[184,3,1,"","set_by_pix"],[184,3,1,"","slice_by_idx"],[184,3,1,"","split_by_axis"],[184,3,1,"","stack"],[184,3,1,"","sum_over_axes"],[184,2,1,"","tag"],[184,3,1,"","to_cube"],[184,3,1,"","to_hdulist"],[184,3,1,"","to_region_nd_map"],[184,3,1,"","to_table"],[184,3,1,"","to_unit"],[184,2,1,"","unit"],[184,3,1,"","upsample"],[184,3,1,"","write"]],"gammapy.maps.TimeMapAxis":[[185,2,1,"","as_plot_center"],[185,2,1,"","as_plot_edges"],[185,2,1,"","as_plot_labels"],[185,2,1,"","as_plot_xerr"],[185,3,1,"","assert_name"],[185,2,1,"","bin_width"],[185,2,1,"","bounds"],[185,2,1,"","center"],[185,3,1,"","coord_to_idx"],[185,3,1,"","coord_to_pix"],[185,3,1,"","copy"],[185,3,1,"","downsample"],[185,2,1,"","edges"],[185,2,1,"","edges_max"],[185,2,1,"","edges_min"],[185,3,1,"","format_plot_xaxis"],[185,3,1,"","from_gti"],[185,3,1,"","from_gti_bounds"],[185,3,1,"","from_table"],[185,3,1,"","from_time_bounds"],[185,3,1,"","from_time_edges"],[185,3,1,"","group_table"],[185,2,1,"","interp"],[185,3,1,"","is_aligned"],[185,3,1,"","is_allclose"],[185,2,1,"","is_contiguous"],[185,2,1,"","iter_by_edges"],[185,2,1,"","name"],[185,2,1,"","nbin"],[185,2,1,"","node_type"],[185,3,1,"","pix_to_coord"],[185,3,1,"","pix_to_idx"],[185,2,1,"","reference_time"],[185,3,1,"","slice"],[185,3,1,"","squash"],[185,2,1,"","time_bounds"],[185,2,1,"","time_delta"],[185,2,1,"","time_edges"],[185,2,1,"","time_format"],[185,2,1,"","time_max"],[185,2,1,"","time_mid"],[185,2,1,"","time_min"],[185,3,1,"","to_contiguous"],[185,3,1,"","to_gti"],[185,3,1,"","to_header"],[185,2,1,"","unit"],[185,3,1,"","upsample"]],"gammapy.maps.WcsGeom":[[186,2,1,"","as_energy_true"],[186,2,1,"","axes"],[186,2,1,"","axes_names"],[186,3,1,"","bin_volume"],[186,3,1,"","binary_structure"],[186,3,1,"","boundary_mask"],[186,2,1,"","center_coord"],[186,2,1,"","center_pix"],[186,2,1,"","center_skydir"],[186,3,1,"","contains"],[186,3,1,"","contains_pix"],[186,3,1,"","coord_to_idx"],[186,3,1,"","coord_to_pix"],[186,3,1,"","copy"],[186,3,1,"","create"],[186,3,1,"","crop"],[186,3,1,"","cutout"],[186,3,1,"","cutout_slices"],[186,3,1,"","data_nbytes"],[186,2,1,"","data_shape"],[186,2,1,"","data_shape_axes"],[186,2,1,"","data_shape_image"],[186,3,1,"","downsample"],[186,3,1,"","drop"],[186,3,1,"","energy_mask"],[186,2,1,"","footprint"],[186,2,1,"","footprint_rectangle_sky_region"],[186,2,1,"","frame"],[186,3,1,"","from_aligned"],[186,3,1,"","from_hdulist"],[186,3,1,"","from_header"],[186,3,1,"","get_coord"],[186,3,1,"","get_idx"],[186,3,1,"","get_pix"],[186,2,1,"","has_energy_axis"],[186,3,1,"","is_aligned"],[186,3,1,"","is_allclose"],[186,2,1,"","is_allsky"],[186,2,1,"","is_flat"],[186,2,1,"","is_hpx"],[186,2,1,"","is_image"],[186,2,1,"","is_region"],[186,2,1,"","is_regular"],[186,2,1,"","ndim"],[186,2,1,"","npix"],[186,3,1,"","pad"],[186,3,1,"","pix_to_coord"],[186,3,1,"","pix_to_idx"],[186,2,1,"","pixel_area"],[186,2,1,"","pixel_scales"],[186,2,1,"","projection"],[186,3,1,"","region_mask"],[186,3,1,"","region_weights"],[186,3,1,"","rename_axes"],[186,3,1,"","replace_axis"],[186,3,1,"","resample_axis"],[186,3,1,"","separation"],[186,2,1,"","shape_axes"],[186,3,1,"","slice_by_idx"],[186,3,1,"","solid_angle"],[186,3,1,"","squash"],[186,3,1,"","to_bands_hdu"],[186,3,1,"","to_binsz"],[186,3,1,"","to_cube"],[186,3,1,"","to_even_npix"],[186,3,1,"","to_header"],[186,3,1,"","to_image"],[186,3,1,"","to_odd_npix"],[186,3,1,"","upsample"],[186,2,1,"","wcs"],[186,2,1,"","width"]],"gammapy.maps.WcsMap":[[187,3,1,"","coadd"],[187,3,1,"","copy"],[187,3,1,"","create"],[187,3,1,"","crop"],[187,3,1,"","cumsum"],[187,2,1,"","data"],[187,3,1,"","dot"],[187,3,1,"","downsample"],[187,3,1,"","fill_by_coord"],[187,3,1,"","fill_by_idx"],[187,3,1,"","fill_by_pix"],[187,3,1,"","fill_events"],[187,3,1,"","from_geom"],[187,3,1,"","from_hdulist"],[187,3,1,"","from_stack"],[187,2,1,"","geom"],[187,3,1,"","get_by_coord"],[187,3,1,"","get_by_idx"],[187,3,1,"","get_by_pix"],[187,3,1,"","get_image_by_coord"],[187,3,1,"","get_image_by_idx"],[187,3,1,"","get_image_by_pix"],[187,3,1,"","get_spectrum"],[187,3,1,"","integral"],[187,3,1,"","interp_by_coord"],[187,3,1,"","interp_by_pix"],[187,3,1,"","interp_to_geom"],[187,3,1,"","is_allclose"],[187,2,1,"","is_mask"],[187,3,1,"","iter_by_axis"],[187,3,1,"","iter_by_image"],[187,3,1,"","iter_by_image_data"],[187,3,1,"","iter_by_image_index"],[187,3,1,"","mask_nearest_position"],[187,2,1,"","meta"],[187,3,1,"","normalize"],[187,3,1,"","pad"],[187,3,1,"","plot_grid"],[187,3,1,"","plot_interactive"],[187,2,1,"","quantity"],[187,3,1,"","read"],[187,3,1,"","reduce"],[187,3,1,"","reduce_over_axes"],[187,3,1,"","rename_axes"],[187,3,1,"","reorder_axes"],[187,3,1,"","reproject_by_image"],[187,3,1,"","reproject_to_geom"],[187,3,1,"","resample"],[187,3,1,"","resample_axis"],[187,3,1,"","sample_coord"],[187,3,1,"","set_by_coord"],[187,3,1,"","set_by_idx"],[187,3,1,"","set_by_pix"],[187,3,1,"","slice_by_idx"],[187,3,1,"","split_by_axis"],[187,3,1,"","sum_over_axes"],[187,2,1,"","tag"],[187,3,1,"","to_cube"],[187,3,1,"","to_hdu"],[187,3,1,"","to_hdulist"],[187,3,1,"","to_unit"],[187,2,1,"","unit"],[187,3,1,"","upsample"],[187,3,1,"","write"]],"gammapy.maps.WcsNDMap":[[188,3,1,"","binary_dilate"],[188,3,1,"","binary_erode"],[188,3,1,"","coadd"],[188,3,1,"","convolve"],[188,3,1,"","copy"],[188,3,1,"","create"],[188,3,1,"","crop"],[188,3,1,"","cumsum"],[188,3,1,"","cutout"],[188,3,1,"","cutout_and_mask_region"],[188,2,1,"","data"],[188,3,1,"","dot"],[188,3,1,"","downsample"],[188,3,1,"","fill_by_coord"],[188,3,1,"","fill_by_idx"],[188,3,1,"","fill_by_pix"],[188,3,1,"","fill_events"],[188,3,1,"","from_geom"],[188,3,1,"","from_hdu"],[188,3,1,"","from_hdulist"],[188,3,1,"","from_stack"],[188,2,1,"","geom"],[188,3,1,"","get_by_coord"],[188,3,1,"","get_by_idx"],[188,3,1,"","get_by_pix"],[188,3,1,"","get_image_by_coord"],[188,3,1,"","get_image_by_idx"],[188,3,1,"","get_image_by_pix"],[188,3,1,"","get_spectrum"],[188,3,1,"","integral"],[188,3,1,"","interp_by_coord"],[188,3,1,"","interp_by_pix"],[188,3,1,"","interp_to_geom"],[188,3,1,"","is_allclose"],[188,2,1,"","is_mask"],[188,3,1,"","iter_by_axis"],[188,3,1,"","iter_by_image"],[188,3,1,"","iter_by_image_data"],[188,3,1,"","iter_by_image_index"],[188,3,1,"","mask_contains_region"],[188,3,1,"","mask_nearest_position"],[188,2,1,"","meta"],[188,3,1,"","normalize"],[188,3,1,"","pad"],[188,3,1,"","plot"],[188,3,1,"","plot_grid"],[188,3,1,"","plot_interactive"],[188,3,1,"","plot_mask"],[188,2,1,"","quantity"],[188,3,1,"","read"],[188,3,1,"","reduce"],[188,3,1,"","reduce_over_axes"],[188,3,1,"","rename_axes"],[188,3,1,"","reorder_axes"],[188,3,1,"","reproject_by_image"],[188,3,1,"","reproject_to_geom"],[188,3,1,"","resample"],[188,3,1,"","resample_axis"],[188,3,1,"","sample_coord"],[188,3,1,"","set_by_coord"],[188,3,1,"","set_by_idx"],[188,3,1,"","set_by_pix"],[188,3,1,"","slice_by_idx"],[188,3,1,"","smooth"],[188,3,1,"","split_by_axis"],[188,3,1,"","stack"],[188,3,1,"","sum_over_axes"],[188,2,1,"","tag"],[188,3,1,"","to_cube"],[188,3,1,"","to_hdu"],[188,3,1,"","to_hdulist"],[188,3,1,"","to_region_nd_map"],[188,3,1,"","to_region_nd_map_histogram"],[188,3,1,"","to_unit"],[188,2,1,"","unit"],[188,3,1,"","upsample"],[188,3,1,"","write"]],"gammapy.modeling":[[191,1,1,"","Covariance"],[192,1,1,"","Fit"],[193,1,1,"","Parameter"],[194,1,1,"","Parameters"],[195,1,1,"","PriorParameter"],[196,1,1,"","PriorParameters"],[10,0,0,"-","models"],[260,4,1,"","select_nested_models"],[261,4,1,"","stat_profile_ul_scipy"]],"gammapy.modeling.Covariance":[[191,2,1,"","correlation"],[191,2,1,"","data"],[191,3,1,"","from_factor_matrix"],[191,3,1,"","from_stack"],[191,3,1,"","get_subcovariance"],[191,3,1,"","plot_correlation"],[191,2,1,"","scipy_mvn"],[191,3,1,"","set_subcovariance"],[191,2,1,"","shape"]],"gammapy.modeling.Fit":[[192,3,1,"","confidence"],[192,3,1,"","covariance"],[192,3,1,"","optimize"],[192,3,1,"","run"],[192,3,1,"","stat_contour"],[192,3,1,"","stat_profile"],[192,3,1,"","stat_surface"]],"gammapy.modeling.Parameter":[[193,3,1,"","autoscale"],[193,3,1,"","check_limits"],[193,2,1,"","conf_max"],[193,2,1,"","conf_min"],[193,3,1,"","copy"],[193,2,1,"","error"],[193,2,1,"","factor"],[193,2,1,"","factor_max"],[193,2,1,"","factor_min"],[193,2,1,"","frozen"],[193,2,1,"","is_norm"],[193,2,1,"","max"],[193,2,1,"","min"],[193,2,1,"","name"],[193,2,1,"","norm_parameters"],[193,2,1,"","prior"],[193,3,1,"","prior_stat_sum"],[193,2,1,"","quantity"],[193,2,1,"","scale"],[193,2,1,"","scale_method"],[193,2,1,"","scan_max"],[193,2,1,"","scan_min"],[193,2,1,"","scan_n_sigma"],[193,2,1,"","scan_values"],[193,3,1,"","to_dict"],[193,2,1,"","type"],[193,2,1,"","unit"],[193,3,1,"","update_from_dict"],[193,2,1,"","value"]],"gammapy.modeling.Parameters":[[194,3,1,"","autoscale"],[194,3,1,"","check_limits"],[194,3,1,"","copy"],[194,3,1,"","count"],[194,2,1,"","free_parameters"],[194,3,1,"","freeze_all"],[194,3,1,"","from_dict"],[194,3,1,"","from_stack"],[194,3,1,"","index"],[194,2,1,"","max"],[194,2,1,"","min"],[194,2,1,"","names"],[194,2,1,"","norm_parameters"],[194,2,1,"","prior"],[194,3,1,"","prior_stat_sum"],[194,3,1,"","restore_status"],[194,3,1,"","select"],[194,3,1,"","set_parameter_factors"],[194,3,1,"","to_dict"],[194,3,1,"","to_table"],[194,2,1,"","types"],[194,3,1,"","unfreeze_all"],[194,2,1,"","unique_parameters"],[194,2,1,"","value"]],"gammapy.modeling.PriorParameter":[[195,3,1,"","autoscale"],[195,3,1,"","check_limits"],[195,2,1,"","conf_max"],[195,2,1,"","conf_min"],[195,3,1,"","copy"],[195,2,1,"","error"],[195,2,1,"","factor"],[195,2,1,"","factor_max"],[195,2,1,"","factor_min"],[195,2,1,"","frozen"],[195,2,1,"","is_norm"],[195,2,1,"","max"],[195,2,1,"","min"],[195,2,1,"","name"],[195,2,1,"","norm_parameters"],[195,2,1,"","prior"],[195,3,1,"","prior_stat_sum"],[195,2,1,"","quantity"],[195,2,1,"","scale"],[195,2,1,"","scale_method"],[195,2,1,"","scan_max"],[195,2,1,"","scan_min"],[195,2,1,"","scan_n_sigma"],[195,2,1,"","scan_values"],[195,3,1,"","to_dict"],[195,2,1,"","type"],[195,2,1,"","unit"],[195,3,1,"","update_from_dict"],[195,2,1,"","value"]],"gammapy.modeling.PriorParameters":[[196,3,1,"","autoscale"],[196,3,1,"","check_limits"],[196,3,1,"","copy"],[196,3,1,"","count"],[196,2,1,"","free_parameters"],[196,3,1,"","freeze_all"],[196,3,1,"","from_dict"],[196,3,1,"","from_stack"],[196,3,1,"","index"],[196,2,1,"","max"],[196,2,1,"","min"],[196,2,1,"","names"],[196,2,1,"","norm_parameters"],[196,2,1,"","prior"],[196,3,1,"","prior_stat_sum"],[196,3,1,"","restore_status"],[196,3,1,"","select"],[196,3,1,"","set_parameter_factors"],[196,3,1,"","to_dict"],[196,3,1,"","to_table"],[196,2,1,"","types"],[196,3,1,"","unfreeze_all"],[196,2,1,"","unique_parameters"],[196,2,1,"","value"]],"gammapy.modeling.models":[[197,1,1,"","BrokenPowerLawSpectralModel"],[198,1,1,"","CompoundSpectralModel"],[199,1,1,"","ConstantFluxSpatialModel"],[200,1,1,"","ConstantSpatialModel"],[201,1,1,"","ConstantSpectralModel"],[202,1,1,"","ConstantTemporalModel"],[203,1,1,"","DatasetModels"],[204,1,1,"","DiskSpatialModel"],[205,1,1,"","EBLAbsorptionNormSpectralModel"],[206,5,1,"","EBL_DATA_BUILTIN"],[207,1,1,"","ExpCutoffPowerLaw3FGLSpectralModel"],[208,1,1,"","ExpCutoffPowerLawNormSpectralModel"],[209,1,1,"","ExpCutoffPowerLawSpectralModel"],[210,1,1,"","ExpDecayTemporalModel"],[211,1,1,"","FoVBackgroundModel"],[212,1,1,"","GaussianSpatialModel"],[213,1,1,"","GaussianSpectralModel"],[214,1,1,"","GaussianTemporalModel"],[215,1,1,"","GeneralizedGaussianSpatialModel"],[216,1,1,"","GeneralizedGaussianTemporalModel"],[217,1,1,"","LightCurveTemplateTemporalModel"],[218,1,1,"","LinearTemporalModel"],[219,1,1,"","LogParabolaNormSpectralModel"],[220,1,1,"","LogParabolaSpectralModel"],[221,5,1,"","MODEL_REGISTRY"],[222,1,1,"","MeyerCrabSpectralModel"],[223,1,1,"","Model"],[224,1,1,"","ModelBase"],[225,1,1,"","Models"],[226,1,1,"","NaimaSpectralModel"],[227,1,1,"","PiecewiseNormSpatialModel"],[228,1,1,"","PiecewiseNormSpectralModel"],[229,1,1,"","PointSpatialModel"],[230,1,1,"","PowerLaw2SpectralModel"],[231,1,1,"","PowerLawNormSpectralModel"],[232,1,1,"","PowerLawSpectralModel"],[233,1,1,"","PowerLawTemporalModel"],[234,5,1,"","SPATIAL_MODEL_REGISTRY"],[235,5,1,"","SPECTRAL_MODEL_REGISTRY"],[236,1,1,"","ScaleSpectralModel"],[237,1,1,"","Shell2SpatialModel"],[238,1,1,"","ShellSpatialModel"],[239,1,1,"","SineTemporalModel"],[240,1,1,"","SkyModel"],[241,1,1,"","SmoothBrokenPowerLawSpectralModel"],[242,1,1,"","SpatialModel"],[243,1,1,"","SpectralModel"],[244,1,1,"","SuperExpCutoffPowerLaw3FGLSpectralModel"],[245,1,1,"","SuperExpCutoffPowerLaw4FGLDR3SpectralModel"],[246,1,1,"","SuperExpCutoffPowerLaw4FGLSpectralModel"],[247,5,1,"","TEMPORAL_MODEL_REGISTRY"],[248,1,1,"","TemplateNDSpatialModel"],[249,1,1,"","TemplateNDSpectralModel"],[250,1,1,"","TemplateNPredModel"],[251,1,1,"","TemplatePhaseCurveTemporalModel"],[252,1,1,"","TemplateSpatialModel"],[253,1,1,"","TemplateSpectralModel"],[254,1,1,"","TemporalModel"],[255,4,1,"","create_cosmic_ray_spectral_model"],[256,4,1,"","create_crab_spectral_model"],[257,4,1,"","create_fermi_isotropic_diffuse_model"],[258,4,1,"","integrate_spectrum"],[259,4,1,"","scale_plot_flux"]],"gammapy.modeling.models.BrokenPowerLawSpectralModel":[[197,3,1,"","__call__"],[197,2,1,"","amplitude"],[197,3,1,"","copy"],[197,2,1,"","covariance"],[197,2,1,"","default_parameters"],[197,2,1,"","ebreak"],[197,3,1,"","energy_flux"],[197,3,1,"","energy_flux_error"],[197,3,1,"","evaluate"],[197,3,1,"","evaluate_error"],[197,3,1,"","freeze"],[197,3,1,"","from_dict"],[197,3,1,"","from_parameters"],[197,2,1,"","frozen"],[197,2,1,"","index1"],[197,2,1,"","index2"],[197,3,1,"","integral"],[197,3,1,"","integral_error"],[197,3,1,"","inverse"],[197,3,1,"","inverse_all"],[197,2,1,"","is_norm_spectral_model"],[197,2,1,"","parameters"],[197,2,1,"","pivot_energy"],[197,3,1,"","plot"],[197,3,1,"","plot_error"],[197,3,1,"","reassign"],[197,3,1,"","reference_fluxes"],[197,3,1,"","spectral_index"],[197,3,1,"","spectral_index_error"],[197,2,1,"","tag"],[197,3,1,"","to_dict"],[197,2,1,"","type"],[197,3,1,"","unfreeze"]],"gammapy.modeling.models.CompoundSpectralModel":[[198,3,1,"","__call__"],[198,3,1,"","copy"],[198,2,1,"","covariance"],[198,2,1,"","default_parameters"],[198,3,1,"","energy_flux"],[198,3,1,"","energy_flux_error"],[198,3,1,"","evaluate"],[198,3,1,"","evaluate_error"],[198,3,1,"","freeze"],[198,3,1,"","from_dict"],[198,3,1,"","from_parameters"],[198,2,1,"","frozen"],[198,3,1,"","integral"],[198,3,1,"","integral_error"],[198,3,1,"","inverse"],[198,3,1,"","inverse_all"],[198,2,1,"","is_norm_spectral_model"],[198,2,1,"","parameters"],[198,2,1,"","pivot_energy"],[198,3,1,"","plot"],[198,3,1,"","plot_error"],[198,3,1,"","reassign"],[198,3,1,"","reference_fluxes"],[198,3,1,"","spectral_index"],[198,3,1,"","spectral_index_error"],[198,2,1,"","tag"],[198,3,1,"","to_dict"],[198,2,1,"","type"],[198,3,1,"","unfreeze"]],"gammapy.modeling.models.ConstantFluxSpatialModel":[[199,3,1,"","__call__"],[199,3,1,"","copy"],[199,2,1,"","covariance"],[199,2,1,"","default_parameters"],[199,3,1,"","evaluate"],[199,3,1,"","evaluate_geom"],[199,2,1,"","evaluation_bin_size_min"],[199,2,1,"","evaluation_radius"],[199,2,1,"","evaluation_region"],[199,2,1,"","frame"],[199,3,1,"","freeze"],[199,3,1,"","from_dict"],[199,3,1,"","from_parameters"],[199,3,1,"","from_position"],[199,2,1,"","frozen"],[199,3,1,"","integrate_geom"],[199,2,1,"","is_energy_dependent"],[199,2,1,"","parameters"],[199,2,1,"","phi_0"],[199,3,1,"","plot"],[199,3,1,"","plot_error"],[199,3,1,"","plot_grid"],[199,3,1,"","plot_interactive"],[199,3,1,"","plot_position_error"],[199,2,1,"","position"],[199,2,1,"","position_error"],[199,2,1,"","position_lonlat"],[199,3,1,"","reassign"],[199,2,1,"","tag"],[199,3,1,"","to_dict"],[199,3,1,"","to_region"],[199,2,1,"","type"],[199,3,1,"","unfreeze"]],"gammapy.modeling.models.ConstantSpatialModel":[[200,3,1,"","__call__"],[200,3,1,"","copy"],[200,2,1,"","covariance"],[200,2,1,"","default_parameters"],[200,3,1,"","evaluate"],[200,3,1,"","evaluate_geom"],[200,2,1,"","evaluation_bin_size_min"],[200,2,1,"","evaluation_radius"],[200,2,1,"","evaluation_region"],[200,2,1,"","frame"],[200,3,1,"","freeze"],[200,3,1,"","from_dict"],[200,3,1,"","from_parameters"],[200,3,1,"","from_position"],[200,2,1,"","frozen"],[200,3,1,"","integrate_geom"],[200,2,1,"","is_energy_dependent"],[200,2,1,"","parameters"],[200,2,1,"","phi_0"],[200,3,1,"","plot"],[200,3,1,"","plot_error"],[200,3,1,"","plot_grid"],[200,3,1,"","plot_interactive"],[200,3,1,"","plot_position_error"],[200,2,1,"","position"],[200,2,1,"","position_error"],[200,2,1,"","position_lonlat"],[200,3,1,"","reassign"],[200,2,1,"","tag"],[200,3,1,"","to_dict"],[200,3,1,"","to_region"],[200,2,1,"","type"],[200,3,1,"","unfreeze"],[200,2,1,"","value"]],"gammapy.modeling.models.ConstantSpectralModel":[[201,3,1,"","__call__"],[201,2,1,"","const"],[201,3,1,"","copy"],[201,2,1,"","covariance"],[201,2,1,"","default_parameters"],[201,3,1,"","energy_flux"],[201,3,1,"","energy_flux_error"],[201,3,1,"","evaluate"],[201,3,1,"","evaluate_error"],[201,3,1,"","freeze"],[201,3,1,"","from_dict"],[201,3,1,"","from_parameters"],[201,2,1,"","frozen"],[201,3,1,"","integral"],[201,3,1,"","integral_error"],[201,3,1,"","inverse"],[201,3,1,"","inverse_all"],[201,2,1,"","is_norm_spectral_model"],[201,2,1,"","parameters"],[201,2,1,"","pivot_energy"],[201,3,1,"","plot"],[201,3,1,"","plot_error"],[201,3,1,"","reassign"],[201,3,1,"","reference_fluxes"],[201,3,1,"","spectral_index"],[201,3,1,"","spectral_index_error"],[201,2,1,"","tag"],[201,3,1,"","to_dict"],[201,2,1,"","type"],[201,3,1,"","unfreeze"]],"gammapy.modeling.models.ConstantTemporalModel":[[202,3,1,"","__call__"],[202,3,1,"","copy"],[202,2,1,"","covariance"],[202,2,1,"","default_parameters"],[202,3,1,"","evaluate"],[202,3,1,"","freeze"],[202,3,1,"","from_dict"],[202,3,1,"","from_parameters"],[202,2,1,"","frozen"],[202,3,1,"","integral"],[202,2,1,"","is_energy_dependent"],[202,2,1,"","parameters"],[202,3,1,"","plot"],[202,3,1,"","reassign"],[202,2,1,"","reference_time"],[202,3,1,"","sample_time"],[202,2,1,"","tag"],[202,3,1,"","time_sum"],[202,3,1,"","to_dict"],[202,2,1,"","type"],[202,3,1,"","unfreeze"]],"gammapy.modeling.models.DatasetModels":[[203,3,1,"","copy"],[203,3,1,"","count"],[203,2,1,"","covariance"],[203,3,1,"","freeze"],[203,3,1,"","from_dict"],[203,3,1,"","from_yaml"],[203,2,1,"","frozen"],[203,3,1,"","index"],[203,2,1,"","names"],[203,2,1,"","parameters"],[203,2,1,"","parameters_unique_names"],[203,3,1,"","plot_positions"],[203,3,1,"","plot_regions"],[203,2,1,"","positions"],[203,3,1,"","read"],[203,3,1,"","read_covariance"],[203,3,1,"","reassign"],[203,3,1,"","restore_status"],[203,3,1,"","select"],[203,3,1,"","select_from_geom"],[203,3,1,"","select_mask"],[203,3,1,"","select_region"],[203,3,1,"","selection_mask"],[203,3,1,"","set_parameters_bounds"],[203,3,1,"","to_dict"],[203,3,1,"","to_parameters_table"],[203,3,1,"","to_regions"],[203,3,1,"","to_template_sky_model"],[203,3,1,"","to_template_spectral_model"],[203,3,1,"","to_yaml"],[203,3,1,"","unfreeze"],[203,3,1,"","update_link_label"],[203,3,1,"","update_parameters_from_table"],[203,2,1,"","wcs_geom"],[203,3,1,"","write"],[203,3,1,"","write_covariance"]],"gammapy.modeling.models.DiskSpatialModel":[[204,3,1,"","__call__"],[204,3,1,"","copy"],[204,2,1,"","covariance"],[204,2,1,"","default_parameters"],[204,2,1,"","e"],[204,2,1,"","edge_width"],[204,3,1,"","evaluate"],[204,3,1,"","evaluate_geom"],[204,2,1,"","evaluation_bin_size_min"],[204,2,1,"","evaluation_radius"],[204,2,1,"","evaluation_region"],[204,3,1,"","freeze"],[204,3,1,"","from_dict"],[204,3,1,"","from_parameters"],[204,3,1,"","from_position"],[204,3,1,"","from_region"],[204,2,1,"","frozen"],[204,3,1,"","integrate_geom"],[204,2,1,"","is_energy_dependent"],[204,2,1,"","lat_0"],[204,2,1,"","lon_0"],[204,2,1,"","parameters"],[204,2,1,"","phi"],[204,2,1,"","phi_0"],[204,3,1,"","plot"],[204,3,1,"","plot_error"],[204,3,1,"","plot_grid"],[204,3,1,"","plot_interactive"],[204,3,1,"","plot_position_error"],[204,2,1,"","position"],[204,2,1,"","position_error"],[204,2,1,"","position_lonlat"],[204,2,1,"","r_0"],[204,3,1,"","reassign"],[204,2,1,"","tag"],[204,3,1,"","to_dict"],[204,3,1,"","to_region"],[204,2,1,"","type"],[204,3,1,"","unfreeze"]],"gammapy.modeling.models.EBLAbsorptionNormSpectralModel":[[205,3,1,"","__call__"],[205,2,1,"","alpha_norm"],[205,3,1,"","copy"],[205,2,1,"","covariance"],[205,2,1,"","default_parameters"],[205,3,1,"","energy_flux"],[205,3,1,"","energy_flux_error"],[205,3,1,"","evaluate"],[205,3,1,"","evaluate_error"],[205,3,1,"","freeze"],[205,3,1,"","from_dict"],[205,3,1,"","from_parameters"],[205,2,1,"","frozen"],[205,3,1,"","integral"],[205,3,1,"","integral_error"],[205,3,1,"","inverse"],[205,3,1,"","inverse_all"],[205,2,1,"","is_norm_spectral_model"],[205,2,1,"","parameters"],[205,2,1,"","pivot_energy"],[205,3,1,"","plot"],[205,3,1,"","plot_error"],[205,3,1,"","read"],[205,3,1,"","read_builtin"],[205,3,1,"","reassign"],[205,2,1,"","redshift"],[205,3,1,"","reference_fluxes"],[205,3,1,"","spectral_index"],[205,3,1,"","spectral_index_error"],[205,2,1,"","tag"],[205,3,1,"","to_dict"],[205,2,1,"","type"],[205,3,1,"","unfreeze"]],"gammapy.modeling.models.ExpCutoffPowerLaw3FGLSpectralModel":[[207,3,1,"","__call__"],[207,2,1,"","amplitude"],[207,3,1,"","copy"],[207,2,1,"","covariance"],[207,2,1,"","default_parameters"],[207,2,1,"","ecut"],[207,3,1,"","energy_flux"],[207,3,1,"","energy_flux_error"],[207,3,1,"","evaluate"],[207,3,1,"","evaluate_error"],[207,3,1,"","freeze"],[207,3,1,"","from_dict"],[207,3,1,"","from_parameters"],[207,2,1,"","frozen"],[207,2,1,"","index"],[207,3,1,"","integral"],[207,3,1,"","integral_error"],[207,3,1,"","inverse"],[207,3,1,"","inverse_all"],[207,2,1,"","is_norm_spectral_model"],[207,2,1,"","parameters"],[207,2,1,"","pivot_energy"],[207,3,1,"","plot"],[207,3,1,"","plot_error"],[207,3,1,"","reassign"],[207,2,1,"","reference"],[207,3,1,"","reference_fluxes"],[207,3,1,"","spectral_index"],[207,3,1,"","spectral_index_error"],[207,2,1,"","tag"],[207,3,1,"","to_dict"],[207,2,1,"","type"],[207,3,1,"","unfreeze"]],"gammapy.modeling.models.ExpCutoffPowerLawNormSpectralModel":[[208,3,1,"","__call__"],[208,2,1,"","alpha"],[208,3,1,"","copy"],[208,2,1,"","covariance"],[208,2,1,"","default_parameters"],[208,3,1,"","energy_flux"],[208,3,1,"","energy_flux_error"],[208,3,1,"","evaluate"],[208,3,1,"","evaluate_error"],[208,3,1,"","freeze"],[208,3,1,"","from_dict"],[208,3,1,"","from_parameters"],[208,2,1,"","frozen"],[208,2,1,"","index"],[208,3,1,"","integral"],[208,3,1,"","integral_error"],[208,3,1,"","inverse"],[208,3,1,"","inverse_all"],[208,2,1,"","is_norm_spectral_model"],[208,2,1,"","lambda_"],[208,2,1,"","norm"],[208,2,1,"","parameters"],[208,2,1,"","pivot_energy"],[208,3,1,"","plot"],[208,3,1,"","plot_error"],[208,3,1,"","reassign"],[208,2,1,"","reference"],[208,3,1,"","reference_fluxes"],[208,3,1,"","spectral_index"],[208,3,1,"","spectral_index_error"],[208,2,1,"","tag"],[208,3,1,"","to_dict"],[208,2,1,"","type"],[208,3,1,"","unfreeze"]],"gammapy.modeling.models.ExpCutoffPowerLawSpectralModel":[[209,3,1,"","__call__"],[209,2,1,"","alpha"],[209,2,1,"","amplitude"],[209,3,1,"","copy"],[209,2,1,"","covariance"],[209,2,1,"","default_parameters"],[209,2,1,"","e_peak"],[209,3,1,"","energy_flux"],[209,3,1,"","energy_flux_error"],[209,3,1,"","evaluate"],[209,3,1,"","evaluate_error"],[209,3,1,"","freeze"],[209,3,1,"","from_dict"],[209,3,1,"","from_parameters"],[209,2,1,"","frozen"],[209,2,1,"","index"],[209,3,1,"","integral"],[209,3,1,"","integral_error"],[209,3,1,"","inverse"],[209,3,1,"","inverse_all"],[209,2,1,"","is_norm_spectral_model"],[209,2,1,"","lambda_"],[209,2,1,"","parameters"],[209,2,1,"","pivot_energy"],[209,3,1,"","plot"],[209,3,1,"","plot_error"],[209,3,1,"","reassign"],[209,2,1,"","reference"],[209,3,1,"","reference_fluxes"],[209,3,1,"","spectral_index"],[209,3,1,"","spectral_index_error"],[209,2,1,"","tag"],[209,3,1,"","to_dict"],[209,2,1,"","type"],[209,3,1,"","unfreeze"]],"gammapy.modeling.models.ExpDecayTemporalModel":[[210,3,1,"","__call__"],[210,3,1,"","copy"],[210,2,1,"","covariance"],[210,2,1,"","default_parameters"],[210,3,1,"","evaluate"],[210,3,1,"","freeze"],[210,3,1,"","from_dict"],[210,3,1,"","from_parameters"],[210,2,1,"","frozen"],[210,3,1,"","integral"],[210,2,1,"","is_energy_dependent"],[210,2,1,"","parameters"],[210,3,1,"","plot"],[210,3,1,"","reassign"],[210,2,1,"","reference_time"],[210,3,1,"","sample_time"],[210,2,1,"","t0"],[210,2,1,"","t_ref"],[210,2,1,"","tag"],[210,3,1,"","time_sum"],[210,3,1,"","to_dict"],[210,2,1,"","type"],[210,3,1,"","unfreeze"]],"gammapy.modeling.models.FoVBackgroundModel":[[211,3,1,"","contributes"],[211,3,1,"","copy"],[211,2,1,"","covariance"],[211,2,1,"","default_parameters"],[211,3,1,"","evaluate"],[211,3,1,"","evaluate_geom"],[211,3,1,"","freeze"],[211,3,1,"","from_dict"],[211,3,1,"","from_parameters"],[211,2,1,"","frozen"],[211,2,1,"","name"],[211,2,1,"","parameters"],[211,3,1,"","reassign"],[211,3,1,"","reset_to_default"],[211,2,1,"","spatial_model"],[211,2,1,"","spectral_model"],[211,2,1,"","tag"],[211,3,1,"","to_dict"],[211,2,1,"","type"],[211,3,1,"","unfreeze"]],"gammapy.modeling.models.GaussianSpatialModel":[[212,3,1,"","__call__"],[212,3,1,"","copy"],[212,2,1,"","covariance"],[212,2,1,"","default_parameters"],[212,2,1,"","e"],[212,3,1,"","evaluate"],[212,3,1,"","evaluate_geom"],[212,2,1,"","evaluation_bin_size_min"],[212,2,1,"","evaluation_radius"],[212,2,1,"","evaluation_region"],[212,3,1,"","freeze"],[212,3,1,"","from_dict"],[212,3,1,"","from_parameters"],[212,3,1,"","from_position"],[212,2,1,"","frozen"],[212,3,1,"","integrate_geom"],[212,2,1,"","is_energy_dependent"],[212,2,1,"","lat_0"],[212,2,1,"","lon_0"],[212,2,1,"","parameters"],[212,2,1,"","phi"],[212,2,1,"","phi_0"],[212,3,1,"","plot"],[212,3,1,"","plot_error"],[212,3,1,"","plot_grid"],[212,3,1,"","plot_interactive"],[212,3,1,"","plot_position_error"],[212,2,1,"","position"],[212,2,1,"","position_error"],[212,2,1,"","position_lonlat"],[212,3,1,"","reassign"],[212,2,1,"","sigma"],[212,2,1,"","tag"],[212,3,1,"","to_dict"],[212,3,1,"","to_region"],[212,2,1,"","type"],[212,3,1,"","unfreeze"]],"gammapy.modeling.models.GaussianSpectralModel":[[213,3,1,"","__call__"],[213,2,1,"","amplitude"],[213,3,1,"","copy"],[213,2,1,"","covariance"],[213,2,1,"","default_parameters"],[213,3,1,"","energy_flux"],[213,3,1,"","energy_flux_error"],[213,3,1,"","evaluate"],[213,3,1,"","evaluate_error"],[213,3,1,"","freeze"],[213,3,1,"","from_dict"],[213,3,1,"","from_parameters"],[213,2,1,"","frozen"],[213,3,1,"","integral"],[213,3,1,"","integral_error"],[213,3,1,"","inverse"],[213,3,1,"","inverse_all"],[213,2,1,"","is_norm_spectral_model"],[213,2,1,"","mean"],[213,2,1,"","parameters"],[213,2,1,"","pivot_energy"],[213,3,1,"","plot"],[213,3,1,"","plot_error"],[213,3,1,"","reassign"],[213,3,1,"","reference_fluxes"],[213,2,1,"","sigma"],[213,3,1,"","spectral_index"],[213,3,1,"","spectral_index_error"],[213,2,1,"","tag"],[213,3,1,"","to_dict"],[213,2,1,"","type"],[213,3,1,"","unfreeze"]],"gammapy.modeling.models.GaussianTemporalModel":[[214,3,1,"","__call__"],[214,3,1,"","copy"],[214,2,1,"","covariance"],[214,2,1,"","default_parameters"],[214,3,1,"","evaluate"],[214,3,1,"","freeze"],[214,3,1,"","from_dict"],[214,3,1,"","from_parameters"],[214,2,1,"","frozen"],[214,3,1,"","integral"],[214,2,1,"","is_energy_dependent"],[214,2,1,"","parameters"],[214,3,1,"","plot"],[214,3,1,"","reassign"],[214,2,1,"","reference_time"],[214,3,1,"","sample_time"],[214,2,1,"","sigma"],[214,2,1,"","t_ref"],[214,2,1,"","tag"],[214,3,1,"","time_sum"],[214,3,1,"","to_dict"],[214,2,1,"","type"],[214,3,1,"","unfreeze"]],"gammapy.modeling.models.GeneralizedGaussianSpatialModel":[[215,3,1,"","__call__"],[215,3,1,"","copy"],[215,2,1,"","covariance"],[215,2,1,"","default_parameters"],[215,2,1,"","e"],[215,2,1,"","eta"],[215,3,1,"","evaluate"],[215,3,1,"","evaluate_geom"],[215,2,1,"","evaluation_bin_size_min"],[215,2,1,"","evaluation_radius"],[215,2,1,"","evaluation_region"],[215,3,1,"","freeze"],[215,3,1,"","from_dict"],[215,3,1,"","from_parameters"],[215,3,1,"","from_position"],[215,2,1,"","frozen"],[215,3,1,"","integrate_geom"],[215,2,1,"","is_energy_dependent"],[215,2,1,"","lat_0"],[215,2,1,"","lon_0"],[215,2,1,"","parameters"],[215,2,1,"","phi"],[215,2,1,"","phi_0"],[215,3,1,"","plot"],[215,3,1,"","plot_error"],[215,3,1,"","plot_grid"],[215,3,1,"","plot_interactive"],[215,3,1,"","plot_position_error"],[215,2,1,"","position"],[215,2,1,"","position_error"],[215,2,1,"","position_lonlat"],[215,2,1,"","r_0"],[215,3,1,"","reassign"],[215,2,1,"","tag"],[215,3,1,"","to_dict"],[215,3,1,"","to_region"],[215,2,1,"","type"],[215,3,1,"","unfreeze"]],"gammapy.modeling.models.GeneralizedGaussianTemporalModel":[[216,3,1,"","__call__"],[216,3,1,"","copy"],[216,2,1,"","covariance"],[216,2,1,"","default_parameters"],[216,2,1,"","eta"],[216,3,1,"","evaluate"],[216,3,1,"","freeze"],[216,3,1,"","from_dict"],[216,3,1,"","from_parameters"],[216,2,1,"","frozen"],[216,3,1,"","integral"],[216,2,1,"","is_energy_dependent"],[216,2,1,"","parameters"],[216,3,1,"","plot"],[216,3,1,"","reassign"],[216,2,1,"","reference_time"],[216,3,1,"","sample_time"],[216,2,1,"","t_decay"],[216,2,1,"","t_ref"],[216,2,1,"","t_rise"],[216,2,1,"","tag"],[216,3,1,"","time_sum"],[216,3,1,"","to_dict"],[216,2,1,"","type"],[216,3,1,"","unfreeze"]],"gammapy.modeling.models.LightCurveTemplateTemporalModel":[[217,3,1,"","__call__"],[217,3,1,"","copy"],[217,2,1,"","covariance"],[217,2,1,"","default_parameters"],[217,3,1,"","evaluate"],[217,3,1,"","freeze"],[217,3,1,"","from_dict"],[217,3,1,"","from_parameters"],[217,3,1,"","from_table"],[217,2,1,"","frozen"],[217,3,1,"","integral"],[217,2,1,"","is_energy_dependent"],[217,2,1,"","parameters"],[217,3,1,"","plot"],[217,3,1,"","read"],[217,3,1,"","reassign"],[217,2,1,"","reference_time"],[217,3,1,"","sample_time"],[217,2,1,"","t_ref"],[217,2,1,"","tag"],[217,3,1,"","time_sum"],[217,3,1,"","to_dict"],[217,3,1,"","to_table"],[217,2,1,"","type"],[217,3,1,"","unfreeze"],[217,3,1,"","write"]],"gammapy.modeling.models.LinearTemporalModel":[[218,3,1,"","__call__"],[218,2,1,"","alpha"],[218,2,1,"","beta"],[218,3,1,"","copy"],[218,2,1,"","covariance"],[218,2,1,"","default_parameters"],[218,3,1,"","evaluate"],[218,3,1,"","freeze"],[218,3,1,"","from_dict"],[218,3,1,"","from_parameters"],[218,2,1,"","frozen"],[218,3,1,"","integral"],[218,2,1,"","is_energy_dependent"],[218,2,1,"","parameters"],[218,3,1,"","plot"],[218,3,1,"","reassign"],[218,2,1,"","reference_time"],[218,3,1,"","sample_time"],[218,2,1,"","t_ref"],[218,2,1,"","tag"],[218,3,1,"","time_sum"],[218,3,1,"","to_dict"],[218,2,1,"","type"],[218,3,1,"","unfreeze"]],"gammapy.modeling.models.LogParabolaNormSpectralModel":[[219,3,1,"","__call__"],[219,2,1,"","alpha"],[219,2,1,"","beta"],[219,3,1,"","copy"],[219,2,1,"","covariance"],[219,2,1,"","default_parameters"],[219,3,1,"","energy_flux"],[219,3,1,"","energy_flux_error"],[219,3,1,"","evaluate"],[219,3,1,"","evaluate_error"],[219,3,1,"","freeze"],[219,3,1,"","from_dict"],[219,3,1,"","from_log10"],[219,3,1,"","from_parameters"],[219,2,1,"","frozen"],[219,3,1,"","integral"],[219,3,1,"","integral_error"],[219,3,1,"","inverse"],[219,3,1,"","inverse_all"],[219,2,1,"","is_norm_spectral_model"],[219,2,1,"","norm"],[219,2,1,"","parameters"],[219,2,1,"","pivot_energy"],[219,3,1,"","plot"],[219,3,1,"","plot_error"],[219,3,1,"","reassign"],[219,2,1,"","reference"],[219,3,1,"","reference_fluxes"],[219,3,1,"","spectral_index"],[219,3,1,"","spectral_index_error"],[219,2,1,"","tag"],[219,3,1,"","to_dict"],[219,2,1,"","type"],[219,3,1,"","unfreeze"]],"gammapy.modeling.models.LogParabolaSpectralModel":[[220,3,1,"","__call__"],[220,2,1,"","alpha"],[220,2,1,"","amplitude"],[220,2,1,"","beta"],[220,3,1,"","copy"],[220,2,1,"","covariance"],[220,2,1,"","default_parameters"],[220,2,1,"","e_peak"],[220,3,1,"","energy_flux"],[220,3,1,"","energy_flux_error"],[220,3,1,"","evaluate"],[220,3,1,"","evaluate_error"],[220,3,1,"","freeze"],[220,3,1,"","from_dict"],[220,3,1,"","from_log10"],[220,3,1,"","from_parameters"],[220,2,1,"","frozen"],[220,3,1,"","integral"],[220,3,1,"","integral_error"],[220,3,1,"","inverse"],[220,3,1,"","inverse_all"],[220,2,1,"","is_norm_spectral_model"],[220,2,1,"","parameters"],[220,2,1,"","pivot_energy"],[220,3,1,"","plot"],[220,3,1,"","plot_error"],[220,3,1,"","reassign"],[220,2,1,"","reference"],[220,3,1,"","reference_fluxes"],[220,3,1,"","spectral_index"],[220,3,1,"","spectral_index_error"],[220,2,1,"","tag"],[220,3,1,"","to_dict"],[220,2,1,"","type"],[220,3,1,"","unfreeze"]],"gammapy.modeling.models.MeyerCrabSpectralModel":[[222,3,1,"","__call__"],[222,2,1,"","coefficients"],[222,3,1,"","copy"],[222,2,1,"","covariance"],[222,2,1,"","default_parameters"],[222,3,1,"","energy_flux"],[222,3,1,"","energy_flux_error"],[222,3,1,"","evaluate"],[222,3,1,"","evaluate_error"],[222,3,1,"","freeze"],[222,3,1,"","from_dict"],[222,3,1,"","from_parameters"],[222,2,1,"","frozen"],[222,3,1,"","integral"],[222,3,1,"","integral_error"],[222,3,1,"","inverse"],[222,3,1,"","inverse_all"],[222,2,1,"","is_norm_spectral_model"],[222,2,1,"","norm"],[222,2,1,"","parameters"],[222,2,1,"","pivot_energy"],[222,3,1,"","plot"],[222,3,1,"","plot_error"],[222,3,1,"","reassign"],[222,3,1,"","reference_fluxes"],[222,3,1,"","spectral_index"],[222,3,1,"","spectral_index_error"],[222,3,1,"","to_dict"],[222,2,1,"","type"],[222,3,1,"","unfreeze"]],"gammapy.modeling.models.Model":[[223,3,1,"","create"],[223,3,1,"","from_dict"]],"gammapy.modeling.models.ModelBase":[[224,3,1,"","copy"],[224,2,1,"","covariance"],[224,3,1,"","freeze"],[224,3,1,"","from_dict"],[224,3,1,"","from_parameters"],[224,2,1,"","frozen"],[224,2,1,"","parameters"],[224,3,1,"","reassign"],[224,3,1,"","to_dict"],[224,2,1,"","type"],[224,3,1,"","unfreeze"]],"gammapy.modeling.models.Models":[[225,3,1,"","append"],[225,3,1,"","clear"],[225,3,1,"","copy"],[225,3,1,"","count"],[225,2,1,"","covariance"],[225,3,1,"","extend"],[225,3,1,"","freeze"],[225,3,1,"","from_dict"],[225,3,1,"","from_yaml"],[225,2,1,"","frozen"],[225,3,1,"","index"],[225,3,1,"","insert"],[225,2,1,"","names"],[225,2,1,"","parameters"],[225,2,1,"","parameters_unique_names"],[225,3,1,"","plot_positions"],[225,3,1,"","plot_regions"],[225,3,1,"","pop"],[225,2,1,"","positions"],[225,3,1,"","read"],[225,3,1,"","read_covariance"],[225,3,1,"","reassign"],[225,3,1,"","remove"],[225,3,1,"","restore_status"],[225,3,1,"","reverse"],[225,3,1,"","select"],[225,3,1,"","select_from_geom"],[225,3,1,"","select_mask"],[225,3,1,"","select_region"],[225,3,1,"","selection_mask"],[225,3,1,"","set_parameters_bounds"],[225,3,1,"","set_prior"],[225,3,1,"","to_dict"],[225,3,1,"","to_parameters_table"],[225,3,1,"","to_regions"],[225,3,1,"","to_template_sky_model"],[225,3,1,"","to_template_spectral_model"],[225,3,1,"","to_yaml"],[225,3,1,"","unfreeze"],[225,3,1,"","update_link_label"],[225,3,1,"","update_parameters_from_table"],[225,2,1,"","wcs_geom"],[225,3,1,"","write"],[225,3,1,"","write_covariance"]],"gammapy.modeling.models.NaimaSpectralModel":[[226,3,1,"","__call__"],[226,3,1,"","copy"],[226,2,1,"","covariance"],[226,2,1,"","default_parameters"],[226,3,1,"","energy_flux"],[226,3,1,"","energy_flux_error"],[226,3,1,"","evaluate"],[226,3,1,"","evaluate_error"],[226,3,1,"","freeze"],[226,3,1,"","from_dict"],[226,3,1,"","from_parameters"],[226,2,1,"","frozen"],[226,2,1,"","include_ssc"],[226,3,1,"","integral"],[226,3,1,"","integral_error"],[226,3,1,"","inverse"],[226,3,1,"","inverse_all"],[226,2,1,"","is_norm_spectral_model"],[226,2,1,"","parameters"],[226,2,1,"","particle_distribution"],[226,2,1,"","pivot_energy"],[226,3,1,"","plot"],[226,3,1,"","plot_error"],[226,3,1,"","reassign"],[226,3,1,"","reference_fluxes"],[226,3,1,"","spectral_index"],[226,3,1,"","spectral_index_error"],[226,2,1,"","ssc_model"],[226,2,1,"","tag"],[226,3,1,"","to_dict"],[226,2,1,"","type"],[226,3,1,"","unfreeze"]],"gammapy.modeling.models.PiecewiseNormSpatialModel":[[227,3,1,"","__call__"],[227,2,1,"","coords"],[227,3,1,"","copy"],[227,2,1,"","covariance"],[227,2,1,"","default_parameters"],[227,3,1,"","evaluate"],[227,3,1,"","evaluate_geom"],[227,2,1,"","evaluation_bin_size_min"],[227,2,1,"","evaluation_radius"],[227,2,1,"","evaluation_region"],[227,3,1,"","freeze"],[227,3,1,"","from_dict"],[227,3,1,"","from_parameters"],[227,3,1,"","from_position"],[227,2,1,"","frozen"],[227,3,1,"","integrate_geom"],[227,2,1,"","is_energy_dependent"],[227,2,1,"","norms"],[227,2,1,"","parameters"],[227,2,1,"","phi_0"],[227,3,1,"","plot"],[227,3,1,"","plot_error"],[227,3,1,"","plot_grid"],[227,3,1,"","plot_interactive"],[227,3,1,"","plot_position_error"],[227,2,1,"","position"],[227,2,1,"","position_error"],[227,2,1,"","position_lonlat"],[227,3,1,"","reassign"],[227,2,1,"","tag"],[227,3,1,"","to_dict"],[227,2,1,"","type"],[227,3,1,"","unfreeze"]],"gammapy.modeling.models.PiecewiseNormSpectralModel":[[228,3,1,"","__call__"],[228,3,1,"","copy"],[228,2,1,"","covariance"],[228,2,1,"","default_parameters"],[228,2,1,"","energy"],[228,3,1,"","energy_flux"],[228,3,1,"","energy_flux_error"],[228,3,1,"","evaluate"],[228,3,1,"","evaluate_error"],[228,3,1,"","freeze"],[228,3,1,"","from_dict"],[228,3,1,"","from_parameters"],[228,2,1,"","frozen"],[228,3,1,"","integral"],[228,3,1,"","integral_error"],[228,3,1,"","inverse"],[228,3,1,"","inverse_all"],[228,2,1,"","is_norm_spectral_model"],[228,2,1,"","norms"],[228,2,1,"","parameters"],[228,2,1,"","pivot_energy"],[228,3,1,"","plot"],[228,3,1,"","plot_error"],[228,3,1,"","reassign"],[228,3,1,"","reference_fluxes"],[228,3,1,"","spectral_index"],[228,3,1,"","spectral_index_error"],[228,2,1,"","tag"],[228,3,1,"","to_dict"],[228,2,1,"","type"],[228,3,1,"","unfreeze"]],"gammapy.modeling.models.PointSpatialModel":[[229,3,1,"","__call__"],[229,3,1,"","copy"],[229,2,1,"","covariance"],[229,2,1,"","default_parameters"],[229,3,1,"","evaluate_geom"],[229,2,1,"","evaluation_bin_size_min"],[229,2,1,"","evaluation_radius"],[229,2,1,"","evaluation_region"],[229,3,1,"","freeze"],[229,3,1,"","from_dict"],[229,3,1,"","from_parameters"],[229,3,1,"","from_position"],[229,2,1,"","frozen"],[229,3,1,"","integrate_geom"],[229,2,1,"","is_energy_dependent"],[229,2,1,"","lat_0"],[229,2,1,"","lon_0"],[229,2,1,"","parameters"],[229,2,1,"","phi_0"],[229,3,1,"","plot"],[229,3,1,"","plot_error"],[229,3,1,"","plot_grid"],[229,3,1,"","plot_interactive"],[229,3,1,"","plot_position_error"],[229,2,1,"","position"],[229,2,1,"","position_error"],[229,2,1,"","position_lonlat"],[229,3,1,"","reassign"],[229,2,1,"","tag"],[229,3,1,"","to_dict"],[229,3,1,"","to_region"],[229,2,1,"","type"],[229,3,1,"","unfreeze"]],"gammapy.modeling.models.PowerLaw2SpectralModel":[[230,3,1,"","__call__"],[230,2,1,"","amplitude"],[230,3,1,"","copy"],[230,2,1,"","covariance"],[230,2,1,"","default_parameters"],[230,2,1,"","emax"],[230,2,1,"","emin"],[230,3,1,"","energy_flux"],[230,3,1,"","energy_flux_error"],[230,3,1,"","evaluate"],[230,3,1,"","evaluate_error"],[230,3,1,"","evaluate_integral"],[230,3,1,"","freeze"],[230,3,1,"","from_dict"],[230,3,1,"","from_parameters"],[230,2,1,"","frozen"],[230,2,1,"","index"],[230,3,1,"","integral"],[230,3,1,"","integral_error"],[230,3,1,"","inverse"],[230,3,1,"","inverse_all"],[230,2,1,"","is_norm_spectral_model"],[230,2,1,"","parameters"],[230,2,1,"","pivot_energy"],[230,3,1,"","plot"],[230,3,1,"","plot_error"],[230,3,1,"","reassign"],[230,3,1,"","reference_fluxes"],[230,3,1,"","spectral_index"],[230,3,1,"","spectral_index_error"],[230,2,1,"","tag"],[230,3,1,"","to_dict"],[230,2,1,"","type"],[230,3,1,"","unfreeze"]],"gammapy.modeling.models.PowerLawNormSpectralModel":[[231,3,1,"","__call__"],[231,3,1,"","copy"],[231,2,1,"","covariance"],[231,2,1,"","default_parameters"],[231,3,1,"","energy_flux"],[231,3,1,"","energy_flux_error"],[231,3,1,"","evaluate"],[231,3,1,"","evaluate_energy_flux"],[231,3,1,"","evaluate_error"],[231,3,1,"","evaluate_integral"],[231,3,1,"","freeze"],[231,3,1,"","from_dict"],[231,3,1,"","from_parameters"],[231,2,1,"","frozen"],[231,3,1,"","integral"],[231,3,1,"","integral_error"],[231,3,1,"","inverse"],[231,3,1,"","inverse_all"],[231,2,1,"","is_norm_spectral_model"],[231,2,1,"","norm"],[231,2,1,"","parameters"],[231,2,1,"","pivot_energy"],[231,3,1,"","plot"],[231,3,1,"","plot_error"],[231,3,1,"","reassign"],[231,2,1,"","reference"],[231,3,1,"","reference_fluxes"],[231,3,1,"","spectral_index"],[231,3,1,"","spectral_index_error"],[231,2,1,"","tag"],[231,2,1,"","tilt"],[231,3,1,"","to_dict"],[231,2,1,"","type"],[231,3,1,"","unfreeze"]],"gammapy.modeling.models.PowerLawSpectralModel":[[232,3,1,"","__call__"],[232,2,1,"","amplitude"],[232,3,1,"","copy"],[232,2,1,"","covariance"],[232,2,1,"","default_parameters"],[232,3,1,"","energy_flux"],[232,3,1,"","energy_flux_error"],[232,3,1,"","evaluate"],[232,3,1,"","evaluate_energy_flux"],[232,3,1,"","evaluate_error"],[232,3,1,"","evaluate_integral"],[232,3,1,"","freeze"],[232,3,1,"","from_dict"],[232,3,1,"","from_parameters"],[232,2,1,"","frozen"],[232,2,1,"","index"],[232,3,1,"","integral"],[232,3,1,"","integral_error"],[232,3,1,"","inverse"],[232,3,1,"","inverse_all"],[232,2,1,"","is_norm_spectral_model"],[232,2,1,"","parameters"],[232,2,1,"","pivot_energy"],[232,3,1,"","plot"],[232,3,1,"","plot_error"],[232,3,1,"","reassign"],[232,2,1,"","reference"],[232,3,1,"","reference_fluxes"],[232,3,1,"","spectral_index"],[232,3,1,"","spectral_index_error"],[232,2,1,"","tag"],[232,3,1,"","to_dict"],[232,2,1,"","type"],[232,3,1,"","unfreeze"]],"gammapy.modeling.models.PowerLawTemporalModel":[[233,3,1,"","__call__"],[233,2,1,"","alpha"],[233,3,1,"","copy"],[233,2,1,"","covariance"],[233,2,1,"","default_parameters"],[233,3,1,"","evaluate"],[233,3,1,"","freeze"],[233,3,1,"","from_dict"],[233,3,1,"","from_parameters"],[233,2,1,"","frozen"],[233,3,1,"","integral"],[233,2,1,"","is_energy_dependent"],[233,2,1,"","parameters"],[233,3,1,"","plot"],[233,3,1,"","reassign"],[233,2,1,"","reference_time"],[233,3,1,"","sample_time"],[233,2,1,"","t0"],[233,2,1,"","t_ref"],[233,2,1,"","tag"],[233,3,1,"","time_sum"],[233,3,1,"","to_dict"],[233,2,1,"","type"],[233,3,1,"","unfreeze"]],"gammapy.modeling.models.ScaleSpectralModel":[[236,3,1,"","__call__"],[236,3,1,"","copy"],[236,2,1,"","covariance"],[236,2,1,"","default_parameters"],[236,3,1,"","energy_flux"],[236,3,1,"","energy_flux_error"],[236,3,1,"","evaluate"],[236,3,1,"","evaluate_error"],[236,3,1,"","freeze"],[236,3,1,"","from_dict"],[236,3,1,"","from_parameters"],[236,2,1,"","frozen"],[236,3,1,"","integral"],[236,3,1,"","integral_error"],[236,3,1,"","inverse"],[236,3,1,"","inverse_all"],[236,2,1,"","is_norm_spectral_model"],[236,2,1,"","norm"],[236,2,1,"","parameters"],[236,2,1,"","pivot_energy"],[236,3,1,"","plot"],[236,3,1,"","plot_error"],[236,3,1,"","reassign"],[236,3,1,"","reference_fluxes"],[236,3,1,"","spectral_index"],[236,3,1,"","spectral_index_error"],[236,2,1,"","tag"],[236,3,1,"","to_dict"],[236,2,1,"","type"],[236,3,1,"","unfreeze"]],"gammapy.modeling.models.Shell2SpatialModel":[[237,3,1,"","__call__"],[237,3,1,"","copy"],[237,2,1,"","covariance"],[237,2,1,"","default_parameters"],[237,2,1,"","eta"],[237,3,1,"","evaluate"],[237,3,1,"","evaluate_geom"],[237,2,1,"","evaluation_bin_size_min"],[237,2,1,"","evaluation_radius"],[237,2,1,"","evaluation_region"],[237,3,1,"","freeze"],[237,3,1,"","from_dict"],[237,3,1,"","from_parameters"],[237,3,1,"","from_position"],[237,2,1,"","frozen"],[237,3,1,"","integrate_geom"],[237,2,1,"","is_energy_dependent"],[237,2,1,"","lat_0"],[237,2,1,"","lon_0"],[237,2,1,"","parameters"],[237,2,1,"","phi_0"],[237,3,1,"","plot"],[237,3,1,"","plot_error"],[237,3,1,"","plot_grid"],[237,3,1,"","plot_interactive"],[237,3,1,"","plot_position_error"],[237,2,1,"","position"],[237,2,1,"","position_error"],[237,2,1,"","position_lonlat"],[237,2,1,"","r_0"],[237,2,1,"","r_in"],[237,3,1,"","reassign"],[237,2,1,"","tag"],[237,3,1,"","to_dict"],[237,3,1,"","to_region"],[237,2,1,"","type"],[237,3,1,"","unfreeze"]],"gammapy.modeling.models.ShellSpatialModel":[[238,3,1,"","__call__"],[238,3,1,"","copy"],[238,2,1,"","covariance"],[238,2,1,"","default_parameters"],[238,3,1,"","evaluate"],[238,3,1,"","evaluate_geom"],[238,2,1,"","evaluation_bin_size_min"],[238,2,1,"","evaluation_radius"],[238,2,1,"","evaluation_region"],[238,3,1,"","freeze"],[238,3,1,"","from_dict"],[238,3,1,"","from_parameters"],[238,3,1,"","from_position"],[238,2,1,"","frozen"],[238,3,1,"","integrate_geom"],[238,2,1,"","is_energy_dependent"],[238,2,1,"","lat_0"],[238,2,1,"","lon_0"],[238,2,1,"","parameters"],[238,2,1,"","phi_0"],[238,3,1,"","plot"],[238,3,1,"","plot_error"],[238,3,1,"","plot_grid"],[238,3,1,"","plot_interactive"],[238,3,1,"","plot_position_error"],[238,2,1,"","position"],[238,2,1,"","position_error"],[238,2,1,"","position_lonlat"],[238,2,1,"","radius"],[238,3,1,"","reassign"],[238,2,1,"","tag"],[238,3,1,"","to_dict"],[238,3,1,"","to_region"],[238,2,1,"","type"],[238,3,1,"","unfreeze"],[238,2,1,"","width"]],"gammapy.modeling.models.SineTemporalModel":[[239,3,1,"","__call__"],[239,2,1,"","amp"],[239,3,1,"","copy"],[239,2,1,"","covariance"],[239,2,1,"","default_parameters"],[239,3,1,"","evaluate"],[239,3,1,"","freeze"],[239,3,1,"","from_dict"],[239,3,1,"","from_parameters"],[239,2,1,"","frozen"],[239,3,1,"","integral"],[239,2,1,"","is_energy_dependent"],[239,2,1,"","omega"],[239,2,1,"","parameters"],[239,3,1,"","plot"],[239,3,1,"","reassign"],[239,2,1,"","reference_time"],[239,3,1,"","sample_time"],[239,2,1,"","t_ref"],[239,2,1,"","tag"],[239,3,1,"","time_sum"],[239,3,1,"","to_dict"],[239,2,1,"","type"],[239,3,1,"","unfreeze"]],"gammapy.modeling.models.SkyModel":[[240,3,1,"","__call__"],[240,3,1,"","contributes"],[240,3,1,"","copy"],[240,2,1,"","covariance"],[240,3,1,"","create"],[240,2,1,"","default_parameters"],[240,3,1,"","evaluate"],[240,3,1,"","evaluate_geom"],[240,2,1,"","evaluation_bin_size_min"],[240,2,1,"","evaluation_radius"],[240,2,1,"","evaluation_region"],[240,2,1,"","frame"],[240,3,1,"","freeze"],[240,3,1,"","from_dict"],[240,3,1,"","from_parameters"],[240,2,1,"","frozen"],[240,3,1,"","integrate_geom"],[240,2,1,"","name"],[240,2,1,"","parameters"],[240,2,1,"","position"],[240,2,1,"","position_lonlat"],[240,3,1,"","reassign"],[240,2,1,"","spatial_model"],[240,2,1,"","spectral_model"],[240,2,1,"","tag"],[240,2,1,"","temporal_model"],[240,3,1,"","to_dict"],[240,2,1,"","type"],[240,3,1,"","unfreeze"]],"gammapy.modeling.models.SmoothBrokenPowerLawSpectralModel":[[241,3,1,"","__call__"],[241,2,1,"","amplitude"],[241,2,1,"","beta"],[241,3,1,"","copy"],[241,2,1,"","covariance"],[241,2,1,"","default_parameters"],[241,2,1,"","ebreak"],[241,3,1,"","energy_flux"],[241,3,1,"","energy_flux_error"],[241,3,1,"","evaluate"],[241,3,1,"","evaluate_error"],[241,3,1,"","freeze"],[241,3,1,"","from_dict"],[241,3,1,"","from_parameters"],[241,2,1,"","frozen"],[241,2,1,"","index1"],[241,2,1,"","index2"],[241,3,1,"","integral"],[241,3,1,"","integral_error"],[241,3,1,"","inverse"],[241,3,1,"","inverse_all"],[241,2,1,"","is_norm_spectral_model"],[241,2,1,"","parameters"],[241,2,1,"","pivot_energy"],[241,3,1,"","plot"],[241,3,1,"","plot_error"],[241,3,1,"","reassign"],[241,2,1,"","reference"],[241,3,1,"","reference_fluxes"],[241,3,1,"","spectral_index"],[241,3,1,"","spectral_index_error"],[241,2,1,"","tag"],[241,3,1,"","to_dict"],[241,2,1,"","type"],[241,3,1,"","unfreeze"]],"gammapy.modeling.models.SpatialModel":[[242,3,1,"","__call__"],[242,3,1,"","copy"],[242,2,1,"","covariance"],[242,2,1,"","default_parameters"],[242,3,1,"","evaluate_geom"],[242,2,1,"","evaluation_bin_size_min"],[242,2,1,"","evaluation_radius"],[242,2,1,"","evaluation_region"],[242,3,1,"","freeze"],[242,3,1,"","from_dict"],[242,3,1,"","from_parameters"],[242,3,1,"","from_position"],[242,2,1,"","frozen"],[242,3,1,"","integrate_geom"],[242,2,1,"","is_energy_dependent"],[242,2,1,"","parameters"],[242,2,1,"","phi_0"],[242,3,1,"","plot"],[242,3,1,"","plot_error"],[242,3,1,"","plot_grid"],[242,3,1,"","plot_interactive"],[242,3,1,"","plot_position_error"],[242,2,1,"","position"],[242,2,1,"","position_error"],[242,2,1,"","position_lonlat"],[242,3,1,"","reassign"],[242,3,1,"","to_dict"],[242,2,1,"","type"],[242,3,1,"","unfreeze"]],"gammapy.modeling.models.SpectralModel":[[243,3,1,"","__call__"],[243,3,1,"","copy"],[243,2,1,"","covariance"],[243,2,1,"","default_parameters"],[243,3,1,"","energy_flux"],[243,3,1,"","energy_flux_error"],[243,3,1,"","evaluate_error"],[243,3,1,"","freeze"],[243,3,1,"","from_dict"],[243,3,1,"","from_parameters"],[243,2,1,"","frozen"],[243,3,1,"","integral"],[243,3,1,"","integral_error"],[243,3,1,"","inverse"],[243,3,1,"","inverse_all"],[243,2,1,"","is_norm_spectral_model"],[243,2,1,"","parameters"],[243,2,1,"","pivot_energy"],[243,3,1,"","plot"],[243,3,1,"","plot_error"],[243,3,1,"","reassign"],[243,3,1,"","reference_fluxes"],[243,3,1,"","spectral_index"],[243,3,1,"","spectral_index_error"],[243,3,1,"","to_dict"],[243,2,1,"","type"],[243,3,1,"","unfreeze"]],"gammapy.modeling.models.SuperExpCutoffPowerLaw3FGLSpectralModel":[[244,3,1,"","__call__"],[244,2,1,"","amplitude"],[244,3,1,"","copy"],[244,2,1,"","covariance"],[244,2,1,"","default_parameters"],[244,2,1,"","ecut"],[244,3,1,"","energy_flux"],[244,3,1,"","energy_flux_error"],[244,3,1,"","evaluate"],[244,3,1,"","evaluate_error"],[244,3,1,"","freeze"],[244,3,1,"","from_dict"],[244,3,1,"","from_parameters"],[244,2,1,"","frozen"],[244,2,1,"","index_1"],[244,2,1,"","index_2"],[244,3,1,"","integral"],[244,3,1,"","integral_error"],[244,3,1,"","inverse"],[244,3,1,"","inverse_all"],[244,2,1,"","is_norm_spectral_model"],[244,2,1,"","parameters"],[244,2,1,"","pivot_energy"],[244,3,1,"","plot"],[244,3,1,"","plot_error"],[244,3,1,"","reassign"],[244,2,1,"","reference"],[244,3,1,"","reference_fluxes"],[244,3,1,"","spectral_index"],[244,3,1,"","spectral_index_error"],[244,2,1,"","tag"],[244,3,1,"","to_dict"],[244,2,1,"","type"],[244,3,1,"","unfreeze"]],"gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLDR3SpectralModel":[[245,3,1,"","__call__"],[245,2,1,"","amplitude"],[245,3,1,"","copy"],[245,2,1,"","covariance"],[245,2,1,"","default_parameters"],[245,3,1,"","energy_flux"],[245,3,1,"","energy_flux_error"],[245,3,1,"","evaluate"],[245,3,1,"","evaluate_error"],[245,2,1,"","expfactor"],[245,3,1,"","freeze"],[245,3,1,"","from_dict"],[245,3,1,"","from_parameters"],[245,2,1,"","frozen"],[245,2,1,"","index_1"],[245,2,1,"","index_2"],[245,3,1,"","integral"],[245,3,1,"","integral_error"],[245,3,1,"","inverse"],[245,3,1,"","inverse_all"],[245,2,1,"","is_norm_spectral_model"],[245,2,1,"","parameters"],[245,2,1,"","pivot_energy"],[245,3,1,"","plot"],[245,3,1,"","plot_error"],[245,3,1,"","reassign"],[245,2,1,"","reference"],[245,3,1,"","reference_fluxes"],[245,3,1,"","spectral_index"],[245,3,1,"","spectral_index_error"],[245,2,1,"","tag"],[245,3,1,"","to_dict"],[245,2,1,"","type"],[245,3,1,"","unfreeze"]],"gammapy.modeling.models.SuperExpCutoffPowerLaw4FGLSpectralModel":[[246,3,1,"","__call__"],[246,2,1,"","amplitude"],[246,3,1,"","copy"],[246,2,1,"","covariance"],[246,2,1,"","default_parameters"],[246,3,1,"","energy_flux"],[246,3,1,"","energy_flux_error"],[246,3,1,"","evaluate"],[246,3,1,"","evaluate_error"],[246,2,1,"","expfactor"],[246,3,1,"","freeze"],[246,3,1,"","from_dict"],[246,3,1,"","from_parameters"],[246,2,1,"","frozen"],[246,2,1,"","index_1"],[246,2,1,"","index_2"],[246,3,1,"","integral"],[246,3,1,"","integral_error"],[246,3,1,"","inverse"],[246,3,1,"","inverse_all"],[246,2,1,"","is_norm_spectral_model"],[246,2,1,"","parameters"],[246,2,1,"","pivot_energy"],[246,3,1,"","plot"],[246,3,1,"","plot_error"],[246,3,1,"","reassign"],[246,2,1,"","reference"],[246,3,1,"","reference_fluxes"],[246,3,1,"","spectral_index"],[246,3,1,"","spectral_index_error"],[246,2,1,"","tag"],[246,3,1,"","to_dict"],[246,2,1,"","type"],[246,3,1,"","unfreeze"]],"gammapy.modeling.models.TemplateNDSpatialModel":[[248,3,1,"","__call__"],[248,3,1,"","copy"],[248,2,1,"","covariance"],[248,2,1,"","default_parameters"],[248,3,1,"","evaluate"],[248,3,1,"","evaluate_geom"],[248,2,1,"","evaluation_bin_size_min"],[248,2,1,"","evaluation_radius"],[248,2,1,"","evaluation_region"],[248,3,1,"","freeze"],[248,3,1,"","from_dict"],[248,3,1,"","from_parameters"],[248,3,1,"","from_position"],[248,2,1,"","frozen"],[248,3,1,"","integrate_geom"],[248,2,1,"","is_energy_dependent"],[248,2,1,"","map"],[248,2,1,"","parameters"],[248,2,1,"","phi_0"],[248,3,1,"","plot"],[248,3,1,"","plot_error"],[248,3,1,"","plot_grid"],[248,3,1,"","plot_interactive"],[248,3,1,"","plot_position_error"],[248,2,1,"","position"],[248,2,1,"","position_error"],[248,2,1,"","position_lonlat"],[248,3,1,"","reassign"],[248,2,1,"","tag"],[248,3,1,"","to_dict"],[248,2,1,"","type"],[248,3,1,"","unfreeze"],[248,3,1,"","write"]],"gammapy.modeling.models.TemplateNDSpectralModel":[[249,3,1,"","__call__"],[249,3,1,"","copy"],[249,2,1,"","covariance"],[249,2,1,"","default_parameters"],[249,3,1,"","energy_flux"],[249,3,1,"","energy_flux_error"],[249,3,1,"","evaluate"],[249,3,1,"","evaluate_error"],[249,3,1,"","freeze"],[249,3,1,"","from_dict"],[249,3,1,"","from_parameters"],[249,2,1,"","frozen"],[249,3,1,"","integral"],[249,3,1,"","integral_error"],[249,3,1,"","inverse"],[249,3,1,"","inverse_all"],[249,2,1,"","is_norm_spectral_model"],[249,2,1,"","map"],[249,2,1,"","parameters"],[249,2,1,"","pivot_energy"],[249,3,1,"","plot"],[249,3,1,"","plot_error"],[249,3,1,"","reassign"],[249,3,1,"","reference_fluxes"],[249,3,1,"","spectral_index"],[249,3,1,"","spectral_index_error"],[249,2,1,"","tag"],[249,3,1,"","to_dict"],[249,2,1,"","type"],[249,3,1,"","unfreeze"],[249,3,1,"","write"]],"gammapy.modeling.models.TemplateNPredModel":[[250,3,1,"","copy"],[250,2,1,"","covariance"],[250,3,1,"","cutout"],[250,2,1,"","default_parameters"],[250,2,1,"","energy_center"],[250,3,1,"","evaluate"],[250,2,1,"","evaluation_radius"],[250,3,1,"","freeze"],[250,3,1,"","from_dict"],[250,3,1,"","from_parameters"],[250,2,1,"","frozen"],[250,2,1,"","map"],[250,2,1,"","name"],[250,2,1,"","parameters"],[250,2,1,"","position"],[250,3,1,"","reassign"],[250,3,1,"","slice_by_energy"],[250,2,1,"","spectral_model"],[250,3,1,"","stack"],[250,2,1,"","tag"],[250,3,1,"","to_dict"],[250,2,1,"","type"],[250,3,1,"","unfreeze"],[250,3,1,"","write"]],"gammapy.modeling.models.TemplatePhaseCurveTemporalModel":[[251,3,1,"","__call__"],[251,3,1,"","copy"],[251,2,1,"","covariance"],[251,2,1,"","default_parameters"],[251,3,1,"","evaluate"],[251,2,1,"","f0"],[251,2,1,"","f1"],[251,2,1,"","f2"],[251,3,1,"","freeze"],[251,3,1,"","from_dict"],[251,3,1,"","from_parameters"],[251,2,1,"","frozen"],[251,3,1,"","integral"],[251,2,1,"","is_energy_dependent"],[251,2,1,"","parameters"],[251,2,1,"","phi_ref"],[251,3,1,"","plot"],[251,3,1,"","plot_phasogram"],[251,3,1,"","read"],[251,3,1,"","reassign"],[251,2,1,"","reference_time"],[251,3,1,"","sample_time"],[251,2,1,"","t_ref"],[251,2,1,"","tag"],[251,3,1,"","time_sum"],[251,3,1,"","to_dict"],[251,2,1,"","type"],[251,3,1,"","unfreeze"],[251,3,1,"","write"]],"gammapy.modeling.models.TemplateSpatialModel":[[252,3,1,"","__call__"],[252,3,1,"","copy"],[252,2,1,"","covariance"],[252,2,1,"","default_parameters"],[252,3,1,"","evaluate"],[252,3,1,"","evaluate_geom"],[252,2,1,"","evaluation_bin_size_min"],[252,2,1,"","evaluation_radius"],[252,2,1,"","evaluation_region"],[252,3,1,"","freeze"],[252,3,1,"","from_dict"],[252,3,1,"","from_parameters"],[252,3,1,"","from_position"],[252,2,1,"","frozen"],[252,3,1,"","integrate_geom"],[252,2,1,"","is_energy_dependent"],[252,2,1,"","lat_0"],[252,2,1,"","lon_0"],[252,2,1,"","map"],[252,2,1,"","map_center"],[252,2,1,"","parameters"],[252,2,1,"","phi_0"],[252,3,1,"","plot"],[252,3,1,"","plot_error"],[252,3,1,"","plot_grid"],[252,3,1,"","plot_interactive"],[252,3,1,"","plot_position_error"],[252,2,1,"","position"],[252,2,1,"","position_error"],[252,2,1,"","position_lonlat"],[252,3,1,"","read"],[252,3,1,"","reassign"],[252,2,1,"","tag"],[252,3,1,"","to_dict"],[252,3,1,"","to_region"],[252,2,1,"","type"],[252,3,1,"","unfreeze"],[252,3,1,"","write"]],"gammapy.modeling.models.TemplateSpectralModel":[[253,3,1,"","__call__"],[253,3,1,"","copy"],[253,2,1,"","covariance"],[253,2,1,"","default_parameters"],[253,3,1,"","energy_flux"],[253,3,1,"","energy_flux_error"],[253,3,1,"","evaluate"],[253,3,1,"","evaluate_error"],[253,3,1,"","freeze"],[253,3,1,"","from_dict"],[253,3,1,"","from_parameters"],[253,3,1,"","from_region_map"],[253,2,1,"","frozen"],[253,3,1,"","integral"],[253,3,1,"","integral_error"],[253,3,1,"","inverse"],[253,3,1,"","inverse_all"],[253,2,1,"","is_norm_spectral_model"],[253,2,1,"","parameters"],[253,2,1,"","pivot_energy"],[253,3,1,"","plot"],[253,3,1,"","plot_error"],[253,3,1,"","read_xspec_model"],[253,3,1,"","reassign"],[253,3,1,"","reference_fluxes"],[253,3,1,"","spectral_index"],[253,3,1,"","spectral_index_error"],[253,2,1,"","tag"],[253,3,1,"","to_dict"],[253,2,1,"","type"],[253,3,1,"","unfreeze"]],"gammapy.modeling.models.TemporalModel":[[254,3,1,"","__call__"],[254,3,1,"","copy"],[254,2,1,"","covariance"],[254,2,1,"","default_parameters"],[254,3,1,"","freeze"],[254,3,1,"","from_dict"],[254,3,1,"","from_parameters"],[254,2,1,"","frozen"],[254,3,1,"","integral"],[254,2,1,"","is_energy_dependent"],[254,2,1,"","parameters"],[254,3,1,"","plot"],[254,3,1,"","reassign"],[254,2,1,"","reference_time"],[254,3,1,"","sample_time"],[254,3,1,"","time_sum"],[254,3,1,"","to_dict"],[254,2,1,"","type"],[254,3,1,"","unfreeze"]],"gammapy.stats":[[262,1,1,"","CashCountsStatistic"],[263,1,1,"","WStatCountsStatistic"],[264,4,1,"","cash"],[265,4,1,"","cash_sum_cython"],[266,4,1,"","compute_chisq"],[267,4,1,"","compute_flux_doubling"],[268,4,1,"","compute_fpp"],[269,4,1,"","compute_fvar"],[270,4,1,"","cstat"],[271,4,1,"","f_cash_root_cython"],[272,4,1,"","get_wstat_gof_terms"],[273,4,1,"","get_wstat_mu_bkg"],[274,4,1,"","norm_bounds_cython"],[275,4,1,"","wstat"]],"gammapy.stats.CashCountsStatistic":[[262,3,1,"","compute_errn"],[262,3,1,"","compute_errp"],[262,3,1,"","compute_upper_limit"],[262,2,1,"","error"],[262,3,1,"","info_dict"],[262,2,1,"","n_bkg"],[262,2,1,"","n_sig"],[262,3,1,"","n_sig_matching_significance"],[262,2,1,"","p_value"],[262,2,1,"","sqrt_ts"],[262,2,1,"","stat_max"],[262,2,1,"","stat_null"],[262,3,1,"","sum"],[262,2,1,"","ts"]],"gammapy.stats.WStatCountsStatistic":[[263,3,1,"","compute_errn"],[263,3,1,"","compute_errp"],[263,3,1,"","compute_upper_limit"],[263,2,1,"","error"],[263,3,1,"","info_dict"],[263,2,1,"","n_bkg"],[263,2,1,"","n_sig"],[263,3,1,"","n_sig_matching_significance"],[263,2,1,"","p_value"],[263,2,1,"","sqrt_ts"],[263,2,1,"","stat_max"],[263,2,1,"","stat_null"],[263,3,1,"","sum"],[263,2,1,"","ts"]],"gammapy.utils":[[13,0,0,"-","cluster"],[13,0,0,"-","coordinates"],[13,0,0,"-","fits"],[13,0,0,"-","integrate"],[13,0,0,"-","interpolation"],[13,0,0,"-","parallel"],[13,0,0,"-","random"],[13,0,0,"-","regions"],[13,0,0,"-","scripts"],[13,0,0,"-","table"],[13,0,0,"-","testing"],[13,0,0,"-","time"],[13,0,0,"-","units"]],"gammapy.utils.cluster":[[276,4,1,"","hierarchical_clustering"],[277,4,1,"","standard_scaler"]],"gammapy.utils.coordinates":[[278,5,1,"","D_SUN_TO_GALACTIC_CENTER"],[279,4,1,"","cartesian"],[280,4,1,"","fov_to_sky"],[281,4,1,"","galactic"],[282,4,1,"","motion_since_birth"],[283,4,1,"","polar"],[284,4,1,"","sky_to_fov"],[285,4,1,"","velocity_glon_glat"]],"gammapy.utils.fits":[[286,1,1,"","HDULocation"],[287,1,1,"","LazyFitsData"],[288,4,1,"","earth_location_from_dict"]],"gammapy.utils.fits.HDULocation":[[286,3,1,"","get_hdu"],[286,3,1,"","info"],[286,3,1,"","load"],[286,3,1,"","path"]],"gammapy.utils.integrate":[[289,4,1,"","trapz_loglog"]],"gammapy.utils.interpolation":[[290,1,1,"","ScaledRegularGridInterpolator"],[291,4,1,"","interpolate_profile"],[292,4,1,"","interpolation_scale"]],"gammapy.utils.interpolation.ScaledRegularGridInterpolator":[[290,3,1,"","__call__"]],"gammapy.utils.parallel":[[293,5,1,"","BACKEND_DEFAULT"],[294,5,1,"","METHOD_DEFAULT"],[295,5,1,"","METHOD_KWARGS_DEFAULT"],[296,5,1,"","N_JOBS_DEFAULT"],[297,5,1,"","POOL_KWARGS_DEFAULT"],[298,1,1,"","multiprocessing_manager"],[299,4,1,"","run_multiprocessing"]],"gammapy.utils.random":[[300,1,1,"","InverseCDFSampler"],[301,4,1,"","draw"],[302,4,1,"","get_random_state"],[303,4,1,"","normalize"],[304,4,1,"","pdf"],[305,4,1,"","sample_powerlaw"],[306,4,1,"","sample_sphere"],[307,4,1,"","sample_sphere_distance"],[308,4,1,"","sample_times"]],"gammapy.utils.random.InverseCDFSampler":[[300,3,1,"","sample"],[300,3,1,"","sample_axis"]],"gammapy.utils.regions":[[309,4,1,"","compound_region_to_regions"],[310,4,1,"","make_concentric_annulus_sky_regions"],[311,4,1,"","make_orthogonal_rectangle_sky_regions"],[312,4,1,"","region_to_frame"],[313,4,1,"","regions_to_compound_region"]],"gammapy.utils.scripts":[[314,4,1,"","get_images_paths"],[315,4,1,"","make_path"],[316,4,1,"","read_yaml"],[317,4,1,"","recursive_merge_dicts"],[318,4,1,"","write_yaml"]],"gammapy.utils.table":[[319,4,1,"","hstack_columns"],[320,4,1,"","table_row_to_dict"],[321,4,1,"","table_standardise_units_copy"],[322,4,1,"","table_standardise_units_inplace"]],"gammapy.utils.testing":[[323,1,1,"","Checker"],[324,4,1,"","assert_quantity_allclose"],[325,4,1,"","assert_skycoord_allclose"],[326,4,1,"","assert_time_allclose"],[327,4,1,"","mpl_plot_check"],[328,4,1,"","requires_data"],[329,4,1,"","requires_dependency"]],"gammapy.utils.testing.Checker":[[323,3,1,"","run"]],"gammapy.utils.time":[[330,4,1,"","absolute_time"],[331,4,1,"","time_ref_from_dict"],[332,4,1,"","time_ref_to_dict"],[333,4,1,"","time_relative_to_ref"]],"gammapy.utils.units":[[334,4,1,"","standardise_unit"],[335,4,1,"","unit_from_fits_image_hdu"]],"gammapy.visualization":[[336,1,1,"","MapPanelPlotter"],[337,4,1,"","add_colorbar"],[338,4,1,"","annotate_heatmap"],[339,4,1,"","colormap_hess"],[340,4,1,"","colormap_milagro"],[341,4,1,"","plot_contour_line"],[342,4,1,"","plot_distribution"],[343,4,1,"","plot_heatmap"],[344,4,1,"","plot_map_rgb"],[345,4,1,"","plot_npred_signal"],[346,4,1,"","plot_spectrum_datasets_off_regions"],[347,4,1,"","plot_theta_squared_table"]],"gammapy.visualization.MapPanelPlotter":[[336,3,1,"","plot"],[336,3,1,"","plot_panel"]],gammapy:[[0,0,0,"-","analysis"],[2,0,0,"-","catalog"],[3,0,0,"-","data"],[4,0,0,"-","datasets"],[5,0,0,"-","estimators"],[7,0,0,"-","irf"],[8,0,0,"-","makers"],[9,0,0,"-","maps"],[10,0,0,"-","modeling"],[12,0,0,"-","stats"],[14,0,0,"-","visualization"],[11,6,1,"cmdoption-gammapy-ignore-warnings","--ignore-warnings"],[11,6,1,"cmdoption-gammapy-log-level","--log-level"],[11,6,1,"cmdoption-gammapy-version","--version"]]},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","attribute","Python attribute"],"3":["py","method","Python method"],"4":["py","function","Python function"],"5":["py","data","Python data"],"6":["std","cmdoption","program option"]},objtypes:{"0":"py:module","1":"py:class","2":"py:attribute","3":"py:method","4":"py:function","5":"py:data","6":"std:cmdoption"},terms:{"0":[11,13,16,17,18,19,20,21,22,23,24,25,26,27,28,29,31,33,34,35,38,39,42,47,50,51,52,53,65,69,72,79,81,82,83,84,85,86,89,91,97,98,99,102,103,104,105,106,107,109,111,112,113,114,116,118,120,121,129,130,131,132,134,135,136,137,139,142,143,144,145,146,147,148,150,152,155,158,159,163,173,174,175,176,177,178,180,183,184,185,186,187,188,189,190,193,195,197,198,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,248,249,251,252,253,254,259,260,262,263,264,267,268,269,270,296,300,307,308,326,337,339,340,344,346,349,350,352,353,356,360,361,363,364,365,366,367,368,369,371,372,373,374,375,376,377,378,382,385,414,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,461,463,464,465,466,467,471,473,477,481,483,486,488,489,490,491,492,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,538,539,540,541],"00":[65,83,84,85,86,96,350,364,416,417,419,420,421,422,423,425,427,428,429,432,433,435,436,439,440,442,444,445,446,447,448,449,451,452,454,455,456,457,459,461,463,464,465,466,503,523,524,534,542],"000":[65,83,84,86,113,364,418,420,421,423,428,429,430,432,433,436,439,440,444,445,449,451,452,456,463,465],"0000":375,"000000":444,"000000000000002":449,"00000000000001":423,"00000000000003":441,"00000000000004":444,"0000000000018":89,"000000000002":432,"000000000006":432,"000000000007":444,"00000000001":444,"00000000e":[446,447],"0000000e":447,"00000143":[350,542],"0000e":[96,417,420,421,422,423,425,428,436,440,446,452,464,523],"0001":[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,340,430],"00010298":445,"000150":418,"0002":[418,465],"00020":418,"0002000":418,"0003":430,"00050":418,"000500":418,"0006":418,"000617":505,"00074287037":[89,433],"000742870370370241":89,"0008":444,"0009":418,"000e":[420,423,429,436,440,444,452,465,523],"000true":418,"001":[50,129,130,131,132,135,136,137,139,142,144,146,147,175,176,178,184,187,188,326,432,446,501],"0016288e":447,"001e":65,"002018":456,"0025508e":447,"0028272e":447,"0029":374,"0029490222317034775":463,"002e":65,"003":[441,451,456],"003026327991562108":429,"003131946268913696":463,"0033":540,"0036925550381217":423,"004":65,"00422666667":437,"00449161":222,"00490":430,"00490483":430,"0049409":455,"005":444,"00521472221220211":429,"005743":521,"005914854792576181":431,"0064830e":447,"0068115544":217,"007":444,"0071144081":217,"0074388942":217,"0076540e":447,"008":[444,539],"008164325487530225":431,"008898002182656187":431,"00894":465,"009":444,"009431203058496632":431,"00e":[79,416,421,432,436,440,441,445,447,448,456,463],"01":[39,52,72,79,83,84,86,89,97,99,103,104,105,115,121,158,159,163,204,210,214,216,218,233,239,350,374,385,416,420,422,424,425,428,429,432,436,440,441,443,444,445,446,447,448,449,451,452,454,456,457,458,463,464,465,466,471,476,486,488,489,492,495,497,499,521,522,526,527,528,534,539,542],"010":451,"010e":65,"011":451,"011872336272724":463,"012":451,"0122385e":447,"01235137e":447,"012733796525585":453,"013":428,"0139252e":447,"014":[81,97,99,103,104,155,421,444,448,463,464,488],"0143764":455,"01449":79,"0145":450,"01450":[438,464],"0149044e":447,"015":444,"01551196351647377":217,"0164":430,"01648855015875024":538,"01700709977114979":437,"017442925431194484":437,"018":65,"018182745349064267":429,"0183519e":447,"01960784313726":434,"019899368286133":429,"01e":[155,385,416,444],"01t00":[83,86,89,350,424,432,542],"01t01":86,"01t02":86,"02":[16,65,79,89,97,99,103,104,143,150,155,175,176,178,180,184,185,187,188,385,386,416,418,420,421,425,426,428,429,430,431,432,433,435,436,438,440,441,444,446,447,448,449,450,451,452,454,456,463,464,465,486,488,489,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],"020":[429,444],"020420144596410953":453,"021":[65,444],"0225e":444,"02287888":217,"023":444,"023473560586078527":463,"0235e":440,"023e":424,"024":444,"02432":444,"024551293715163":463,"024e":465,"025":[444,456,503],"0251191219844263":430,"026":[53,65,444],"02653":[424,430],"026891":444,"026914":444,"027":65,"0276e":436,"0278e":440,"028":[420,436],"029e":444,"02e":79,"02t10":[421,452,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],"02t23":82,"03":[17,19,20,21,22,24,25,26,27,65,83,85,86,362,377,416,418,429,430,432,435,436,440,444,447,449,451,453,454,458,459,461,464,498],"032":444,"0322":65,"0322775e":447,"033":[65,444],"033124":528,"03383":455,"034":539,"0344":65,"034e":418,"0354700e":447,"0356":416,"0356551":416,"036":65,"036e":444,"037":451,"03745318352059925":532,"0375512e":447,"0376213e":447,"039":[428,429],"039215686274545":434,"03921700077803329":429,"0395135e":447,"03978226e":452,"04":[30,65,89,419,421,423,424,426,429,432,440,441,444,447,449,452,454,455,456],"041":456,"0415":465,"041882":444,"042":444,"0423761":416,"042e":444,"043":65,"04357249662280083":420,"044":421,"04454":456,"0447":424,"0454683":455,"046":65,"0462798e":447,"047":65,"0473174":222,"0474750e":447,"048":[428,456],"0482342e":447,"048e":65,"049":[418,428],"049668":463,"049676":444,"04d":432,"04e":448,"04t15":82,"04t22":82,"05":[19,20,26,29,42,65,69,83,86,111,120,186,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,310,377,416,417,418,419,420,424,427,428,429,430,433,435,436,443,444,445,446,447,448,451,454,455,457,459,463,464,491,495,524],"050":451,"0503641":416,"0505949e":447,"05075":447,"0508075688763":444,"05088486522436142":420,"051":[19,20,26,451],"051c":[17,21,22,24,25,27],"052":444,"0520119e":447,"0521842481248":431,"05227":444,"053":428,"053212009682775":453,"054833602905273e":429,"05487060546875":420,"0548e":429,"054e":65,"055":444,"055e":418,"0560":465,"056130":444,"05628243":465,"05673":465,"057":444,"05762513693893088":429,"058":65,"058201":444,"05853":424,"058823529411775":434,"058e":424,"059":65,"05901956e":447,"0595963680914":440,"0598579":416,"05deg":186,"06":[129,130,131,132,133,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188,374,419,428,429,430,442,444,445,446,447,448,449,456,459,466],"061":[421,459,465],"062":[432,451,452,456,459],"0625":452,"0628":465,"063":65,"0631757e":447,"06334488877417636":453,"064108e":444,"06430":430,"0643032":430,"065071":444,"065119":465,"066":420,"066442":444,"0667e":436,"067":454,"067276":532,"0674":424,"068245":444,"0689":446,"068e":418,"069":65,"07":[97,155,324,364,385,418,419,421,423,428,430,439,441,444,445,447,449,451,456,459],"070483":444,"070e":424,"0711412":416,"072":65,"073":65,"0739282e":447,"074":[444,456],"07454639":430,"07455":430,"0746":465,"0748":[444,465],"075":65,"07512322002655547":429,"076":465,"077":416,"078":418,"07843137254903":434,"07943648658692837":453,"07944657407":444,"079464e":465,"0799109224230051":453,"07e":441,"08":[82,344,385,422,423,425,426,428,429,436,444,445,446,448,454,456,463,464,504],"080":420,"0800792e":447,"08075":447,"08081469527619482":423,"08088":[161,448],"081":420,"0811551760882139":453,"08142":443,"08191603310406206":453,"08192":430,"08192101":430,"082":444,"082691868487906":437,"08269984":465,"082e":113,"083":[65,444],"08328557573258877":453,"0833333358168602":420,"0833333432674408":420,"08388624433428049":453,"084":[65,421],"08447355125099419":453,"0845515":416,"085":444,"08529426":92,"0855013383552432":453,"08675":445,"086e":444,"087":465,"08795162606984375":453,"087e":444,"088742":444,"08880368117243051":453,"08894569035619496":453,"089":122,"0894640e":447,"0897868126630783":453,"089881":444,"08e":[436,451],"09":[33,113,155,421,424,426,428,435,444,445,447,448,463,464,465,540],"090":421,"0902437e":447,"0907128e":447,"0910":[231,232],"0914":[52,53],"092":420,"093477":430,"09348":430,"09426693227142095":453,"094579":452,"094834":444,"095232":444,"09562941":465,"095707":465,"096":421,"0960":465,"09607":465,"09610314778983592":453,"09623312838375568":453,"09740295372903346":453,"097e":65,"098903":444,"099":442,"09907043184188653":453,"09e":[448,456],"0b100":296,"0d":[115,145,434,445,499],"0e":[372,421,423,425,429,432,436,440,445,447,449,451,452,456,463,494,495,496,497,499,500,501,502,505,506,508,511,512,514,515,516,517,519,520,521,522,523,525,526,527,528,529,530,531,532,533],"0f":[446,456,465],"0rc":378,"0rc1":378,"0s":115,"0true":430,"0x105fd0cf8":349,"0x105fe3b70":349,"0x129602550":349,"0x7fd2f2da4c10":452,"0x7fd2f3499940":453,"0x7fd2f3499af0":453,"0x7fd2f3e9be50":434,"0x7fd2f3e9bfa0":434,"0x7fd2f47e85b0":453,"0x7fd2f47e8670":453,"0x7fd2f5717160":455,"0x7fd2f572e5b0":455,"0x7fd2f5ae0eb0":455,"0x7fd2f5fafe20":445,"0x7fd2f62e3400":450,"0x7fd2f62e3820":450,"0x7fd2f62e3d30":450,"0x7fd2f62e3fd0":450,"0x7fd2f6f92fd0":445,"0x7fd2f72db280":455,"0x7fd3045fb070":445,"0x7fd3045fb400":445,"1":[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,44,45,46,47,48,49,50,51,52,53,54,57,59,62,64,65,69,70,71,72,74,79,82,83,84,86,90,96,97,99,103,104,107,111,113,114,115,116,118,119,121,122,126,127,129,130,131,132,134,135,136,137,142,143,144,145,146,148,150,155,158,172,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,192,193,195,197,198,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,223,226,228,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,251,252,253,254,255,256,260,262,263,267,268,289,290,296,297,298,307,308,310,311,334,336,339,340,344,346,349,350,352,353,356,357,359,360,361,363,364,366,369,371,372,373,374,375,376,378,379,385,386,389,390,392,393,397,399,400,401,404,405,406,407,408,409,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,471,472,473,476,477,479,481,482,483,484,485,488,489,490,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,536,537,539,540,541],"10":[13,16,28,29,30,31,32,35,36,37,39,40,50,51,52,53,54,64,65,82,83,84,85,86,97,98,99,102,103,104,107,111,114,115,120,121,129,130,132,134,136,142,143,144,145,146,148,155,161,174,175,176,178,183,184,186,187,188,192,193,195,204,207,219,220,222,223,244,256,268,296,298,308,337,342,344,346,349,350,352,353,354,355,356,357,358,359,360,365,366,371,372,373,377,379,385,390,392,403,405,408,412,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,467,473,477,483,486,488,489,490,491,500,501,504,506,509,510,512,513,514,515,517,518,520,521,522,526,527,528,538,539,542],"100":[19,20,26,46,47,71,89,113,121,134,135,145,186,188,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,256,258,308,349,350,352,357,368,388,416,417,420,423,428,429,430,432,433,434,436,437,441,443,444,445,447,448,449,452,455,456,457,465,469,471,472,473,477,488,491,492,494,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,539],"1000":[28,29,30,31,32,35,36,37,39,40,176,181,349,352,418,444,445,447,456,465,491],"10000":[17,18,21,22,23,24,25,27,158,444,456],"100000":[71,444,463],"1000000":[51,52,54,444,523],"10000000":523,"1001":[407,432,433],"1002":407,"10045":[63,246,522],"10049":416,"1006":407,"101":[393,441,444],"1012":443,"1013":408,"1014":408,"101430":441,"10172":452,"102":[155,424,539,540],"1021":408,"1025":408,"1026":408,"10262943822890519":453,"1027":408,"102877228833871":453,"1029":408,"10295505":465,"102e":444,"103":[388,411],"103000133":457,"1031":408,"10317325958321796":463,"1032":408,"1034":465,"1035":408,"10350021860740599":421,"1036":424,"1038":408,"104":430,"1040":408,"10409":430,"10409446":430,"1043":408,"104317":[97,445,451],"1044":424,"1045":408,"1046":367,"10470702368766069":453,"10477":465,"105":[78,420,421,423,446,454,458],"1051":408,"1052":444,"1053":408,"1054":408,"1054498":122,"1057":408,"10592":542,"105953":465,"106":534,"1061971e":447,"106217":79,"1062535e":447,"1064":444,"1065":408,"1067":408,"1069":408,"107":[416,436,449,534],"1070":[408,465],"1072542e":447,"1073":408,"10752883769757363":453,"1076":408,"1078":408,"107e":444,"108":405,"108034597491956e":452,"108043":428,"1082":408,"1083":408,"1084":408,"1085":408,"1085000":428,"1086":268,"1087":408,"1088":408,"1089":408,"109":[388,449,534],"1090":408,"1092":[408,424],"1093":[408,424],"1098":408,"1099306e":447,"109e":430,"10d":434,"10e":[155,444,447],"10k":176,"10th":[376,387],"11":[65,83,86,89,113,114,118,193,310,353,356,358,366,373,377,388,389,410,416,417,418,420,421,422,423,424,425,426,430,432,433,434,436,438,439,440,441,444,445,446,448,450,451,454,456,463,464,465,488,490,540],"110":[444,456,534],"1100":408,"110000":[445,448],"1102":408,"1102e":417,"1103":408,"110380":[79,365,425,428,430,455],"1104":408,"1105":408,"1107":408,"1108":408,"111":[337,356,408,428,435,444],"1110":408,"1111":[444,465],"111140":[365,425,428,430],"111159":[365,425,428,430,455],"111252":508,"1115":408,"111507416":441,"111630":[85,441,455],"111797":444,"11184":[63,245,521],"112":416,"11208":63,"1127":408,"11291820875721864":453,"113":465,"1131":357,"1133":408,"1134":408,"1136":408,"114416978060046":440,"114585":511,"1149":445,"115":65,"1150":408,"11517":465,"11553325504064559":453,"116":388,"1160":444,"11610":465,"1162":408,"1166":408,"1167":[356,363],"1169":408,"116e":65,"117":[388,420,504],"1170":408,"1172":363,"1173775":444,"1176":408,"117877e":444,"1179":408,"118":428,"1183":408,"118355":444,"119":[424,428],"1190":408,"1193777560333226e":438,"119432":416,"1195":408,"11af4c":388,"11e":[426,444],"12":[17,38,42,65,82,83,86,97,99,105,113,145,148,174,175,176,178,184,187,188,197,201,207,209,213,220,230,232,241,244,245,246,256,353,355,356,357,358,360,361,366,369,372,388,392,393,394,406,411,416,417,418,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,466,477,488,491,492,494,495,496,497,499,500,501,502,504,505,506,508,511,512,515,516,517,519,520,521,522,525,526,527,528,529,530,531,532,533],"120":[53,364,422,456,498,534],"120000":425,"120154":444,"1204":408,"120461":516,"1207":408,"120e":[65,465],"121":[65,430,451],"1210":408,"1211":[408,444],"121241":428,"12148":424,"1215":408,"1216":417,"121724":501,"12186":465,"1219":444,"122":[65,388,418,451,534],"1220":408,"1226":408,"1227":408,"12276676166802643":453,"123":[83,86,361,420,424],"1231":409,"1234":84,"123456789":[350,542],"1235":408,"1237":357,"1238":408,"123890826":82,"123892513":82,"1239":354,"123944":79,"124":[361,420,424,444,451],"1240":408,"12423250e":447,"1243":465,"1246":408,"12493874":447,"124e":65,"125":[65,113,420,430,449,456,465,539],"12518":429,"12525306":437,"12546":63,"125e":429,"126":[65,418,443,444,446,454],"1264500e":447,"126585":416,"1266":408,"1268":408,"12688":79,"1269263e":447,"12697":429,"127":424,"1271v":269,"12751":416,"1277":355,"1278":356,"12794487":452,"128":[388,441,467],"12809":[97,445,451],"1281":408,"12816":465,"12856":456,"1287":408,"1289":408,"128e":418,"129":414,"1290":408,"1291":408,"1294":408,"1299":444,"129e":424,"12nan5":418,"12r_":53,"12th":[374,387],"13":[65,96,113,353,354,358,363,368,377,393,416,418,420,421,422,424,428,430,436,440,444,445,446,449,451,452,454,463,465,473,540],"130":488,"1300":408,"1301v":38,"13030":465,"1305":408,"13061":452,"131":[418,430],"1310":465,"1312":408,"13133":465,"13152":430,"1316":408,"1317":409,"1318":408,"1319":[89,408],"13197":428,"132":424,"1321e":429,"13226":465,"132472":430,"1331":409,"1334":409,"1337":409,"1339":409,"133e":[418,424],"134":[421,424,430],"1341":409,"1342a":135,"1343":409,"1344":444,"1345":409,"1346":409,"1347":409,"135":[38,96,418,444,446,454],"13500212963":444,"13500566998758723":431,"1351e":444,"1354":409,"135498046875":420,"1357":409,"1359316":465,"135e":113,"136":[427,444],"1360":409,"1361":444,"1362":409,"1367":[409,510],"1369":[357,409],"137":[421,424,431],"1372":409,"137254901960785":434,"1373":409,"1374":409,"1376":409,"1377":409,"1378":409,"137990":444,"137e":424,"138":[388,418,432,465],"1381":409,"1386":409,"1387":409,"138e":430,"139":[420,424,456],"13911":465,"1395":409,"1396":[349,421],"13960":465,"1397":409,"1397412321592923":453,"13e":445,"13nan6":418,"13th":387,"14":[28,63,65,82,350,353,358,361,366,368,369,407,418,419,420,421,424,427,428,441,444,445,446,448,450,451,452,454,464,465,539],"140":[420,457],"1401":409,"1406":409,"140779935183259e":438,"1408":[409,465],"141":[275,430,444],"1411180":428,"1412":409,"14121":430,"1412536400000000":465,"14149953611195087":453,"14150":430,"1419":[357,410],"141945":416,"142":[65,388,418,444,465],"1421":409,"14210":418,"1426":409,"142e":444,"143":424,"1432":409,"1433":409,"1435":409,"1438":158,"1438465e":447,"1439110308062257":453,"144":[418,451,465],"14419991":92,"1442739329466746e":452,"1443":409,"1444":409,"1445":363,"14457":465,"1446":409,"1447":409,"145":444,"1451":364,"14531053887243":430,"1456":409,"1456479e":447,"146":465,"14610":542,"146472":444,"14671140315352":431,"147":[407,444,449],"1470":[409,465],"1474":409,"1475":409,"1476":409,"14773":456,"147e":444,"148":[420,424],"1482":444,"1484":440,"1485314":92,"1486415e":447,"1489":409,"149":[420,448,451],"1491":430,"1492":409,"1494":430,"1495":409,"1496e":425,"149e":444,"14e":[425,443],"14msts37sst":[432,433],"14nan3":418,"14nan5":418,"14th":[373,376,387],"14yr_catalog":63,"15":[39,42,65,83,84,86,132,133,134,135,136,137,142,143,144,146,339,340,344,358,366,388,392,397,402,405,406,407,409,416,420,421,424,426,428,429,430,432,433,434,436,437,441,444,446,448,449,451,452,456,465,488,495],"150":[119,388,418,420,432,433,449,465,503],"1505":409,"15076259":92,"151":[388,451],"1510":122,"1510240e":447,"15140":424,"1515":409,"15154854":92,"1517":409,"152":[424,430,464],"1520":467,"1521":430,"15228678433255e":463,"1523":432,"15246":432,"152477":456,"1527":409,"153":444,"1530":445,"15319":432,"153600":445,"154":[388,416,444],"1543":409,"154e":430,"155":388,"15518":465,"1552":426,"1553":[444,465],"1554":409,"1554106e":447,"1556":[409,444,465],"1556008e":447,"1558":409,"156":[388,421,424,430,451],"1562":409,"15621":465,"1564":409,"156525":444,"1567629e":447,"1568":409,"15686274509804":434,"157":[388,465],"1573":409,"1576":409,"158":[416,421,428],"1582":409,"1586":89,"15899":424,"159":435,"1594":409,"1597317":92,"159t":52,"15h14m00":444,"15nan8":418,"16":[16,24,53,65,89,103,104,174,353,357,366,369,370,393,408,413,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,435,437,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,490,531,539,540],"160":[31,113,388,397,434,451],"1600":433,"1605":409,"16056":424,"1606":409,"1607":443,"160e":65,"161":[357,420,430,444],"1610e":444,"161250":436,"1613279491744304":453,"1616":409,"1618850e":447,"1619e":96,"162":65,"16227766":449,"1622776601683795":[448,449,463],"16240":464,"16287":465,"1629219e":447,"163":[434,539],"1630":[409,465],"16303":430,"16303044":430,"1634":409,"164":[440,444],"1642":416,"164e":440,"165":451,"1650":465,"16506":416,"16511":430,"16511148":430,"1658":409,"166":[388,430,444],"1660":409,"16650390625":417,"1665478":92,"167":[388,430,436],"167219":444,"1675":[409,513],"167e":424,"168":[444,465],"1681":[409,513],"1685":409,"1686":444,"1687":82,"168702":416,"169":[420,430],"1691":416,"169357":436,"1695":409,"1696":409,"1697":409,"169871":436,"16th":387,"17":[20,21,40,65,82,360,363,366,397,414,416,430,434,435,440,441,442,444,445,446,447,448,449,451,456,457,465,540],"170":417,"17016482e":446,"1702":409,"17020":424,"171":424,"1710":410,"1711":409,"1713":417,"1715":363,"1717":465,"171749":465,"1719502":92,"1719610":92,"1719670":92,"171b":255,"172":434,"17229679":92,"173":444,"1731":[409,451],"1732":444,"17320":444,"1737799900000000":465,"174":440,"1742":65,"17445":465,"1746":[409,465],"1748":[409,451],"1750":409,"1751":409,"1753":465,"1755":[409,424],"17579249145996":440,"1759":409,"175e":444,"176":[388,441,444],"1760":409,"1761":409,"1762":467,"1763":[410,444],"1764":[409,430],"176470588235294":434,"1766":410,"1768896e":447,"177":[388,456,457,503],"17776":416,"177e":444,"178":408,"178442":65,"1785":[409,416],"1791":409,"1792":440,"1794":440,"179475":222,"1799":409,"17a":444,"17e":451,"17g":50,"17th":403,"18":[11,83,86,353,368,374,394,400,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],"180":[363,381,383,388,444,449],"1800":[409,433,449,455],"180000":[432,433],"1804":444,"180458":428,"1805":363,"1807":410,"1808":[409,444,465],"181":424,"1811":423,"1812":409,"1813":444,"1818":409,"182":503,"1821":409,"1822":409,"1825":444,"18257":424,"183":[420,428,440],"1830e":420,"183139597":82,"1834":417,"1835":89,"1836":410,"1836544903987521":453,"1837":410,"18385658":430,"18386":430,"18392464":479,"184":[82,89,402,406,424,432,439,450,451],"18400002":439,"1841":358,"1845":410,"1846":410,"18465":465,"1849":410,"184989894219835":437,"185":450,"1854":[410,444],"1855":410,"1857":410,"1859":410,"186":[401,430,444],"1861":410,"1862":410,"186484131475074":308,"1866":448,"186643":465,"186e":424,"187":[394,401,430],"1871":410,"1877":359,"188":[401,416,444],"1883":410,"1884":410,"18842983819716610":430,"1888":410,"188e":418,"189":[440,447],"1890":410,"1891":410,"18921591":447,"1893":410,"1893e":444,"1894":410,"1895":410,"1898":410,"18988":465,"1899070e":447,"18a":61,"18h43m48":65,"19":[51,53,54,65,353,365,367,369,382,388,396,397,399,411,417,421,424,434,435,437,440,441,444,445,449,451],"190":[421,444],"1902":[63,246,522],"1903":410,"1904":410,"1905":429,"1908":410,"1909":410,"191":401,"1910":[161,448],"1912":410,"1917":465,"1918":410,"1919":410,"192":454,"1920":465,"1921":410,"19214093":92,"1922":410,"1926":410,"1926520e":447,"1927":410,"1928":444,"1929":410,"193":[424,456],"1930":410,"1933":410,"1934":410,"19354":430,"1936925":92,"1937":[410,444],"194":[401,420,534],"1943186":92,"1947565":92,"1949":410,"195":217,"1950rspsa":52,"1951":389,"1953830":92,"1955810e":447,"1958e":446,"196":[65,416,436,451],"1960784313725492":434,"1962":389,"1963":444,"19646":456,"1965tralm":21,"1966":389,"1969":389,"196991563774588":256,"197":[65,430],"1971":360,"19735897928723367":431,"1975":389,"1976572e":447,"1978":444,"1979":[264,270,389,537],"1979892":430,"198":[503,524],"1980":444,"1982":37,"1983":537,"1986":361,"1986027":465,"1987":430,"19879005":158,"1988":389,"1989":389,"199":[430,451,524],"1990":[37,389],"1990apj":[36,37],"1991":389,"1991mnra":22,"19932878":447,"1994":[389,537],"1994a":[52,53],"1995":[388,389],"1995apj":17,"1996":[27,424,437,537],"1996mnra":27,"1997":463,"1997apj":25,"1998":[83,86,389,537],"1998apj":28,"1999":[53,350,542],"19991":463,"199999809265137":444,"19999999999999998":423,"1999apj":53,"19e":448,"19th":387,"1d":[16,28,29,30,31,32,35,36,37,39,40,86,103,104,115,133,134,143,157,174,176,303,342,355,359,360,362,363,364,365,368,369,370,381,391,393,394,395,396,400,402,405,409,411,412,416,417,418,419,420,422,424,428,435,440,445,446,448,450,452,453,455,456,463,475,477,479,484,487,492,535,537],"1dc":[78,79,85,97,99,103,104,107,111,130,134,135,136,145,337,342,344,357,359,365,369,390,416,423,425,428,430,436,440,441,445,447,451,477],"1deg":186,"1e":[19,20,26,82,95,118,119,121,129,130,131,132,133,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188,197,198,201,205,207,208,209,213,219,220,222,223,226,228,230,231,232,236,241,243,244,245,246,249,253,256,264,270,310,324,326,349,360,418,420,422,424,426,428,430,432,433,436,438,440,441,444,446,452,456,457,473,477,481,504,505,506,508,511,512,516,517,519,520,521,522],"1e0":471,"1e10":[51,135],"1e11":446,"1e12":[471,481],"1e2":[418,471,473],"1e3":[456,481],"1e30":514,"1e4":[446,456,457],"1e40":472,"1e5":[422,456,473,491,492],"1e51":52,"1e6":[45,456,469,523],"1e7":[115,523],"1f":421,"1fhl":[394,407],"1fhl_name":69,"1h":[114,145],"1k":[97,103],"1kpc":473,"1lhaaso":[57,68,444],"1lhaaso_catalog":57,"1rc1":378,"1tev":[52,53,433],"2":[11,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,35,36,37,38,39,40,46,50,51,52,53,54,59,62,65,66,69,70,71,72,74,76,79,80,81,82,83,84,85,86,90,96,97,99,103,104,106,111,112,113,114,115,116,118,119,120,121,125,132,133,134,135,137,143,145,148,155,158,172,174,175,176,178,180,181,182,186,188,193,194,195,196,197,201,205,207,209,213,215,216,220,223,230,231,232,237,238,240,241,244,245,246,251,255,256,260,262,263,264,269,270,296,298,334,337,342,344,346,349,350,353,354,358,360,361,363,364,365,366,369,372,373,374,375,376,378,385,386,388,389,390,391,392,393,400,405,406,407,408,409,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,473,476,477,479,484,485,486,488,489,491,492,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,537,538,539,540,541],"20":[16,38,79,83,85,86,97,99,103,104,136,137,142,144,146,155,175,176,178,184,187,188,350,353,354,355,357,362,364,367,369,374,411,416,420,421,422,423,424,425,426,428,430,431,432,435,437,438,439,440,441,443,444,446,448,449,451,452,455,458,463,464,465,466,467,486,488,489,490,495,496,497,500,501,510,513,518,539],"200":[52,83,86,121,186,373,401,420,421,424,430,434,436,444,449,452,465,539],"2000":[84,97,99,103,104,115,210,214,216,218,233,239,389,432,433,434,448,456,465,537],"2000000":428,"20000000000000004":423,"20009124":447,"2000apj":256,"2000e":452,"2001":[89,389,424,537],"2002":[83,86,268,437],"2003":[269,437],"2003mnra":269,"2004":[82,89,437,458],"2004a":[39,40],"2004aph":[79,84],"2004mnra":24,"2005":[63,537],"200503":416,"2005a":444,"2006":[31,33,364,424,431,439],"200638":465,"2006a":256,"2006apj":[30,31,32,33],"2006ara":50,"2006mnra":[35,107],"2007":[367,537],"20072608":447,"2008":[38,82,205,253,456,467,504],"2008aj":38,"2009":[121,271,390,424,537],"20097159":447,"2009851":447,"20099855":447,"201":[52,449],"2010":[115,135,205,222,350,504,537,542],"2010a":[222,256],"2010mnra":135,"2011":[205,467,504],"2011jcap":[17,19,20,21,22,24,25,26,27],"2012":[86,390,537],"2013":[122,369,375,379,388,437],"20136":[78,458],"20137":458,"201388":498,"2013aph":255,"2014":[387,467],"2015":[52,82,363,366,387,456],"2015apj":[60,114],"2015jheap":256,"2016":[26,363,366,387,390,437,448],"2016apj":58,"2017":[205,354,356,366,369,385,387,390,430,455,504],"2017apj":[59,61],"2017icrc":455,"2018":[52,354,355,356,357,358,359,360,364,366,368,369,387,414,455,458,537],"2018a":114,"2019":[356,358,359,360,361,362,363,364,365,366,367,368,369,387,409,410,431,455,537],"202":[430,524],"2020":[358,369,370,371,372,373,387,431,432,440,449,526,527,528],"2021":[85,205,371,373,387,414,452,504],"2021345e":447,"2022":[374,375,387,390,457],"2023":[361,376,377,387,390],"2023arxiv230517030c":57,"2024":[386,421,452,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],"2024e":464,"2026":[361,390],"2028":390,"203":420,"2030":[361,390],"2031":390,"20326":417,"20327":417,"2033":390,"2034":390,"20349":417,"2035":390,"20350":417,"2037":390,"20372":455,"2038":390,"2039":390,"20396":417,"20397":417,"204":524,"2040469e":447,"2041222e":447,"20421":417,"20422":417,"2045":361,"2046":390,"2049":[390,444,465],"205":[401,430,449],"2050":390,"20508075688775":444,"2051":390,"20517":417,"20518":417,"20519":417,"205192":444,"20521":417,"2053315944536949e":455,"205357":444,"2054":390,"20559":465,"2058705e":447,"206":[424,444,524],"2061":444,"2062580e":447,"2064":390,"2064335":92,"2065":390,"2066":390,"2068682e":447,"2069":390,"207":[430,434,451],"2071":[361,390],"2075":377,"207520865":439,"207521465":439,"2076":390,"2077":390,"2079930e":447,"2085":390,"2089":[363,392],"20898":417,"20899":417,"209":[430,459],"20900":417,"2093":390,"2095":430,"2097":[390,416,423,425,428,430,436,440,455],"2097e":420,"2098":390,"20deg":[432,433],"20e":447,"20th":375,"21":[28,29,30,31,32,35,36,37,39,40,96,115,130,352,353,397,403,412,416,420,423,424,426,430,439,443,444,447,449,465,492,539],"210":[401,444],"2103":444,"2104":391,"2104353e":447,"2106":391,"2108":391,"211":[444,445],"2111":391,"2112":[391,464],"2114":391,"2115":391,"211770556360534":441,"2118":391,"2119":391,"211e":444,"212":[65,401,420,444],"2121":391,"2121164e":447,"2123":391,"2124":391,"2126":391,"2128":391,"2129":[363,392],"213":422,"2130":391,"2131":[391,444],"2132":391,"21325":456,"2133":391,"2136":[362,393],"2139":391,"214":[418,424,503],"2140":391,"2141":391,"2142":391,"2145":391,"2146":391,"21464892":465,"215":[65,401,444],"2150":440,"21500000000003":498,"2151":391,"2152":391,"21525376976022406":431,"2153":[391,444],"2154":[391,444],"2155":[395,437,439,440,444,453,465,504],"215686274509824":434,"2157":391,"2159e":96,"215e":444,"216":[217,420,421,449,451,533],"2160":391,"2162670e":447,"2163":391,"2164425e":447,"2166":391,"2169":391,"217":444,"2171":391,"21731921e":449,"21733761e":449,"21735587e":449,"218":[60,114,524],"219":[503,524],"2190":367,"2192":392,"2198e":422,"21t19":89,"21t20":89,"22":[65,79,81,84,97,99,103,104,121,150,155,158,353,387,400,420,421,422,423,424,429,438,440,444,445,448,449,450,457,458,459,463,464,465,476,483,486,488,489,492],"220":[428,444,451,539,540],"2200":392,"2201":[63,245,444,465,521],"2202e":465,"2204":392,"2206":392,"220e":444,"221":[363,401,420],"22149":424,"2217":392,"2217412e":447,"2218":[366,393],"2219":[365,393],"222":[58,444,451,524],"2221":444,"22245374e":113,"2227134679628":440,"22271346796282":440,"22271346796283":440,"2229":[362,392],"223":451,"2230":392,"2231":444,"2235":392,"2237":[392,465],"2238":392,"2239":392,"2240":392,"2243":392,"2244":392,"224436":465,"225":[373,401,444],"2250":392,"22500":426,"2254":392,"2255":[367,453],"225575051666":444,"2255890":[439,453],"2257":392,"2259":392,"226":[430,456,524],"22608":445,"2262":392,"22635140877790516":446,"2264":[361,392],"22646133647326874":446,"2264827111476982":446,"22648881839710966":446,"2265163003209506":446,"22662622801631419":446,"227":420,"2270":366,"2272":392,"2274":[368,393,416],"2276":392,"2277":392,"2278":392,"2278975306934438":446,"2279":[366,393],"227e":444,"228":[264,270,357,363,420,421,426,444,448,458,503],"2287":392,"2289":392,"229":[65,444],"2290":368,"2292":393,"2294":392,"2296":392,"2297":392,"22974080e":456,"2298":392,"22e":448,"22nd":387,"23":[89,158,349,353,375,387,411,417,422,424,440,444,446,449,451,453,465,488],"230":[401,424],"2300":392,"2304":367,"2305":392,"230542e":444,"2307":63,"2308":393,"230838":495,"231":401,"2310":392,"2313":393,"2314":393,"232":61,"2320":[393,444,445],"2321":393,"2323":393,"2326":393,"2327":[444,451],"23273":456,"233":421,"2330":393,"23306":424,"2332":451,"2334":393,"2335":393,"2338":393,"2339":[417,444,465],"234":[401,441,524],"234132519034915":449,"23413252":449,"2342":393,"2343":393,"234359264373779":448,"2343e":451,"2344":393,"2345":393,"2346":393,"2347":393,"235":[401,420],"2350":394,"2351":393,"23523":[155,385,420,421,429,438,445,446,448,458,463,464,476,479,538],"23526":[420,421,429,438,445,446,448,458,463,464,538],"235294117647083":434,"2354":393,"23559":[420,421,438,445,448,463,464,486,488,489,538],"2356":393,"2357":451,"2358":393,"2359":393,"23592":[420,421,438,445,448,463,464,486,488,489,538],"236":[401,444],"2360":393,"2362506e":447,"23628":456,"2365":393,"2366":393,"2367":393,"2368":393,"237":416,"23734":465,"2375":393,"2377":393,"2378":393,"2379":393,"2381":393,"238298":416,"2384":416,"2385":393,"239":[65,419,430],"23905561":447,"239439":465,"239557417":82,"2399":444,"239e":444,"23a":[60,114],"24":[25,27,52,53,82,83,86,89,352,353,366,370,404,409,416,424,440,444,445,449,451,452,455,456,463,488,504,511,520,521,522],"240":[97,99,103,104,111,444,445,477],"2400":393,"2401":393,"2404":393,"2405":394,"240e":436,"241":[444,524],"2412":393,"2414":444,"2419":416,"242835":65,"2431":444,"2433":394,"2435":394,"244":[65,401,420],"2440":444,"2441":394,"244140625":451,"2443672e":447,"2444":[394,424],"2446":[394,451],"2448":394,"2449":394,"245":[401,421],"2450":[394,451],"245152":430,"2454":394,"2455":394,"2459":394,"246":401,"2461":394,"24611324074":444,"2463":[369,394],"2464":394,"2465055e":447,"2468":394,"24685677e":447,"247":[65,401,421],"2470":394,"2472":394,"2475":394,"2476":394,"2477":394,"2478":394,"2479":[394,464],"248":401,"2481":394,"248122":444,"2483":394,"2485":463,"2486":394,"249":[22,401],"2490":394,"2491":394,"2492":394,"2493":394,"2496":394,"24968":416,"2497":394,"2498":394,"2499":394,"249965667724609":448,"24e":[444,451],"25":[33,52,83,86,96,134,145,158,264,270,353,366,373,387,408,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,496,501],"250":[449,537],"2501":394,"250185":448,"2502":[394,430],"2505":394,"2505121":92,"2505703":441,"2509":444,"251":[424,428],"2510":394,"251185":465,"2511884200000000":465,"2518":444,"251932":444,"252":[401,420,430,444],"2520":394,"2521":394,"2523":394,"2525":394,"2528":394,"253":[423,451],"2535":394,"2536":[394,451],"2537":451,"2538":394,"254":401,"2540":394,"2546":394,"254901960784338":434,"25496":465,"2551":394,"2552":[394,444],"2553":394,"2555":370,"2557":394,"255750516626":444,"2558":394,"2559":394,"256":[65,404],"2560538e":447,"2561":394,"2562":394,"2563":394,"2564":394,"2567":394,"2568720263723087":431,"257":423,"2574":394,"25743553e":446,"25763":424,"257642":444,"2579999":455,"258":[423,502],"2580":394,"2585":394,"2587":394,"2589254117941673":463,"259":[423,454,463,465],"2591e":444,"2594":394,"2595":394,"25b":17,"25e":451,"25t_":53,"25th":375,"26":[19,83,86,353,387,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,467,514,532],"260":[404,439,442,465],"2604":394,"2609":451,"261":[404,465],"2610e":428,"2616":394,"26173":424,"2619":394,"262":[404,423,424,451,465],"2620":394,"2625818241224747":446,"2627":394,"262728":455,"26272868097919794":453,"2628525e":447,"263":[424,451],"2634e":429,"2635":394,"2635108e":447,"2637":394,"26392":426,"2639554729438709":453,"264":[404,430],"2645":394,"264516271942103":463,"2648150":92,"2649e":446,"265":[32,363,416,424,430,451,463,465,466],"2651":394,"2654":394,"266":[363,423,424,430,432,436,449,451,465],"2660":394,"266192":416,"266567":529,"26665050077722524":453,"2667":395,"267":[65,423,424,430,451,455],"2672":395,"2673":395,"26739753":92,"2674":395,"268":[375,424,430,444,451,465],"2681":395,"2684":395,"2685":395,"268663733018811":453,"2687":395,"26883694":465,"26887783978974283":453,"269":465,"2692":395,"269385":444,"2695":430,"269627":455,"2697":395,"2699878e":447,"26a":[39,40,50,52,53,114,222,256,444],"26e":[444,451],"26th":371,"27":[355,424,430,439,442,445,465,539],"270":[417,424,444,451,465,524],"2703":395,"2705":395,"27057337686547633":453,"2707":395,"2708":222,"2709":395,"27093776e":447,"271":[423,424,465],"2711":395,"2712":395,"2713":395,"2715":395,"271777777777796":417,"27177778":89,"2718":395,"2719":395,"271e":424,"272":[423,424,428,444,451],"2720":[370,396],"27209":465,"2723":395,"2725":395,"2726":395,"2726e":465,"2727":395,"2727693":455,"2727e":420,"2728":395,"2729":395,"273":[79,404,418,424,465],"2730":395,"2731":395,"2733":395,"2734":113,"2735":395,"2737":395,"2738":395,"2739":395,"274":449,"27409496735322464":453,"2741":395,"2742":395,"2743":395,"274509803921596":434,"2746":395,"2747":395,"27473":430,"275":[423,444,532],"2750":395,"2751":395,"2752":395,"2753":395,"2755":395,"2756":395,"2759":396,"276":404,"2761":396,"2762":396,"2764":396,"2765":396,"2767":396,"2768":396,"277":423,"2771":396,"2772":396,"27727":451,"2775":396,"277522957147003":431,"2776":396,"2777":396,"2777074437073429":453,"2778":396,"2779":396,"278":[27,404,423,436,444,451],"2781":396,"2782":396,"2783":396,"2784":396,"2785":396,"2785e":420,"2787":396,"2788":396,"2789":396,"279":404,"2790":396,"2791":396,"2792":396,"2793":396,"2794":396,"2796":396,"2797":396,"2798":396,"2799":396,"27e":444,"27t20":85,"28":[21,24,65,89,358,387,418,421,422,423,424,430,432,436,443,444,448,449,451,454,455,465],"280":[65,404,420,423,449],"2800":[432,451,465],"2801":396,"2802":396,"2803":396,"2804":396,"2805":396,"2808":396,"2809":396,"281":[423,444],"2810":396,"2811":396,"28118133544922":444,"2812":396,"28120079":444,"2815":396,"2816":[396,451],"2817":396,"2818":396,"2818047723094509":453,"2820":396,"2822":[396,451],"2823":396,"2825456e":447,"2827":396,"2827988e":447,"2828":396,"2829":396,"282e":444,"283":[404,420,423],"2832":396,"283218":416,"283487":444,"2837":396,"28382603":447,"2838398":455,"28385358839966657":453,"2839":396,"284":[423,444,542],"2841":396,"2842":396,"28429":430,"2845":396,"2846":[396,430],"285":[404,423],"2852":451,"285f":[79,84],"286":[404,423],"2861432787940619":453,"286e":444,"287":[52,53],"2872":397,"28720322":92,"2874":[397,465],"28755283551095173":453,"287e":424,"288":113,"2880470e":447,"2885":397,"288e":418,"289":[404,423,440],"28905":456,"2891":397,"28958":424,"2896":397,"2897":397,"28e":[97,418,428,430,445],"29":[65,251,364,374,387,416,418,421,423,424,430,436,439,440,444,449,451,452,455,465,494],"290":[405,420,423,431],"2900":451,"2903":[397,451],"2903e":422,"2907":397,"291":404,"2912":397,"29170324":445,"291e":465,"2922477":92,"2924":397,"2927":397,"2929":397,"293":[423,524],"2930":444,"2931":397,"2932":397,"29355238360800506":453,"2938":397,"2939":397,"293e":424,"2942":371,"2943":397,"2944":[372,397],"2945":397,"2947":397,"2948":397,"295":404,"2950":397,"2951":397,"2953":430,"2956":397,"29585273e":456,"2959":451,"295e":[424,444],"296":[404,421,436],"2965":397,"2966":397,"2967":397,"297":416,"2971e":444,"2974":397,"2976":397,"298":[423,430,444],"2981":397,"2984":397,"29882214027996945":453,"299":[404,423,440,444],"2990":397,"2991":397,"2992":397,"2993":397,"2995484265169":437,"2996":465,"2998":397,"2999":[397,444],"299940468335294":430,"299995937905366":430,"299e":444,"299t":53,"29t20":439,"2_":19,"2d":[28,29,30,31,32,35,36,37,39,40,126,127,129,130,131,132,133,135,136,137,139,142,143,144,145,146,147,148,155,165,166,173,174,175,176,178,183,184,186,187,188,192,212,355,360,365,368,369,370,381,389,395,408,409,410,424,426,427,430,449,450,465,475,478,489,490,491,502],"2degx2deg":432,"2e":[180,416,417,418,432,433,436,439,444,446,451],"2e3":449,"2e6":456,"2f":[338,416,421,453,464,540],"2fhl":[58,69,394,406,407,444,465,474],"2hwc":[59,70,394,400,408,444,474],"2k":[97,103],"2m":[222,256],"2nd":374,"2s":433,"3":[19,20,27,28,31,32,33,37,38,42,45,46,50,51,52,53,54,59,62,65,76,79,81,82,83,86,89,97,99,103,104,107,113,129,130,131,132,134,135,136,137,139,142,143,144,145,146,147,158,161,175,176,178,181,184,186,187,188,194,196,205,212,215,223,245,251,253,255,256,262,263,268,276,298,307,326,337,342,344,346,349,350,352,353,355,360,361,363,364,365,366,368,373,374,375,380,385,388,389,390,392,393,398,400,402,405,406,407,408,409,410,411,413,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,469,472,473,476,477,481,483,485,486,488,489,492,495,497,498,500,501,504,509,510,512,513,514,515,517,518,521,523,527,528,532,536,537,539,540],"30":[24,52,65,79,97,105,135,174,356,357,362,369,376,387,389,416,417,420,421,424,425,428,430,433,435,436,439,440,441,444,445,446,449,451,452,453,455,456,465,477,483,488,489,495,496,497,510,513,514,515,518],"300":[71,83,86,423,425,429,432,433,436,440,444,456],"3000":[359,444],"30000":444,"3000000":523,"30000000":523,"3000020211954284":430,"3001":397,"3002":397,"3003":451,"300451666228708":463,"3004625872247901":429,"3005":397,"3006":465,"3006942":92,"3007":397,"301":[404,423],"3011061699260256":453,"3012":397,"3013":444,"301668796295":444,"302":[423,429],"30287":424,"3028e":451,"302e":444,"303":[420,423,444],"3030":397,"3032":397,"3034":444,"3035":397,"3035897658854436":431,"3037":397,"3037632e":447,"3038":[397,465],"3039":397,"304":[437,439,440,444,453,465,504],"3041":397,"3042":397,"3043":451,"3045":397,"3046875":[445,451],"305":[65,423],"3051":397,"3051827":92,"3051852":92,"3051856":92,"3052":397,"3053":397,"30535345877453707":453,"3054":397,"3058":397,"3058422e":447,"305e":444,"306":[404,539],"3060":397,"306196370000000":465,"3063":397,"3069":397,"306e":444,"307":423,"3070":397,"3071":444,"3072":397,"3074":397,"3075":373,"3076":397,"307e":444,"308":[423,430,454,498],"3080":397,"3081":397,"3083":397,"3085":397,"3086":397,"3088":397,"3089":397,"309":427,"3091":397,"3092":397,"30997":465,"30a":256,"30d00m00":376,"30e":[426,447,451],"30th":361,"31":[358,359,372,373,385,412,418,420,423,424,428,431,434,440,444,445,448,449,451,457,463,465,498,499,500],"310":421,"3100":397,"3106":397,"31067517":444,"3107":[444,465],"311":[420,498,524,540],"3110":398,"3111":398,"3112":398,"3113":398,"31139074e":446,"3114":398,"311489174710791e":465,"3116":398,"3117988e":447,"31186857659616535":453,"3119611261122878":453,"312":404,"3122":399,"3123":399,"3124":399,"3125":399,"3126":399,"3127":399,"3129":399,"312e":424,"313":[423,426,427],"3130":399,"3131":[400,451],"3135914081482271":453,"3136":400,"313714614138":445,"3138":400,"314":[409,419],"3140":400,"3141":400,"3145":400,"3148":400,"315":444,"3152":400,"3153":400,"3155":400,"315775":533,"3158":400,"316":[423,456,457,503,524],"3162":400,"316227":444,"316227766016838":448,"3165":400,"3168":400,"3169":400,"317":[404,423],"3173":400,"3178":400,"317a":256,"317e":444,"318":[404,420,524],"3180":400,"3182":400,"3185":400,"319":[405,456],"3191":400,"3195":465,"3197":400,"319725":455,"3199":400,"32":[79,174,424,426,427,428,445,448,449,465,501,502],"320":[97,99,103,104,111,442,444,445,451,477,524],"3202":400,"3207":400,"3208":400,"320884":525,"32095":465,"321":434,"3211":400,"3216":400,"3217":400,"3219":400,"322":423,"3222":400,"3228":400,"323":[421,423,430],"3230":400,"3232943":317,"3233356":317,"323779":268,"3237948931463171":453,"3238":400,"3241":400,"3243":400,"324424288934":445,"3246":400,"32465247":452,"3254":400,"3257":400,"3258":400,"326":404,"3262":400,"32684":465,"32684833":455,"327":430,"3272":400,"3276":400,"3277":400,"3278":400,"3279":400,"3279955e":447,"328":430,"3281":400,"3283":400,"3284":400,"32843":465,"32847":416,"3285":400,"329":[439,444,453,479],"3293":400,"3299":444,"329e":[420,444],"33":[421,437,443,445,446,449,465,479,504],"330":[405,423,451],"3301":400,"3302":400,"3302565e":447,"3303":400,"330376":65,"3304":400,"3305":400,"330505":455,"3306":400,"3307":400,"3308":400,"3309":400,"331":440,"3310":400,"3314":400,"33164865722698683":453,"3319":400,"332":[65,405],"3320":400,"3323":[400,445],"332525":444,"3328":400,"332e":430,"332f":[30,31,32,33],"3330487":92,"3331":465,"3331761":92,"3333":400,"33333333":349,"3333333333333344":434,"3335":400,"3337":400,"3338":400,"334":[113,456],"3342":400,"3343":400,"3346":400,"3347":400,"33484":416,"3349":400,"334e":444,"335":405,"3353":400,"3357":400,"3358":400,"335e":418,"336":[434,444],"3363":400,"3364130e":447,"336444e":444,"336606":416,"3368855e":447,"3369":400,"337":[405,423],"3374":400,"3377":400,"33787":453,"33788":453,"33789":453,"3379":400,"33790":453,"33791":453,"33792":453,"33793":453,"33794":453,"33795":453,"33796":453,"33797":453,"33798":453,"33799":453,"338":[405,444],"33800":453,"33800122":92,"33801":453,"3380311e":447,"3381":400,"338371":514,"339":[405,434],"3390":400,"3392":400,"3393":400,"3395":400,"3396e":428,"3397":400,"339835555384604":453,"3398360":447,"3399":400,"33e":441,"34":[52,53,65,388,416,420,421,430,445,449,451,465,505,506,507],"340":503,"34005":416,"3402":400,"3403":400,"340391":465,"3404":400,"34047":416,"3406":400,"340740":522,"3409":[89,400],"341":416,"3413":400,"3416":400,"3418":400,"342":405,"3420":400,"3423":400,"3426":400,"3428":400,"3434":400,"3438":400,"3439":400,"343e":418,"344":[432,435,444],"344237998426":529,"344238":465,"3442407308":530,"34424435138":531,"3443842":455,"3445":400,"3446":400,"3447":400,"3449":400,"344e":65,"345":[269,416,451],"3453":400,"3454":400,"345692":465,"3458":400,"346":[440,451],"34613004113985":431,"346488e":444,"3466":400,"3468":400,"347":[405,417],"3471":400,"347234":519,"3474":400,"347e":424,"348":[36,37,405,420],"3480":400,"3481e":428,"3485e":464,"3488":400,"348e":[65,444],"3491":400,"349530550405035":446,"349530725254468":446,"34953073943366":446,"34953075819191":446,"34953077463306":446,"34953079334042":446,"349530807529028":446,"349535814693404":446,"349536723056637":446,"349537158300407":446,"349537804239922":446,"34953807814367":446,"34953910575007":446,"34953932636892":446,"349542158419318":446,"349559366703698":446,"34971209244579":446,"349724940685938":446,"3499075e":447,"34e":[444,451],"35":[65,366,373,385,421,439,444,446,455,508,509,510],"350":[434,441],"3501":424,"350105":430,"3502":444,"35030398537787":446,"3503706026275275":453,"3504":465,"35052105086856":446,"350556388466543":446,"350d":434,"351":[405,444,465],"3515":400,"352":[405,444],"3521":417,"3523":400,"3529":400,"3529411764705888":434,"353":[24,405,465],"3535":402,"3536":416,"353e":430,"354":434,"3544":400,"35569283":447,"355804":465,"3559":400,"356":[465,466],"3561":400,"356263170943497e":463,"3568":400,"357":[444,465],"3570e":425,"35722435185":444,"3576e":417,"357e":424,"358":[430,444,465],"3584":400,"3585":430,"359":[405,430,444,465],"3590188e":447,"3592":400,"3599":432,"359e":465,"36":[65,82,130,296,430,432,444,445,447,465,511,512,513],"360":[363,449,467],"3600":[423,432,433,449],"36014":428,"36073833513766157":453,"361":[65,405],"3619e":464,"36228879":465,"36273":465,"363472509034498":453,"3639946":441,"364":[405,420],"3659253e":447,"366":464,"36669663417038234":453,"3669":402,"367":[405,434,451],"3674884":444,"368":107,"36834038301420274":453,"3684":402,"3689322e":447,"369":405,"3690":465,"3699":402,"36e":[443,444],"37":[416,421,423,446,454,456,514,515,540],"370":[434,444,451],"371":[405,421],"3710784e":447,"3712":402,"3713":402,"3715810e":447,"3718745":92,"372":[35,113,465],"3720":402,"3722":402,"3725490196078436":434,"3728":402,"373":[420,430],"3733":402,"3739292e":447,"374":[432,434],"3740":402,"37455141":465,"3748":402,"375":[405,449],"3750":430,"37506":465,"37517":424,"3752":402,"3759377929871826":453,"376":65,"3760":402,"3761":402,"3765":416,"376841986455684":440,"3777":402,"37773":424,"3779":465,"3783":402,"379":405,"3792":451,"3796":402,"3797":402,"38":[22,65,416,417,440,444,449,451,465,516,517,518,523],"3802":402,"3804":402,"3806":402,"381":[420,451],"3810":402,"3812":[444,465],"3812120e":447,"3812160e":447,"38143003":92,"3817":402,"3829":465,"382e":420,"383":[65,405,444,449],"3833":402,"3837":402,"383e":65,"3842":402,"3846":402,"3848912826152664e":465,"3856":402,"3860":402,"3862":411,"387":[405,465],"3872":444,"3873":402,"3874":402,"3876":402,"387834":465,"388":502,"388405":465,"3885947175689592":453,"3886270e":447,"3887":402,"389":354,"3892":402,"3895":402,"3898":402,"389e":465,"39":[17,18,21,22,24,25,27,59,440,443,444,449,456,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],"390":[400,442],"3904":402,"39042":82,"3905":402,"3906":402,"391":444,"3915":402,"39151":426,"3918":402,"3919677734375":420,"392":[405,421,524],"392156862745098":434,"39224":424,"3925":411,"393":[189,190],"3933":402,"3935":417,"3936":402,"394":[405,420],"3941":402,"3945":[417,444],"3947637541758":440,"3948":403,"395":405,"3950":[374,411],"395004":465,"3956":411,"3959":403,"396":405,"3962942e":447,"3966":403,"397":419,"3970":375,"39728":465,"3975":403,"3979":[403,538],"397918129147546":[385,538],"39791813":[385,538],"398":[405,428],"3981":465,"3981075200000000":465,"3983":403,"3986":403,"3987":403,"3988":403,"398e":444,"399":[430,435],"3990":403,"39e":444,"3d":[28,29,30,31,32,35,36,37,39,40,46,47,130,136,143,144,146,155,355,358,359,360,364,365,368,369,370,381,389,390,391,393,394,395,396,407,408,409,416,418,420,421,424,425,426,430,431,432,433,434,435,439,440,445,446,448,449,450,451,452,453,455,456,457,463,464,475,477,478,479,484,486,487,491,535,537],"3d33m15":65,"3dataset":429,"3e":[20,113,430,433,438,441,444,451],"3e4":456,"3e5":456,"3e6":523,"3e7":523,"3f":[113,431,539,540],"3fgl":[60,65,71,207,244,372,401,404,406,407,408,418,444,452,465,474,493,524],"3fgl_name":69,"3fhl":[61,72,82,115,117,121,260,369,407,408,418,424,432,434,444,449,450,451,452,456,465,474,476],"3fhl_data_fermi":429,"3fhl_dataset":[260,429,450],"3fhl_model":[260,429,451],"3g":[443,444],"3hwc":[62,73,400,411,444,474],"3ml":[367,456],"4":[19,20,22,26,28,29,30,31,32,33,35,36,37,38,39,40,52,54,60,65,79,83,86,96,97,99,103,104,116,121,132,135,143,155,158,174,175,176,178,184,187,188,197,198,201,205,207,208,209,213,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,255,260,261,296,336,349,350,352,353,361,363,366,369,373,374,385,388,397,399,400,401,404,406,407,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,467,472,473,474,488,491,492,495,496,499,504,509,522,523,531,537,538,539,540,541],"40":[59,103,104,356,401,417,418,420,421,428,430,439,440,449,452,455,465,488,510,513,518,521,522,523,539],"400":[121,425,430,434,444,449,465,532],"4000":411,"40000":[155,464],"400023002295445":463,"400056":416,"40050506591797":444,"40051":426,"40051035":444,"40071076":92,"400x200":434,"401":421,"40112":465,"4013":411,"4014":411,"4015":411,"4017":411,"4018":411,"402":[135,421],"4022":411,"40235":428,"4024":411,"4025":411,"4026":411,"402712":444,"403":[405,430,451],"4035":465,"4037":411,"4043":411,"4044":411,"40481":428,"405":357,"4051":411,"40525":428,"4054":411,"4058":411,"406":465,"40611":465,"4067":411,"407":444,"4071":411,"4073":411,"4073799600000000":465,"4075":411,"4076":411,"4079":411,"408":[420,449],"4080":411,"4080942e":447,"40822469e":452,"4083":411,"4084":411,"4088":411,"4089":411,"409":420,"40919":424,"4093":411,"409416":465,"4095":411,"4098":411,"40a":59,"41":[65,82,89,363,444,445,449,456,465,525,526,527],"410":434,"41009347393684":445,"4103":411,"4105":411,"4106":411,"4107":411,"4108":411,"411":465,"4110e":444,"4112":[113,411],"4113":411,"4115":411,"41176470588239":434,"4119":411,"411e":418,"4120719e":447,"412165":430,"412779907405":444,"413":430,"414":[405,428],"41405230487":431,"41415047":92,"4142135623730951":107,"41449":424,"4144e":428,"414e":440,"415":[405,514],"4155":[444,465],"41584196":437,"416":[65,444,448],"416e":440,"417":[444,461],"418007850646973":385,"41866":456,"419":451,"4191":414,"4198250e":447,"41995":424,"419e":444,"41e19":[19,20],"42":[25,27,89,135,317,363,423,430,444,447,448,449,453,455,492,494,528,529,530,531],"420":420,"42050348":445,"4208":414,"4209":414,"421":[405,434,465,537],"4210":414,"4212":414,"4212028e":447,"4213":414,"4215":414,"4216":414,"4219":414,"422":[39,40],"4220":428,"4221":412,"4225498e":447,"4225631e":447,"42267":430,"4226731":430,"4231":[412,414],"4236":424,"42361":424,"42399798":430,"423e":113,"42400":430,"4242":414,"4243":414,"4245":414,"42463":456,"424649":445,"42474":465,"424e":424,"425":465,"4252":414,"426":444,"426313":509,"4264":414,"4268":412,"427":421,"4275":[412,414],"4277":414,"4280":414,"4281":444,"4282":414,"4288":414,"429":420,"4294":414,"42e":[446,451],"43":[255,317,363,420,421,430,440,445,449,465,492,532,533],"430":444,"43000":[52,53],"4301":[412,414],"4303606e":447,"4305":414,"431":[122,357,434,445],"43113":416,"43137254901962":434,"4313847458879893":453,"4319":465,"43197":424,"4324":[412,414],"4326":414,"432878":444,"432e":444,"433":424,"4336":[412,414],"43366":532,"434":[420,444],"43416595":441,"4344":412,"4346":414,"434967":506,"435":405,"4350":414,"4351637481047363":453,"4352":414,"435566":512,"4359":[412,414],"435l":444,"436":[405,420],"4360750e":447,"4369":414,"437":[444,451],"4370":414,"4373240195300975":453,"438":451,"4380":[413,414],"4381":377,"4382":413,"439":420,"4393":[413,414],"439306769641669e":463,"4394":413,"4395":414,"4397":[413,414],"439e":444,"43e":451,"44":[21,50,82,317,419,423,439,441,449],"4402":414,"44055555555555603":89,"4406":414,"4409":414,"4412":[413,414],"4417":414,"4418":414,"4420073e":447,"4420222e":447,"4428":414,"4428634e":447,"442e":424,"4430":414,"44318":445,"4435":[413,414],"4444":414,"445":424,"4450":465,"44528685":465,"4453":[413,414],"44573":89,"4458":414,"4459":414,"446":[451,540],"4466":[414,428],"4466832000000000":465,"447":405,"44742":465,"44749e":416,"447552":416,"447e":[430,444],"447l":17,"448":434,"4480056e":447,"44802852":465,"4481":444,"4486":[413,414],"448e":429,"4491":376,"4495":414,"44e":385,"45":[51,54,420,423,429,441,445,449,450,452,467,492,496,497],"450":[421,451],"4500":[413,414],"4504":414,"4506":414,"4508":414,"4509803921569":434,"451":420,"4510":[414,428,465],"4515":443,"4517490659800822":438,"4520":413,"4521":414,"4524":413,"453":451,"454":420,"4545":414,"455":[405,418],"45515263080596924":417,"4558750":430,"455e":65,"456":405,"45646095":441,"457":[256,405,451],"4570595746845":440,"457251":465,"4574":413,"4575":89,"4578":413,"458":[434,444],"45856":465,"459":[405,428,435,445,451],"4593":413,"45935":465,"45\u00ba":457,"46":[53,65,103,104,363,444,449,452,456],"460250000":82,"461":405,"4618695378303528":417,"4619":413,"462":[405,420],"4620":377,"4620e":444,"46225":424,"463":465,"4631":413,"464":436,"4642048e":447,"4647544e":447,"465":[444,451],"4653":413,"4657":413,"465784":465,"466085":502,"46711":424,"4677":413,"468":[441,444],"4681":413,"4684":417,"468805426856864e":52,"468e":65,"46e":[79,425,430],"47":[65,440,444,449,465],"470588235294144":434,"4711":465,"4721":413,"4728":413,"473":405,"4732":424,"474":405,"474e":444,"475":[405,451],"4753":413,"475468":416,"4755":413,"4772":413,"47797":424,"477e":444,"478":405,"47802":453,"47803":453,"47804":453,"47827":453,"47828":453,"47829":[78,453,458],"479":459,"47e":444,"48":[33,155,388,428,429,449,451,456],"480":[417,444,451],"480554966147":428,"48068":424,"480e":444,"481":[354,405],"4814":465,"4819444e":447,"482":416,"48215685":92,"48248":444,"4825":[444,465],"483":420,"4834488e":447,"484":[405,466],"48442":251,"4848653":444,"4849":[444,465],"485":405,"485p":[36,37],"48602294921875":417,"487":[405,463],"4875723e":447,"4876":413,"4881":[231,232],"48871":416,"4888969467051004e":463,"488z":27,"489e":444,"48e":[444,451,464],"49":[53,424,428,444,451,456,463,491],"490":25,"4904078e":447,"491":420,"4913":413,"49152":456,"493":[25,420],"4930435940405":428,"4933657e":447,"4936":413,"4937":413,"49417615":82,"49447596":426,"4948132045415":440,"4958277":92,"496":419,"496021":455,"4963":465,"4966":465,"4968236e":447,"497":420,"4971704e":447,"498":465,"498784":444,"498e":[444,465],"499":[65,444],"49919925926":533,"49972277488662115":453,"4999833830074":430,"4d":368,"4e":[441,444,451,523],"4f":[538,539,540],"4fgl":[63,74,245,246,372,392,394,400,402,429,444,450,452,474,493,524],"4th":[361,387],"4yr_catalog":60,"5":[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,50,52,53,65,79,83,86,97,98,99,102,103,104,107,111,113,114,116,118,120,132,133,134,135,136,137,142,143,144,145,146,155,158,175,176,178,180,184,186,187,188,197,198,201,204,205,207,208,209,212,213,215,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,256,278,310,339,340,344,346,349,353,354,356,360,361,363,364,365,366,368,372,373,374,380,385,388,390,392,393,400,402,404,405,407,408,409,413,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,472,473,476,483,486,488,489,490,491,492,495,496,497,498,500,504,505,510,512,513,514,518,519,526,527,528,529,531,537,539,540],"50":[83,86,89,317,356,376,416,421,422,428,436,439,440,441,444,445,447,449,451,452,453,455,456,458,463,464,465,488,491,498,540],"500":[175,176,178,184,187,188,424,430,432,433,449,455,456,465,495],"5000":[19,20,83,86,467],"5000056568267741":430,"5000e":423,"50022222":89,"500249":444,"5004":430,"502":405,"5029747":422,"503":405,"5030":465,"504":28,"5049":465,"505":[65,444,445],"505523195905":428,"506":405,"5066":444,"507":405,"5074834":92,"5078068":92,"50807568877":444,"509":421,"509e":444,"50e":[423,451],"51":[52,53,65,420,428,434,438,463],"510":405,"5106":465,"51095676":441,"511":[65,405],"51179":[350,542],"512":420,"5126":65,"513":[385,449],"51312":430,"5144":[89,416],"514854":455,"51544":[423,432,433,436],"5162628e":447,"518":[405,451],"5188338e":447,"51910":89,"5192420e":447,"5194769e":447,"51948705e":452,"519617":499,"52":[53,113,155,416,417,424,426,428,440,444,455,458,465],"5205":456,"52074074074":79,"521":406,"523":[406,449],"5230376e":447,"52318414":92,"5237647004325865":453,"523891018514":444,"523a":[222,256],"523b":22,"524":[406,444,451],"5248":465,"524807800000000":465,"52587":424,"526":[406,435,534],"52607":465,"527":[406,456],"528":451,"52826166":444,"5283":[444,465],"52839183495354":440,"529":406,"5292":445,"529411764705883":434,"5297030e":447,"52e":[441,463],"53":[28,430,495,504],"530":406,"53025":89,"530e":440,"531":[406,434],"53213":430,"5324402":92,"5326744":92,"5326841":92,"5326859":92,"533":444,"53343":[385,438],"53344":438,"53345":438,"53346":438,"53347":438,"53348":438,"5345275e":447,"535":[406,420,444],"535058216604496":256,"53566":416,"536":420,"53616":222,"5379366335762":440,"539":[256,451],"5390438":92,"539397":444,"53945":439,"53946":437,"539e":444,"53e":[385,423],"54":[65,420,444,447],"5400":445,"5407363826067":476,"5407363826070":476,"541":406,"5411":416,"5427520e":447,"54282":424,"5438860e":447,"544":[406,444,456],"545":[406,420],"54566271":539,"545y":[39,40],"546":406,"5461745":92,"546339":504,"54676837e":446,"54682":[424,444,456,465],"547":[406,416,444],"5477":444,"54772":444,"54892":424,"548e":444,"549":406,"549019607843138":434,"54e":451,"55":[39,42,83,86,440,441,446,450],"550":420,"55026401977972e":463,"55045":444,"551":[444,502,534],"55197":[350,542],"552":444,"55275":456,"553":444,"553337":465,"553417":517,"5538":465,"5538942e":447,"554":65,"55410":444,"5545130e":447,"554e":418,"556":[406,420,540],"5561760e":447,"5563052715230388":463,"557":[406,451],"55775":444,"558":406,"558640":526,"559":406,"5594":79,"56":[416,441,449,457],"560":[37,444],"5606985":441,"5607778e":447,"56093766":92,"56141":444,"562":444,"5622482":92,"562253":436,"56353481":539,"56393115380234":431,"563e":[420,430],"564":[268,406,420,451],"56413952067279":431,"5644":445,"565":406,"56506":444,"565095":416,"566e":420,"56711":465,"5686274509803928":434,"56871":444,"569":406,"56922612":539,"5692809e":447,"56973":465,"57":[33,420,421,424,426,430,440,441,442,449],"57011":430,"571":444,"57185":476,"5719922e":447,"571e":444,"572":421,"57233":465,"57236":[424,444,456,465],"572e":418,"573":[65,420,465],"57300957":158,"5754970e":447,"576":451,"5760":465,"57602":444,"5763635e":447,"576413":496,"5768262e":447,"577398":456,"5779092e":447,"578":[444,539],"579":444,"57944657407":444,"57967":444,"57e":444,"58":[385,388,423,428,431,444,448,449,451,458,463],"580":540,"581":421,"5819e":422,"582":406,"58332":444,"5833e":444,"5835918e":447,"5842497e":447,"585":444,"58540702":92,"5867488e":447,"58693695":441,"58698":444,"586e":424,"5882352941176467":434,"588e":444,"58909":440,"58926":424,"5892966e":447,"5895":417,"58e":[436,444],"59":[79,426,436,444,448,458,465],"590":420,"59000":[217,533],"59001":217,"59063":444,"5908":444,"590835686434463":453,"591":[406,444],"59100":[532,533],"59123":[526,527,528],"591296":530,"5915030546513255":437,"5915e":[444,464],"59200":532,"59233":452,"59235":[79,455],"59240":452,"59250":452,"59265":416,"593":406,"59300":441,"59344":465,"59348":465,"59365":533,"594":[406,420],"59400008":92,"59428":444,"59451":424,"5951631e":447,"596":451,"59696":424,"596e":444,"597":456,"597774":447,"59793":444,"598":465,"5985":465,"5987726":92,"599":[406,434,439,451],"599625":455,"59976":444,"599999904632568":444,"599e":424,"59d09m41":444,"59e":[444,451,456],"5a":58,"5e":[423,433,444,451],"6":[16,28,29,30,31,32,35,36,37,38,39,40,50,52,53,65,80,82,83,86,95,97,103,113,118,129,130,131,132,133,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188,217,256,337,340,353,356,361,365,366,369,374,382,385,398,400,402,408,409,413,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,467,471,488,492,497,501,521,537,539],"60":[65,86,137,413,421,424,436,444,446,456],"600":[421,424,429],"6000000000000001":452,"6002e":464,"600661":447,"60075":447,"60090769e":452,"600e":420,"6018166e":447,"601e":444,"602":420,"603":[451,465],"6033":416,"60342":[529,530,531],"60350":418,"603625":447,"604":420,"6046689e":447,"606":459,"60603928":452,"607843137254942":434,"609e":424,"60e":444,"61":[65,395,421,436,444,451,540],"610":451,"61051":456,"6105760e":447,"611":[424,539],"6116853":444,"611e":444,"6125":458,"612a":114,"613114":437,"61422433":92,"61489":447,"614e":424,"615316":465,"617":421,"617835":447,"6181862e":447,"61862":217,"619":444,"6194453e":447,"619794257232":463,"62":[420,426,444,457,464],"620":444,"620398":447,"6205":465,"62111":424,"621499":465,"6218742e":447,"6219":418,"622":[406,418],"62258":444,"6227766":449,"62277660168379":449,"6228e":418,"623":[434,435,444,465],"62320":418,"623397":447,"62341325":449,"623413251903492":449,"624":451,"624122":430,"624d":24,"625":454,"62503":444,"62514628":447,"6253652e":447,"6259962e":447,"6266":465,"6267247":465,"627450980392158":434,"628":406,"62842028":445,"6295e":436,"63":[416,420,422,445,448,457,458,463,464,486,488,489,492],"630":[78,451,458,463],"6309576500000000":465,"630e":65,"631":[406,428],"631155605":432,"631159205":432,"631170005":432,"631173605":432,"631177205":432,"631180805":432,"6318811e":447,"632627":465,"633":[81,97,99,103,104,155,421,429,448,463,464,488],"63307":79,"63308":[438,464],"633083":450,"63310241699219":429,"63326":424,"6333":89,"63342":465,"633600":451,"635":406,"63500212963":444,"6354":465,"63541":455,"636688324856333":440,"638":451,"639":444,"6390":416,"63902":416,"6397":465,"63e":[436,445],"64":[39,65,79,113,174,388,444,456],"640":406,"6402822e":447,"641":[406,465],"64103":455,"6413":430,"641635917844372":431,"6417":430,"6419578e":447,"642":465,"6429005895278312":453,"643":[30,31,32,33],"64323":424,"64438":456,"6444":416,"645":445,"6451":430,"6464":416,"647":406,"647058823529452":434,"6471115e":447,"64794383e":452,"648":406,"648e":65,"649":406,"64987376":92,"64e":421,"65":[62,373,388,390,445],"650":445,"65072725387803":440,"6509":416,"651":444,"651058":465,"6514":465,"652":429,"6522806":465,"652368617859867":429,"653":[406,417],"65357608e":447,"653e":424,"654":[416,444,454],"65412":430,"654259":523,"654e":444,"655":424,"655283":424,"6554088e":447,"6556":424,"6556248e":447,"655e":65,"656":539,"65603222222":456,"65603794185":444,"6577182894355391":453,"658":451,"658909145253801e":465,"6589622747787678":453,"659":[420,424],"65e":107,"66":[52,53,388,391,423,436,445,446,451],"660":406,"6604475":430,"660e":465,"660fals":418,"661":406,"66104":416,"662":444,"6623e":428,"663":539,"663742400000000":465,"664502403":455,"664502405":455,"664502408":455,"664502409":455,"664502414":455,"6652219e":447,"6654036168695552":431,"6659":424,"66650390625":417,"6666666666666666":528,"666666666666696":434,"66813":430,"669":421,"669670":520,"66984341":447,"66e":[428,445],"67":[17,388,444,465],"670":444,"671616":416,"6728":[444,465],"673":[432,458,526],"67304":92,"67375":416,"67457342435522e":465,"676836990188792":421,"6768e":421,"677":406,"6772235e":447,"67759236e":447,"678":[82,431],"67824":445,"6784":539,"67861":447,"678684049503813e":421,"679":406,"679478012854058e":421,"6795e":421,"67992517":92,"67e21":443,"68":[65,79,91,136,142,144,145,146,148,212,388,416,444,446,447,449,455,465,540],"680":[421,451],"6803":465,"6812310184489":440,"68125":447,"6823":416,"682934":515,"683":420,"684":155,"6851":440,"68542112":92,"686":421,"68628538586":445,"687":451,"687214":448,"687500":448,"687685":444,"689":420,"68e":[428,444],"69":[97,424,440,444,445],"690":65,"690311850083152":431,"690557685186":444,"6909290e":447,"691":444,"69138":424,"691680":[97,445,451],"692":424,"693940":428,"694":421,"6953125":445,"69543812":92,"6959369197218669":453,"695e":436,"697317":456,"69735":447,"697e":418,"697fals":418,"6985":417,"6992":430,"699e":424,"6e":[418,444,451],"6h":457,"6th":387,"6u1pmjp":452,"7":[30,31,38,52,53,65,83,86,113,155,158,215,339,340,349,353,354,361,365,366,369,385,389,390,392,393,399,400,405,406,407,409,410,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,492,495,496,532,539,540],"70":[65,86,97,423,430,444,445,539],"700":[357,419,433,450],"70000000e":452,"7000e":452,"70016":430,"7007":430,"701":488,"701638821103":440,"702":[438,444,464],"703":385,"70358483e":452,"704":451,"70428":465,"70437":447,"705":465,"70546":424,"706e":444,"707e":429,"708":[420,421],"708e":424,"709":406,"7097381e":447,"70e":452,"71":[33,423,438,451,540],"710":406,"71067811865478":444,"7116851":452,"712":431,"71220672":445,"7123895e":447,"712e":[438,464],"713":[406,444],"7132e":465,"714":444,"714e":424,"715":465,"716":449,"716062":455,"71693826":[439,453,479],"717":444,"71795506":465,"7184":465,"719":[406,420,451],"7190994e":447,"7195":444,"719e":444,"72":[392,444,448,465],"720":[433,444],"7200":436,"721e":424,"722":451,"72217":465,"722557505166":444,"723":424,"723e":444,"7240965e":447,"725":444,"725490196078432":434,"727":451,"72775":465,"727e":440,"7284447e":447,"73":[416,465],"7303":465,"731":406,"732e":[65,444],"733":[65,406],"733360190578827e":463,"734":465,"7350250533013533":453,"7350380e":447,"7351418e":447,"735e":444,"736":[539,540],"737":420,"738":[406,444],"7385727e":447,"739":[406,420],"7395744e":447,"739e":65,"73e":[444,463],"74":[416,426,465],"740":406,"740e":424,"742":451,"743e":444,"744":430,"74427":430,"74465974e":447,"74479":424,"745098039215687":434,"746":406,"7471700e":447,"7479085e":447,"748":444,"748259":428,"75":[65,342,420,465],"750":540,"75267735":465,"7526e":422,"753":[406,421],"7537086e":447,"754":406,"75408483":465,"7555":448,"7559":465,"756":444,"7567":416,"7580410e":447,"759":406,"7596682e":447,"75e":[444,464],"76":[431,449],"760":524,"7613":385,"7613e":425,"761c":28,"762":406,"762199399999986":502,"763":406,"7637308880733709":453,"76419591747674":440,"7642":424,"7647":465,"764705882352942":434,"76473":424,"7652512e":447,"765e":[424,436],"766":[406,424],"7660168382":444,"7660365375951":463,"766d":455,"767":406,"76739":444,"768000":[97,445],"768048":92,"7681656e":447,"76837444":441,"7684028":465,"7692170e":447,"76e":451,"77":420,"770":65,"771667":458,"77174":424,"771e":444,"772":[406,416],"77206":465,"772078":510,"77218":424,"773":444,"7733e":444,"77351":424,"77358627319336":417,"774":[406,436],"7743835449219":420,"774e":[424,444],"775":[65,435,451],"7752244878226383":430,"7755386e":447,"776":456,"7760":465,"7765957e":447,"77678":416,"7769775":455,"777":406,"77751797":92,"777e":[65,418],"777l":35,"778":[406,420,444],"77827941":449,"778279410038923":449,"779":[421,444],"7796942":465,"77e":[423,444],"78":[449,450,457,464],"780":[31,113],"7800e":420,"7804888e":447,"780e":113,"78188":424,"78188096":92,"782":456,"7827941":449,"78279410038923":449,"783":[406,444,465],"78332719":430,"78333":430,"783587001383003":455,"783e":430,"784":[407,421],"7843137254901955":434,"78499999999997":498,"785":[419,420,498],"7853981633974483":531,"787":[65,155],"7872234642813915e":438,"7875405607868806":453,"7876233e":447,"788":444,"7882e":422,"7887840e":447,"788e":444,"789":406,"78910994":92,"7894":430,"78952750835169":440,"78e":451,"79":[417,444],"790":[406,420],"791":407,"791391":527,"7913e":420,"7922":416,"793":407,"79432823":452,"79469899":430,"7947":424,"79470":430,"794708":507,"795":420,"795433":494,"796":[407,451],"797":407,"7972":448,"798":407,"798218":416,"7990194e":447,"7997221e":447,"799999952316284":444,"7c":449,"7d":444,"7e":[444,451,452],"7e955f":388,"8":[17,18,21,22,24,25,27,38,40,50,65,83,85,86,97,99,103,104,116,129,130,186,215,217,278,349,353,356,357,366,389,390,393,395,396,400,401,402,405,406,407,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,472,474,483,488,492,495,504,515,523,539],"80":[158,420,422,424,445,449,456,488,514],"800932":444,"801":[465,488],"801668796295":444,"802":[451,465],"803":[424,502],"8031431e":447,"8037638e":447,"803921568627494":434,"804":451,"804492":436,"8062607e":447,"80683246":447,"8069e":428,"807201":465,"8075":[444,465],"8075185":444,"8086":424,"808687936570502e":446,"80871364":92,"8090746":455,"809505":444,"80982039":447,"81":[396,504],"810":[407,444],"810000":436,"8106":436,"810e":444,"811":407,"8115337251905373e":446,"812":407,"812075194992371e":446,"8122169596532167e":446,"8122425483643125e":446,"8122e":446,"812358724314062e":446,"8129257829574434e":446,"812951371538087e":446,"813":407,"814":407,"8150":465,"8157971601581226e":446,"816":[407,431],"816e":444,"817044":531,"818388e":465,"81847286":441,"818954":500,"818e":418,"819":444,"819516":513,"81e":504,"82":[65,388,440,444,492],"820":[407,440,448,454],"8205513":455,"8222980e":447,"823":420,"82352941176471":434,"824":[122,407,451],"8241471833009617":453,"825":[407,416,444],"8256":465,"826":407,"826414166666":89,"827":407,"8272":467,"82739":424,"8280e":440,"8290458e":447,"8293":465,"82946153":465,"82e":429,"83":[30,65,79,81,89,97,99,103,104,155,158,420,421,422,424,429,438,445,448,449,450,457,458,463,464,483,486,488,489,492],"830":407,"8300":465,"831":407,"832":407,"83242471":447,"833":[407,421],"833333333336":441,"833e":424,"834":407,"8341884287660133":453,"8349780e":447,"835":407,"835e":430,"835fals":418,"836":[407,424,441,444],"836731":444,"8369650e":447,"837":[407,451],"8377268e":447,"838":424,"84":[24,388,420,422,430,444,451,492],"840":[407,424],"841":[440,444],"84196311":92,"842":[407,444],"84233":424,"843":[59,416,441],"843137254902004":434,"843e":65,"8441040e":447,"844770648146":89,"845":408,"84529":444,"8455480e":447,"845693":416,"846":[424,444,539],"847":407,"8475576e":447,"8475650e":447,"848e":436,"84e":428,"85":[83,86,414,430,495,496],"851":407,"85157506":465,"8515948e":447,"85188496e":447,"85202":465,"85287":456,"852e":444,"854":407,"854166666664":441,"85416667":439,"85469291":92,"855":407,"85527":430,"85527359":430,"8555500e":447,"855887646638273e":463,"85624":425,"85625":425,"8568":465,"856e":444,"8570719e":447,"85722435185":444,"858":407,"858e":444,"859":[407,420],"85900":430,"85900392":430,"85925":465,"8593054":444,"85e":444,"86":[418,420,421,424,449,465,476],"860":[424,427,444],"861":465,"86111111":439,"861150":418,"8613613e":447,"862":466,"8620":436,"8623":[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],"862745098039234":434,"864":[407,420,465],"865":[407,424],"86676":456,"866831":421,"8669":416,"8673":430,"868":[407,444],"86831929":92,"869":419,"86904699645729":440,"8699":416,"8699165e":447,"87":[65,430,449,464],"870":[65,407],"871":407,"872":407,"872e":424,"873":421,"8733348":455,"873581766271":431,"873659477745188":453,"874":417,"875":407,"876":[440,442,451],"8767":424,"8769240e":447,"87710186":92,"877563":444,"878":[444,451],"87897":430,"87897418":430,"8799800e":447,"87e":21,"88":[388,410,420,422,430,431,444,449,465],"881":[407,416,424],"88113384":426,"8815212313941426":453,"882":[65,424],"882352941176466":434,"883":407,"8834862e":447,"883e":65,"884":407,"88470839":452,"885":407,"886":444,"8865":465,"88781":424,"888":407,"8885138e":447,"889":444,"8893600e":447,"889e":424,"88e":[418,444],"89":[33,421,449],"8908866e":447,"8909e":440,"890e":65,"892":[420,451],"89243456":465,"8926":465,"89287":416,"893":407,"894":418,"8943121e":447,"89492144e":446,"895":441,"8954039e":447,"89595846":452,"89709472":465,"898":407,"8986348363207728":453,"89873":430,"8989213":430,"898e":444,"899":[65,426],"8999":430,"899a":256,"89e":445,"8e":[418,428,431,433,451,456,523],"9":[31,33,35,65,79,83,86,215,217,308,314,346,353,354,358,366,385,391,393,404,407,409,412,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,491,497,501,502,510,513,526,539],"90":[57,65,372,423,429,430,444,449,452,467],"900":444,"9002269877996247":441,"900269":447,"9023670e":447,"90242058e":445,"9032163":82,"904":465,"905":444,"9053655e":447,"9053906e":447,"906":[407,444,445,454],"90605275e":456,"90685":424,"907":444,"9074812e":447,"9077294":455,"908700583573673":463,"90e":[97,421,428,445],"91":[423,449,492],"910":420,"910123":452,"911":407,"912":444,"912525e":465,"912779907405":444,"912868843587422e":438,"913":[420,440],"913196574074":438,"914":65,"915":444,"91507":[97,445],"9163195e":447,"91719":445,"918":65,"918365":444,"919":407,"919e":444,"91e":451,"92":[423,424,449,455],"920":420,"9205875e":447,"921":421,"9215375e":447,"922":[431,435],"922210":518,"92234009259":[385,438],"923e":424,"924":421,"9240e":452,"92490":424,"925106":430,"925e":424,"9269494e":447,"9277492e":447,"928":444,"9280475e":447,"929":[416,421],"93":[65,423,424,449,455],"93026":444,"9303":[444,465],"932":407,"932703":497,"93271046296":438,"933":407,"9332549000000":465,"9343":416,"935826709880043":437,"936":454,"93702":456,"938":440,"9382336444241555":453,"938e":[430,444],"939":[264,270],"9391360e":447,"93988308":92,"93e":444,"94":[423,444,449,455,463,465],"940e":444,"940fals":418,"94111838":92,"941176470588236":434,"94186555556":[385,438],"943282347242818":463,"9445e":425,"945":442,"9453950989269149":453,"945e":424,"9462":430,"946923":251,"94722599":430,"94723":430,"948683":416,"9489822e":447,"949":451,"9499210e":447,"94e":[430,444],"95":[33,65,136,142,144,145,146,148,199,200,204,212,215,227,229,237,238,242,248,252,423,424,430,436,444,445,446,449,450,455,495,540],"950":407,"95024543e":446,"951":524,"952":65,"9529719e":447,"953":451,"95421509259":438,"95451985e":113,"9546285068162436":453,"95615":416,"957":65,"9577e":436,"9580e":422,"95883":465,"959198":444,"959d":[52,53],"96":[388,423,445,449,504],"9606540e":447,"960784313725491":434,"9608912e":447,"9609e":436,"96198129629":438,"965e":424,"966":407,"96602":425,"967546":424,"9680e":440,"96814":465,"96833546296":[444,456],"969":[430,444],"9698883686845":440,"96e":418,"96r":449,"97":[423,444,447,453,463,464],"97003":465,"97054":424,"970e":444,"97116":430,"9716e":440,"973":444,"97369425926":438,"974":421,"9741e":429,"974e":444,"975":407,"97596":424,"976":407,"97749":430,"97749371":430,"9776920e":447,"979":[65,407,449],"97934":424,"97978":79,"97e":444,"98":[79,317,422,423,424,428,437,438,440,447,463],"980":65,"9803921568627443":434,"98049":424,"98149518518":438,"9816452e":447,"9816e":440,"981e":436,"982075849517389e":452,"98258":424,"982e":440,"9833462074166":444,"9834338e":447,"98359208475904647":430,"98429":424,"9845":416,"9847406e":447,"985":[407,418],"985502122122975":453,"9864771491419372":463,"9876":416,"988":[407,444,451],"988409870698051e":52,"9890":465,"98e":444,"99":[317,423,424,425,436,464,465],"991":444,"9910796e":447,"9912648e":447,"9912712e":447,"993":417,"9931":465,"994":[407,419],"994e":444,"995":451,"9952623149688797":463,"9969731e":447,"997":407,"9977859e":447,"9978":465,"998":431,"99848e":456,"999":[50,145,148,444],"99996948242188":420,"9999912037958":430,"999999":444,"9999999995":444,"9999999997835":417,"999999999997":432,"9999999999977":444,"9999999999978":439,"9999999999998":444,"99999999999994":444,"99999999999999":[423,444],"99e":444,"9e":[418,444,523],"\u00e0":406,"\u0261\u00e6m\u0259pa\u026a":479,"\u03b3":[122,467,537],"\u03c3":431,"abstract":[56,57,59,94,110,146,154,159,173,175,178,187,360,396,491],"b\u00fchler":388,"boolean":[28,29,30,31,32,35,36,37,39,40,79,83,86,112,114,115,118,119,174,175,176,178,181,183,184,186,187,188,192,203,225,240,365,397,428,444,449,450,451],"br\u00fcgge":[408,409],"break":[197,241,355,363,365,374,394,395,396,505,519],"byte":[16,80,83,86,296,327,349],"carr\u00e9":186,"case":[15,28,29,30,31,32,35,36,37,39,40,65,79,83,86,132,151,163,174,176,182,183,186,188,192,193,195,215,226,248,250,252,261,270,291,308,344,349,350,352,354,357,358,360,361,362,363,364,365,366,368,369,370,371,372,373,375,376,378,379,381,389,390,393,396,402,403,408,414,416,417,420,421,422,423,425,426,428,432,433,436,437,438,440,441,444,446,447,448,449,450,451,452,453,456,458,460,463,465,474,477,478,479,489,492,495,496,497,500,501,505,514,521,536,538,540],"class":[6,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,96,97,98,99,100,101,102,103,104,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,262,263,286,287,290,298,300,323,336,352,355,358,361,362,363,364,365,367,368,369,370,371,372,377,381,385,388,390,391,392,393,394,395,396,397,400,401,402,404,405,406,407,408,409,410,411,413,414,416,418,420,421,422,423,424,425,426,430,432,433,436,438,441,444,445,446,447,448,449,452,455,456,457,463,465,470,474,475,476,477,478,479,481,482,483,484,487,489,490,491,492,493,514,523,535,536,537,538,543],"const":[199,200,201,202,372,433,452,507,525],"default":[11,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,45,46,47,63,65,74,76,78,79,80,81,82,83,84,85,86,87,88,89,91,94,95,96,97,98,99,101,102,103,104,105,106,107,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,150,151,152,155,156,158,159,161,162,163,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,264,268,269,270,275,276,278,289,290,291,296,298,299,305,306,307,308,310,311,318,320,326,331,332,336,338,339,340,342,343,345,346,349,355,361,365,366,372,375,379,385,391,393,394,395,397,400,402,408,409,411,412,413,414,421,422,424,426,428,432,433,439,440,444,445,446,447,448,449,450,451,452,456,463,464,465,475,477,479,486,489,490,491,492,495,496,497,504,510,513,514,538,542],"do":[13,16,19,20,28,29,30,31,32,35,36,37,39,40,79,80,90,95,132,143,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,302,342,350,352,354,355,356,359,363,364,365,366,367,368,369,372,373,376,378,379,394,418,420,421,423,424,425,426,428,430,431,432,436,440,441,443,444,445,446,448,449,450,451,452,455,456,463,464,465,475,479,491,535,538,541,542],"enum":[90,138,293,294],"export":[80,83,86,97,99,112,113,352,373,376,381,383,394,404,411,412,421,452,457,458,463],"final":[118,349,350,356,357,359,362,363,365,366,368,370,372,374,375,379,381,383,394,395,396,416,417,418,420,428,430,432,433,438,439,441,443,445,446,448,450,453,456,460,463,464,465,475,476,477],"float":[19,20,26,28,29,30,31,32,35,36,37,39,40,42,50,51,79,83,84,86,91,97,99,103,104,106,107,111,113,114,116,118,119,120,121,126,127,129,130,131,132,133,135,136,137,139,142,144,145,146,147,148,150,152,161,174,175,176,178,180,183,184,186,187,188,189,190,192,193,195,197,198,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,250,251,252,253,254,260,261,262,263,266,271,278,289,296,305,307,338,339,340,448,455,456,538,542],"function":[6,15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,46,78,79,81,83,84,86,95,96,97,98,99,102,103,104,107,112,118,121,122,123,124,127,135,136,137,139,140,142,144,145,146,148,175,176,178,180,184,187,188,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,239,240,241,243,244,245,246,249,253,258,262,263,271,291,299,300,302,303,307,308,317,334,337,338,342,344,346,348,352,355,359,360,361,362,363,364,367,368,369,370,372,373,374,376,377,381,385,386,388,390,391,392,393,394,396,397,400,401,402,404,405,406,407,408,409,410,413,414,416,420,421,422,423,424,428,430,431,432,433,434,445,446,447,448,449,450,451,452,458,460,463,464,465,467,468,469,474,475,476,478,479,488,490,492,496,497,499,526,535,536,537,538,539,541,543],"gr\u00e9aux":414,"import":[19,20,26,28,29,30,31,32,35,36,37,39,40,64,65,78,79,80,81,82,83,84,85,86,89,96,97,99,103,104,107,111,113,115,117,121,130,132,134,135,136,137,143,145,155,158,174,175,176,178,181,184,186,187,188,194,196,197,198,201,205,207,208,209,213,217,219,220,222,223,226,228,230,231,232,236,241,243,244,245,246,249,253,256,260,268,269,298,308,317,328,329,334,337,339,340,342,344,350,352,354,355,356,358,359,360,361,362,363,364,365,368,370,371,372,373,374,375,376,377,378,384,385,396,406,408,413,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,468,469,471,472,473,475,476,477,479,481,482,483,485,486,488,489,490,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,536,538,539,540,542],"int":[16,17,18,19,20,21,22,24,25,26,27,33,34,38,42,45,46,47,56,57,58,59,60,61,62,63,64,65,67,78,79,80,81,83,84,86,88,89,97,98,99,102,103,104,105,107,109,113,114,115,118,119,121,126,127,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,152,155,158,162,163,168,173,174,175,176,177,178,179,180,183,184,185,186,187,188,192,193,194,196,197,198,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,254,258,259,260,262,263,267,268,269,278,289,290,296,300,302,305,306,307,308,310,311,336,342,349,363,407,426,446,469],"jos\u00e9":[357,365,369,389,390,391,392,393,394,395,396,397,400,408,409,410],"kh\u00e9lifi":[375,411,413,414],"l\u00e9a":[390,392,393,394,397,405,406,407,408,409],"l\u00f3pez":408,"lemi\u00e8r":408,"long":[349,352,354,356,363,365,368,369,371,374,376,402,411,444,460,491],"n\u00f6the":[400,402,403],"new":[16,28,29,30,31,32,35,36,37,39,40,78,79,80,82,83,84,86,87,96,97,99,103,104,112,113,114,118,129,130,131,132,135,137,139,142,147,158,159,163,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,203,225,240,250,278,302,327,334,352,354,355,356,357,358,359,361,362,363,366,367,368,369,370,371,372,374,375,376,378,379,380,381,383,384,385,386,387,388,401,404,428,444,445,449,451,452,476,477,479,523,537],"null":[112,113,114,115,118,119,260,262,263,421,425,426,428,431,452,463,477,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,540],"public":[6,339,340,352,354,363,368,371,374,379,404,417,429,438,439,536,543],"r\u00e9gi":[355,358,359,363,364,366,368,370,371,372,373,374,376,388,389,390,391,392,393,394,395,396,397,398,399,400,402,403,404,406,407,408,409,410,411,412,413,414],"r\u00e9my":[367,400,402,403,411],"return":[16,19,20,26,28,29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,56,57,58,59,60,61,62,63,64,65,76,78,79,80,81,82,83,84,85,86,87,88,89,91,94,95,96,97,98,99,100,101,102,103,104,106,107,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,152,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,257,259,260,261,262,263,264,266,267,268,269,270,275,276,277,278,280,282,284,285,289,291,296,300,302,305,306,307,308,309,310,311,312,313,316,317,319,320,321,330,331,332,333,334,337,339,340,342,344,345,355,359,360,361,362,363,364,372,373,376,377,393,394,397,400,403,409,411,420,422,430,434,439,440,444,445,446,448,449,450,452,465,469,491,492,523,540],"rub\u00e9n":408,"short":[349,350,353,354,358,363,366,369,372,375,397,437,439,456,479,480,537,540,543],"sip\u0151cz":411,"static":[17,21,22,24,25,27,28,29,30,31,32,35,36,37,39,40,98,100,101,102,107,111,112,113,114,115,118,119,121,136,144,155,161,162,174,175,176,178,184,185,187,188,197,199,200,201,202,204,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,230,231,232,233,237,238,239,241,244,245,246,251,253,254,346,357,360,379,391,408],"super":[174,176,244,245,246,432,458,493,524,526],"switch":[260,349,356,359,402,406],"true":[15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,37,39,40,45,76,78,79,80,82,83,84,86,88,91,95,96,97,98,99,101,102,103,104,105,106,111,112,113,114,118,119,121,125,129,130,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,155,161,162,165,166,168,169,171,174,175,176,178,179,180,181,182,183,184,186,187,188,190,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,275,278,286,287,290,308,318,320,337,342,346,349,355,362,363,364,365,372,373,376,391,395,396,407,409,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,456,457,462,463,464,465,469,475,477,479,484,489,491,492,494,495,496,499,500,502,523,537,540,542],"try":[16,80,175,176,178,184,187,188,349,350,359,363,369,378,379,385,390,418,420,422,432,433,438,444,446,449,465,538],"var":[269,381,383],"vin\u00edciu":407,"while":[83,86,99,175,176,178,180,184,187,188,349,352,354,355,356,358,361,362,364,368,370,371,373,374,375,378,379,381,416,420,422,425,433,440,441,445,447,448,449,451,452,475,477,479,490,492,538],"z\u00e9":407,A:[16,19,20,28,29,30,31,32,35,36,37,39,40,78,79,80,83,84,85,86,87,94,95,96,97,99,102,103,104,112,113,121,126,127,173,174,175,176,178,180,181,182,183,184,185,186,187,188,193,194,196,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,229,230,231,232,233,236,237,238,239,241,244,245,246,248,249,250,251,252,253,262,263,271,278,287,338,339,340,342,343,350,352,354,355,357,358,359,360,361,362,363,364,365,366,367,368,370,372,373,374,375,376,377,378,387,389,393,394,395,396,397,400,402,403,406,407,408,409,411,413,414,416,417,420,422,424,428,430,431,434,437,438,439,440,441,443,444,445,446,448,449,450,451,452,453,455,456,457,458,460,464,465,467,475,476,477,479,480,488,489,491,492,495,532,533,536,537,540],AND:[450,451],And:[256,349,352,367,369,375,380,417,418,420,421,428,432,434,440,445,446,449,450,452,455,457,463,464,465],As:[79,278,308,349,350,352,357,361,362,363,365,367,375,376,378,385,390,409,416,417,420,421,422,424,425,426,430,432,433,437,438,439,440,443,444,445,446,448,449,452,456,458,463,465,479,488,540],At:[240,363,366,375,376,379,393,432,449,455,484,536],But:[349,354,357,363,368,376,379,382,385,409,420,421,446,455,463,467,538],By:[19,20,26,50,63,83,86,96,97,99,103,104,111,114,118,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,152,155,162,172,174,175,176,178,184,187,188,197,198,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,230,231,232,236,237,238,241,242,243,244,245,246,248,249,252,253,346,349,375,376,377,394,395,397,432,433,437,446,449,464,486,490,495,496,497,541],For:[11,28,29,30,31,32,35,36,37,39,40,42,78,83,84,86,90,94,96,97,99,103,104,107,109,111,112,113,114,115,118,119,120,121,132,133,134,140,145,148,155,160,162,165,166,168,169,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,192,197,198,199,200,201,202,203,204,205,207,209,210,212,213,214,215,216,217,218,220,225,226,227,228,229,230,232,233,237,238,239,241,242,244,245,246,248,252,253,264,268,270,275,281,296,348,349,350,352,354,355,357,358,359,360,361,362,363,364,365,366,368,369,370,372,374,375,376,377,378,379,380,381,382,383,385,387,390,391,392,394,395,396,397,400,407,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,432,434,436,437,438,439,440,443,444,445,446,447,448,449,450,451,452,453,455,456,457,460,463,464,465,467,474,475,477,479,489,491,492,496,501,533,537,538,540,541,542],IN:[87,95,225],If:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,45,76,78,79,80,81,82,83,84,86,88,89,91,95,97,98,99,101,102,103,104,105,106,109,111,112,113,114,116,118,121,125,126,132,133,134,140,143,145,148,149,151,152,155,157,158,161,162,165,166,168,169,170,173,174,175,176,177,178,179,180,181,182,183,184,186,187,188,192,193,195,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,261,275,278,290,291,296,335,338,342,343,344,345,349,350,351,352,354,356,357,362,363,365,366,367,370,371,372,374,375,378,379,380,381,382,383,384,385,389,390,391,408,409,410,416,417,418,420,422,423,425,428,430,433,436,438,439,440,441,444,445,446,448,449,450,451,452,455,456,457,465,477,479,490,492,497,499,512,538,539,540,541],In:[15,28,29,30,31,32,35,36,37,39,40,65,79,83,84,86,89,96,98,102,113,132,151,174,176,179,182,188,193,195,252,261,291,349,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,369,370,371,372,373,374,375,376,377,378,379,381,382,385,390,391,392,393,394,395,396,397,400,411,414,416,417,418,420,421,422,423,424,426,428,429,431,432,433,434,436,437,438,439,440,441,443,444,445,446,448,449,450,451,452,453,456,457,463,464,465,475,477,479,484,487,488,489,491,492,493,495,496,501,514,533,536,537,538,539,540,541,542],Is:[363,492],It:[15,19,20,26,27,28,29,30,31,32,35,36,37,39,40,86,97,99,103,104,112,126,132,136,143,144,145,146,148,158,161,165,166,171,175,176,178,180,183,184,187,188,190,197,198,201,204,205,207,208,209,213,217,219,220,222,226,228,230,236,240,241,243,244,245,246,249,253,266,268,269,286,300,305,349,350,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,373,374,375,376,377,379,380,386,390,391,392,393,397,400,402,403,404,409,411,413,414,416,421,426,429,431,433,436,437,441,444,445,446,448,449,450,452,455,456,457,458,463,464,465,467,468,475,476,478,479,483,484,486,488,492,505,508,509,511,512,516,517,519,520,521,522,535,536,537,538,539,540,542],Its:[132,361,375,376,400,402,434,439,464,481,482,483,485],NOT:[450,479],No:[28,29,30,31,32,35,36,37,39,40,82,360,370,373,374,408,410,415,434,444,446,448,449,465],Not:[99,103,104,177,183,185,357],ON:[97,99,120,162,163,164,172,347,355,402,416,420,423,426,430,438,439,441,446,448,479,488,537,539,541],OR:[97,103,445,450,451],Of:[349,352,385,428,445,449,456,538,541],On:[59,150,156,157,160,269,349,350,355,357,364,365,378,381,382,383,404,428,429,446,460,540],One:[31,32,37,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,96,97,99,103,104,203,225,304,349,350,355,357,358,359,360,363,365,366,367,375,414,417,421,426,438,448,449,450,463,465,488,492,514,538,540],Ones:278,Or:[350,368,369,382,421,428,445,449,455,456,477],Such:[361,483],That:[19,20,192,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,349,350,354,363,366,369,446,465,538],The:[11,15,16,19,20,23,26,27,28,29,30,31,32,35,36,37,39,40,42,52,53,57,59,62,67,76,78,79,80,81,82,83,84,85,86,87,89,90,95,97,99,100,101,102,103,104,107,111,112,113,114,115,116,118,119,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,152,156,161,162,165,166,167,170,171,172,173,174,175,176,177,178,180,182,183,184,185,186,187,188,192,193,194,195,196,197,198,199,200,201,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,255,256,260,262,263,264,266,267,268,269,270,278,290,296,298,299,302,317,332,333,335,337,338,339,340,342,343,344,345,346,348,349,350,351,352,353,354,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,381,382,383,386,389,390,392,393,394,395,396,397,400,402,403,404,408,409,410,411,412,413,414,416,417,418,420,421,422,423,424,425,426,428,430,432,433,434,436,437,438,439,440,441,443,444,445,447,448,449,450,451,452,453,455,456,457,458,460,463,464,465,467,468,469,470,474,475,477,478,479,481,482,483,484,485,486,487,489,490,491,492,493,495,497,499,500,501,504,510,512,513,514,523,533,535,536,537,538,539,540,541,542,543],Their:450,Then:[65,97,101,103,352,354,359,362,364,365,366,367,373,417,420,428,429,432,436,438,446,450,452,464],There:[83,86,126,349,350,354,355,356,358,363,364,365,366,367,368,369,370,373,376,379,382,408,430,434,437,443,444,445,446,448,450,451,457,467,475,476,479,492],These:[90,180,255,349,350,354,355,360,362,363,364,365,369,370,375,392,394,395,396,400,408,414,416,429,431,432,437,440,443,445,449,452,453,457,460,467,484,489,491,492,539,540,541],To:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,79,80,83,86,95,102,111,114,118,174,186,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,255,339,340,351,352,356,357,360,361,362,364,365,370,371,372,373,374,375,379,380,382,384,385,386,390,391,392,395,396,400,402,408,409,411,414,416,417,418,420,421,422,423,425,426,428,430,431,432,433,434,436,437,438,439,440,444,445,446,447,448,449,450,451,452,453,455,456,460,463,465,475,476,477,480,484,486,488,489,495,536,538,539,540],With:[79,349,358,359,375,396,409,475,540],_0:[50,51],_1:[99,104,476],_2:[99,104],_:[97,103,116,213,232,349,363,373,375,423,426,443,444,446,451,475,488],__:378,__all__:349,__array__:278,__array_ufunc__:[432,458,526],__attributes__:[83,86],__call__:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,35,36,37,39,40,197,198,199,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,254,290,355,360,377,396],__class__:[349,373,443,473],__dict__:[16,80,349],__enter__:327,__eq__:402,__exit__:327,__fields__:[16,80,376],__getitem__:[359,360,361],__init__:[16,80,183,252,349,355,361,373,411],__int__:296,__len__:359,__main__:[235,349,462,538],__name__:[349,426,438,439,440,443,462,473,538],__neq__:402,__pydantic_fields_set__:[16,80],__repr__:[349,395,409],__str__:[349,361,376,392],__subclasses__:443,__version__:384,_basemodel__context:[16,80],_build:[350,379],_check_interv:414,_compute_flux_spati:400,_covari:[203,225],_data:373,_dom_class:[428,436,449,463,464],_energy_t:373,_errn:[114,115,118,119],_errp:[114,115,118,119],_evaluate_timevar_sourc:414,_f_cash_root_cython:274,_factr:446,_fields_set:[16,80],_i:116,_k:[97,103,475],_l:475,_lat:349,_lon:349,_map:342,_model:112,_new_attribut:349,_old_attribut:349,_parameter_units_for_data_unit:[28,29,30,31,32,35,36,37,39,40],_parent_namespace_depth:[16,80],_phi:349,_prior:377,_propagate_error:399,_reco:349,_repr_html_:349,_row_index:67,_sample_coord_time_energi:414,_scan:446,_time_group:373,_time_t:373,_true:349,_type:377,_types_namespac:[16,80],_was_:[16,80],_wc:502,_weight:377,a_:[99,104,135,481,484,540],a_off:540,a_on:540,aa:[83,86,278,375],aaguasca:411,ab:[28,30,31,32,33,35,36,37,38,39,40,50,52,53,57,58,60,61,63,79,84,107,114,135,188,193,195,222,255,256,269,443,444],abc:[18,56,87,94,95,110,154,173,178,179,182,194,203,225,448],abcmeta:448,abdalla2018:[488,489,537],abeysekara:59,abil:373,abl:[28,29,30,31,32,35,36,37,39,40,359,364,367,417,436,438,439,460,538],about:[11,13,16,80,130,135,212,217,308,349,352,354,358,365,366,368,369,370,374,375,377,378,379,382,384,385,404,405,409,410,411,418,424,425,426,429,430,432,444,449,452,456,464,465,467,475,476,538,541],abov:[29,44,52,53,79,111,113,116,120,121,126,150,185,338,340,349,350,355,358,359,361,363,365,366,367,368,369,373,381,382,385,416,430,432,433,434,438,441,446,448,449,450,452,453,455,456,457,463,473,475,476,483,492,537,538,539,540,541],abramowski:135,abruptli:[349,374],abs_path:286,absenc:[364,426,448,450,488,539],absolut:[78,86,100,129,130,131,132,135,137,139,142,147,175,176,178,180,184,187,188,282,308,326,330,477],absolute_tim:542,absopt:367,absorb:[253,359,372,407,504],absorbedspectralmodel:[394,407],absorbt:372,absorpt:[205,367,397,407,493,524],abstractsetintstr:[16,80],acada:375,academ:122,accept:[16,28,29,30,31,32,35,36,37,39,40,79,80,83,86,99,100,104,150,167,172,174,175,176,178,186,187,188,203,225,263,347,353,354,355,356,357,358,361,362,363,365,366,367,368,369,370,372,374,375,376,377,401,405,414,416,421,422,423,426,430,433,445,448,449,456,475,491,496,514,539,540],acceptance_off:[99,100,104,150,160,361,416,417,420,423,426,475,540],access:[28,29,30,31,32,35,36,37,39,40,56,58,60,61,63,64,65,78,79,83,84,86,97,143,173,174,183,186,269,286,349,357,358,359,360,362,365,373,379,381,389,390,397,404,405,407,408,414,418,420,421,422,428,444,446,447,451,452,455,458,463,464,465,474,479,490,491,492,536],accessor:449,accident:[456,538],accord:[15,28,29,30,31,32,35,36,37,39,40,53,70,83,86,97,99,103,104,107,112,133,143,150,174,180,193,195,275,338,359,360,363,364,367,373,375,394,403,426,438,445,448,452,453,460,475,476,479],accordingli:[361,375,391,397,450],account:[97,99,103,104,111,152,168,203,225,240,262,263,269,324,357,362,365,373,375,396,413,416,417,422,426,428,434,440,441,446,448,450,464,475,477,539,540],accur:[367,410,428,446,486],accuraci:[363,446,479],aceptance_off:361,acero:[367,390,392,394,397,400,402,407,409],achiev:[16,80,107,150,339,340,349,358,359,360,361,362,363,365,372,375,397,449,452,453,489],acknowledg:[352,375,386],acquir:385,acquisit:537,across:[28,29,30,31,32,35,36,37,39,40,95,107,145,148,349,358,361,379,431,440,451,456,475,491,499,537],act:[86,365,451,501],action:[150,354,359,365,375,379,400,440],activ:[86,269,352,366,380,381,383,384,385,394,411,437,479],actual:[163,324,325,326,348,349,350,354,358,360,362,364,365,373,374,376,378,423,433,436,439,445,446,448,449,450,456,457,464,465,486,488,537,538,540,542],ad:[28,29,30,31,32,35,36,37,39,40,41,59,78,79,83,86,97,99,103,104,113,175,176,178,183,184,187,188,349,350,352,354,355,357,358,359,361,362,363,364,365,366,368,369,373,375,389,390,391,393,394,395,397,400,402,404,405,406,407,408,409,410,411,413,414,422,428,429,447,448,451,452,453,457,475,492,541],adapt:[107,150,192,358,359,362,363,368,369,371,372,375,378,385,390,391,393,394,395,397,398,400,403,406,407,409,411,413,414,445,447,449,450,489],adaptiveringbackgroundestim:[160,355],adaptiveringbackgroundmak:[153,394,489],adass:369,add:[13,15,16,28,29,30,31,32,35,36,37,39,40,41,42,43,44,75,79,80,83,84,86,94,95,96,97,98,99,101,102,103,104,112,113,129,130,132,133,134,135,136,137,140,142,143,144,145,146,148,152,175,176,178,182,184,187,188,203,225,240,275,337,346,348,349,350,352,354,357,358,359,361,362,363,364,365,366,367,368,369,372,373,375,377,378,388,389,390,391,392,393,394,395,396,397,400,401,402,404,405,406,407,408,409,410,411,412,413,414,416,417,423,428,429,432,436,438,441,445,447,448,449,450,452,455,465,469,470,479,492,506,538,541],add_artist:[452,495,496],add_cbar:[97,99,103,104,113,129,130,132,135,136,137,142,143,144,146,175,176,178,184,187,188,337,424,425,426,428,430,436,441,443,445,447,448,449,451,452,456,457,463,464,492,494,495,496,499,500,502],add_column:[83,86],add_enabled_unit:[416,423,425,428,430,436,440,455],add_index:[83,86],add_loc:349,add_row:[83,86],add_subplot:337,addit:[16,19,20,26,43,80,83,84,86,97,99,103,104,111,114,119,147,175,176,178,181,184,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,352,353,354,358,359,360,361,363,364,365,366,368,369,370,373,374,375,376,378,379,380,381,382,383,391,392,394,396,397,400,401,408,409,411,414,418,422,434,441,444,445,446,449,451,452,455,456,464,465,475,477,479,486,491,492,535,541],addition:[119,361,445,446,449,451,452],address:[358,361,362,363,365,375,478],adequ:183,adher:352,adjac:[180,400,449,488],adjust:[16,65,175,176,178,184,187,188,358,360,372,421,445,452,453,463,479,486],admit:369,adonath:355,adopt:[37,362,365,370,422,432,433,443],adsab:[28,30,31,32,33,35,36,37,38,39,40,50,52,53,57,58,60,61,79,84,107,114,135,222,255,256,269],adult:349,advanc:[361,365,366,369,377,381,447,449,479,537,538],advantag:[357,363,366,373,400,449,514,538],advanteg:361,advertis:378,advic:[349,375],advis:[350,375,446,460],advoc:349,aeff2d:134,aeff:[16,78,83,84,99,104,135,161,169,359,361,362,396,397,417,420,421,422,425,426,428,430,439,447,448,455,457,458,463,464,481,486,488,489,537],aeff_2d:[78,83,135,455,458],aeff_3d:447,aeff_ev:447,aeff_new:447,aeff_perc:[161,417,420,421,430,439,448,457,488],aegi:205,af:345,affect:[349,357,361,363,374,391,392,403,412],affili:[363,375,411],afmhot:[451,465],aforement:375,after:[16,45,50,51,52,53,80,86,95,97,99,103,145,148,269,290,308,330,333,349,352,354,357,358,360,362,363,364,365,367,368,369,371,372,373,374,375,376,378,379,380,385,389,396,398,399,400,402,408,410,411,412,418,428,437,439,446,449,451,455,457,458,479,538,542],ag:[20,43,44,45,50,51,52,53,54,282,349,469],again:[97,99,103,104,145,352,359,361,363,365,370,376,380,395,396,399,406,411,418,420,421,428,433,434,449,452,456,463,465,492,538],against:[16,80,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188,350,352,366,372,379,444,456,463,474,477],agent:365,agglom:13,aggreg:376,agil:362,agn:[122,267,363,420,437,438,440,455],agnost:446,ago:356,agre:[177,180,352,354,363,375],agreement:[349,352,370,441],aguasca:[402,411,412,413,414],aharonian:431,ahead:[363,389],ahelp:192,aim:[358,359,375,428,432,443,453,467,537],air:455,ait:[174,175,176,462],aitoff:363,aka:465,al:[26,33,59,122,135,205,268,269,359,424,431,437,467,537],albert2007:537,albert:537,alexi:[397,400],algorithm:[28,29,30,31,32,35,36,37,39,40,59,83,86,107,121,150,192,349,355,361,362,363,368,376,392,397,405,406,407,424,437,446,457,477,491,536,540],alia:[16,56,80,352,465],alias:[16,56,80,446],align:[83,86,95,129,130,131,132,135,136,137,138,139,142,144,146,147,174,175,176,178,180,184,186,187,188,349,447,450,452],alisha:402,all:[6,16,19,20,26,28,29,30,31,32,35,36,37,39,40,69,70,71,72,73,74,75,76,78,79,80,83,84,85,86,87,90,91,95,97,99,101,103,104,111,112,113,114,118,119,121,129,130,131,132,133,134,135,136,137,139,142,144,145,146,147,148,149,155,162,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,192,193,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,260,321,322,323,324,325,326,336,345,348,349,350,352,354,355,356,357,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,379,380,381,382,384,389,390,391,392,393,394,395,396,397,400,402,403,405,406,407,408,409,410,411,412,413,414,417,420,421,422,425,426,428,430,431,432,436,438,440,441,444,445,446,447,449,450,451,452,455,456,457,458,460,462,463,464,465,469,475,477,479,488,490,491,492,493,514,535,538,539,540],all_quant:[112,113],allclos:[129,130,131,132,135,136,137,139,142,144,146,147,175,176,177,178,180,184,185,187,188,324],alloc:[176,184,188],allow:[16,26,28,29,30,31,32,35,36,37,39,40,56,80,83,86,107,112,113,120,121,145,148,174,301,349,352,354,355,356,359,360,361,362,363,365,366,367,368,371,372,373,374,375,376,377,378,379,380,381,382,391,393,394,395,396,397,400,402,409,410,411,414,416,420,431,440,445,446,447,448,449,450,464,475,477,479,486,491,492,535,536,538,543],allow_pickl:[16,80],allowed_channel:[26,443],allski:[79,449],alma:368,almeida:397,almost:[348,350,352,363,456,465],alon:354,along:[66,96,112,113,117,129,130,131,132,135,136,137,139,142,143,144,146,147,175,176,178,184,186,187,188,267,268,269,289,290,300,310,311,358,359,373,411,414,425,434,444,445,447,448,451,452,476,491,492,507,537],alpha:[21,27,28,48,97,99,103,104,150,172,208,209,218,219,220,233,263,273,275,346,347,361,372,374,400,407,416,417,418,420,422,423,426,428,429,433,441,444,446,495,504,506,508,510,512,513,514,529,530,539,540,541],alpha_1:[99,104],alpha_2:[99,104],alpha_:[99,104],alpha_norm:[205,372,504],alphabet:[366,375,390,391,392,393,394,395,396,397,400],alreadi:[15,16,26,28,29,30,31,32,35,36,37,39,40,80,83,86,192,248,249,250,252,349,355,356,357,360,361,362,363,364,366,369,370,371,373,376,378,379,409,418,422,424,433,441,443,444,445,449,450,451,452,455,456,457,465,467,492,502],also:[15,19,20,26,28,29,30,31,32,35,36,37,39,40,83,86,90,107,111,112,113,114,126,147,152,158,173,180,182,183,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,261,278,286,291,349,350,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,369,370,371,372,373,375,376,377,378,379,380,381,382,383,384,385,386,390,391,392,393,394,395,396,397,400,408,409,410,414,416,417,420,421,422,423,424,428,430,431,432,433,434,437,441,443,444,445,446,447,448,449,450,451,452,455,456,463,464,467,475,476,477,478,479,486,488,491,492,514,517,535,537,538,539,540,542],alt:[79,81,84,89,90,349,542],alt_pnt:86,altaz:[79,81,89,138,349,447,542],altaz_fram:[79,89],altaz_from_t:[79,89],altaz_interpol:89,altern:[78,260,348,349,352,354,358,382,400,420,422,424,431,444,446,447,449,451,455,475,476,538],although:[349,362,363,364,366,369,373,446,455,500,501,535,542],altitud:417,alwai:[79,83,86,132,180,183,190,193,195,211,349,350,352,355,356,357,359,360,361,363,366,374,375,382,389,396,411,412,414,423,424,428,436,443,446,448,449,451,453,460,477,491,492],am:358,ambigu:[363,408],amend:352,among:[78,83,86,97,99,103,104,365,369,370,372,377,397,446,537],amount:[356,363,377,479],amp:[28,29,30,31,32,35,36,37,39,40,239,531],ampl_2:[136,447],ampl_3:[136,447],amplitud:[28,29,30,31,32,35,36,37,39,40,48,49,66,96,114,121,175,176,178,187,188,197,204,207,209,213,220,223,230,231,232,239,241,244,245,246,256,260,271,360,361,364,372,417,418,420,421,422,423,424,425,428,429,430,431,432,433,436,437,438,439,440,441,444,445,446,451,452,455,456,463,464,465,477,494,495,496,497,499,500,501,502,504,505,506,508,509,511,512,514,515,516,517,519,520,521,522,525,526,527,528,529,530,531,532,533,540],amplitude_maximum_signific:437,amplitude_maximum_vari:437,amplitude_ref:441,an:[6,15,19,20,28,29,30,31,32,35,36,37,39,40,47,50,64,67,68,69,70,71,72,73,74,75,76,77,78,79,82,83,84,85,86,87,88,89,97,98,99,102,103,104,106,112,113,114,115,116,118,119,121,125,126,127,130,132,133,134,135,137,140,143,145,147,148,151,155,158,160,163,165,166,169,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,192,193,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,229,230,231,232,233,236,237,238,239,240,241,242,244,245,246,248,251,252,253,258,267,269,276,278,282,296,307,311,327,333,339,340,342,345,348,350,352,354,355,356,357,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,378,379,380,381,382,385,386,389,390,393,394,395,396,397,400,402,403,404,407,408,409,411,412,414,417,418,420,421,422,423,424,425,426,428,429,430,431,434,436,437,438,439,440,441,444,446,448,449,451,452,453,455,456,457,458,460,462,463,464,465,467,469,474,475,476,477,479,480,481,482,483,484,485,486,488,490,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,537,538,539,540,541],anaconda:[366,380,381],analog:[83,86,175,176,178,184,187,188,370,492],analys:[78,348,349,358,359,360,361,363,367,369,371,372,377,385,386,392,393,394,396,397,407,409,412,420,421,428,439,440,443,444,450,452,455,456,463,464,467,475,538],analysi:[6,16,57,65,68,70,71,79,97,99,103,104,157,161,348,349,350,353,359,360,361,362,363,364,365,367,368,369,370,371,372,376,378,379,380,381,382,385,386,389,390,391,393,394,395,400,402,404,405,406,407,408,409,410,411,414,418,419,424,425,426,431,432,434,435,436,440,442,443,444,445,446,448,449,450,451,452,453,455,456,457,458,464,465,467,476,477,479,480,484,486,487,488,489,491,492,517,535,537,538,540],analysis3d:410,analysis_1:[463,466],analysis_1d:438,analysis_2:[350,464,466],analysis_3d:[409,428,435,438],analysis_joint:428,analysis_mwl:[429,435],analysis_stack:428,analysisconfig:[15,350,421,425,426,428,438,463],analyt:[19,20,26,28,29,30,31,32,35,36,37,39,40,135,136,144,146,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,362,367,447,452,477,497,541],analyz:[359,457,537],andrea:362,andrew:409,angl:[16,17,18,21,22,24,25,27,33,34,38,66,79,85,86,91,97,99,107,111,117,121,129,133,134,135,136,137,140,142,143,144,145,146,148,151,158,159,161,163,173,174,176,181,183,186,188,189,200,204,212,215,227,229,237,238,240,242,248,250,252,255,306,336,349,355,363,365,372,376,388,390,391,392,409,416,417,420,423,429,432,433,439,444,449,450,452,453,455,456,479,484,488,491,492,495,496,497,500,501,537],angle_incr:158,angular:[23,97,99,116,133,134,140,145,148,151,176,183,186,188,204,212,215,250,282,285,349,365,413,422,433,441,484,485,537],angular_extens:41,angular_s:492,angular_separ:[372,413,452],ani:[16,28,29,30,31,32,35,36,37,39,40,78,79,80,83,86,109,118,134,157,175,176,178,183,184,186,187,188,278,301,334,348,349,350,352,354,355,356,357,360,361,362,363,364,365,366,367,368,370,372,375,376,378,381,382,383,384,385,389,390,408,409,410,421,430,431,434,438,441,445,448,449,451,452,455,456,457,458,463,464,465,467,476,477,489,491,492,506,538,542],ann:[23,408],anna:349,annihil:[17,18,19,20,21,22,23,24,25,26,27,411,452,467],annoi:[349,538],annot:[16,28,29,30,31,32,35,36,37,39,40,80,338,376,446,495],announc:[349,354,356,363,365,368,370,372,374,375,378,379],annuli:[434,492],annulu:[115,310,492],anonym:352,anoth:[19,20,26,79,82,83,86,97,99,103,104,133,134,135,140,145,147,148,177,180,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,349,363,364,365,367,369,370,373,376,380,385,394,409,441,445,449,450,452,492,538],another_posit:488,answer:[446,479],anti:[449,450],anticip:358,antigrav:382,anymor:411,anyon:[354,356,455],anyth:[132,365,538],anytim:[352,391],anywai:[352,363],anywher:[363,366,368,475],ap:[354,366,374],apart:364,ape18:374,apertur:537,api:[211,353,355,358,359,360,361,362,363,365,368,369,370,374,375,386,387,389,390,391,392,394,395,396,397,400,404,408,409,417,420,421,424,430,432,439,445,449,450,451,452,455,456,463,465,466,475,476,477,478,486,487,491,535,536,537,538],apj:[264,270],aplpi:409,apologis:[389,390,409],app:[83,86,379,385,408],appear:[83,86,349,350,357,363,376,403,414,444],append:[83,86,87,95,173,174,175,176,178,183,184,186,187,188,225,361,362,364,395,414,417,420,422,423,428,429,430,432,437,439,440,441,445,446,448,451,452,453,488],append_ax:[129,130,132,135,136,137,142,144,146,188,337],appendix:[30,121,135,222,256,271,424],appl:[381,382,383,385],appli:[28,29,30,31,32,35,36,37,39,40,79,82,83,85,86,96,97,98,99,103,104,107,111,113,114,118,121,132,133,134,140,145,147,148,152,158,161,162,175,176,178,179,183,184,186,187,188,193,195,203,211,225,240,253,261,262,263,290,291,334,338,346,349,355,356,359,360,362,364,367,373,374,375,397,402,407,408,409,410,414,416,420,422,432,439,440,441,445,448,449,450,451,452,455,458,464,465,477,479,523,536,539],applic:[28,29,30,31,32,35,36,37,39,40,66,83,86,349,360,375,377,396,437,446,491,537],apply_async:[298,299],apply_hysteresis_threshold:450,apply_irf:[240,396],apply_mask:181,apply_psf:[360,393],apply_standard_scal:91,apply_threshold_sensit:111,apply_union:190,approach:[83,86,121,349,355,357,361,365,370,373,374,376,414,416,420,448,460,537,540],appropri:[28,29,30,31,32,35,36,37,39,40,79,83,86,174,175,176,178,187,188,278,286,350,422,426,428,449,538],approv:[355,356,357],approx:[52,53],approxim:[121,161,162,174,175,176,200,204,212,215,227,237,238,242,248,252,262,263,289,360,363,391,416,446,455,477,488,496,497,500,501,537],appveyor:405,apr:[371,387],april:[369,376,396],apt:382,ar:[6,11,15,16,19,20,23,26,27,28,29,30,31,32,33,35,36,37,39,40,46,57,65,68,71,75,76,78,79,80,81,82,83,84,86,91,95,96,97,99,102,103,104,105,107,109,111,112,113,114,115,116,118,119,121,122,126,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,151,152,155,156,161,162,163,168,172,173,174,175,176,178,179,180,182,183,184,185,186,187,188,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,260,267,278,290,296,298,310,311,324,338,340,345,348,349,350,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,381,382,383,384,389,390,391,392,393,394,395,396,397,400,402,403,405,406,407,408,409,410,411,412,413,414,416,417,418,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,463,464,465,467,468,469,470,474,475,476,477,479,481,482,483,484,485,486,489,490,491,492,493,495,496,504,514,533,535,536,537,538,539,540,541,542,543],arakelian:268,arang:[107,364,424,439],arbitrari:[181,183,184,360,372,395,408,432,445,449,491,492],arbitrary_types_allow:[16,80,376],arbitrarytypemetadata:376,architectur:[381,382,383],archiv:[375,458,464],arcsec:158,arctan:363,area:[78,84,99,101,134,135,150,161,162,169,176,184,186,188,349,350,360,404,406,416,420,432,441,448,457,458,484,491,492,537],areasc:[407,409],aren:[325,349,363,368,369,381,383],arf:[100,101,104,179,180,183,184,420,492],arf_ob:100,arffil:100,arg:[11,16,28,29,30,31,32,35,36,37,39,40,53,80,83,86,103,104,129,130,131,135,136,137,139,142,143,144,146,147,176,177,184,198,211,223,230,231,232,301,538],arg_in_kwarg:349,argmax:437,argmin:437,argpars:[354,538],argsort:[83,86],argument:[11,16,19,20,23,26,28,29,30,31,32,35,36,37,39,40,66,79,80,82,83,84,86,87,88,95,96,97,99,102,103,104,113,114,116,118,128,129,130,131,132,135,136,137,139,142,143,144,145,146,147,148,151,161,173,174,175,176,178,179,180,182,183,184,185,186,187,188,191,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,257,261,276,278,290,296,298,299,336,337,338,342,343,344,345,346,352,355,361,364,396,397,400,402,408,414,424,428,433,446,448,449,452,453,464,477,479,490,491,492,514,538],aris:[354,365],arithmet:[198,360,410,449,450,452,506],arjun:[407,408],arm64:[381,382,383],arm:[33,34,38,45,404],armstrong:408,arnau:[402,411,412,413,414],around:[56,126,151,174,176,186,188,290,363,364,422,441,443,446,450,457,465,479,488,491,492],arpit:407,arr:[28,29,30,31,32,35,36,37,39,40],arrai:[19,20,28,29,30,31,32,33,35,36,37,38,39,40,78,79,81,83,86,87,89,94,95,96,97,103,104,107,112,113,114,115,118,119,121,126,127,129,130,131,132,135,136,137,139,142,143,144,145,146,147,148,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,191,193,197,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,227,228,229,230,231,232,233,236,237,238,239,240,241,244,245,246,250,251,252,253,254,261,262,263,265,278,289,290,291,305,306,307,311,342,343,348,349,362,363,367,373,376,385,395,408,411,413,423,432,433,441,444,445,446,447,449,451,452,455,457,458,465,491,492,498,523,526,539,540],array_lik:[97,103,129,130,131,132,135,136,137,139,142,144,146,147,173,174,175,176,178,183,184,186,187,188,264,270,275],array_shap:413,arriba:[401,404,405],arriv:[202,210,214,216,217,218,233,239,251,254,354,362,394,395,396,432,537,541],arrow:536,arrowprop:495,arrowstyl:495,artefact:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],arthmet:360,articl:[122,268,354,417,439],artifact:[111,176],artifici:432,artist:[183,203,225,495,496],arxiv:[63,161,231,232,245,246,429,443,444,448,521,522],as_arrai:[83,86],as_artist:[183,184,452,492,495,496],as_energy_tru:[173,174,183,186],as_plot_cent:[177,180,185],as_plot_edg:[177,180,185],as_plot_label:[177,180,185],as_plot_scal:180,as_plot_xerr:[177,180,185],asanyarrai:349,ascii:[83,86,113,349],asinh:424,asinha:78,ask:[350,352,354,356,363,365,366,369,375,384,438,465,479,480,538],asmooth:[107,108,368,395,406,409],asmoothestim:370,asmoothmapestim:[108,370,395,397,400,424,479],aspect:[352,375,480,538,543],assert:[177,179,180,185,324,325,326,352,360,372,449],assert_allclos:349,assert_equ:349,assert_nam:[177,179,180,185],assert_quantity_allclos:[349,404],assess:[420,422,437],assign:[28,29,30,31,32,35,36,37,39,40,97,98,102,103,174,240,250,345,349,358,361,364,376,378,417,436,438,445,449,452,464,465,491],assist:365,asso:[69,71,72,74],assoc1:[71,72,74,444,465],assoc2:[71,72,74,465],assoc:69,assoc_fgl:74,assoc_fhl:74,assoc_gam1:[71,74],assoc_gam2:[71,74],assoc_gam3:[71,74],assoc_gam:72,assoc_prob_bai:444,assoc_prob_lr:444,assoc_tev:[71,72,74],associ:[28,29,30,31,32,35,36,37,39,40,65,76,83,86,95,97,112,120,122,123,124,133,134,145,148,165,166,171,184,251,278,355,365,373,374,375,376,377,414,417,418,420,424,429,444,445,448,449,451,452,457,465,476,477,479,492,540],association_catalog:[65,444],association_nam:[65,444],assum:[23,50,51,52,53,65,78,79,81,90,111,112,113,121,125,135,147,158,172,174,175,176,178,181,185,187,188,192,246,252,255,260,305,308,349,352,361,362,364,372,373,377,385,386,416,417,420,422,423,426,432,433,434,436,439,443,447,449,452,456,469,475,477,484,535,540],assumpt:[70,90,97,99,103,104,107,120,363,373,484,488,539],astri:92,astrisim:362,astro:[6,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,114,168,175,176,178,187,188,235,253,349,350,361,368,369,373,378,392,401,405,409,411,422,443,447,449,455,468,469,471,472,473,476,537],astro_dark_matt:[369,443,454],astromodel:467,astronom:[13,363,370,408,537],astronomi:[11,256,348,359,363,367,379,386,407,417,420,426,430,448,455,479,488,489,535,536,537,538,539,540,542,543],astrophys:[6,23,282,364,479,536,537],astropi:[13,16,19,20,26,27,28,29,30,31,32,35,36,37,39,40,52,64,79,81,82,83,84,85,86,87,89,97,99,103,104,107,112,113,115,117,118,121,134,143,145,158,172,175,176,178,181,183,184,185,186,187,188,197,198,201,205,207,208,209,213,216,217,219,220,222,226,228,230,231,232,233,236,239,240,241,243,244,245,246,249,251,253,254,256,278,308,325,326,335,339,340,344,348,350,351,352,354,355,356,360,362,363,364,366,367,368,369,370,372,373,375,376,377,378,385,386,388,392,393,394,395,399,401,402,404,405,406,407,408,409,410,411,413,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,463,464,465,469,471,472,473,475,476,477,479,481,483,486,488,489,490,491,492,495,496,497,498,499,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,539,542],astropy_healpix:358,astropy_help:[349,390,391,392],astropy_introduct:391,astropy_timeseri:364,astropy_vers:349,astropydeprecationwarn:432,astyp:[83,86],asymmetr:[111,114,115,118,119,121,367,390,396,463,477,496],asymptot:[540,541],atmospher:[364,381,386,455],atnf:408,atol:[82,95,118,180,185,324,326,349],atol_ax:[129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188],atom:365,atproduction_gamma:26,atreye:[361,364,389,390,391,392,393,394,395,396,397,399,400,402,403,408,409,410,411,412,413,414],attach:[28,29,30,31,32,35,36,37,39,40,81,89,203,211,225,240,250,360,370,413,440,446,451,452,538],attempt:[16,80,352,363,366],attr:349,attract:369,attribut:[15,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,52,53,54,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,99,100,101,103,104,107,109,110,111,112,113,114,115,116,117,118,119,120,121,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,150,151,152,154,155,156,157,160,161,162,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,278,359,361,371,376,377,390,391,394,395,396,397,400,402,404,406,408,413,414,418,422,432,446,448,449,450,452,465,475,491,492,540],attributeerror:349,attrribut:449,aug:[362,365,366,368,387],august:[356,362,365,368,430],author:[28,29,30,31,32,35,36,37,39,40,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378],authoris:375,authorship:353,auto:[175,176,178,187,188,350,352,360,369,395,409,446,538],autodiff:367,autogener:369,autograd:[360,367],autom:[11,357,365,375,378,379,402,446,538],automat:[16,28,29,30,31,32,35,36,37,39,40,79,80,105,114,118,145,148,200,204,212,215,227,237,238,242,248,252,348,349,350,352,356,357,359,360,366,369,371,375,378,389,390,396,422,430,432,446,449,538,542],automatis:478,autopep8:349,autoscal:[193,194,195,196],avail:[11,13,26,28,29,30,31,32,35,36,37,39,40,57,65,68,70,74,79,83,84,86,96,97,99,103,104,111,112,113,114,118,119,121,128,149,155,161,162,192,193,195,199,200,204,205,212,215,227,229,237,238,242,248,250,252,256,302,337,349,352,355,356,357,358,360,361,362,363,366,367,369,376,379,381,382,383,390,394,395,396,400,403,407,409,411,414,420,421,424,446,448,450,452,455,456,460,463,465,467,469,470,476,478,479,481,482,483,485,493,504,536,538,540],available_hdu:84,available_irf:84,available_method:[152,161],available_quant:[112,113],available_select:[155,162],averag:[19,97,99,103,104,155,162,165,166,168,169,400,417,420,437,475,537],averageaz:[432,433],avoid:[19,20,26,28,29,30,31,32,35,36,37,39,40,83,86,111,155,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,350,355,356,357,359,363,367,368,371,372,374,375,377,400,402,411,413,414,450,476,488,538],awai:[28,29,30,31,32,35,36,37,39,40,262,263],awar:[349,354,361,369,375],ax1:[416,424,426,430,441,450,451],ax2:[416,424,426,430,441,450,451],ax3:[424,430],ax:[16,19,20,26,64,65,79,96,97,99,103,104,105,111,112,113,115,116,121,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,155,162,165,166,171,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,191,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,252,253,254,262,263,336,337,341,342,343,344,345,346,349,358,368,391,395,400,406,407,408,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,450,451,452,453,455,456,457,463,464,465,475,477,479,481,486,488,489,490,491,495,496,497,501,504,532,533,537],ax_crab_3fhl:465,ax_ebl:504,ax_excess:[417,420],ax_model:504,ax_residu:[96,103,104,417,420,421,422,441,463],ax_s:[421,463],ax_spati:[97,99,103,104],ax_spectr:[97,99,103,104],ax_spectrum:[96,103,104,417,420,421,422,441],ax_sqrt_t:[417,420],axcols1:449,axcols2:449,axel:[358,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],axes0:[175,176,178,184,187,188],axes_loc:[129,130,132,135,136,137,142,144,146,188,337],axes_nam:[174,175,176,178,183,184,186,187,188],axesimag:[337,338],axesn:[175,176,178,184,187,188],axessubplot:[64,65],axi:[19,20,26,28,29,30,31,32,35,36,37,39,40,41,79,95,96,97,99,103,104,105,106,107,111,112,113,114,115,117,118,121,122,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,169,172,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,191,197,198,201,202,203,204,205,207,208,209,210,213,214,216,217,218,219,220,222,225,226,228,230,231,232,233,236,239,241,243,244,245,246,249,250,251,253,254,259,262,263,267,268,269,289,290,300,337,342,343,344,345,355,358,371,373,392,395,396,397,400,402,407,409,410,411,414,416,417,421,422,423,425,426,428,430,432,433,434,436,439,440,444,445,447,448,449,455,456,457,463,464,465,475,477,479,483,488,491,492,533,537],axis0:491,axis1:449,axis2:449,axis_edg:342,axis_nam:[96,97,99,103,104,112,113,122,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,181,183,184,186,187,188,434,438,440,445],axis_rgb:344,axis_tru:430,axvlin:[423,443,453],axvspan:[184,441],az:[79,81,84,89,90,349,542],azimuth:456,azur:396,b1509:444,b:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,48,51,52,54,80,83,86,135,192,317,349,350,363,372,375,431,443,444,445,446,449,450,452,456,465,471,475,492],b_0:[495,496],b_1:[83,86],b_mean:42,b_psr:43,b_stdv:42,back:[28,29,30,31,32,35,36,37,39,40,67,83,86,176,290,352,359,360,363,369,420,421,423,449,452,463,538],backend:[88,96,109,114,115,118,119,121,151,192,260,293,298,299,348,358,360,390,409,410,414,417,418,420,421,422,428,429,430,441,446,456,463,464,535,536],backend_default:[115,118,121],background2d:[130,131,141,396,403,411,413,482],background3d:[84,129,141,168,355,396,400,408,409,410,447,455,482],background:[16,65,78,79,84,88,97,98,99,100,102,103,104,105,106,107,111,112,113,120,129,130,131,141,150,152,153,155,156,157,158,160,161,162,163,168,205,211,250,257,262,263,271,272,273,274,275,345,349,355,358,361,362,363,365,369,370,373,381,386,389,390,391,393,394,395,396,397,400,401,402,404,405,406,407,408,409,410,412,414,416,417,420,421,422,423,424,425,427,428,430,433,434,436,438,439,440,441,444,445,446,447,449,450,457,458,460,464,475,477,478,491,536,537,538,540,541],background_estim:368,background_interp_missing_data:155,background_map:[250,360],background_min:128,background_model:[97,99,103,104,121,361,362,369,371,396,425,464,482],background_oversampl:[155,162,448],background_pad_offset:155,background_r:[368,445],backgroundconfig:16,backgroundestim:[364,394],backgroundevalu:360,backgroundirf:[129,130],backgroundirfmodel:371,backgroundmodel:[361,371,372,393,395,396,397,400],backgroundtempl:360,backport:[356,374,378],backround:358,backscal:184,backward:[349,354,363,372,373,374,392,477],bad:[82,349,363],badli:379,balanc:475,band:[19,20,26,66,79,85,109,112,113,116,133,134,137,140,145,148,173,174,175,176,178,179,182,183,184,186,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,355,367,368,372,373,381,389,418,420,421,429,430,431,441,443,444,452,456,458,474,475,477,536],bandshdu:449,banner:379,bar:[15,78,83,86,97,99,103,104,107,118,121,129,130,188,192,213,269,299,343,366,400,403,404,410,441,479,511],bar_radiu:38,barcelona:374,base:[15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,98,99,100,101,102,103,104,107,109,110,111,112,113,114,115,116,117,118,119,120,121,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160,161,162,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,286,287,290,296,298,300,323,336,344,349,350,352,355,356,358,359,360,361,362,363,364,365,367,368,370,372,377,379,381,382,389,391,392,394,396,397,400,402,405,406,407,408,409,420,422,423,425,428,429,430,431,432,434,437,441,444,447,449,450,452,453,455,456,464,465,467,476,477,479,489,491,502,512,536,537,539,540],base_dir:[78,83,286,455,457,458,467],baselin:[78,79,218,455],basement:391,basemodel:[16,80,376],baseradi:226,bash:[381,383,538],basi:[354,355,365,368,378,402,404,441,443],basic:[45,46,65,69,70,71,72,73,74,75,76,99,104,113,217,352,355,359,360,361,362,363,365,369,373,376,385,397,407,409,417,420,422,435,437,438,443,444,450,460,465,467,469,470,475,476,477,487,488,491,535,537,538],basicconfig:[16,430,462],bayesian:367,bayesian_block:437,bayesian_edg:437,bayesian_flux:437,bayesian_x:437,baysian:358,bb:[83,86,375],bbar:[19,20],bbox_with_unit:[28,29,30,31,32,35,36,37,39,40],bcf:[130,134,135,136,145,416,423,436,440,447,455],becam:356,becaus:[175,176,178,182,184,187,188,349,350,352,354,356,360,361,363,364,368,372,373,376,379,400,402,417,418,421,434,441,448,449,450,451,455,456,457,463,464,465,475,479,538,541],becom:[349,357,359,360,363,368,376,432,439,452,479,538,541],been:[16,19,20,28,29,30,31,32,35,36,37,39,40,80,95,111,147,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,278,354,355,356,357,358,360,363,364,365,366,367,368,370,371,372,373,374,376,377,381,382,383,396,397,400,402,403,409,410,411,412,413,414,421,431,439,440,441,449,452,453,455,457,463,476,523,542],befor:[13,16,17,18,19,20,21,22,24,25,27,52,53,80,83,86,87,95,112,175,176,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,290,344,349,350,352,354,356,357,358,359,363,364,365,367,368,374,378,379,385,403,409,421,423,438,439,446,449,452,457,460,463,514,538],begin:[52,83,86,97,103,112,113,121,369,372,375,420,422,449,452,495,500,501,505,521,540],behav:[16,80,349,359,414,425,541],behavior:[83,86,90,373,399,403,414,457],behaviour:[324,349,371,372,397,402,408,439,450,456,475,539],being:[111,120,176,349,354,357,363,370,373,379,422,431,437,450,468,492,538],belong:[82,373,396],below:[52,53,83,86,174,178,185,186,338,339,340,344,346,350,352,353,358,359,363,365,366,369,372,373,375,376,377,379,380,389,390,391,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,411,412,413,414,416,420,424,441,444,446,448,450,452,453,455,456,476,479,496,540],benchmark:[365,375,379],benefit:366,benn:365,berg:537,berge2007:[363,488,489,537],besancon:469,besid:[111,121,363,364,373,421,422,449,456,463,464,492],best:[65,69,71,72,74,76,96,112,113,114,115,118,119,126,260,262,263,342,349,352,359,362,367,375,381,383,418,420,421,422,425,428,431,441,444,446,463,477,479,481,504,510,513,514,518,540,541,542],best_fit_model:422,beta:[27,28,48,218,219,220,241,372,374,396,418,422,429,444,446,506,512,513,514,519,529],better:[349,352,354,355,356,357,358,362,363,368,369,370,373,390,407,408,428,429,432,441,446,449,450,456,475],between:[19,20,26,65,83,84,86,89,99,104,109,115,116,118,126,127,136,142,144,145,146,148,158,172,174,175,176,177,178,180,183,184,185,186,187,188,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,256,260,275,308,339,340,347,349,350,357,359,360,361,362,363,365,366,368,369,370,373,374,376,377,387,397,400,403,414,416,422,424,429,431,434,437,440,441,446,448,449,450,451,456,457,465,475,477,484,485,488,496,497,537,540,542],bewar:[251,417,439],bexcub:179,bexpcub:[174,175,176,178,187,188,449],beyond:[363,373,376,396,448,467],bfg:446,bgstat:406,bi:[407,410],bia:[91,132,133,137,161,408,414,448,483],bias:[422,539],bias_energi:132,bias_perc:161,bibliographi:537,biederbeck:377,big:[356,359,366,378,410,456,539,541],bigger:176,biggest:368,billion:349,bimod:31,bin:[79,82,84,97,99,102,103,104,105,107,109,111,112,113,114,116,117,118,120,121,122,123,124,128,132,133,135,137,143,145,147,148,155,158,159,161,163,172,173,174,175,176,177,178,179,180,183,184,185,186,187,188,200,202,203,204,210,212,214,215,216,217,218,225,227,229,233,237,238,239,240,242,248,250,251,252,254,258,264,270,275,342,344,347,355,360,361,362,363,365,368,369,373,380,381,391,392,394,395,397,399,400,402,405,406,407,408,409,414,417,420,421,422,423,424,425,426,428,429,430,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,475,477,479,483,487,536,537,538,539,541],bin_cent:441,bin_edg:441,bin_volum:[179,183,186,492],bin_width:[177,180,185,441],binari:[186,188,357,363,366,375,379,400],binary_dil:[188,450],binary_erod:[188,450],binary_eros:[188,400],binary_structur:186,bind:352,binder:[357,378,408,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],binlik:113,binned_likelihood:114,binneddataaxi:[391,407],binnedtimeseri:[113,364],bins_axi:188,binsiz:[16,421,425,426,428,438,463,464],binsize_irf:[16,421,425,426,428,438,463],binsz:[97,99,103,104,134,143,145,155,158,159,163,174,175,176,178,183,184,186,187,188,365,420,430,431,432,433,436,441,443,445,447,448,449,450,452,456,457,464,486,488,489,491,492,494,496,497,498,499],binsz_irf:[97,99,103,104,106,445,448,479],binsz_irf_default:[97,99,103,104,448],binsz_wc:[183,184],bintabl:[174,175,176,178,187,188],bintablehdu:[79,82,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,179,180,186,187,188,432,449,475],birth:[29,30,36,50,51,52,53],bit:[79,126,350,352,356,357,363,367,368,376,441,449,492],bitpix:449,bkg:[16,78,83,84,97,100,101,103,104,129,130,131,161,168,211,371,395,397,402,416,420,421,425,426,428,429,432,433,436,441,445,447,448,451,455,457,458,463,464,475,482,537,539,540,541],bkg_2d:[83,129],bkg_3d:[78,83,130,455,458],bkg_:[97,103],bkg_err:441,bkg_maker:[371,417,420,422,430,439,488],bkg_model:[361,371,377,428,432,433,436,451,464,498],bkg_ob:100,bkg_sy:120,bkg_syst_fract:[120,416],bkg_syst_fraction_sensit:111,bkgfile:100,black:[103,104,338,339,346,367,409,411,416,441,443,448,453,488],blackground:416,blanch:[408,409],blanklin:[385,477,492],blind:[411,479],bll:465,blob:[374,388],block:[350,352,355,362,369,388,408],block_reduc:409,blue:[96,97,99,103,104,339,420,426,428,431,453,488],blur:33,bnz9hrow:448,board:[358,369],bodi:[28,29,30,31,32,35,36,37,39,40],boilerpl:349,boller:437,boni:[400,403],bool:[15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,35,36,37,39,40,45,76,78,79,80,82,83,84,86,88,91,95,96,97,98,99,101,102,103,104,106,111,112,113,114,118,119,121,125,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,155,162,165,166,168,169,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,190,192,193,194,195,196,197,200,201,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,240,241,244,245,246,248,249,250,251,252,275,278,287,290,308,318,320,346,349,363,430,444,448,449],boost:432,bootstrap:[83,86],border:86,bose:391,bot:355,both:[28,29,30,31,32,35,36,37,39,40,57,68,78,79,83,84,86,95,96,97,99,101,103,104,133,134,140,145,148,172,175,176,178,180,182,183,184,186,187,188,193,195,349,354,355,360,361,362,363,364,369,374,378,390,394,396,397,400,403,421,422,432,436,445,449,450,451,453,476,477,479,491,492,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,540],bother:425,bottom:[369,371,432,437,438,440,444],bound:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,95,97,99,103,104,112,113,114,115,118,180,183,185,192,197,198,201,202,203,205,207,208,209,210,213,214,216,217,218,219,220,222,225,226,228,230,231,232,233,236,239,241,243,244,245,246,249,250,251,253,254,274,358,449],boundari:[186,252,377,405,446,452,491],boundary_mask:[186,450],bounding_box:[28,29,30,31,32,35,36,37,39,40],bounds_error:[129,130,131,132,135,136,137,139,142,144,146,147,349],box:[28,29,30,31,32,35,36,37,39,40,86,97,99,115,116,183,186,188,310,311,358,363,367,373,407,450,452,492],bpl:[197,372,452],bpwl_norm:372,bracket:[132,192,412,414],brake:51,branch:[349,352,356,363,374,379,388],branchnam:349,bratio:467,brent:424,brentq:[19,20,26,113,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,261],breviti:[428,479],brief:542,briefli:[457,458],bright:[66,115,240,255,426,438,439,450,452,473,488],brighter:432,brightest:444,brigitta:[366,390,392,394,396,405,406,407,408,409,410,411],bring:354,broadcast:[28,29,30,31,32,35,36,37,39,40,83,86,175,176,178,181,184,187,188,240,290,433,447,449,491],broadcasted_shap:[28,29,30,31,32,35,36,37,39,40],broken:[197,241,375,493,524],brokenpowerlaw:372,brokenpowerlawspectralmodel:[235,241,372,397,452,505],brown2013:122,brown:[122,437],brows:[83,86,350,385,465],browser:[83,86,352,379,385,405,408,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],bruno:[375,392,394,397,400,403,407,408,409,411,412,413,414],bsd:375,bst:[83,86],buchner:400,budget:479,buffer:327,bug:[349,352,355,356,374,375,378,387,389,390,391,392,393,394,395,396,397,398,399,400,401,403,405,406,407,408,409,410,412,413],bugfix:[356,358,374,407,408],build:[16,80,174,205,349,355,356,357,362,363,365,369,373,374,375,376,378,396,402,411,424,428,441,448,450,476,479,538],build_doc:[314,350,352,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,510,513,526],built:[10,162,205,317,333,348,349,350,360,361,363,365,366,368,376,379,386,409,414,444,451,456,460,475],builtin:465,bullet:354,bump:[363,407],bunch:[350,538],bundl:[96,97,99,103,104,358,361,379,401,409,430,445,448,475,492,536,537],bunit:[335,409,449],bureaucrat:354,burkert:[17,467],burst:437,butterfli:[408,446,465],button:[411,449],bx:[28,29,30,31,32,35,36,37,39,40],by_alia:[16,80],bytearrai:[16,80,296],bytestr:[83,86],c0:[28,29,30,31,32,35,36,37,39,40],c1:[28,29,30,31,32,35,36,37,39,40],c:[26,28,29,30,31,32,35,36,37,39,40,48,83,86,181,191,207,244,264,270,278,317,348,349,366,381,382,384,401,408,441,443,446,456,467,491,509,520,538,539,541],c_0:[173,174,183,186],c_:191,c_i:[173,174,183,186],c_n:[173,174,183,186],cach:[83,84,86,95,97,99,103,104,250,286,287,358,359,361,368,371,379,393,397,400],cahil:402,cal_gen_92_002:[132,180],cal_gen_92_002_summari:132,calcul:[13,15,19,20,26,91,99,104,122,123,124,161,197,198,201,205,207,208,209,213,219,220,222,226,228,230,236,241,243,244,245,246,249,252,253,266,268,269,275,277,300,331,339,340,359,362,390,396,400,401,402,408,413,416,437,441,443,463,464,467,479,537,541],caldb:[78,130,132,134,135,136,145,180,402,416,423,432,433,436,440,447,455],calendar:[374,378],calib_vers:[456,465],call:[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,79,82,83,86,96,97,99,103,104,122,123,124,129,130,131,132,135,136,137,139,142,144,146,147,157,192,197,198,199,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,229,230,231,232,236,237,238,240,241,242,243,244,245,246,248,249,252,253,290,302,321,327,335,338,346,349,350,352,354,355,358,361,362,363,364,365,367,369,371,373,375,377,379,381,385,396,400,414,420,421,430,444,445,446,448,449,452,456,458,463,464,465,475,479,488,489,490,491,492,538,539,540,541],callabl:[16,45,80,258],callback:[151,538],caller:[349,360],camera:[440,447,448],can:[15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,46,47,50,56,65,66,67,78,79,80,83,86,88,97,99,102,103,104,107,112,113,118,119,121,126,130,135,143,145,148,152,158,161,173,174,175,176,178,180,181,183,184,185,186,187,188,190,192,194,196,197,198,200,201,203,204,205,207,208,209,212,213,215,217,219,220,222,225,226,227,228,230,231,232,236,237,238,241,242,243,244,245,246,248,249,252,253,261,267,278,290,291,296,299,308,325,327,342,346,348,349,350,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,388,390,392,394,396,397,400,402,403,407,408,409,410,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,463,464,465,467,469,470,475,476,477,479,482,483,484,485,486,488,489,490,491,492,512,514,523,533,535,536,537,538,539,540,541],candel:205,candid:[374,402,444],candl:[256,537],cannot:[16,65,80,83,86,90,105,112,113,190,270,317,346,352,362,363,414,451,452,477,492],cap:[51,54],capabl:[359,456,467],captur:[349,365],car:[97,99,103,104,155,186,187,188,203,225,363,392,430,447,448,449,464,465],card:[79,84,95,96,97,99,101,103,104,133,134,140,145,148,175,176,178,182,184,187,188,449],care:[278,349,358,365,374,417,422,428,449,538],carefulli:[375,432,433],carina:[33,38],carlo:[367,484],carri:[364,372,374,376,400,418,464],cartesian:[41,46,176,187,188,281,283,413,465,491],casebattacharya1998:[29,30,35,36,39,40,48],cash1979:[537,540],cash:[97,99,103,104,155,265,270,349,361,400,423,425,428,436,440,445,448,451,463,464,475,537],cashcountsstatist:[385,538,540],cast:86,cat:[64,65,75,357,379,407,408,418,444,452,474,537,538],catalog:[6,45,46,47,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,111,114,363,369,388,392,394,396,400,401,402,405,406,407,408,409,411,418,424,429,445,452,454,456,460,469,502,536,537],catalog_3fgl:418,catalog_3fhl:[418,444],catalog_3fhl_bright:444,catalog_4fgl:444,catalog_4fgl_roi:444,catalog_gammacat:[418,444],catalog_hgp:444,catalog_registri:[418,444,450],catalogimageestim:409,catalogu:[74,400,407],catch_warn:479,categori:[349,360,373,400,450,452,493],caus:[356,363,409,412,479],cautious:431,caveat:[192,496],cax:447,cb98:48,cbar:337,cbar_kw:343,cbarlabel:343,cc:[358,363,365,368,370,372,375,377],ccube:[174,175,176,178,179,180,186,187,188,449],cd:[349,350,352,365,381,382,383],cdelt1:449,cdelt2:449,cdelt:[186,188],cdf:[300,362,432,446],cdot:[51,52,53,54,97,103,230,244,372,452,475,495,500,501,505,508,509,516,517,519,520,521,522,527,528,529,531,539],celesti:[449,491,495,499,542],celfix:502,cell:[357,385,411,429,441,449,455,456,465],center:[17,18,21,22,23,24,25,27,41,79,83,86,91,97,99,103,104,112,113,115,116,117,121,132,133,134,135,136,137,140,144,145,146,148,155,158,159,161,162,163,165,166,168,169,174,175,176,177,178,179,180,183,184,185,186,187,188,189,199,200,203,204,212,215,225,227,229,237,238,240,242,248,250,252,280,284,310,349,350,363,365,372,373,390,391,400,402,416,417,420,422,423,424,425,426,428,430,432,433,434,439,440,441,443,447,448,449,450,451,452,455,456,464,465,481,482,483,484,485,486,488,489,491,492,495,496,499],center_coord:[173,174,179,183,186],center_pix:[173,174,183,186],center_ski:492,center_skydir:[173,174,183,186,448,449,456,457,486,488,489],centr:[443,450,467],central:[361,370,418,465],cern:467,certain:[50,79,83,86,192,267,348,363,365,367,373,416,443,448,449,456,474,492],certainli:352,certif:375,certifi:375,cfa:[192,446],cff:378,cg:471,ch:53,chain:[151,362,365,394,448,479,489],chainer:367,chakraborti:[406,407],challeng:[356,358,362,407,426,428,430,455],chanc:354,chang:[16,19,20,26,80,82,83,86,113,174,183,186,197,198,201,205,207,208,209,213,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,324,334,350,352,353,354,356,357,358,359,360,361,362,363,364,366,367,368,369,371,373,374,375,378,379,387,389,390,391,392,393,394,395,396,397,400,402,406,407,408,409,410,412,415,422,423,424,430,432,433,437,438,445,446,450,452,455,463,475,479,486,488,492,502,510,513,538],changelog:[349,378,401,409],channel0:467,channel1:467,channel:[19,20,26,348,351,352,366,408,433,443,449,458,467],channel_registri:[19,20,26],chapter:443,charact:[83,86,349,451],character:[269,373,432],characterist:[21,25,27,51,52,53,54,122,267,360,414,437,537],charg:[375,514],chatti:[349,430],cheat:384,check:[28,29,30,31,32,35,36,37,39,40,78,79,83,84,86,112,113,133,173,174,177,179,180,183,185,186,188,194,196,203,225,240,323,325,352,365,371,375,378,379,381,382,383,386,395,400,408,418,436,447,460,467,479,483,492,535,538,539],check_limit:[193,194,195,196],check_random_st:349,check_tutorials_setup:[416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],checker:[406,409],checklist:379,checkout:[349,352,391,428,432,452],checksum:[79,84,95,96,97,99,101,103,104,133,134,140,145,148,175,176,178,182,184,187,188],chen:409,cherenkov:[135,362,381,386,417,420,426,438,448,455,457,488,489,537],cherri:[349,356,363,374],chi2:[96,361,391,431,440,446,475,540],chi2assym:394,chi:[266,364,539,540,541],child:359,children:[428,436,449,463,464],chime:352,chisq:266,chisquar:266,chmod:538,choic:[362,366,368,375,420,421,423,425,446,457,463,480,535,538],choos:[45,173,174,177,179,180,183,186,253,292,349,361,363,365,369,381,400,418,420,424,428,430,440,445,446,448,449,451,452,453,456,464,479,538],chose:[432,456,457,540,542],chosen:[26,132,145,148,174,175,176,184,187,188,203,212,225,349,352,364,365,368,421,439,448,449,453,457,463,477,487,488,492],christoph:[354,355,356,357,358,359,360,361,363,365,366,367,368,369,388,389,390,391,392,393,394,395,401,404,405,406,407,408,409,410],chrome:[83,86],chromei:402,ci:[349,352,356,375,379,394,400,402,405,411],circl:[79,163,346,350,363,402,420,430,440,443,448,450,453,455,464,465,476,486,488,489,492],circle_area:350,circleannulusskyregion:[237,238,488],circledast:475,circlepixelregion:363,circleskyregion:[97,99,103,104,157,158,162,186,204,350,363,416,417,420,422,423,426,428,430,432,433,439,443,445,448,450,451,464,486,488,489,492],circular:[86,97,99,162,174,176,186,360,368,370,417,422,445,453,488,492],circumv:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],cirelli:[26,467],citat:378,cite:[352,375],cl:[16,80,97,103,376],clabel:446,clang:385,clarif:354,clarifi:[373,414],class1:444,class2:444,classic:[358,367,381,390,417,420,426,430,445,448,477,479,488,489,537,540],classifi:457,classmethod:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,56,78,79,80,81,82,83,84,86,87,89,95,96,97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,376],classproperti:400,classvar:[16,80],claudio:413,claus:[349,375],clean:[349,350,352,357,358,363,365,367,388,390,391,392,393,394,395,396,397,400,407,408,409,410],cleaner:411,cleanup:[356,368,379,388,393,394,399,400,401,405,406,408],clear:[87,95,182,225,349,354,356,360,363,364,368,369,370,408,431,542],clearer:393,clearli:[122,349,354,355,363,366,374],cli:[11,365,410,536],click:[348,365,366,385,393,408,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,538],clip:[19,20,26,173,174,177,179,180,183,185,186,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,252,253,290,393,394,424],clockwis:[204,212,215,495],clone:[352,382,409],close:[129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,177,178,179,180,183,184,185,186,187,188,252,324,325,326,358,363,378,403,414,446,523],closer:465,closest:[107,111,114,118,121,174,175,176,178,184,187,188,450,477],cloud:[379,460],cluster:[6,91,276,277,362,414,454,460,476,479],clutter:[428,479],cm2:[51,54,64,65,101,113,135,188,256,334,416,418,421,423,424,428,429,430,432,433,436,438,439,440,441,443,444,445,449,451,452,456,463,464,465,477,492,507,510,513,518,523],cm3:[17,18,19,21,22,24,25,27,52,443],cm5:443,cm:[19,20,28,29,30,31,32,35,36,37,39,40,45,51,52,53,54,65,96,113,121,197,201,207,209,213,220,223,230,232,240,241,244,245,246,255,334,360,372,417,418,420,421,422,423,424,425,428,429,430,431,432,433,436,440,441,443,444,446,452,455,456,463,465,472,473,477,479,494,495,496,497,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,537],cmap:[97,99,103,104,339,340,422,428,443,449,451,456,457,463,464,488],cmb:514,co:[53,181,374,375,416,495,496,497],coadd:[175,176,178,184,187,188],coars:445,coarser:[180,185,445],codaci:379,codata:52,code:[19,20,26,78,79,83,86,132,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,344,352,353,354,356,357,359,362,363,364,365,366,367,368,369,370,372,373,374,375,376,382,385,388,391,392,394,395,396,397,400,402,405,406,407,408,409,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,467,479,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,538],codebas:[350,366,388,407,409],codemeta:402,codespel:400,codestyl:352,coeffici:[116,218,222,504],coerce_unit:[28,29,30,31,32,35,36,37,39,40],col0:[83,86],col1:[83,86],col2:[83,86],col:[83,86,400],col_b:[83,86],col_c:[83,86],col_d:[83,86],col_fit_deriv:[28,29,30,31,32,35,36,37,39,40],col_label:343,collabor:[339,340,354,356,358,362,402,431,456,537],colleagu:[352,538],collect:[87,95,179,182,194,203,225,349,351,376,379,407,408,421,445,451,467,476,480,484,537,542],collis:50,colnam:[83,86,175,176,178,184,187,188,456,465],color:[96,103,104,129,130,188,338,339,340,343,346,350,416,418,420,421,422,423,424,426,428,430,431,434,437,438,441,443,446,448,451,453,479,488,492,495,496,514],colorbar:[113,129,130,132,135,136,137,142,143,144,146,188,337,343,446,449],colorblind10:479,colorblind:479,colormap:[338,339,340,388,401,465],colormap_hess:[370,543],colormap_milagro:543,colour:411,column:[41,43,44,46,47,56,79,83,86,98,102,112,113,116,126,129,130,132,156,175,176,177,178,179,180,184,185,187,188,251,269,276,319,320,321,322,342,343,346,347,349,362,364,373,411,414,416,432,433,441,444,449,452,455,476,479],column_nam:447,column_prefix:180,columnclass:[83,86],columnspac:346,com:[19,20,26,64,122,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,305,306,317,349,352,369,374,378,379,382,407,542],combin:[94,96,97,99,103,104,161,169,175,176,178,183,184,187,188,198,240,349,355,359,360,361,362,363,364,369,372,381,393,408,414,418,423,428,429,436,440,445,446,447,448,449,450,452,457,464,465,467,469,479,486,491,506,536,537],combined_ev:476,combining_and_defin:[416,423,425,428,430,436,440,455],come:[67,352,355,356,357,358,359,363,364,365,366,368,369,374,376,378,379,396,397,400,409,410,414,420,428,436,452,455,463,538],comma:[69,70,71,72,73,74,75,76,444],command:[6,13,89,96,113,136,142,144,146,348,350,352,357,358,360,365,366,379,380,381,382,383,384,390,394,405,408,409,411,432,478,536],commensur:188,comment:[113,349,350,354,358,362,363,365,366,368,370,372,374,375],commit:[349,352,357,363,374,375,387,388,411],committe:[354,356,374,375],commod:375,common:[90,348,349,350,352,354,355,363,365,369,370,372,373,375,382,384,385,400,402,421,422,434,444,447,450,452,463,464,467,474,477,478,492,496,538],common_irf_head:447,commonli:[29,79,363,367,409,434,467,535,536,538,540,543],commun:[365,371,375,378,380,386,458],comp:444,compact:[16,80,83,86],compar:[83,86,114,115,118,119,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188,192,260,349,363,366,369,397,413,414,416,417,420,424,428,431,434,436,439,444,446,448,456,463,474,537,539],comparison:[82,83,86,95,118,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,180,183,184,186,187,188,308,405,469],compat:[28,29,30,31,32,35,36,37,39,40,83,86,175,176,178,187,188,211,354,356,360,363,372,374,376,377,385,388,390,392,409,449,491],compil:[352,401],complain:352,complaint:367,complement:369,complet:[13,16,80,308,349,355,359,360,361,362,363,366,367,369,373,374,375,387,389,390,391,392,393,394,395,396,397,400,402,405,406,407,408,409,410,428,433,446,453,460,479,484],complex:[349,350,355,359,363,364,365,371,373,385,417,420,430,433,437,440,445,449,450,452,453,456,488],complianc:[375,411],compliant:[175,176,178,187,188,537],complic:[363,492],compon:[15,28,29,30,31,32,35,36,37,39,40,65,76,77,84,97,98,99,102,103,104,118,122,147,149,183,203,225,226,240,255,360,361,362,365,371,372,390,394,396,400,408,409,421,422,423,425,428,429,430,431,432,433,436,438,439,440,444,445,451,452,455,456,463,464,467,475,477,479,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,537],component_1:360,component_2:360,component_class:444,components_model:76,components_statu:65,compos:[28,29,30,31,32,35,36,37,39,40,355,375],composit:[57,68,76,289,375,407],compound:[183,190,198,309,313,363,372,434,493,524],compoundmodel:[28,29,30,31,32,35,36,37,39,40,402],compoundpixelregion:313,compoundskymodel:360,compoundskyregion:[190,309,313],compoundsourcemodel:360,compoundspectralmodel:[235,372,414,452,456,504,506,510,513,515,518,523],compress:357,compris:457,compromis:[349,354,362],compton:[226,396,514],compulsori:452,comput:[16,19,20,23,26,28,29,30,31,32,33,34,35,36,37,38,39,40,79,80,82,84,89,91,95,96,97,99,103,104,107,109,111,112,113,114,115,117,118,119,120,121,122,123,124,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,150,161,162,164,167,168,169,170,172,174,175,176,178,180,183,184,185,186,187,188,189,192,197,198,201,203,205,207,208,209,213,217,219,220,222,225,226,228,230,231,232,236,241,243,244,245,246,249,251,253,255,256,260,261,262,263,266,267,268,269,274,277,281,282,285,349,358,359,360,361,362,363,364,367,369,370,371,372,373,377,379,381,382,386,388,390,391,392,393,396,397,399,400,401,403,405,406,407,408,409,410,411,412,413,414,417,422,424,428,429,433,434,437,438,439,441,443,445,448,451,452,453,456,457,458,463,465,467,475,477,479,484,488,514,536,537,538,539,540,541,542],computation:[28,29,30,31,32,35,36,37,39,40,192,362,363,475],compute_chisq:407,compute_differential_jfactor:23,compute_errn:[262,263,411,540],compute_errp:[262,263,540],compute_flux_doubl:122,compute_fpp:123,compute_fvar:[124,268],compute_jfactor:[23,443],compute_lightcurve_doublingtim:437,compute_lightcurve_fpp:437,compute_lightcurve_fvar:437,compute_lima_map:396,compute_npr:362,compute_upper_limit:[262,263],computedfieldinfo:[16,80],con:[349,365],concaten:[79,82,87,177,180,361,365,371,414,449],concentr:310,concept:[16,80,369,370,376,386,443,449,480],conception:[362,371],concern:[352,354,363,365,366,368,370,372,375,400,410,457,540],conclud:358,concret:[16,80,366,369],conda:[348,352,356,357,366,369,374,378,379,381,382,383,384,385,390,392,408,409,538],condit:[52,53,128,194,196,203,225,373,377,397,416,420,423,433,444,450,451,453,457,475,484],conduct:[411,440],cone:[86,363,421,453,463,464,479],conesearch:365,conf:[83,86,349,350,379,391,406],conf_1d:438,conf_3d:438,conf_max:[193,195],conf_min:[193,195],confid:[111,192,193,195,262,263,360,367,391,396,410,537,540],confidence_opt:192,config:[15,16,80,348,350,355,357,358,365,366,369,376,381,383,393,394,395,400,408,421,428,463,535],config_dict:463,config_joint:428,config_paramet:[107,109,110,111,114,115,117,118,119,120,121],config_stack:428,config_str:16,configdict:[16,80],configpars:406,configur:[11,15,16,46,80,83,86,96,103,104,107,109,110,111,114,115,117,118,119,120,121,298,349,350,352,358,360,364,365,369,370,376,379,385,393,395,396,400,402,411,414,420,422,430,432,433,455,460,478,484,537,538],confirm:352,conflict:[83,86,349,352,375],confluenc:458,conform:[16,80,449],confus:[349,350,355,368],connect:[359,420,434,436,450,464,535],consant:[175,176,178,184,187,188],consciou:354,consecut:[158,308,349,374],consensu:[354,375],consent:349,consequ:[375,433,492],conserv:[475,499],consid:[19,20,59,91,155,162,165,166,168,169,176,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,260,345,354,355,360,361,363,364,365,366,367,368,369,371,375,377,417,420,422,428,432,433,437,450,476,484,541],consider:[365,390,400,408,428],consist:[71,86,90,112,113,133,134,145,148,175,176,178,187,188,212,215,349,359,360,362,363,364,369,376,393,394,395,396,397,404,408,409,411,413,414,421,422,423,424,431,436,440,446,448,449,452,463,512,514,539],consol:[349,538],consortium:[376,455],const3d:[28,29,30,31,32,35,36,37,39,40],const_norm:372,constant:[50,51,52,53,97,103,107,135,175,176,178,184,186,187,188,199,200,201,202,204,216,218,307,362,363,368,408,438,456,472,475,493,503,524,534,537,541],constant_model:525,constantmodel:410,constantnormspectralmodel:372,constantspatialmodel:[234,372,452,456,494],constantspectralmodel:[235,372,433,452,507],constanttemporalmodel:[247,372,393,452,525],constitu:[28,29,30,31,32,35,36,37,39,40],constitut:445,constrain:[28,29,30,31,32,35,36,37,39,40,375,425,429,448],constraint:[28,29,30,31,32,35,36,37,39,40,479],construct:[16,80,180,219,220,315,492,537],constructor:[173,174,175,176,178,180,183,184,185,186,187,188,414,464,490],consum:[446,479],contact:[351,356,358,375,384,386,389,390,391,405,408],contain:[13,16,19,20,26,57,59,62,65,78,79,80,82,83,84,86,87,90,91,95,96,97,99,102,103,104,105,112,113,121,126,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,150,155,157,160,162,167,170,172,173,174,175,176,178,179,181,182,183,184,185,186,187,188,189,190,192,194,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,223,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,254,267,276,277,342,344,346,347,349,352,353,355,357,358,359,362,363,364,365,366,368,369,370,371,373,375,378,379,386,390,394,395,396,397,399,400,402,403,406,407,408,409,410,414,416,418,420,421,422,425,428,429,432,433,436,438,439,441,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,468,470,475,476,477,479,483,487,488,491,492,493,535,537,539,540,541],containment_correct:[16,97,99,162,416,420,421,422,425,426,428,430,438,439,441,445,448,463],containment_fract:91,containment_radiu:[136,142,144,145,146,148,416,445,447,450],containment_radius_map:[145,148],contains_pix:[173,174,183,186],contains_wcs_pix:183,contamin:[65,426,444,450,488],content:[80,113,175,176,178,184,187,188,316,349,352,354,358,364,369,376,379,394,403,408,417,449,450,455,457,476,479,490,491],content_typ:[16,80],context:[16,80,83,86,194,196,203,225,298,327,349,364,375,379,449,469],contigu:[180,185,400],continu:[180,356,358,359,362,363,365,366,368,369,374,385,388,389,392,400,405,406,407,409,420,433,450,491,537],continuous_upd:[428,436,449,463,464],contour:[190,192,341,358,410],contour_:446,contour_alpha_amplitud:446,contour_alpha_beta:446,contour_beta_amplitud:446,contourf:188,contract:375,contrari:[350,357],contrast:[369,537],contrera:410,contribut:[95,203,211,225,240,345,349,351,358,363,371,373,379,386,389,400,402,404,448,480,514,535,538,539],contributes_to_stat:95,contributor:[349,352,369,379,387,398,399],control:[79,83,86,97,99,103,104,349,362,380,382,416,443,449,479,540],controversi:[349,354,355,369],conveni:[13,112,348,349,352,359,363,371,373,380,381,383,390,392,397,400,402,407,430,443,444,445,449,450,451,452,455,457,465,474,478,536],convent:[28,29,30,31,32,35,36,37,39,40,79,174,175,176,178,186,187,188,371,373,392,393,396,397,411,445,448,449,452,475,477,484,491,540],converg:[377,391,412,420,422,428,446,475,479,495],convers:[80,83,86,112,113,354,373,376,381,383,400,413,414,416,492],conversion_typ:[456,465],convert:[16,19,23,28,29,30,31,32,35,36,37,39,40,50,79,81,82,83,86,94,96,97,99,101,103,104,112,113,116,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,158,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,193,194,195,196,203,217,225,260,275,278,279,283,296,312,330,332,333,350,355,363,364,373,376,379,401,413,414,416,426,431,439,440,445,446,450,451,455,465,477,483,488,491,540,542],convert_bytestring_to_unicod:[83,86],convert_unicode_to_bytestr:[83,86],convinc:465,convolut:[107,111,116,121,143,176,188,348,361,367,388,395,397,406,408,409,426,449,475,492],convolution_method:176,convolv:[99,121,143,176,188,360,388,397,400,409,423,424,426,449,485,514],convolve_ful:176,convolve_wc:176,cookiecutt:365,coolwarm:[428,456,457,464],coord:[13,28,29,30,31,32,35,36,37,39,40,79,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,227,267,360,393,433,449,450,488,491,492,498],coord_to_idx:[173,174,177,179,180,183,185,186,449],coord_to_pix:[173,174,177,179,180,183,185,186,449],coordiant:447,coordin:[6,28,29,30,31,32,35,36,37,39,40,41,46,47,79,81,83,84,85,86,89,90,97,98,99,102,103,104,112,113,115,116,117,122,126,129,130,131,132,133,134,135,136,137,138,139,142,144,145,146,147,148,158,168,172,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,203,204,212,215,217,225,227,229,237,238,240,252,267,278,279,280,281,282,283,284,285,290,300,306,310,311,325,350,354,355,356,358,362,363,368,369,372,374,375,388,390,393,395,406,408,409,411,416,417,420,422,423,426,430,431,432,433,434,436,438,439,440,441,443,445,447,448,449,450,451,452,453,455,456,457,458,464,465,475,483,488,490,491,495,496,499,536,537,542],coordsi:395,copi:[11,16,19,20,26,28,29,30,31,32,35,36,37,39,40,78,79,80,82,83,84,85,86,87,94,95,96,97,99,102,103,104,107,109,110,111,114,115,117,118,119,120,121,133,134,140,145,148,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,278,321,349,354,357,359,363,365,371,378,379,385,400,402,409,410,411,414,417,420,422,423,428,430,436,439,440,444,446,448,452,456,479,488,492,502,538],copy_data:[83,86,203,211,225,240,248,250,252],copy_indic:[83,86],copy_ob:[78,479],copy_on_getitem:[83,86],copyright:385,core:[16,28,29,30,31,32,35,36,37,39,40,53,57,58,59,60,61,62,63,64,65,68,75,76,77,80,96,97,107,109,111,113,117,119,120,121,131,132,133,134,135,137,141,142,145,146,147,150,151,152,155,156,157,160,161,175,176,184,187,188,211,225,240,242,243,250,254,348,349,356,362,363,370,374,375,386,389,406,410,414,416,422,423,425,428,430,432,434,436,440,451,455,467,477,538],corner:[363,366,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],corr_coord:[145,148],correct:[28,29,30,31,32,35,36,37,39,40,65,79,84,97,98,99,134,145,148,162,167,168,211,227,228,252,349,361,362,374,375,376,378,392,395,397,398,399,400,403,406,407,409,411,412,413,414,416,420,421,422,423,432,436,438,444,445,446,448,450,451,452,457,463,465,476,477,486,498,510,513,515,518,523],correctli:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,352,375,376,390,392,397,402,403,412,447,448,449,450,451,496],correl:[19,20,26,111,116,191,197,198,201,205,207,208,209,213,219,220,222,226,228,230,236,241,243,244,245,246,249,253,367,372,373,400,410,431,434,446,450,452,463,477,535],correlate_off:111,correlation_radiu:[16,111,421,425,426,428,441,457,463,477],correspond:[16,19,20,26,28,29,30,31,32,33,35,36,37,39,40,45,80,83,85,86,95,97,99,103,104,112,113,114,115,116,118,119,121,132,133,134,140,143,145,147,148,149,173,174,175,176,178,179,180,182,183,184,185,186,187,188,190,197,198,201,205,207,208,209,212,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,342,359,360,361,362,369,370,373,375,377,394,397,417,418,420,421,422,428,432,433,438,444,446,448,449,452,453,455,456,457,463,465,475,476,477,479,491,492,501,504,536,537,542],cosimo:[397,400,402,408,409,411,414],cosmic:[52,205,255,367,455],cost:537,coto:408,could:[16,80,350,352,354,355,358,360,361,362,363,364,365,366,367,368,369,370,373,375,376,379,384,417,420,428,430,444,455,456,463,478],count:[16,79,87,95,97,99,100,101,102,103,104,106,107,111,112,113,114,115,117,118,119,120,121,125,150,152,155,156,157,162,164,168,172,175,176,178,179,180,184,187,188,194,196,203,225,262,263,264,265,270,271,274,275,300,334,336,345,347,355,357,360,361,362,364,365,369,373,391,392,395,397,400,402,403,409,410,414,416,417,420,421,422,423,424,425,426,428,430,432,434,436,438,439,440,441,445,446,448,449,450,457,462,463,464,465,477,479,483,486,487,488,489,492,537,538,539,541],count_bkg:441,count_statist:540,counter:[204,212,215,495],counts_3d:449,counts_imag:[434,445],counts_min:128,counts_off:[97,99,100,103,104,150,156,157,160,347,361,402,413,414,421,422,423,426,430,441,445,475,540],counts_on:391,counts_rat:445,counts_statist:[262,263],countspredictor:360,countsspectrum:[361,364,391,392,394,396,405],countsstatist:[262,263,373,396,397,400,411],coupl:[357,363,368,379,397,409,449],cours:[349,352,356,359,366,385,421,428,445,449,456,463,538,541],cousin:[391,397,405,407,537],cousins2007:[537,540],coutinho:[397,400],cov:[231,232,379],cov_matrix:[28,29,30,31,32,35,36,37,39,40],covar:[191,342,410],covar_list:191,covari:[15,19,20,26,28,29,30,31,32,35,36,37,39,40,95,114,115,118,119,192,194,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,342,367,377,396,402,410,411,414,421,463,540],covariance_data:[203,211,225,240,250],covariance_opt:192,covariance_typ:377,covariancegaussianprior:377,covarianceresult:[96,192,417,418,420,421,422,428,429,430,441,446,456,463,464],cover:[251,349,351,363,364,365,373,417,438,439,445,449,460,465,480],coverag:[358,364,379,388,392,400,406,409,439,446],coveral:[379,388],cpu:[114,115,118,121,298,299,362],cpython:354,crab:[65,79,103,104,222,256,260,357,361,369,388,394,406,408,420,421,422,429,430,438,444,445,446,450,456,457,458,463,464,465,477,488,492,537],crab_10gev_100tev_dataset:429,crab_3fhl:465,crab_3fhl_spec:465,crab_events_pass4:457,crab_fp:421,crab_fp_tabl:421,crab_hess_ecpl:256,crab_magic_lp:422,crab_model:446,crab_posit:488,crab_spec:429,crab_spectrum:446,crabnebula:438,crabspectrum:392,creat:[11,13,16,19,20,26,28,29,30,31,32,35,36,37,39,40,56,57,58,59,60,61,62,63,64,65,68,78,79,80,82,83,84,86,87,88,94,96,97,99,103,104,105,106,107,112,113,114,115,118,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,155,157,158,159,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,256,260,278,288,309,313,327,336,338,343,349,350,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,383,385,392,393,394,397,400,402,408,409,411,412,413,414,416,418,421,422,423,428,430,431,432,434,436,438,439,440,441,443,444,446,448,451,452,453,455,456,457,458,462,463,465,467,474,475,476,479,483,486,488,489,490,491,494,496,497,498,499,504,514,523,535,536,538,543],create_crab_spectral_model:[420,422,429],create_fermi_isotropic_diffuse_model:[451,456],create_map_dataset_from_observ:[88,102],creation:[28,29,30,31,32,35,36,37,39,40,80,115,186,358,359,363,372,375,394,400,437,452,458],creator:[352,376,421,452,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],creatormedadata:376,creatormetadata:[80,376],credit:385,crimson:422,criteria:[15,86,402,448,453,460],criterion:[86,121,276,416,479],criticis:340,crop:[82,173,174,175,176,178,183,184,186,187,188],crop_width:[173,174,175,176,178,183,184,186,187,188],cross:[19,355,369,467],crowd:444,crpix1:449,crpix2:449,crpix:186,crucial:[376,432,433,445],cruft:379,crux:[33,38],crval1:449,crval2:449,cryptic:360,csh:538,csobsselect:359,css:[83,86,379],cstat:[361,394],csv:113,ct:[334,409,446],cta:[78,79,85,97,99,103,104,107,111,130,134,135,136,145,155,205,255,337,342,344,349,353,356,357,358,362,365,368,369,378,381,386,389,390,400,406,407,408,409,416,421,423,425,428,430,432,433,436,440,441,445,447,451,453,457,458,459,460,463,467,476,477,479,481,484,536,537,542],cta_data_analysi:[369,430,435],cta_dataset:451,cta_north:92,cta_sensist:369,cta_sensit:[416,419],cta_simul:389,cta_south:[92,416,423,432,433,436,440],cta_util:409,ctadata:455,ctao:[369,375,455,479],ctapip:[352,356,358,365,366,368,369,370],ctaspectrumobserv:409,ctobssim:[78,362],ctool:[359,362,365,369,512],cts_sigma:446,ctselect:359,ctype1:449,ctype2:449,cube:[46,97,99,121,150,168,175,176,178,184,187,188,221,240,349,360,361,362,368,369,370,372,381,388,392,393,396,401,404,405,406,407,408,409,424,425,430,434,456,465,475,484,486,491,492,537],cubic:449,cumbersom:[359,367],cumsum:[129,130,131,132,135,136,137,139,142,144,146,147,175,176,178,184,187,188],cumul:[95,129,130,131,132,135,136,137,139,142,144,146,147,175,176,178,184,187,188,300,362,420,432,451,479],cunit1:449,cunit2:449,curat:[379,389],curl:[65,366,381,383,455],current:[11,15,19,20,26,28,29,30,31,32,35,36,37,39,40,79,81,82,83,84,85,86,94,95,96,97,99,103,104,113,114,118,138,161,173,174,175,176,178,184,185,186,187,188,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,327,343,349,350,352,355,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,377,381,382,383,392,410,421,443,447,448,449,451,455,457,458,463,464,468,475,476,477,492,535,537,538],curv:[15,19,20,26,79,118,122,197,198,201,205,207,208,209,213,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,269,341,353,360,362,365,369,373,381,390,394,396,397,401,404,405,407,409,411,414,416,437,442,460,475,476,477,478,487,488,493,534,536],curve_fit:342,cuspi:467,custom:[16,28,29,30,31,32,35,36,37,39,40,78,80,85,117,358,359,360,365,367,372,376,380,394,395,397,409,416,423,425,428,430,436,440,445,447,449,455,479,523],custom_model:[28,29,30,31,32,35,36,37,39,40],customari:452,customis:[369,447],cut:[86,111,147,161,162,359,408,414,416,419,423,441,445,448,449,453,455,460,464,465,475,476,487,488,491,535],cutoff:[207,208,209,244,245,246,260,394,414,423,428,493,524],cutout2d:[97,99,133,134,140,145,148,151,186,188,250,355],cutout:[97,99,103,104,133,134,140,145,148,151,174,176,184,186,188,250,355,361,390,395,400,406,409,425,426,428,430,434,445,448,456,464,465,475],cutout_and_mask_region:[188,414],cutout_info:394,cutout_mod:151,cutout_slic:186,cutout_width:151,cval:[175,176,178,184,187,188],cwd:357,cwt:[369,394,406,409],cx:446,cxc:[192,369,446],cy:446,cyan:346,cycl:[346,352,353,354,366,368,382,407,411],cycler:[346,416],cython:[352,391,401],d:[19,20,23,83,86,182,185,217,222,233,251,256,317,352,367,369,402,411,418,432,433,440,449,452,453,484,491,495,525,526,527,528,529,530,531,532,533,538,541],dai:[83,86,185,210,214,216,233,239,352,363,369,378,379,449,531,538],daniel:[410,413],dark:[1,17,18,19,20,21,22,23,24,25,26,27,369,377,409,414,454,460,468,491,536],dark_matter_spectra:26,darkbit:467,darkmatt:[6,17,18,19,20,21,22,23,24,25,26,27,235,350,369,409,443,468],darkmatterannihilationspectralmodel:[20,235,411,443,452],darkmatterdecayspectralmodel:[235,443,452],darkorang:[420,421],darksusi:467,darwin:385,dash:[441,443],dashboard:379,dat:[26,83,86,203,225,421,463,467],data:[6,11,15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,112,113,114,115,116,117,126,127,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,152,155,156,157,161,168,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,191,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,264,269,270,272,273,275,286,287,290,308,316,319,320,328,337,338,339,340,342,343,348,350,353,356,359,360,361,362,363,365,368,369,370,371,372,373,375,377,378,381,385,386,388,389,390,391,392,394,395,396,397,400,401,402,403,405,406,407,408,409,410,411,414,416,418,423,424,425,426,430,432,433,436,440,443,444,446,447,450,451,452,453,454,455,456,458,462,466,467,474,475,477,479,481,482,483,484,485,486,488,489,491,492,497,498,510,513,515,517,518,523,535,536,537,540,541,542],data_extend:[67,68,69,70,71,72,73,74,75,76],data_nbyt:[173,174,183,186],data_path:457,data_reduct:365,data_shap:[96,97,99,103,104,173,174,183,186,445,492],data_shape_ax:[174,183,186],data_shape_imag:186,data_stor:[78,155,365,385,422,430,432,439,441,448,453,455,457,458,462,464,476,486,488,489],data_storag:476,data_summari:406,dataaxi:391,databas:[355,479],dataclass:349,datafram:[83,86],dataset1:475,dataset2:475,dataset:[6,15,16,19,20,26,62,89,93,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,115,118,119,120,121,125,128,133,134,140,145,148,150,151,152,155,156,157,160,161,162,182,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,298,342,345,346,352,353,355,357,362,364,365,366,368,369,373,377,378,379,381,383,388,389,390,391,392,393,394,395,396,397,400,401,402,403,404,407,409,410,411,412,413,414,418,420,423,424,430,431,432,434,436,441,443,444,449,452,453,454,455,456,458,460,462,465,476,477,479,484,486,487,488,489,491,498,502,504,532,533,535,536,537,538,539,540],dataset_1:477,dataset_2:477,dataset_3fgl:418,dataset_3fhl:418,dataset_cta:445,dataset_empti:[417,420,422,423,430,439,445,448,457,488],dataset_energy_depend:431,dataset_fak:423,dataset_fp:440,dataset_gammacat:418,dataset_hawc:429,dataset_hess:[429,446],dataset_imag:[430,445],dataset_kwarg:[88,102],dataset_lc:440,dataset_mak:[420,422,430,439,448,488],dataset_nam:[102,105,118,203,211,225,371,377,428,432,433,436,445,451,464,498],dataset_on_off1:416,dataset_on_off:[150,156,157,160,416,420,422,423,426,430,439,448,488,489],dataset_onoff:361,dataset_simul:422,dataset_stack:[420,428],datasetmodel:[225,240,371,397,432,433,436],datasetread:100,datasets1:346,datasets2:346,datasets3:346,datasets_fil:[16,421,425,426,428,463],datasets_hess:429,datasets_in_phase_bin_3:373,datasets_mak:448,datasets_nam:[19,20,26,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,396,429,451,463,498],datasets_read:[451,456],datasets_sl:445,datasetsconfig:16,datasetsmak:[153,402,414,448,453,479],datasetsmetadata:376,datasetwrit:101,datastor:[16,85,155,355,359,364,381,385,391,402,403,405,406,408,414,417,420,421,422,425,426,428,430,432,436,439,441,448,453,457,458,462,463,479,486,488,489,538],datastorecheck:409,datastoreindex:359,datastoreinmemori:359,datastoremak:[391,402],datastoremetadata:376,datastoreobserv:[156,157,355,359,395,408],datastorexml:359,datasum:[79,84,95,96,97,99,101,103,104,133,134,140,145,148,175,176,178,182,184,187,188],datat:[83,86],date:[83,86,330,366,374,375,376,378,386,408,421,424,452,458,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,542],datefmt:[16,421,425,426,428,463,538],dateref:424,datetim:376,datetime64:[83,86],datfix:424,daughter:376,david:[359,364,389,409,410],dc1:[358,369,410,432,441,447,451,455],dc2:358,dc:[428,455],ddof:437,de:[19,20,26,65,95,197,198,201,205,207,208,209,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,275,375,397,400,403,443,458,537],deactiv:380,dead:[79,82,84,308,359],dead_tim:[79,84,308],deadc:359,deadlin:[358,362],deadtim:[84,168,423,432,436,455],deadtime_fract:84,deal:[82,349,355,364,365,423,432,460,479],debanjan:391,debian:[366,382,404],debug:[11,349,355,360,365,411,420,449,479,538],dec:[65,79,81,83,84,86,89,126,158,349,350,354,358,360,362,365,366,369,387,413,416,420,422,424,426,430,433,438,439,441,444,448,450,455,456,457,458,464,465,467,479,483,488,542],dec_pnt:458,dec_tru:362,decad:[17,18,21,22,24,25,27,105,180,258,432],decai:[17,18,20,21,22,23,24,25,27,210,216,233,372,432,437,440,452,467,528],decemb:387,decid:[349,355,358,359,360,361,363,364,368,371,372,373,378,421,453,463,542],decim:[83,86],decis:[349,350],declar:[15,83,86,240,328,329,352,356,357,360,365,366,372,379,396,478],decor:[328,329,349,376,538],decorrel:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],decoupl:67,dedic:[352,363,364,373,375,376,379,395,396,397,420,421,422,428,441,446,463,464,476],deduc:373,deep:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,80,82,83,86,94,95,96,97,99,103,104,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,253,254,428],deepcopi:[28,29,30,31,32,35,36,37,39,40,83,86,248,250,252],def:[16,28,29,30,31,32,35,36,37,39,40,80,328,329,349,350,360,361,362,363,372,373,376,377,428,446,452,462,488,538,540],def_unit:[416,423,425,428,430,436,440,455],default_alpha:[21,27],default_beta:27,default_css:[83,86],default_css_nb:[83,86],default_epoch:332,default_gamma:27,default_hdu_t:78,default_interp_kwarg:[129,130,131,132,135,136,137,139,142,144,146,147,407],default_nam:[83,86],default_notebook_table_class:[83,86],default_obs_t:78,default_paramet:[19,20,26,197,198,199,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,377],default_scale_radiu:[17,21,22,24,25,27],default_unit:[129,130,135,137,142,147,447],defer:[99,104],defin:[15,16,19,20,26,28,29,30,31,32,33,35,36,37,39,40,42,43,44,45,46,47,52,53,79,80,83,84,86,90,96,97,98,99,102,103,104,111,112,113,114,115,117,118,121,132,133,134,136,140,143,144,145,146,148,151,152,156,161,173,174,175,176,178,179,180,183,184,185,186,187,188,192,193,195,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,264,270,271,290,300,305,306,307,308,311,339,340,349,350,352,354,355,358,360,361,362,363,364,365,366,370,371,373,374,375,376,377,381,382,383,390,391,394,397,400,403,407,408,413,414,421,423,424,425,426,428,429,431,434,436,437,440,441,444,445,446,447,448,449,451,452,453,455,456,457,463,465,475,476,477,479,481,484,488,489,491,495,497,499,500,501,504,505,508,509,511,512,514,516,517,519,520,521,522,523,533,535,536,537,538,539,540,541],definit:[79,80,82,84,95,97,99,103,104,152,183,275,289,349,358,359,363,370,371,372,373,376,392,396,397,413,422,425,434,439,447,448,463,475,477,484,485,490,492,495,496,540],deform:492,deg2:458,deg:[16,33,34,38,47,65,79,81,83,86,89,97,99,103,104,105,106,107,111,115,116,121,134,136,137,142,143,144,145,146,147,148,150,158,159,161,163,174,175,176,178,181,183,184,186,187,188,203,204,212,215,225,229,237,238,240,310,344,349,350,360,363,365,372,373,376,385,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,447,448,449,450,451,452,453,455,456,457,458,463,464,465,476,477,479,481,483,486,488,489,490,491,492,495,496,497,498,499,500,501,502],degre:[28,29,30,31,32,35,36,37,39,40,97,99,103,104,105,106,109,112,113,174,175,176,178,181,186,187,188,203,225,229,240,251,416,417,421,426,431,439,444,448,449,450,455,463,477,491,492,540,541],deil:[354,355,356,357,358,359,360,361,363,365,366,367,368,369,388,389,390,391,392,393,394,395,401,404,405,406,407,408,409,410],deiml:408,dej2000:[444,465],del:[28,29,30,31,32,35,36,37,39,40,83,86,360],delai:[370,374],deleg:365,delet:[28,29,30,31,32,35,36,37,39,40,82,349,360,379,381,382,383,451],delete_interv:82,delimit:113,deliv:365,delta:[19,20,23,83,86,111,112,116,119,121,137,185,231,232,261,414,446,477,484,485,496,497,499,540],delta_t:[109,261,431],demonstr:[365,390,393,394,395,396,397,402,414,437,438,449,451,460,491],denot:[97,103,373,475],densiti:[17,18,21,22,24,25,27,28,30,35,36,39,40,45,52,113,137,188,304,307,342,362,426,428,443,444,467,469,473,483,484,485,537],dep:414,depend:[11,28,29,30,31,32,35,36,37,39,40,79,84,95,97,98,102,103,109,112,113,129,130,131,132,135,136,137,139,142,144,145,146,147,148,162,173,174,183,186,188,203,217,225,240,278,329,349,351,352,353,355,360,361,362,363,364,367,368,373,375,376,377,378,379,380,381,382,383,387,389,393,394,397,404,406,409,410,412,414,416,419,423,425,426,435,439,444,446,447,448,449,450,451,453,455,456,460,475,476,479,483,484,487,488,491,504,535],deploy:375,deposit:375,deprec:[16,79,80,81,84,114,115,118,193,195,391,400,413,414,502],deprecated_argument_funct:349,deprecated_argument_function_kwarg:349,deprecated_attribut:349,deprecated_funct:349,deprecated_renamed_argu:349,deprecatedparseprotocol:[16,80],deprecation_polici:374,depriv:486,depth:[16,80,317,381,386,437,504],deriv:[17,18,21,22,24,25,27,28,29,30,31,32,35,36,37,39,40,50,51,54,95,111,114,118,121,251,349,361,362,367,370,373,424,455,457,477,491,539,540],describ:[27,28,29,30,31,32,35,36,37,39,40,78,90,113,114,116,121,144,184,192,253,271,350,352,354,355,358,359,361,362,363,365,366,368,369,372,373,374,375,386,392,400,408,409,421,424,432,433,437,446,452,455,457,458,463,475,479,483,492,493,537,538,539,540],descript:[56,57,58,59,60,61,62,63,64,65,83,86,115,192,350,354,355,363,369,374,375,386,411,428,436,444,446,449,455,457,463,464,479],description_width:[428,436,449,463,464],descriptionstyl:[428,436,449,463,464],descriptor:[83,84,86,97,99,103,104,250,287,350,396],desi:458,design:[354,355,358,359,362,363,365,369,371,373,374,388,408],desir:[16,80,83,86,143,173,174,183,186,324,325,326,449,465,492],desktop:386,destin:11,detail:[19,20,28,29,30,31,32,35,36,37,39,40,79,83,86,95,97,99,104,113,114,133,134,140,145,148,151,174,186,188,192,193,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,250,251,252,349,350,352,354,357,358,359,362,363,364,368,369,370,374,375,378,380,384,386,387,394,398,399,416,420,422,423,424,425,430,431,432,435,436,440,445,446,448,449,450,451,452,455,457,458,460,465,475,476,478,484,488,489,491,535,536,537,538,542],detect:[59,126,127,260,339,340,350,365,368,369,371,388,394,395,396,406,408,409,427,444,455,457,460,475,491,537,540],detect_t:369,detector:[79,84,98,102,137,450,457,484,537],determin:[19,20,26,28,29,30,31,32,35,36,37,39,40,83,86,105,120,136,142,144,146,158,159,161,163,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,278,300,360,364,367,375,402,414,416,422,425,426,431,438,448,450,469,536],determinist:349,deti:[79,98,102,362,455],detx:[79,98,102,362,455],dev1865:[386,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],dev:[11,16,78,80,349,351,352,365,375,378,379,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,504,532,533],develop:[350,354,355,357,358,359,360,362,363,365,366,368,369,370,371,372,374,375,377,378,379,382,386,388,401,408,409,410,455],deviat:[28,29,30,31,32,35,36,37,39,40,42,114,176,188,192,266,446],devoid:[420,482],devop:375,devot:460,dex:278,df:[83,86,109,431,446,540],diagnosi:358,diagnost:365,diagon:[132,133,134,367,377,456],diagram:542,dialog:[381,383],diamet:[174,175,176,417],diamond:453,dict:[15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,66,67,78,79,80,82,83,84,85,86,87,88,94,96,97,98,99,100,101,102,103,104,106,107,109,112,113,114,115,116,118,119,121,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,150,160,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,191,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,257,260,261,262,263,267,276,290,298,299,316,317,318,320,330,331,332,333,336,337,338,342,343,344,345,346,349,364,366,370,373,376,393,397,400,408,421,428,438,439,444,446,449,453,463,464,491,495,504],dict_kei:504,dictionari:[15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,80,83,84,85,86,87,96,97,98,99,100,101,102,103,104,106,109,112,113,114,115,118,119,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,149,150,160,173,174,175,176,178,179,181,182,183,184,186,187,188,192,193,195,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,262,263,267,288,316,317,318,320,330,333,343,366,368,373,376,377,420,422,428,446,447,453,533],dictionnari:342,did:[356,363,368,369,370,372,375,391,416,423,425,428,430,436,440,446,455],didn:[79,84,356,359,363,366,467],diff:[96,97,99,103,104,349,352,357,361,428,436,437,464],diff_flux:443,diff_flux_point:[96,445],differ:[26,28,29,30,31,32,35,36,37,39,40,46,59,65,76,82,83,86,89,95,109,112,113,114,115,118,119,121,126,129,130,131,132,135,137,139,142,147,157,175,176,178,181,182,183,184,186,187,188,260,261,262,263,308,312,324,325,340,349,350,352,354,355,357,359,360,361,362,363,365,366,367,369,370,371,372,373,375,377,379,381,383,392,395,397,407,410,411,412,414,416,420,421,422,425,428,431,432,433,434,437,438,440,444,445,446,448,450,451,452,453,456,457,460,463,465,467,475,477,479,484,491,492,496,497,536,538,539,540],different:357,differenti:[23,75,112,113,120,175,176,178,180,184,187,188,226,240,255,256,305,355,360,367,373,407,449,452,456,465,477,537],differential_flux:113,difficult:[360,363,379],diffus:[66,175,176,178,184,187,188,257,349,365,368,409,410,428,432,444,449,451,452,455,535],diffuse_cub:452,diffuse_galactic_fermi:451,diffuse_iem:[451,456],diffuse_iso:[451,456],diffuse_model:257,difrsp0:[456,465],difrsp1:[456,465],difrsp2:[456,465],difrsp3:[456,465],difrsp4:[456,465],digit:349,dilat:[188,400],dim:[142,307,405,406,430,537],dimens:[46,53,97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,181,183,184,186,187,188,248,249,252,278,290,342,365,397,408,410,414,446,447,449,452,460,475,491,492,496],dimension:[31,32,37,66,83,86,173,174,175,176,178,181,183,184,186,187,188,212,215,258,291,304,355,363,377,381,406,424,446,447,449,452,465,483,485,491,492,536,537],dimensionless:[28,29,30,31,32,35,36,37,39,40,79,137,245,246,277,434,452],dimitri:[400,402],dipol:[51,54],dirac:19,direct:[86,147,165,166,169,171,180,204,212,215,282,285,350,355,361,363,368,370,373,376,400,419,423,448,460,475,476,484,485,487,488,491,495,535,536,537],directional_offset_bi:[416,423],directli:[13,28,29,30,31,32,35,36,37,39,40,56,67,79,83,84,86,125,147,162,175,176,178,184,187,188,248,250,252,349,351,352,354,356,357,360,361,362,363,367,369,376,381,383,388,390,391,392,394,408,418,420,421,423,428,429,430,433,434,436,437,439,440,444,445,446,449,450,451,452,453,455,456,463,464,465,467,475,479,484,488,491,514,540],directori:[11,78,83,349,365,421,431,458,463,465,476,479,538],dirk:[391,405,407],disabl:[28,29,30,31,32,35,36,37,39,40,349,400],disable_unicode_literals_warn:349,disadvantag:538,disagr:354,disambigu:354,disc:[425,426,428,433],discard:[376,444],discard_on_copi:[83,86],discarded_ind:444,discarded_spati:444,discarded_t:444,disccus:358,discourag:349,discov:538,discret:[86,362,446,491],discuss:[13,59,253,349,352,353,354,355,356,357,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,377,379,386,408,458,467,468,542],disjoint:363,disk:[78,104,134,137,176,186,188,204,215,217,327,348,349,359,360,361,365,372,373,416,420,428,429,449,450,451,452,490,493,497,501,503],disk_inc:363,diskspatialmodel:[70,234,372,393,414,451,452,495],dismiss:95,disp:[483,484],dispatch:360,dispers:[78,84,97,98,99,101,102,103,104,106,132,133,134,137,155,161,162,165,166,169,349,355,360,361,362,394,396,406,407,408,410,416,417,420,421,428,432,448,457,458,463,464,475,484,487,537],displac:282,displai:[11,15,78,83,86,107,118,121,192,267,299,342,346,349,350,379,384,400,403,414,416,417,420,421,422,423,424,425,428,429,430,431,432,434,436,438,440,441,444,445,446,448,449,451,452,455,456,457,458,464,479,538],display_length:[83,86],disrupt:[389,390],dissolv:393,dist:[301,379],distanc:[17,18,21,22,23,24,25,27,41,46,47,115,126,127,183,226,252,281,307,363,406,413,422,424,434,443,444,446,473,488,514],distance_gc:[17,18,21,22,24,25,27,443],distance_max:[46,47,307,444],distance_min:[47,307,444],distance_refer:444,distinct:[364,365,370,457,541],distinguish:[262,263,373,376,416,449],distort:[363,392],distribut:[13,28,29,30,31,32,33,35,36,37,39,40,42,45,46,79,102,137,172,209,220,226,262,263,300,301,305,342,345,347,348,349,353,354,357,362,367,368,371,374,375,379,382,393,402,408,414,416,422,423,426,428,432,434,436,438,446,451,455,465,467,479,483,484,486,492,499,514,539,540],divers:373,divid:[174,180,185,370,373,432,453,457,458],djangoproject:369,dl3:[6,16,78,79,82,84,86,129,130,131,132,135,136,137,139,142,144,146,147,155,161,179,180,355,357,358,360,369,376,381,385,391,394,396,402,411,417,420,421,422,425,426,428,438,439,448,450,453,462,463,464,475,479,481,482,483,485,486,488,489,536,537],dl4:[94,96,97,99,103,104,107,111,114,118,121,140,161,355,376,381,396,440,445,446,447,479,536,537],dl5:[107,111,114,118,121,376,440,446,536,537],dl6:[107,111,114,118,121,536,537],dm:[19,20,26,378,396,411,443,452],dm_exampl:467,dmfitfunct:467,dmpipe:467,dmprofil:[17,21,22,23,24,25,27,443],dmsky:467,dn:[209,220,443],dnde:[19,20,26,64,65,112,113,120,122,123,124,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,255,373,400,418,420,421,430,434,444,445,452,456,463,465,477],dnde_cu:256,dnde_err:[112,113,477],dnde_errn:[65,112,113,444],dnde_error:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],dnde_errp:[65,112,113,444],dnde_ref:[112,113,373],dnde_ul:[65,112,113,444,465],do_someth:349,doc:[11,13,16,79,80,83,86,132,174,180,183,186,192,203,225,278,314,349,350,352,354,357,363,365,366,368,369,378,385,386,388,394,400,401,402,403,404,405,406,407,408,409,410,411,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,467,492,502,504,510,513,526,532,533,537,538,542],docker:[366,379],dockerfil:[357,378,379],docstr:[349,369,375,400,401,402,404,407,413,414,452],doctest:350,document:[11,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,98,99,100,101,102,103,104,107,109,110,111,112,113,114,115,116,117,118,119,120,121,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160,161,162,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,286,290,300,323,336,349,351,353,354,356,357,359,363,365,366,368,370,372,374,375,379,380,385,386,394,396,397,400,402,403,404,406,407,408,409,410,411,412,413,414,449,451,455,457,458,479,490,491,492,538],doe:[83,86,114,118,135,145,148,182,217,251,260,349,350,356,357,359,361,363,364,366,368,369,372,373,375,376,391,400,411,416,420,423,425,428,430,431,444,446,447,448,449,450,457,467,479,488,538],doesn:[67,349,350,354,356,357,363,366,367,369,455,456,538],dof:540,doi:375,domain:[175,176,178,184,187,188,349,363,437],domenico:406,dominguez:[205,206,372,504],dominquez:205,don:[28,29,30,31,32,35,36,37,39,40,83,86,132,348,349,352,354,356,357,366,376,379,417,420,425,430,438,450,452,467,536,538,541,542],donath:[358,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],done:[28,29,30,31,32,35,36,37,39,40,83,86,112,114,342,349,350,352,354,355,356,360,362,363,364,365,367,368,369,372,373,375,381,385,409,414,417,423,428,429,433,434,436,440,441,445,448,449,452,453,475,479,487,488,492,523,540,542],dos2unix:349,dot:[50,51,54,103,104,175,176,178,184,187,188,414],doubl:[27,111,122,267,375,407],doubling_dict:267,down:[50,51,54,121,354,356,359,363,368,392,445,456,541],downgrad:[174,348],download:[65,89,96,113,352,357,365,366,369,376,378,381,383,385,389,390,392,393,400,409,410,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538],downsampl:[97,99,103,104,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,177,178,179,180,183,184,185,186,187,188,391,397,406,445],downsampled_energi:445,downsampling_factor:[121,430],downward:[262,263],dozen:349,dpp:375,dr1:[16,63,78,79,82,84,86,137,155,246,357,369,385,417,420,421,426,428,439,448,453,462,463,464,476,479,481,482,483,485,486,488,489,493,524],dr2:[63,246,400,493,524],dr3:[63,245,452,493,524],dr4:63,dr:[17,18,21,22,24,25,27,497],draft:[349,353,354,377,409],drag:352,draw:[33,176,300,362],drawback:[364,368],drawn:[300,362],drift:[81,89,90,411],drive:365,driven:[11,15,355,365,367,369,408,460,478],drop:[52,53,97,99,103,104,112,113,118,133,134,140,145,148,173,174,175,176,178,179,183,184,186,187,188,204,211,250,334,353,354,365,366,371,390,393,394,397,400,407,410,432,449,475],ds9:[79,174,183,186,190,203,225,349,350,363,392,450,452,492],ds9parser:363,ds:85,dss:359,dt:[83,86],dtime_t:437,dtype:[33,38,83,86,130,132,135,173,174,175,176,178,183,184,186,187,188,203,225,278,349,377,422,425,434,444,445,447,448,449,455,456,465,477],due:[59,83,86,349,377,403,449,455,514,538],dummi:[103,104,363,425,479],dump:[16,80,365],dumps_kwarg:[16,80],duplic:[83,86,95,133,349,350,352,355,369,370,373,397,400],durat:[79,82,84,89,423,432,436,439,455,476,479],dure:[16,28,29,30,31,32,35,36,37,39,40,50,52,53,79,80,81,84,90,97,99,103,104,152,260,350,357,361,365,368,369,371,374,375,376,377,378,379,394,397,414,421,422,432,438,439,445,448,450,464,475,476,537,541],dust:205,duti:375,dwarf:467,dx:[33,282],dy:[33,282],dynam:[346,476],dz:282,e2dnd:[19,20,26,112,113,120,122,123,124,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,373,400,407,416,418,420,421,422,429,444,465,477,479,514],e2dnde_err:[112,113],e2dnde_errn:[112,113,444],e2dnde_errp:[112,113,444],e2dnde_ref:[112,113],e2dnde_ul:[112,113,444],e501:[19,20,96,97,99,103,104,111,114,115,121,132,168,179,180,186,205,257,346],e:[13,16,19,20,26,28,29,30,31,32,35,36,37,39,40,46,47,50,51,54,59,65,66,78,79,80,81,82,83,86,90,113,126,132,133,134,135,137,168,174,175,176,178,180,182,184,186,187,188,192,193,195,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,262,263,267,278,280,284,310,317,327,338,339,344,348,349,350,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,371,372,373,374,375,376,378,379,381,382,383,385,386,388,389,390,394,400,401,402,406,408,409,410,414,417,418,420,421,422,423,426,429,430,431,432,433,434,436,437,438,439,441,443,444,445,446,449,450,451,452,453,455,456,457,459,460,462,463,464,465,467,474,475,476,477,479,483,484,489,490,491,495,496,497,504,505,507,508,509,511,512,516,517,519,520,521,522,532,535,537,538,539,540,541,542,543],e_0:[207,208,209,219,220,231,232,241,244,245,246,508,509,512,514,516,519,520,521,522],e_:[19,20,26,50,52,53,132,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,475,481,483,484,485,505,509,517,519,520],e_b:372,e_cut:[65,444],e_cutoff:514,e_d:[231,232],e_edg:397,e_max:[65,113,373,416,420,421,422,433,438,444,445,446,449,465,477],e_min:[65,113,373,416,420,421,422,433,438,444,445,446,449,456,465,477],e_peak:[209,220],e_reco:[132,137,441,537],e_ref:[65,113,373,416,420,421,438,444,463,465,477],e_refe_mine_maxdndednde_errpdnde_errndnde_ulsqrt_tsis_ul:418,e_refe_mine_maxdndednde_errtssqrt_tsnprednpred_excessstatstat_nullcountssuccess:430,e_sn:[43,44,52],e_tru:[137,441,456,537],each:[11,19,20,26,28,29,30,31,32,35,36,37,39,40,65,76,82,83,86,87,95,97,99,102,103,104,107,109,111,112,113,114,118,120,121,122,123,124,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,156,157,172,173,174,175,176,178,179,180,182,183,184,185,186,187,188,192,197,198,200,201,203,204,205,207,208,209,212,213,215,219,220,222,225,226,227,228,230,231,232,236,237,238,241,242,243,244,245,246,248,249,252,253,314,338,347,349,352,354,355,357,358,359,361,362,363,364,365,366,369,370,373,375,379,380,387,394,397,408,411,414,417,423,424,426,428,429,430,432,433,438,439,440,441,443,444,445,446,447,448,449,451,452,453,457,458,464,468,474,475,476,479,483,484,485,491,492,498,514,515,537,538,541,542],eager:365,earli:[363,368,369,455],earlier:[356,375],earth:[41,84,255,456],earth_azimuth_angl:[456,465],earthloc:[79,81,84,89,92,288,376],easi:[349,350,355,360,363,364,365,368,369,373,376,394,400,408,449,450,456,476,535,536,538,542],easier:[349,355,360,368,373,408,411,455],easiest:382,easili:[83,86,113,355,360,361,365,376,380,381,438,439,446,447,449,456,465,538],ebel:424,ebl:[205,206,253,367,372,394,397,407,414,452,493,524],ebl_data_builtin:504,ebl_dominguez11:[206,504],ebl_franceschini:[206,253],ebl_franceschini_2017:206,ebl_saldana:206,eblabsorbtionnormspectralmodel:372,eblabsorptionnormspectralmodel:[235,372,397,452,504],ebound:[132,180,492],ebreak:[197,241,505,519],ec:[441,452,492],eccentr:[204,212,215,495,496,497],echo:538,eco:375,ecosystem:376,ecpl:[65,76,207,208,209,260,372,406,418,444,452],ecpl_norm:510,ecsv:[59,62,361],ecut:[207,244,509,520],edelson2002:268,edelson:[268,437],edg:[97,99,103,104,107,109,111,114,117,118,121,128,129,130,131,132,133,135,136,137,139,142,144,146,147,155,156,161,172,173,174,175,176,177,178,179,180,183,184,185,186,187,188,204,342,363,373,391,397,400,416,429,430,431,432,433,437,447,448,449,450,456,457,463,495],edge_max:495,edge_min:495,edge_width:[204,451,495],edgecolor:[346,420,422,424,430,431,434,441,443,488,495,496,497],edges_max:[177,180,185,449],edges_min:[177,180,185,449],edisp2d:[134,137],edisp3d:447,edisp:[16,78,83,84,91,97,99,100,103,104,132,133,134,137,141,155,161,162,165,166,240,359,360,361,362,365,395,397,400,406,407,408,416,417,420,421,422,423,424,425,426,428,430,432,433,436,439,440,445,448,453,455,456,457,458,463,475,483,484,537],edisp_2d:[78,83,137,455,458],edisp_3d:447,edisp_:475,edisp_ev:447,edisp_kernel:[132,445,483],edisp_kernel_map:[133,457],edisp_map:[98,102,133,134,447,483],edisp_new:447,edispersionmap:475,edispkernel:[99,133,137,165,395,483],edispkernelmap:[97,99,100,103,104,106,134,140,141,145,148,155,162,165,396,397,424,448,456,479,483],edispmap:[97,98,99,102,103,104,133,140,141,145,148,155,162,165,166,361,362,370,390,393,394,395,397,400,447,483],edit:[350,352,354,356,357,358,365,369,378,379,382,463,538],editor:[350,375,421,463,538],editori:375,edm:446,edu:[28,30,31,32,33,35,36,37,38,39,40,50,52,53,57,58,60,61,79,84,107,114,135,174,183,186,192,203,222,225,255,256,269,369,446,492],eemin:514,eff:[135,481,484,496,497],eff_area:447,effarea:447,effect:[28,29,30,31,32,35,36,37,39,40,45,46,78,83,84,86,99,101,134,135,161,162,167,169,170,183,203,225,339,340,349,354,359,360,362,363,373,404,406,420,432,434,437,438,457,458,460,463,484,492,496,497,537],effective_area:[141,362,455],effective_livetim:448,effective_times_src:448,effectivearea3d:447,effectiveareat:[361,388,400,404],effectiveareatable2d:[84,134,141,147,169,355,404,447,455,481],effici:[28,29,30,31,32,35,36,37,39,40,84,99,104,354,360,361,362,363,364,371,418,453,484,489,540],effort:[356,358,365,366,368,369,372,391,475],eflux:[19,20,26,112,113,122,123,124,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,373,400,434,452,477],eflux_err:[112,113,373],eflux_errn:[112,113],eflux_errp:[112,113],eflux_ref:[112,113],eflux_ul:[112,113],eg:[349,428,436,440,445,447,451,452],egal:455,egg:382,einasto:[21,467],either:[65,78,83,84,86,90,104,112,113,137,152,173,174,175,176,178,180,181,182,183,184,186,187,188,217,278,308,338,350,352,354,356,363,365,368,371,375,381,400,414,421,428,434,440,445,446,452,463,475,477,479,490,492,535,538],ej:[50,52,53],eject:52,ejecta:52,el:[26,443],elabor:[375,424],elaps:[79,358,537],electron:[50,255,455,514],element:[19,20,26,28,29,30,31,32,35,36,37,39,40,83,86,87,95,97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,181,183,184,186,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,342,367,414,444,449,491],elementtre:455,elev:364,elif:[349,363,376],elli:[388,401],ellips:[204,363,492,495],ellipseannulusskyregion:[488,492],ellipseskyregion:[199,200,204,212,215,227,229,237,238,242,248,252,417,452,488],ellipsoid:446,ellipt:[492,497],elong:[390,393,394,495,496],elpas:414,els:[28,29,30,31,32,35,36,37,39,40,112,113,121,182,349,352,363,366,373,376,377,379,381,383,453,538,540],email:[350,352,375,379],emax:[118,230,256,425,431,517],emax_fit:441,embryon:365,emce:[358,366,390,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],emerg:359,emeri:409,emin:[118,230,256,425,431,517],emin_fit:441,emiss:[52,66,122,355,360,364,420,426,428,429,432,451,455,456,475,489,514,535],emit:[78,193,194,195,196,335,349,390,408,484],emitt:420,emphasi:446,empir:40,emploi:422,empti:[87,95,97,99,103,104,126,155,175,176,178,182,184,187,188,192,225,335,357,359,391,403,428,432,433,436,440,448,449,457,468,475,488,489,492],empty_dataset:416,empty_i:440,empty_map:[97,99,103,104,431,448,488],emsembl:88,en:[34,79,83,84,86,114,168,183,192,253,278,352,369,378,416,423,425,428,430,436,440,446,447,450,455,476,490,492],enabl:[358,361,391,400,409,416,423,425,428,430,436,440,455],encapsul:[186,373,490],enclos:[188,350,417,422,446,450],enclosur:[78,139,422,447],encod:[16,80,83,86],encompass:[174,490,492],encount:[16,80,149,381,382,383,422,432,440,458,526,538],encourag:[349,354,375,378,408],end:[52,53,82,83,86,87,89,95,97,103,112,113,121,180,217,225,354,356,358,360,361,363,364,365,366,368,369,372,401,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,540],end_po:[115,311,434],endswith:349,energet:432,energi:[16,19,20,26,44,50,51,52,53,58,61,62,64,65,69,71,72,76,78,79,84,91,95,96,97,98,99,101,102,103,104,105,106,107,109,111,112,113,114,115,118,120,121,122,123,124,125,128,129,130,132,133,134,135,136,137,142,143,144,145,146,147,148,155,157,161,162,164,165,166,168,169,171,173,174,175,176,178,180,181,183,184,186,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,256,258,259,344,345,349,355,358,360,361,362,363,364,365,367,368,371,373,377,381,385,389,390,391,392,394,395,396,397,399,400,402,405,406,407,408,409,410,411,412,414,417,419,420,421,423,424,425,426,428,429,430,432,434,435,436,438,439,440,441,444,445,448,449,457,458,460,463,464,465,474,475,476,479,484,487,488,490,491,492,498,504,510,513,515,518,523,533,535,536,537,539],energy_axes_are_align:95,energy_axi:[19,20,26,97,99,103,104,105,112,113,132,133,134,145,147,148,155,175,176,178,184,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,373,416,417,420,422,423,424,426,430,432,433,439,440,445,447,448,449,452,456,457,464,483,486,488,489,491,492],energy_axis_new:445,energy_axis_tru:[97,99,103,104,105,106,132,133,134,135,137,142,143,145,155,394,416,417,420,422,423,424,426,430,432,433,436,439,440,441,445,447,448,456,457,464,483,486,488,489],energy_bin:365,energy_bin_per_decade_max:105,energy_bound:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,363,400,418,420,422,428,429,441,443,444,446,452,456,464,465,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,523],energy_cent:250,energy_column:373,energy_depend:431,energy_dependent_estim:[431,435],energy_edg:[16,107,109,111,114,115,118,121,128,180,298,373,420,421,424,425,426,428,429,430,431,434,438,439,440,441,457,463,464,477],energy_estim:457,energy_flux:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,452,465],energy_flux_err:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],energy_flux_error:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],energy_index:142,energy_integr:51,energy_logspac:368,energy_mask:[173,174,183,186,396,422,428,441,445,446,450],energy_max:[19,20,26,79,95,97,99,103,104,112,113,114,115,118,132,173,174,180,183,186,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,250,253,258,363,365,428,433,441,443,445,448,452,465],energy_min:[19,20,26,52,53,79,95,97,99,103,104,112,113,114,115,118,132,173,174,180,183,186,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,250,253,258,363,365,428,433,441,443,445,448,452,465],energy_nam:[145,148],energy_nod:[372,452],energy_pow:[19,20,26,113,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,259,428,441,446,464,465],energy_rang:[64,65,69,71,72,76,79,95,97,99,103,104,400,445,450,521,522],energy_range_fit:[97,99,103,104,445],energy_range_saf:[97,99,103,104,445],energy_range_tot:[97,99,103,104],energy_reco:[349,436],energy_ref:[112,113],energy_resolut:408,energy_saf:365,energy_tru:[16,91,97,99,103,104,132,133,134,135,136,137,142,143,144,145,146,155,162,165,173,174,180,183,186,349,362,414,416,417,420,421,422,423,424,425,426,428,430,432,433,436,438,439,440,441,445,447,448,449,450,452,453,455,456,457,463,464,483,484,486,488,489,492],energy_true_axi:132,energyaxesconfig:16,energyaxisconfig:16,energybound:392,energydependentmorpholog:431,energydependentmorphologyestim:431,energydependentmultigausspsf:[141,388,447,455,485],energydependenttablepsf:[355,370,389,400],energydispers:[132,133,134,137,361,395,405,408,409],energydispersion2d:[84,132,134,141,147,165,166,355,400,402,407,447,455,483],energydispersion3d:447,energyoffsetarrai:405,energyrangeconfig:16,enforc:[16,28,29,30,31,32,35,36,37,39,40,80,352,376],engin:[83,86],english:479,enhanc:[354,358,385],enlarg:489,enough:[362,364,365,420,423,426,436,438,450],enrico:365,enrico_config:365,enrico_xml:365,enriqu:[357,365,369,389,390,391,392,393,394,395,396,397,400,402,408,409,410],ensembl:88,ensur:[28,29,30,31,32,35,36,37,39,40,161,260,349,355,360,361,372,376,402,416,420,439,450,499],enter:[194,196,203,225,385],entir:[16,28,29,30,31,32,35,36,37,39,40,80,83,86,97,99,103,104,162,417,428,431,437],entri:[43,44,83,86,89,109,112,114,115,118,119,192,260,317,349,361,369,373,376,378,381,382,383,400,411,417,421,444,446,449,452,453,479,480,492],entry_point:401,enumer:[432,444,451],env:[352,366,378,380,381,383,384,409,538],envelop:[362,446,464],environ:[11,78,315,348,349,352,356,357,361,366,369,378,379,381,382,383,384,385,389,390,392,408,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,538],envis:358,envvar:11,eosc:375,episod:122,epoch:332,epsilon:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],epsilon_:[97,103,475],epsilon_k:[97,103,475],epsmch:446,eqcon:[28,29,30,31,32,35,36,37,39,40],eqnarrai:372,equal:[28,29,30,31,32,35,36,37,39,40,52,107,111,114,118,121,132,180,349,359,362,410,420,438,439,450,475,491,541],equat:[27,245,246,268,500,501,505,508,509,511,512,516,517,519,520,521,522,540,541],equatori:[90,138,174,175,176,178,181,183,186,187,188,447],equival:[28,29,30,31,32,35,36,37,39,40,83,86,112,129,130,131,132,135,136,137,139,142,144,146,147,173,174,175,176,178,180,183,184,186,187,188,342,350,361,362,363,372,373,414,444,448,449,450,452,455,463,475,477,479,490,491,492,538,539,540],er:[26,443],era:205,ereco:[132,447],erf:[213,495],erg:[52,53,65,416,420,444,465,472,479],erlangen:368,erod:188,eros:[186,188],err:446,errat:349,errn:[111,114,118,119,121,192,411,540],errn_2sigma:540,error:[11,16,19,20,26,28,29,30,31,32,35,36,37,39,40,65,66,75,80,82,97,99,103,104,111,112,113,114,115,116,117,118,119,121,122,123,124,151,177,180,185,193,195,197,198,199,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,252,253,262,263,267,268,269,327,349,350,363,364,365,367,372,373,376,377,390,394,396,398,400,401,403,407,408,411,413,414,417,418,420,421,423,425,428,429,430,431,433,436,437,438,440,441,444,452,453,455,463,464,465,467,475,477,479,496,514,523,535,538],error_callback:151,errorbar:[79,96,97,99,103,104,180,184,202,210,214,216,217,218,233,239,251,254,416,437],errp:[111,114,118,119,121,192,411,540],errp_2sigma:540,escap:[349,375],especi:[83,86,122,352,356,359,363,369,370,379,400,406,417,430,439,444,449,455,456],essenti:[359,361,364,394,395,396,434,449],establish:[349,362],estim:[6,19,20,26,50,70,96,99,104,105,107,108,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,150,156,157,158,164,173,174,183,186,188,192,193,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,260,266,269,273,298,342,353,355,358,362,363,364,365,368,371,377,381,390,391,394,395,396,397,400,401,402,406,407,408,409,411,414,416,420,422,426,428,429,430,433,435,439,440,441,442,445,446,450,457,460,463,464,475,479,489,491,535,536,537,539,541],estimate_best_fit:[114,115,118,119],estimate_count:[114,115,118,119],estimate_energy_depend:109,estimate_errn_errp:[114,115,118,119],estimate_excess_map:111,estimate_exposure_reco_energi:111,estimate_fit_input_map:121,estimate_flux_default:121,estimate_flux_map:121,estimate_flux_point:[114,115,118],estimate_kernel:[111,121],estimate_map:107,estimate_mask_default:[111,121],estimate_min_e2dnd:120,estimate_min_excess:120,estimate_npr:[114,115,118,119],estimate_npred_excess:[114,115,118],estimate_pad_width:121,estimate_scan:[114,115,118,119],estimate_t:[114,115,118,119],estimate_time_bin_flux:118,estimate_ul:[114,115,118,119],estimator_result:441,et:[26,33,59,122,135,205,268,269,359,424,431,437,467,537],eta:[215,216,237,497,501,528],eta_:50,eta_b:50,eta_rang:[497,501],etc:[99,104,112,349,354,355,359,360,361,364,365,369,370,373,375,376,397,421,423,428,436,438,440,441,445,449,452,456,463,475,488,537],etru:447,eu:369,euclidean:276,europ:375,ev2:447,ev:[447,479,514],evalu:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,66,83,86,97,99,102,103,104,114,118,129,130,131,132,135,136,137,139,142,144,146,147,155,162,168,183,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,349,354,358,364,367,368,371,372,373,377,389,390,391,393,396,400,405,406,408,409,410,411,412,413,414,432,433,441,447,452,455,456,475,496,497,504,537,540],evaluate_contain:[136,144,146,402],evaluate_direct:[136,144,146],evaluate_energy_flux:[231,232],evaluate_error:[19,20,26,113,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,367],evaluate_geom:[199,200,204,211,212,215,227,229,237,238,240,242,248,252,452,497],evaluate_integr:[230,231,232],evaluate_paramet:[136,144,146],evaluation_bin_size_min:[199,200,204,212,215,227,229,237,238,240,242,248,252],evaluation_radiu:[199,200,204,212,215,227,229,237,238,240,242,248,250,252,360,361,372,452],evaluation_region:[199,200,204,212,215,227,229,237,238,240,242,248,252],even:[28,29,30,31,32,35,36,37,39,40,83,86,186,194,196,349,352,354,356,357,363,366,367,375,376,392,438,441,446,448,449,450,451,452,463,475,477,500,501,538],event:[78,79,81,82,83,84,85,88,98,102,111,120,134,145,148,149,156,164,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,308,349,350,353,355,359,361,363,364,365,376,381,385,392,393,394,396,400,401,402,407,408,409,410,411,414,417,420,421,422,426,428,429,435,440,448,457,460,462,463,464,475,479,487,488,489,536,537,540],event_3fhl:465,event_class:[80,456,465],event_det_coord:[98,102],event_fil:84,event_filt:85,event_filter_typ:85,event_id:[362,455,456,465,476],event_list:[79,349,350,362],event_list_meta:[98,102,395],event_sampl:[432,435],event_sampling_nrg_depend_model:[433,435],event_typ:[456,465],eventlist:[80,84,98,102,164,175,176,178,184,187,188,349,350,355,362,363,364,376,385,390,397,402,404,405,406,408,409,432,433,441,449,455,456,465,479,488],eventlistbas:85,eventlistdataset:409,eventlistlat:476,eventlistmetadata:[79,376],events2:79,events_0001:432,events_1:476,events_2:476,events_3fhl:465,events_:432,events_bkg:362,events_gc_3fhl:465,events_list:362,events_new:479,events_path:[78,432],events_src:362,events_tot:362,events_vela:441,eventu:[349,354,365,368,369,385,452],ever:541,everi:[174,176,188,252,349,352,357,358,359,361,365,374,376,379,417,420,449,464,538],everyon:354,everyth:[349,367,368,479],everywher:[349,363,368,369,389],evid:[122,444],evolut:[50,52,53,205,355,369,435,460,472,473,475,476,484,487,491,493],evolv:[28,29,30,35,36,39,40,50,52,53,205,366,369,376,433,447],evt_sampl:432,ex:[11,449,451,452],exact:[28,29,30,31,32,35,36,37,39,40,86,367,449,456],exactli:[107,111,114,118,121,180,344,422,439,441,450,456,475,492],exagger:340,examin:[375,483],exampl:[11,19,20,28,29,30,31,32,35,36,37,39,40,64,65,76,78,79,81,82,83,84,85,86,89,94,96,97,99,103,104,107,111,113,115,117,118,120,121,122,130,132,134,135,136,137,143,145,148,155,158,160,174,175,176,178,181,184,186,187,188,194,196,217,223,253,256,260,298,302,308,317,328,329,334,337,339,340,342,344,346,349,350,352,354,357,359,360,361,362,363,364,365,366,367,369,372,375,376,377,381,382,383,385,389,391,394,397,400,401,402,405,407,408,409,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,469,470,479,481,482,483,485,490,492,493,532,533,538,540,542,543],example_cub:449,example_cube_fgst:449,exce:105,except:[65,67,76,83,86,97,99,103,104,151,175,176,178,184,187,188,278,346,349,360,364,368,382,447,451,492],excerpt:458,excess:[15,65,70,97,99,103,104,108,111,112,113,114,115,118,120,123,124,155,262,263,268,269,347,361,364,396,397,403,408,416,420,421,423,424,425,428,430,434,436,440,441,444,445,448,450,451,457,463,464,477,479],excess_estim:457,excess_estimator_integr:457,excess_integr:457,excess_map:[16,421,425,426,428,463],excess_map_estim:441,excess_matching_signific:[399,409],excess_min:128,excess_r:445,excessestim:373,excessmapconfig:16,excessmapestim:[108,373,396,397,398,400,403,413,426,428,441,450,457,477],excesspointsestim:373,excessprofileestim:[373,397],exchang:363,exclud:[16,80,96,97,99,103,104,117,156,158,194,196,203,225,355,412,448,450,488,489],exclude_default:[16,80],exclude_non:[16,80],exclude_unset:[16,80],exclus:[16,79,150,152,157,158,159,160,163,174,186,355,363,365,396,398,417,425,428,448,486,488],exclusion_mask:[150,152,157,158,159,160,163,420,426,430,448,450,464,486,488,489],exclusion_mask_2d:448,exclusion_mask_crab:[421,463],exclusion_radiu:450,exclusion_region:420,exclusionmask:406,execut:[11,111,114,118,119,121,349,350,352,354,356,357,358,364,365,369,379,380,381,382,383,384,385,394,402,408,419,427,435,442,448,449,454,456,459,460,461,465,466,503,524,534,536],exercis:[352,365,369,375],exhibit:431,exist:[11,15,26,28,29,30,31,32,35,36,37,39,40,79,83,84,86,94,95,96,97,99,101,103,104,112,113,133,134,140,145,148,160,173,174,175,176,178,179,182,183,184,186,187,188,203,217,225,248,249,250,252,333,349,352,354,357,358,360,361,362,363,365,366,368,369,370,372,373,375,376,381,382,385,386,389,393,394,408,409,411,414,424,426,445,449,450,452,453,456,476,491,492,539],exist_ok:[420,421,428,429,432,463,464],exit:[11,15,83,86,194,196,203,225,390,502,538],exot:366,exp:[21,28,29,30,31,32,35,36,39,40,135,210,213,220,231,232,244,350,372,440,452,496,497,504,508,509,510,511,520,521,522,526,527,528,541],expand:[118,315,359,400],expand_map:118,expans:[50,52,53],expcutoffpowerlaw3fglspectralmodel:[235,372,418,452,509],expcutoffpowerlaw:510,expcutoffpowerlawnormspectralmodel:[209,235,452,510],expcutoffpowerlawspectralmodel:[19,20,26,76,197,198,201,205,207,208,213,219,220,222,226,228,230,231,232,235,236,241,243,244,245,246,249,253,372,418,420,428,452,508,510,514],expdecai:[210,493,534],expdecay_model:[432,526],expdecaytemporalmodel:[247,372,396,400,432,440,452,526],expect:[28,29,30,31,32,35,36,37,39,40,99,102,104,112,160,165,166,171,186,262,263,264,266,270,275,308,349,354,362,364,365,366,369,374,376,416,417,422,423,424,426,432,433,438,443,446,449,450,456,458,475,477,539,540,541],expens:[28,29,30,31,32,35,36,37,39,40,420,433],experi:[352,354,358,360,364,377,379,408,467,537,542],experienc:358,experiment:[28,29,30,31,32,35,36,37,39,40,365,538],expert:369,expertis:366,expfactor:[245,246,521,522],expir:362,explain:[83,86,349,352,354,363,366,368,369,375,379,381,383,394,400,416,420,422,443,446,450,452,479,536,538],explan:[107,111,114,118,121,354,386,437,542],explicit:[83,86,174,176,349,365,367,373,491,542],explicitli:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,80,129,130,131,132,135,136,137,139,142,144,146,147,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,278,359,371,380,390,433,451,477,491,542],explor:[175,176,178,184,187,188,357,365,385,420,425,428,431,434,435,437,438,439,444,445,451,457,458,463,465,475,476,477,479,487,488,491,535],explos:52,expomap:362,expon:[372,452],exponenti:[28,30,36,39,40,207,208,209,210,244,245,246,350,360,394,428,432,440,493,524],exponentialcutoffpowerlaw:514,expos:[6,28,29,30,31,32,35,36,37,39,40,358,363,364,365,368,369,413,449,460,477,478,536],exposur:[16,79,84,97,99,100,102,103,104,111,121,125,133,134,140,143,145,148,150,155,162,165,166,167,169,170,171,240,271,274,275,355,358,359,360,361,362,373,392,397,405,407,408,409,411,416,417,420,421,422,423,424,425,426,428,430,432,433,436,439,440,445,448,449,450,457,463,464,475,484,487,492,540],exposure_geom:[134,145],exposure_hdu:[133,134,140,145,148],exposure_hdu_band:[133,134,140,145,148],exposure_hpx:456,exposure_map:[133,134,140,145,148,165,166,171,447],exposure_max:445,exposure_min:445,exposure_tim:362,express:[111,122,262,263,360,372,373,426,446,447,452,475,491,497,539,540,541],exptest:406,extend:[15,19,20,26,70,83,86,87,95,150,177,180,188,197,198,201,205,207,208,209,213,219,220,222,225,226,228,230,231,232,236,241,243,244,245,246,249,253,356,360,361,362,363,369,371,372,373,376,381,393,395,400,419,420,424,433,438,444,449,450,451,452,456,460,475,476,487,488,535],extended_archive_v18:502,extended_source_spectral_analysi:[417,419],extens:[41,79,132,175,176,178,180,187,188,199,200,203,204,212,215,225,227,229,237,238,242,248,252,351,354,355,356,357,358,360,362,364,365,366,367,368,369,379,403,431,432,433,452,538],extent:[186,203,225,363,424,452],extern:[350,375,401,405,406,409,455,479],extnam:447,extra:[16,28,29,30,31,32,35,36,37,39,40,47,79,80,173,174,179,183,184,186,192,248,249,276,348,350,356,357,363,365,366,369,375,376,405,408,409,449,450,479,492],extra_term:275,extract:[16,80,95,97,99,103,104,112,113,118,133,134,140,145,148,151,156,157,162,164,172,175,176,177,178,180,185,186,187,188,250,349,359,364,373,375,376,402,403,414,416,417,420,421,422,423,428,429,432,433,434,436,445,449,463,475,483,488],extragalact:[205,455],extrapol:[129,130,131,155,175,176,178,184,187,188,205,253,290,400,405,407,408,447,449,455,456,491],extras_requir:366,extrem:[349,376,449,497],f06:48,f06b:[49,469],f06p:49,f0:[251,532],f1:[251,532],f2:[251,532],f4:[130,135,422,445,447,449,455,456],f8:[447,456],f:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,83,86,121,182,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,277,278,305,349,352,366,371,372,377,381,383,402,411,416,417,420,421,423,429,430,431,432,433,439,440,441,443,444,446,448,450,452,453,456,457,462,463,464,465,473,488,504,514,525,526,527,528,529,530,531,538,539,540],f_0:[230,517],f_:[267,269,277,475],f_dead:[79,84],f_i:267,f_max:437,f_max_err:437,f_mean:437,f_mean_err:437,f_min:437,f_min_err:437,f_pp:268,f_var:268,fabio:[362,367,390,392,393,394,395,396,397,399,400,402,403,407,409,411,413,414],face:[354,357],facecolor:[346,420,422,430,431,434,441,443,495,496,497],facil:374,fact:[19,20,92,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,375,417,492],facto:375,factor1:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252],factor:[19,20,23,97,98,99,102,103,104,107,112,133,134,136,140,142,143,144,145,146,148,155,162,168,172,173,174,175,176,178,179,180,183,184,186,187,188,191,193,194,195,196,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,227,229,230,231,232,233,236,237,238,239,240,241,242,244,245,246,248,251,252,254,349,362,364,396,416,423,425,428,430,434,436,440,445,448,452,455,475,492,504],factor_max:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252],factor_min:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252],factori:[175,176,187,188,363,368,372,490,492],factoris:[240,372,452,535],fail:[16,80,192,350,352,363,378,379,403],failur:[411,414],faint:539,fair4r:375,fair:375,fake:[97,99,103,104,361,362,392,422,423,436,440],fall:[122,158,185,203,225,349,356,358,359,366,409,410,437],fallback:349,fals:[16,19,20,23,26,28,29,30,31,32,35,36,37,39,40,65,76,78,79,80,83,84,86,91,95,96,97,98,99,101,102,103,104,106,111,112,113,114,118,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,155,162,165,166,168,169,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,192,193,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,278,308,346,349,363,365,372,377,408,409,416,417,420,421,422,423,425,426,428,429,430,431,432,434,436,438,439,440,443,444,445,446,448,449,450,451,452,456,463,464,465,476,486,488,489,502,514,523],famili:375,familiar:[366,367,449,450,465],fanci:[349,441],far:[357,362,364,366,370,373,376,385,400,432,467],fashion:[364,369],fast:[349,363,367,446],faster:[83,86,175,176,178,184,187,188,327,424],faucher:[31,33,37,39,45],faucherkaspi2006:[28,29,31,35,36,39,40,48],faucherkaspi2006velocitybimod:49,faucherkaspi2006velocitymaxwellian:49,faucherspir:469,favour:[354,362,377],favourit:430,fc:[452,492],fcluster:[276,453],fcluster_kwarg:[276,453],fcn:446,fdx:349,fe:255,feasibl:[363,368,423,436,445],featur:[6,13,83,86,91,107,126,276,277,339,340,349,352,356,358,359,360,361,363,365,366,371,372,373,375,376,377,382,387,390,391,392,393,394,396,397,400,404,407,408,409,410,437,449,450,452,453,467,477,514],feature_irf:453,features_irf:453,feb:[355,356,366,370,385,386,387],fed:422,feedback:[352,354,358,363,365,366,369,370,372,378,408,447,479],feedstock:[378,379],feel:[359,538],feijen:[413,414],feldman1998:[537,540],feldman:[391,397,405,407,537],fellowship:375,felt:349,fermi:[55,58,60,61,63,69,71,72,74,79,82,114,115,117,121,175,176,178,184,185,187,188,205,255,257,260,356,357,358,359,361,362,365,366,369,379,381,386,388,389,392,394,397,401,404,405,406,407,408,409,418,424,432,434,444,449,450,451,452,459,460,465,467,475,476,479,484,491,502,512,517,535,542],fermi_3fhl:[79,175,176,178,184,187,188,451,456,465],fermi_3fhl_events_select:[79,456],fermi_3fhl_exposure_cube_hpx:456,fermi_3fhl_psf_gc:456,fermi_bkg_model:451,fermi_ct:117,fermi_dataset:[260,451,456],fermi_lat:[369,409,456,459],fermi_model:456,fermi_prof:115,fermi_ts_imag:350,fermipi:[356,358,361,365,369,373,406,408,456,467],fermitool:365,fetch:[15,349,357,388,401,463,538],few:[78,79,83,84,86,348,349,350,352,354,355,356,357,359,361,363,367,369,374,378,379,385,399,410,412,417,421,426,428,430,444,446,449,455,463,464,488,492,543],fewer:[363,369],ff:375,fft:188,fftconvolv:188,fgl:[185,450],fgst:[174,175,176,178,179,180,186,187,188,449],fhit:457,fidalgo:[359,364,389,409,410],fiduci:449,field:[16,42,50,51,54,79,80,83,86,129,130,131,132,135,136,137,138,139,142,144,146,147,152,211,226,280,284,336,349,363,375,376,385,390,395,402,409,420,422,426,428,430,432,447,448,450,455,456,479,481,482,483,484,485,486,488,514,537],fieldinfo:[16,80],fig:[188,337,416,417,420,421,422,423,424,426,428,429,430,431,434,437,438,440,441,443,446,450,488,489,497,501,504,536],figsiz:[84,97,99,103,104,116,129,130,132,133,134,135,136,137,142,143,144,145,146,148,175,176,178,184,187,188,337,417,420,423,424,426,428,429,430,431,437,438,439,440,441,443,446,447,448,449,450,451,452,453,456,458,488,497,501,504],figur:[84,97,99,103,104,116,129,130,132,133,134,135,136,142,143,144,145,146,148,175,176,178,184,187,188,327,336,337,343,349,350,354,369,379,384,420,424,428,430,431,432,434,437,438,439,443,445,446,448,449,451,452,456,457,458,538],file:[11,15,16,26,63,64,65,78,79,81,82,83,84,86,88,89,95,96,97,99,100,101,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,156,161,175,176,178,182,184,187,188,203,205,217,225,248,249,250,251,252,253,286,316,318,348,349,352,354,355,356,357,358,359,360,361,362,365,366,368,369,370,372,373,376,377,378,379,380,381,382,383,385,393,394,400,402,404,406,407,408,409,411,412,414,416,419,422,423,427,428,430,432,433,435,436,440,442,444,445,448,449,450,451,452,454,457,458,459,460,461,465,466,467,478,479,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,542],file_dir:286,file_model:432,file_nam:286,filemod:[16,421,425,426,428,463,538],filenam:[11,16,57,58,59,60,61,62,63,64,65,78,79,81,82,83,86,89,95,96,97,99,100,101,103,104,112,113,115,117,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,149,175,176,178,182,184,187,188,203,205,217,225,248,249,250,251,252,253,257,260,286,316,318,328,349,354,397,420,421,425,426,428,429,433,434,444,445,449,450,451,452,455,456,463,464,465,476,479,481,482,483,485,502,504,532,533,538],filename_1:476,filename_2:476,filename_arf:101,filename_bkg:101,filename_model:[95,112,260,451,456],filename_rmf:101,fill:[16,80,81,83,86,97,99,102,103,104,132,143,174,175,176,178,184,186,187,188,253,349,357,358,362,365,369,375,378,379,394,401,408,411,417,432,433,444,447,448,450,456,464,491],fill_between:[19,20,26,116,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,441],fill_by_coord:[143,175,176,178,184,187,188,449,456,491],fill_by_idx:[175,176,178,184,187,188,491],fill_by_pix:[175,176,178,184,187,188,491],fill_ev:[175,176,178,184,187,188,403,414,422,449,456,462],fill_nan:176,fill_valu:[28,29,30,31,32,35,36,37,39,40,83,86,129,130,131,132,135,136,137,139,142,144,146,147,175,176,178,184,187,188,248,249,252,253,349,447,449,456],filled_t:[83,86],filter:[84,85,355,359,361,363,364,409,410,413,450,453,460,464,465],filter_ev:85,filter_gti:85,filter_success_nan:[112,113],filtered_ev:85,filtered_gti:85,filterwarn:[440,441],finalis:353,find:[19,20,26,121,126,127,132,158,159,163,190,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,271,349,354,360,362,368,378,379,380,384,400,402,408,409,414,418,420,424,444,445,449,452,455,458,465,538,540,541],find_peak:[127,409,424,430],find_peaks_in_flux_map:424,find_root:400,finder:[126,158,159,400,409,424],fine:[261,291,362,426,445,456,492,538],finer:[432,445,492],fingertip:348,finish:[352,356,358,378,406,408],finit:[95,97,99,103,104,133,134,140,145,161,176,184,188,250,367],fink:[205,206,504],fir:514,firefox:[83,86],first:[57,83,86,87,89,95,97,103,112,113,115,126,132,149,158,175,176,177,180,184,185,203,225,256,311,338,349,350,352,354,356,358,359,360,361,362,363,364,365,366,367,369,370,373,374,375,379,381,383,385,389,390,391,392,393,394,395,396,397,400,402,407,409,410,411,412,414,416,417,418,420,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,444,445,446,448,449,450,451,452,453,455,456,457,460,463,464,465,476,488,491,538],firstli:[431,432],firstnam:[83,86],fit2:451,fit:[6,15,16,19,20,28,29,30,31,32,35,36,37,39,40,57,58,60,61,63,64,65,69,71,72,74,78,79,80,81,82,83,84,86,89,94,95,96,97,99,100,101,103,104,107,109,111,112,113,114,115,117,118,119,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,152,155,173,174,175,176,177,178,179,180,182,184,185,186,187,188,193,195,197,200,201,203,204,205,206,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,250,251,252,253,260,261,262,263,264,265,270,272,275,286,287,288,331,332,335,337,342,344,348,349,350,355,359,360,361,362,365,367,368,369,370,371,372,373,376,377,381,389,390,391,392,393,394,395,396,397,400,402,405,407,408,409,410,412,414,416,419,423,424,426,427,431,432,433,434,435,437,438,439,441,442,444,445,447,448,449,451,452,453,454,455,457,458,460,462,465,474,475,476,477,478,479,481,482,483,484,485,486,487,488,491,495,502,504,514,532,533,536,537,542],fit_covari:[421,463],fit_deriv:[28,29,30,31,32,35,36,37,39,40],fit_joint:[417,420,428,429],fit_rang:[16,421,425,426,428,463],fit_result:[192,260,421,463],fit_results_nul:260,fit_scipi:446,fit_sherpa:446,fit_stat_scan:364,fit_statist:349,fit_statistics_cython:379,fitconfig:16,fitmc:367,fitresult:[192,402,414,446,464],fitsfixedwarn:[424,502],fitspectrum:404,fittabl:[28,29,30,31,32,35,36,37,39,40,48,49],fittable1dmodel:[28,29,30,31,32,35,36,37,39,40],fitter:[28,29,30,31,32,35,36,37,39,40,407,408,418],five:465,fix:[28,29,30,31,32,35,36,37,39,40,81,84,89,90,100,101,145,147,162,192,227,228,233,352,354,355,356,360,361,364,366,371,373,374,375,378,379,381,387,389,390,391,392,393,394,395,396,397,398,399,400,401,403,404,405,406,407,408,409,410,412,413,416,422,423,425,426,428,429,432,436,440,446,447,448,451,452,453,463,489,491,498,515],fixed_altaz:81,fixed_icr:[81,416,423,432,433,436,440],fixed_offset:[91,161,400],fixed_r_in:150,fixed_width:150,fixedpointinginfo:[84,168,414,416,423,432,433,436,440],fk5:[492,502],flag:[28,29,30,31,32,35,36,37,39,40,86,98,102,112,113,114,115,118,119,173,174,175,176,178,180,181,183,184,186,187,188,192,417,428,432,444,452],flake8:352,flare:[122,267,381,394,395,437,438,440,442,460,475,476,477,487,488],flask:408,flat:[122,137,147,173,174,179,181,183,186,189,190,227,360,373],flatten:[28,29,30,31,32,35,36,37,39,40,173,174,181,183,186,437],fledg:377,flexibl:[78,302,349,354,358,359,360,363,365,369,370,376,449,479,535],float32:[173,174,175,176,178,183,184,186,187,188,425,430,449],float64:[83,86,132,135,349,377,447,449,477],float64float64float64:430,float64float64float64float64float64float64float64float32bool:418,float64float64float64float64float64float64float64float64:430,float_a:[83,86],flow:[376,536,537],fluctuat:[262,263,373,423,436,540],flux:[15,19,20,26,41,46,65,69,71,72,74,75,76,79,84,95,96,97,99,103,104,107,111,112,113,114,115,118,119,120,121,122,123,124,125,127,193,197,198,199,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,251,252,253,254,255,256,259,266,267,268,269,353,361,362,364,365,367,369,370,372,381,388,391,393,394,396,400,402,406,407,408,410,419,422,424,428,430,432,433,435,437,438,439,440,441,445,449,452,456,460,473,474,475,484,491,493,499,514,535,536,540],flux_err:[19,20,26,112,113,121,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,267,268,269,424,437,438],flux_errn:[112,113,444],flux_errp:[112,113,444],flux_int_cu:256,flux_map:[112,113,373,443],flux_per_omega:452,flux_point:[16,64,65,69,71,72,74,75,76,93,96,112,113,114,361,416,418,420,421,425,426,428,430,441,444,445,463,464,465],flux_point_dataset:361,flux_points_at_tim:373,flux_points_ctb_37b:113,flux_points_dataset:[420,430,441],flux_points_fermi:429,flux_points_hawc:429,flux_points_hess:429,flux_points_meta:[69,71,72,74],flux_points_recomput:113,flux_points_t:[69,71,72,74,75,76],flux_pr:96,flux_profil:[434,435],flux_profile_estim:434,flux_profile_fermi:434,flux_quant:[122,123,124,437],flux_ref:[112,113,373],flux_sensit:[112,113],flux_ul:[112,113,121,444],fluxestim:[112,113,114,370,396,398,399,400,402],fluxmap:[111,113,121,127,400,424,477],fluxmapestim:373,fluxmapsmetadata:376,fluxpoint:[69,71,72,74,75,76,96,112,114,115,118,122,123,124,361,364,373,376,400,407,408,414,416,418,429,434,437,438,444,445,465,474,475,477,479],fluxpointdataset:394,fluxpointestim:[364,391,397,410],fluxpointfit:361,fluxpointfitt:409,fluxpointprofil:410,fluxpointsconfig:16,fluxpointsdataset:[93,94,97,99,370,373,376,390,394,418,420,429,430,440,441,475],fluxpointsdatasetmetadata:376,fluxpointsestim:[108,115,118,298,370,371,373,381,391,396,397,400,414,420,429,430,441,463,464],fluxpointsetim:373,fluxpointsmetadata:376,fluxprofileestim:[108,400,413,434],fly:359,fmt:446,focu:[359,369,394,407,422,538],focus:[359,375],fold:[102,373,418,429,475,477],folder:[11,78,89,96,100,104,113,314,349,350,354,357,378,380,385,390,400,403,421,428,432,455,463,464,536,538],follow:[15,19,20,43,44,76,78,79,80,86,97,100,101,103,104,112,113,116,121,126,174,175,176,178,182,187,188,192,240,256,260,339,340,342,349,350,352,353,354,356,357,358,359,360,361,362,363,364,365,366,368,369,371,372,373,374,375,376,377,378,381,383,384,385,392,393,394,396,397,400,402,403,409,410,414,416,417,418,420,421,423,424,425,428,429,432,433,438,439,440,441,443,444,446,448,449,450,451,452,455,460,463,465,467,469,470,475,477,479,481,483,484,488,490,491,492,493,500,501,505,508,509,511,512,516,517,519,520,521,522,523,536,539,540,541,543],font:[175,176,178,184,187,188,350,449],fontsiz:[346,441,446],foo:[83,86],footprint:[175,176,178,184,186,187,188,498],footprint_rectangle_sky_region:186,forbid:[16,80],forbidden:451,forc:[16,28,29,30,31,32,35,36,37,39,40,80,143,186,188,278,354,364,390],forecom:[349,374],foremost:538,forens:365,foreseen:[359,374],forev:390,forg:[348,366,378,379,381,382,385,408,455],forget:[421,431,463],forgot:349,forgotten:349,fork:352,form:[16,80,83,86,97,145,148,183,290,349,355,359,364,372,374,376,386,408,450,476,484,496,506,536],formal:[354,377,424],format:[16,79,80,81,82,83,84,86,89,97,99,101,103,104,112,113,114,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,168,173,174,175,176,177,178,179,180,183,184,185,186,187,188,190,203,217,225,253,286,308,330,331,338,348,350,357,358,359,360,361,363,365,373,375,376,379,388,400,402,405,409,411,412,414,418,420,421,422,424,425,426,428,430,432,433,434,437,438,440,444,447,449,450,452,455,456,457,458,463,465,467,473,475,476,477,478,481,482,483,484,485,492,532,533,537,538,539],format_plot_xaxi:[177,180,185,447],format_plot_yaxi:[180,447],formatt:[338,449],formatwarn:349,former:[375,391,396,417,451,536,539],formula:[28,29,30,31,35,36,37,39,40,50,52,53,144,231,232,275,416,539],forum:378,forward:[19,20,26,79,83,86,97,99,103,104,115,129,130,131,132,135,136,137,139,142,144,146,147,157,179,183,184,185,192,197,198,201,202,205,207,208,209,210,211,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,240,241,243,244,245,246,249,250,251,252,253,254,257,276,338,343,350,356,359,373,418,429,475,477,492],forwardref:[16,80],found:[19,20,26,78,82,83,86,122,158,163,182,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,267,352,353,357,364,374,375,394,397,398,399,403,426,432,437,452,458,476,477,488,489],four:[352,360,373,438,455,456,483,485,491,537],fov:[111,129,130,152,153,167,168,170,172,211,349,355,363,405,408,409,425,447,450,451,455,487,537],fov_:349,fov_align:[129,130,131,132,135,136,137,139,142,144,146,147,447],fov_background:[425,463],fov_bkg_mak:[448,486],fov_lat:[130,447,455,484],fov_lat_axi:447,fov_lon:[130,447,455,484],fov_lon_axi:447,fov_theta:349,fovalign:[129,130,131,132,135,136,137,139,142,144,146,147,447],fovbackground:[377,396],fovbackgroundmak:[153,395,400,448,463,464],fovbackgroundmodel:[15,97,102,103,105,152,221,377,397,414,428,429,432,433,436,445,451,463,464,486,498],fp:[113,373,463,477,479],fp_dataset:445,fp_dnde:373,fp_energy_flux:373,fpe:[298,371,373,420,430,441,464],fpp:268,fpp_err:[268,437],fpp_tabl:437,fr:[375,455],frac:[17,19,20,21,22,23,24,25,27,28,29,30,31,32,35,36,37,39,40,50,51,52,53,54,99,104,132,135,191,209,213,230,232,244,267,269,277,372,475,483,484,495,496,497,500,501,505,508,509,511,512,516,517,519,520,521,522,526,527,528,530,540,541],fraction:[19,20,26,50,52,53,79,84,85,111,120,124,136,142,144,145,146,148,183,189,190,197,198,201,204,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,268,269,359,364,407,416,423,432,436,445,447,450,455,456,457],frame:[16,79,81,86,89,90,97,99,103,104,115,126,155,158,168,174,175,176,178,181,183,184,186,187,188,199,200,204,212,215,227,229,237,238,240,242,248,252,312,325,349,350,358,360,363,373,390,391,393,394,395,417,420,421,422,423,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,445,447,448,449,450,451,452,453,456,457,458,463,464,465,483,488,490,491,492,495,496,497,498,499,500,501,502],framework:[360,362,363,365,367,368,372,390,391,397,409,441,452,469,479],franceschini17:[206,504],franceschini:[205,206,253,414,504],franceschni:504,frd_ab:206,free:[50,52,53,97,99,103,104,114,118,119,155,192,194,196,227,228,260,354,364,390,421,423,425,426,428,430,431,436,438,440,445,446,448,451,452,456,460,463,464,467,477,486,498,514,515,538,540,541],free_paramet:[194,196,260,446,451],freedom:[109,112,113,375,431,477,540,541],freez:[19,20,26,83,86,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,364,375,390,400,425,436,446,452,514],freeze_al:[194,196],frenk:467,frequenc:[251,471],frequent:[180,349,358,367,375,437,439,440,450,479,480,538],frequentist:367,fridai:358,friendli:[354,376,411,421,463,479],from:[13,15,16,19,20,26,27,28,29,30,31,32,33,35,36,37,38,39,40,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,89,91,95,96,97,98,99,100,102,103,104,105,107,111,112,113,114,115,117,118,120,121,125,127,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,150,155,156,157,158,161,162,164,168,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,256,260,261,262,263,266,269,278,288,296,298,300,301,305,308,309,313,317,328,329,331,334,335,336,337,338,339,340,341,342,343,344,345,346,350,352,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,381,385,386,388,389,390,392,393,394,395,396,397,400,401,402,404,406,407,408,409,410,411,412,413,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,440,441,443,444,445,446,447,448,452,453,455,456,457,458,460,462,463,464,465,467,468,469,471,472,473,474,475,476,477,479,481,482,483,484,485,486,487,488,489,490,491,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,536,537,538,539,540,542],from_align:[186,400],from_attribut:[16,80],from_bound:[135,137,145,174,180,186,373,429,432,433,445,447,448,449,458,491,492],from_covariance_matrix:377,from_default:179,from_diagonal_respons:[132,133,134,424,456],from_dict:[19,20,26,96,97,99,103,104,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,393,400],from_dir:[78,85,155,385,417,420,422,430,439,441,448,453,455,458,462,464,476,479,486,488,489],from_edg:[134,175,176,178,180,184,187,188,423,436,440,447,456,457],from_edisp_kernel:133,from_energy_bound:[19,20,26,97,99,103,104,132,134,135,143,145,155,180,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,416,417,420,422,429,430,432,433,439,441,445,447,448,452,456,457,464,483,486,488,489,492],from_energy_edg:[132,180,344,445,447],from_events_fil:[78,432,455],from_factor_matrix:191,from_fil:[78,476],from_fits_head:81,from_gauss:[132,133,137,143,145,148,483],from_gaussian:397,from_geom:[97,99,103,104,133,134,143,145,148,175,176,178,182,184,187,188,394,413,445,449,450,492,497],from_gti:185,from_gti_bound:185,from_hdu:[174,176,188],from_hdulist:[97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,182,183,184,186,187,188,449],from_head:[80,174,186,376],from_irf:147,from_log10:[219,220,512],from_map:[112,113],from_map_dataset:[99,104],from_nam:[426,430],from_nod:180,from_orm:[16,80],from_panda:[83,86],from_paramet:[19,20,26,197,198,199,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254],from_parametr:[135,481],from_posit:[199,200,204,212,215,227,229,237,238,242,248,252,433],from_refer:372,from_region:[183,204,414,488],from_region_map:253,from_spatial_model:143,from_spectrum_dataset:[104,416,423],from_stack:[79,82,87,112,113,175,176,177,178,180,184,187,188,191,194,196,414,476],from_tabl:[113,129,130,131,132,135,136,137,139,142,144,146,147,177,179,180,184,185,217,411,416],from_table_hdu:[82,179,180],from_time_bound:185,from_time_edg:185,from_time_interv:82,from_wcs_til:176,from_yaml:[16,203,225,360,421],fromnumer:422,front:[358,378,407],frozen:[19,20,26,96,114,118,152,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,364,372,377,392,417,418,420,421,422,423,425,428,429,430,431,432,433,434,436,439,440,444,445,446,450,451,452,456,463,464,465,477,486,514,523],ftol:446,ftool:364,fulfil:[376,449],full:[78,114,121,129,130,131,132,135,136,137,139,142,144,146,147,176,203,225,286,345,348,349,354,358,359,362,364,365,369,375,377,380,382,387,390,400,402,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,479,490,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,536],full_enclosur:[168,447],full_output:[19,20,26,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254],fulli:[118,173,174,183,186,251,358,359,366,370,375,379,382,392,394,402,417,437,452,455,457,458,467],fun:[349,352],func:[17,18,21,22,24,25,27,175,176,178,184,187,188,258,299,303,304,342,426,428],functional_model:[28,29,30,31,32,35,36,37,39,40],fundament:[362,371,376],further:[11,28,29,30,31,32,35,36,37,39,40,78,107,111,114,115,118,121,181,302,349,352,353,355,358,359,362,363,366,368,369,370,371,372,395,396,397,400,402,426,432,443,444,445,449,465,468,469,484,538],furthermor:455,futur:[98,102,114,115,118,193,195,349,354,359,362,363,365,366,367,368,369,370,371,373,374,375,377,408,428,432,449,456,468,477,535],fvar:[124,269,364,407],fvar_err:[269,437],fvar_tabl:437,g0:[428,456],g28:65,g320:444,g:[13,19,20,26,28,29,30,31,32,35,36,37,39,40,46,47,51,52,53,54,59,65,79,81,82,83,86,90,126,174,175,176,178,180,184,186,187,188,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,267,278,317,338,344,348,349,350,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,372,373,375,376,378,379,381,382,383,400,402,406,408,409,410,411,414,417,418,421,423,430,432,434,443,444,445,446,449,450,451,452,455,456,460,465,467,471,474,475,476,477,479,484,489,490,491,497,535,537,538,540,542,543],g_1:135,g_2:135,g_3:135,ga:434,gabriel:409,gadf:[79,80,81,82,84,90,97,99,103,104,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,177,178,179,180,183,184,185,186,187,188,359,362,373,376,400,402,411,414,449,463,475,479,492,537],gain:[28,29,30,31,32,35,36,37,39,40,354,366,408],gal_diffus:365,galact:[17,18,21,22,24,25,27,29,45,47,65,66,79,86,97,99,103,104,114,115,117,174,175,176,178,181,183,184,186,187,188,204,212,215,229,237,238,285,312,349,350,360,363,369,388,390,407,417,420,423,424,425,428,430,431,432,434,436,440,443,444,445,449,450,451,452,455,465,467,470,474,489,490,491,492,495,496,497,498,499,500,501,537,543],galactic_median:79,galactocentr:41,galaxi:[28,30,35,39,40,41,205,268,269,388,417],galelli:413,gallant:408,galleri:[379,395,397,400,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,480,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535],gallery_jupyt:493,gallery_python:493,gallery_spati:503,gallery_spectr:524,gallery_tempor:534,galprop2:[174,175,176,178,187,188],galprop:[174,175,176,178,187,188],gambit:467,gamma1:[197,505,519],gamma2:[197,505,519],gamma:[11,17,18,19,20,21,22,24,25,26,27,52,53,57,59,62,64,65,75,79,111,114,120,144,168,175,176,178,187,188,205,207,208,209,230,231,232,253,256,305,349,355,357,360,361,362,363,373,378,379,381,385,386,391,405,406,407,408,409,416,418,420,421,422,426,429,430,431,432,434,444,447,449,450,453,455,457,458,463,465,467,469,470,474,475,476,479,482,484,486,488,489,497,504,508,509,516,517,535,536,537,538,539,540,543],gamma_1:[241,244,245,246,372,520,521,522],gamma_2:[241,244,245,246,372,520,521,522],gamma_min:[120,416],gamma_min_sensit:111,gammacat:[55,64,407,418],gammalib:[349,362],gammamc_dif:467,gammapi:[6,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,350,351,353,354,356,357,359,360,361,362,363,364,365,367,371,372,373,377,380,381,382,383,384,387,388,389,390,391,392,393,394,395,396,397,400,401,402,404,405,406,407,408,409,410,411,412,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,448,449,450,451,452,453,454,459,460,462,463,464,465,468,469,471,472,473,479,480,481,482,483,485,489,490,492,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,537,538,539,540,543],gammapy_analysis_config:365,gammapy_data:[26,57,58,59,60,61,62,63,64,65,78,79,82,84,85,86,89,96,97,99,103,104,107,111,113,115,117,121,130,134,135,136,137,145,155,175,176,178,184,187,188,206,217,253,260,328,337,342,344,349,350,352,365,381,383,385,389,390,391,400,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,476,477,479,481,482,483,485,486,488,489,502,532,533],gammapy_extra:389,gammapybaseconfig:16,gammapydeprecationwarn:[349,510,513],gammmapi:[359,366],garcia:409,gather:[363,369,378],gauss:[42,51,54,97,99,116,117,136,176,188,212,213,214,215,372,406,441,449,452,465,495,496],gauss_elong:452,gauss_temp:452,gaussian1d:[28,29,30,31,32,35,36,37,39,40],gaussian2d:[28,29,30,31,32,35,36,37,39,40,50],gaussian2dkernel:107,gaussian:[65,66,76,77,107,116,132,133,137,143,145,148,176,188,212,213,214,215,216,268,269,360,368,372,377,393,397,418,430,432,436,437,440,444,446,447,452,455,465,483,485,493,503,524,534],gaussian_compon:[65,444],gaussian_filt:[116,188],gaussian_model:527,gaussian_sigma:446,gaussianband2d:408,gaussianprior:377,gaussianspatialmodel:[76,77,234,372,393,430,431,436,452,496],gaussianspectralmodel:[235,372,452,511],gaussiantemporalmod:400,gaussiantemporalmodel:[247,372,396,452,527],gb:[357,359,455,457],gc:[82,97,99,103,104,107,111,115,117,121,337,342,344,352,424,425,428,430,432,434,443,445,449,451,452,455,456,465,467,476,477],gc_3fhl:465,gc_3fhl_cutout:465,gc_3fhl_smooth:465,gc_imag:434,gc_po:456,gc_sep:451,gcc:385,gcce7eee8f:[386,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],gcmsl52y:448,gdu1oeeo:428,geminga:59,gen_gaussian_model:528,gener:[16,27,33,42,45,46,47,56,78,79,80,83,84,86,87,97,98,99,102,103,104,134,145,148,175,176,178,179,180,184,187,188,192,202,210,214,215,216,217,218,233,239,248,249,251,253,254,300,302,305,306,307,308,314,350,352,358,360,361,362,363,365,367,368,369,370,371,372,373,374,379,382,385,391,395,396,397,400,402,407,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,475,479,484,490,492,493,494,495,496,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,529,530,531,532,533,534,538,540,541],generalconfig:16,generalis:[113,368,394,447],generalized_gaussian_model:528,generalizedgaussianspatialmodel:[234,397,452,497],generalizedgaussiantemporalmodel:[247,402,452,528],generalrandom:392,generatejsonschema:[16,80],gengauss:[216,452,497],geodeticloc:89,geolat:417,geom:[16,23,79,97,99,103,104,106,111,112,113,115,121,133,134,143,145,148,155,162,164,165,166,167,168,169,170,171,174,175,176,178,179,182,183,184,186,187,188,199,200,203,204,211,212,215,225,227,229,237,238,240,242,248,252,360,362,364,397,400,409,416,417,420,421,422,423,424,425,426,428,430,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,456,457,463,464,465,477,486,488,489,490,491,492,494,496,497,498,499],geom_24_energy_bin:492,geom_6_energy_bin:492,geom_edisp:[97,99,103,104,445],geom_energi:492,geom_exposur:[97,99,103,104,413,445],geom_imag:[426,430,492],geom_irf:362,geom_psf:[97,99,103,104,445],geom_tru:394,geomconfig:16,geometri:[23,79,95,97,99,103,104,106,112,113,133,134,140,143,145,148,152,155,157,162,164,165,166,167,168,169,170,171,173,174,175,176,178,179,181,182,183,184,186,187,188,189,190,199,200,203,204,212,215,225,227,229,237,238,240,242,248,252,345,355,361,364,365,394,400,411,420,421,422,423,425,426,428,432,433,436,445,448,456,457,475,477,479,487,491,536,537],geomspac:[113,377],geq:[52,53],get:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,78,80,81,83,84,86,89,91,95,97,100,101,103,107,111,114,115,118,119,121,126,132,133,134,140,145,148,173,174,175,176,178,179,182,183,184,186,187,188,191,194,196,197,198,199,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,229,230,231,232,236,237,238,241,242,243,244,245,246,248,249,251,252,253,255,286,302,349,350,354,355,356,357,358,359,363,364,366,373,375,376,377,379,382,383,385,386,389,391,406,407,408,409,416,421,423,424,428,429,430,436,444,445,446,447,448,450,451,452,455,456,457,458,460,463,464,465,467,475,479,492,537,541],get_altaz:[81,89,414],get_bia:132,get_bias_energi:132,get_bounding_box:[28,29,30,31,32,35,36,37,39,40],get_by_coord:[175,176,178,184,187,188,448,449,456,457,491],get_by_idx:[175,176,178,184,187,188,449,491],get_by_pix:[175,176,178,184,187,188,491],get_cl:[418,444,450],get_coord:[173,174,179,183,186,393,400,409,433,449,450,488,492],get_dataset:[15,421,425,426,428,438,463,479],get_devel_vers:352,get_edisp_kernel:[133,134,395,400,445,456,483],get_events_meta_data:362,get_excess_map:[15,463],get_filenam:[100,101],get_flux_point:[15,112,113,373,395,421,463],get_group_by_idx:373,get_hdu:286,get_icr:[81,89,414],get_idx:[173,174,183,186,492],get_image_by_coord:[175,176,178,184,187,188,449],get_image_by_idx:[175,176,178,184,187,188],get_image_by_pix:[175,176,178,184,187,188],get_index_list:174,get_irfs_featur:[414,453],get_kernel:107,get_light_curv:15,get_mean:132,get_observ:[15,78,391,402,417,420,421,422,425,426,428,430,432,438,439,441,448,453,457,458,462,463,464,479,486,488,489],get_ogip_meta:101,get_pix:186,get_pointing_altaz:[84,453],get_pointing_icr:[84,414,430,448,464],get_psf_kernel:[143,145,148,456],get_random_st:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,305,306,307,308,349],get_resolut:132,get_respons:407,get_scal:107,get_scale_model:[114,115,118],get_spectrum:[175,176,178,184,187,188],get_subcovari:191,get_transform:[424,430,495,496],get_valid_path:100,get_wcs_coord_and_weight:183,getattr:377,getitem:407,getlogg:[349,426,430,438,439,440,462],getter:350,getting_start:369,gev2:[19,443],gev:[17,18,19,20,21,22,24,25,27,71,115,121,175,176,178,184,187,188,418,422,424,428,429,434,436,440,441,443,444,448,449,450,451,455,456,457,465,492,514,536,537],gevgevgev1:418,gh:[349,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,379],git:[82,240,349,350,352,354,356,357,375,382,411],github:[19,20,26,64,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,350,352,353,354,355,357,358,367,369,374,375,378,379,382,384,389,390,391,392,393,394,395,396,397,400,405,406,407,408,409,410,542],giuliani:362,giunti:[390,391,392,393,394,395,396,397,400,402,403,411,414],give:[6,28,29,30,31,32,35,36,37,39,40,83,86,125,267,268,349,354,358,359,363,364,365,366,369,370,375,379,384,390,392,394,402,421,424,431,433,437,439,444,446,447,448,449,452,455,456,463,479,484,538,539,541,542],given:[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,42,46,51,52,53,65,66,76,78,79,80,81,83,84,86,89,91,94,95,96,97,98,99,102,103,104,105,109,111,112,113,114,116,118,119,120,121,126,127,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,157,158,161,163,165,166,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,260,262,263,269,276,278,281,282,289,296,300,303,304,312,336,337,342,346,349,356,357,358,359,360,361,362,363,364,366,368,372,373,375,377,389,394,400,408,409,414,416,417,418,421,424,432,433,434,436,438,439,440,443,444,445,447,448,449,450,452,455,456,463,465,475,476,477,479,483,484,488,489,491,492,497,501,504,535,537,538,539,540],glast:456,glat:[41,65,66,79,349,420,444,449,456],glat_err:444,glat_pnt:[430,455],glimps:[457,460],gll_iem_v06_cutout:[175,176,178,184,187,188],gll_iem_v06_gc:[432,449,451,452,456],gll_psc_v16:60,gll_psc_v20:444,gll_psc_v32:63,gll_psch_v09:58,gll_psch_v13:61,glob:[78,350,445],global:[16,33,42,45,46,47,95,97,98,99,102,103,104,134,145,148,173,174,175,176,178,183,184,186,187,188,192,202,210,214,216,217,218,233,239,251,254,300,302,305,306,307,308,349,353,355,397,414,420,430,431,441,451,477,536],global_dataset:448,global_to_loc:174,glon:[41,65,66,79,349,420,444,449,456],glon_pnt:[430,455],glossari:[369,411,475,492],glue:479,glueviz:366,gmodelspatialradialprofiledmburkert:467,gmodelspatialradialprofiledmeinasto:467,gmodelspatialradialprofiledmzhao:467,go:[50,83,86,352,359,369,374,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,467,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538],goal:[354,363,377,446],goe:[41,52,339,349,368,379,434],gogia:407,good:[78,79,82,96,113,272,275,349,354,356,357,358,359,360,363,365,366,367,369,420,422,423,426,436,437,439,440,443,445,446,448,450,452,456,457,460,500,501,537,542],googl:[83,86,369,378],got:455,gov:[58,60,61,63,132,180,369,378,517],gp:[78,79,85,350,359,365,425,428,430,441,455,457],gpl3:349,gps_baseline_110380:[78,79,455],gradient:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],grai:[340,488,514],grand:349,grant:[352,375],granular:437,grayify_colormap:368,grb:[437,440],great:[354,363,368,406,460],greater:[152,342],green:[96,103,104,408,431,453],grei:441,grep:384,grid:[17,18,21,22,24,25,27,28,29,30,31,32,35,36,37,39,40,114,117,136,144,146,175,176,178,180,184,187,188,199,200,204,212,215,227,229,237,238,242,248,252,258,342,349,360,365,392,394,446,491,492,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531],gridsearch:[192,446],gridspec:336,gridspec_kw:[424,430,437,438,440,504],ground:[90,364,455,539],group:[82,83,86,87,114,115,118,119,121,133,173,174,175,176,178,179,180,183,184,185,186,187,188,276,355,364,368,369,370,373,378,381,391,394,396,400,406,409,438,440,460,477,479,493,538],group_1:453,group_2:453,group_bi:[83,86,373],group_by_axi:373,group_by_label:[87,453],group_high_zenith:453,group_low_zenith:453,group_tabl:[82,180,185],grouped_observ:453,grow:[357,368,408],grown:369,gsfc:[58,60,61,63,132,180,369,517],gt:447,gtexpcube2:456,gti:[78,79,83,84,85,95,96,97,99,103,104,112,113,115,118,149,185,240,355,358,359,362,363,364,373,392,394,395,397,410,414,432,439,440,445,448,455,457,458,475,479,537],gti_1:476,gti_2:476,gti_t0:440,gtimetadata:376,gtmktime:[359,456],gtobsim:362,gtol:446,gtpsf:[133,134,140,145,148,180,424,456],gtselect:[359,456],guarante:[357,372,374],guess:[113,174,176],guid:[352,365,367,381,382,383,386,409,460,479],guide_model:[503,524,534],guidelin:[349,353,386,408],guiger:[31,39],gz:[58,60,61,63,64,65,78,79,82,84,86,89,97,99,103,104,107,111,115,117,121,137,206,253,337,342,344,371,409,420,421,424,431,432,433,434,444,445,447,449,451,452,455,456,457,462,463,464,465,476,477,479,481,482,483,485,504],h05:[45,49],h0:431,h1:431,h:[26,65,78,82,83,86,90,116,134,175,176,178,184,187,188,339,369,372,381,385,386,394,409,416,417,420,421,423,429,431,438,439,440,443,447,448,449,452,455,456,457,459,460,462,463,464,474,476,479,492,526,527,537,538],h_0:[431,540],h_1:[431,540],h_i:116,ha:[19,20,26,28,29,30,31,32,35,36,37,39,40,76,83,86,96,97,99,103,104,111,112,113,147,169,173,174,175,176,178,182,183,184,186,187,188,193,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,251,252,253,342,344,346,349,350,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,381,382,383,396,397,400,402,403,409,410,411,413,414,417,420,421,422,426,431,433,438,439,441,443,444,445,446,448,449,450,452,453,455,457,458,463,475,476,479,484,488,489,492,495,496,523,535,538,540],habilit:275,hack:405,had:[349,355,357,375,397,403,407,408],hadron:[255,355,360,426,445,455,475,488],hajlaoui:[397,400],hal:375,half:[145,148,180,186,252],halo:467,halv:[122,267],halving_coord:437,halving_err:437,hand:[157,349,352,357,360,369,375,377,412,446,460,479],handbook:[369,460],handi:428,handl:[3,182,270,348,350,353,361,362,363,365,370,372,373,376,378,381,383,390,391,392,393,394,395,396,397,398,399,400,402,403,404,405,406,407,408,410,411,413,414,420,422,428,429,430,432,445,447,449,451,452,456,457,460,464,465,475,476,479,537],handler_map:346,hap:365,happen:[78,352,354,356,357,363,367,379,421,451,460,463,464,475,479,540],happi:[352,356,369,389,390,409],hard:[349,350,372,377,395],harder:[356,538],hardli:376,harri:[404,405],harvard:[28,30,31,32,33,35,36,37,38,39,40,50,52,53,57,58,60,61,79,84,107,114,135,192,222,255,256,269,369,446],has_any_t:[112,113],has_energy_axi:[173,174,183,186],has_invers:[28,29,30,31,32,35,36,37,39,40],has_masked_column:[83,86],has_masked_valu:[83,86],has_mixin_column:[83,86],has_offset_axi:[129,130,131,132,135,136,137,139,142,144,146,147],has_stat_profil:[112,113],has_success:[112,113],has_ul:[112,113],has_user_bounding_box:[28,29,30,31,32,35,36,37,39,40],has_user_invers:[28,29,30,31,32,35,36,37,39,40],hasattr:349,hasn:[354,542],hatch:441,have:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,65,78,80,83,86,90,95,101,112,113,114,118,126,127,132,133,134,143,145,148,155,157,169,173,174,175,176,178,182,183,184,186,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,278,302,308,346,348,349,350,351,352,354,355,356,358,360,362,363,366,367,368,369,370,371,372,374,375,376,377,379,380,381,382,383,384,385,386,389,390,391,394,397,400,402,403,406,408,409,410,411,412,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,439,440,441,444,445,446,447,449,450,451,452,453,455,456,457,460,463,464,465,467,475,476,477,479,490,491,492,501,512,535,538,541,542],haven:385,hawc19_flux_point:[113,429,479],hawc:[55,59,62,70,73,92,386,394,400,408,411,412,414,459,460,474,475,476,487,491,537],hawc_crab:[113,429,479],hd:65,hdr:376,hdr_dict:376,hdu1:132,hdu2:132,hdu:[65,78,79,81,82,83,84,89,97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,149,173,174,175,176,177,178,179,180,182,183,184,185,186,187,188,286,335,359,388,403,405,408,411,412,432,447,449,455,457,458,475,476,479,481,482,483,485,492,533],hdu_al:432,hdu_band:[112,113,133,134,140,145,148,173,174,175,176,178,179,182,183,184,186,187,188],hdu_class:[78,83,286,455,457,458],hdu_class_uniqu:83,hdu_evt:432,hdu_filenam:457,hdu_gti:432,hdu_hdu:78,hdu_index:78,hdu_list:[133,134,136,140,144,145,146,148,175,176,187,188],hdu_loc:83,hdu_nam:286,hdu_ob:78,hdu_out:[175,176],hdu_region:[183,184],hdu_tabl:[78,457],hdu_table_filenam:78,hdu_typ:[78,83,455,457,458],hdu_type_uniqu:83,hduclas2:447,hduclas3:447,hduclas4:447,hduclasn:447,hduindext:[78,286,457],hdulist:[97,99,101,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,182,183,184,186,187,188,432,449,475],hduloc:[83,97],he:[255,359,364],hea:364,header:[78,79,80,81,82,83,84,86,89,95,96,97,99,100,101,103,104,133,134,140,145,148,173,174,175,176,177,178,179,180,182,184,185,186,187,188,252,288,331,332,335,354,359,362,376,394,402,404,409,411,414,422,432,433,449,455,542],healpi:[174,348,356,358,366,381,383,392,400,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,490],healpix:[13,174,175,176,178,184,187,188,348,356,358,363,400,408,449,456,491],healpix_to_imag:401,heapsort:[83,86],heart:540,heasarc:[132,180],heatmap:[338,343],heavi:[409,410],heavier:428,heavili:400,hegra:[92,256],heidelberg:349,heidt:437,height:[16,29,83,86,89,115,311,421,425,426,428,434,438,441,443,449,450,452,463,488,492],heighten:437,helen:406,hello:[385,430],help:[11,83,86,264,270,349,352,354,356,363,364,365,369,375,378,379,380,385,389,390,391,408,409,411,444,448,449,451,456,458,465,479,538],helper:[13,286,291,356,358,363,364,365,368,379,385,391,392,393,394,400,402,405,407,408,414,434,444,450,451,488,536,543],henc:[83,86,365,425,426,477,492,540],her:378,here:[13,78,79,83,86,97,103,113,130,135,144,192,262,263,266,337,348,349,350,351,352,355,356,361,362,363,364,365,366,367,368,369,375,376,377,379,381,383,385,388,389,390,391,392,393,394,395,396,397,400,402,403,405,406,407,408,409,410,411,414,416,417,418,420,421,422,423,424,425,426,428,430,431,432,433,436,437,438,439,440,441,444,445,446,447,448,449,450,453,455,456,457,460,463,464,465,469,475,479,484,486,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538,539,540,542,543],hereaft:432,heritag:375,hess2:[135,481],hess:[16,55,65,78,79,82,84,86,92,96,103,104,114,135,137,155,161,260,357,358,363,365,369,378,381,385,388,390,393,404,405,408,409,417,418,420,421,422,426,428,430,431,439,441,443,444,445,446,448,453,456,458,459,462,463,464,467,476,477,479,481,482,483,485,486,488,489],hess_dl3_dr1_obs_id_020136:[84,137,481,482,483,485],hess_dl3_dr1_obs_id_023523:[79,82,476],hess_dl3_dr1_obs_id_023526:476,hess_ecpl:[256,420],hess_pl:256,hessian:477,heterogen:[376,418,429],hfm:65,hgp:[65,76,77,111,369,394,406,408,409,474],hgps_catalog_v1:65,hgps_sourc:65,hgpsc:[65,444],hi:[349,407],hi_bnd:180,hi_threshold:132,hidden:360,hide:[13,354,371],hierarch:[13,276,317,358,360,376,479,491],hierarchi:[276,360,393],hierarchical_clust:[414,453],high:[6,15,58,61,62,79,132,180,301,349,353,354,355,362,363,364,369,376,392,393,394,395,396,400,408,409,416,418,421,424,425,428,434,436,438,443,444,445,448,450,455,456,457,458,460,464,465,466,474,477,484,491,536,537,538,539],high_zenith:453,higher:[173,174,175,176,178,183,184,186,187,188,216,352,355,360,365,368,370,382,418,433,437,447,449,492],highest:[126,161,437,448,455,465],highli:452,highlight:538,him:378,hint:[376,424,477],hire:[136,369,469,471,472,473,475,476,481,482,483,485,488,492,540,543],hist:[79,103,104,184,188,342,423],histogram:[79,103,104,180,184,188,342,414,441,492,537],histori:[363,375,411],hli:[362,395,396,400,411,419,460,478,537],hli_spectrum_analysi:421,hline:495,hoc:363,hold:[67,78,85,87,91,95,143,211,278,358,359,361,364,538,540],home:[16,314,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,504,510,513,526,532,533],homebrew:366,homework:391,homogen:[83,86,397],honk:354,hood:[421,460,463],hook:[352,411],hope:354,hopefulli:356,horizont:[81,90,138,319,447,542],host:349,hour:[65,89,352,365,379,416,444,448,449,479],hover:350,how:[19,20,78,79,81,94,113,115,117,155,176,186,188,302,308,351,354,357,361,363,365,366,368,371,372,375,376,379,380,381,385,386,389,390,391,394,395,402,404,407,408,409,414,416,418,420,421,422,423,424,425,426,429,430,431,432,433,434,436,437,438,439,440,441,444,445,446,450,451,452,453,455,456,457,458,460,463,465,467,469,475,477,480,484,488,490,491,504,536,538,539,540,542,543],howev:[83,86,111,268,348,349,350,352,356,359,362,363,367,375,377,381,382,383,417,426,434,441,443,444,445,446,447,457,458,460,475,479,491,492,496,512,538],howto:[369,411,412],hpx2wc:[175,176],hpx:[174,175,176,178,187,188,363,400,449,456],hpx_map:[175,176],hpx_pixel:363,hpx_reg:174,hpxgeom:[112,173,175,176,395,400,411,456,490],hpxmap:[176,178,490],hpxndmap:[248,400,490],hpxsparsemap:394,hpxtowcsmap:[175,176],hr:[432,433,436,440],hspace:443,hspec:[404,405,406],hst:205,hstack:[83,86,362],html:[26,79,83,86,114,132,168,174,180,183,186,192,203,225,253,278,305,306,349,350,352,357,369,374,375,378,379,387,408,416,423,425,428,430,436,440,446,447,455,476,482,490,492,517],htmlcov:379,http:[11,13,16,19,20,26,28,30,31,32,33,34,35,36,37,38,39,40,50,52,53,57,58,60,61,62,63,64,65,79,80,83,84,86,107,114,122,132,135,161,168,174,180,183,186,192,197,198,201,203,205,207,208,209,213,219,220,222,225,226,228,230,231,232,236,241,243,244,245,246,249,253,255,256,268,269,278,305,306,317,349,352,366,369,374,375,378,379,381,382,383,387,391,407,408,416,420,423,425,428,429,430,436,440,443,444,446,447,448,455,458,476,490,492,517,521,522,538,542],hubert:409,hue:340,huestart:340,huge:[379,496],hugovk:390,human:[330,360,379,402,421,463],hundr:457,hypercub:[449,491,492],hypothes:[260,414,479,540],hypothesi:[112,113,114,115,118,119,260,262,263,418,424,431,477,479,537,540],hz:[308,465],i0:[83,86],i1:[83,86],i4:434,i8:[449,465],i:[16,19,20,51,54,66,80,83,86,116,126,132,133,134,137,168,173,174,182,183,186,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,262,263,267,280,284,327,350,352,353,354,355,356,357,358,362,363,365,366,368,369,370,371,373,374,376,379,385,388,389,390,392,400,401,406,408,414,417,420,422,430,431,432,433,437,438,439,441,447,450,452,453,456,457,458,464,467,477,484,491,495,496,532,535,537,538,539,540,541],i_0:[175,176,178,184,187,188],i_hpx:[175,176,178,184,187,188],i_lat:[175,176,178,184,187,188],i_lon:[175,176,178,184,187,188],i_n:[175,176,178,184,187,188],iact:[78,79,81,89,155,158,162,355,358,359,360,361,363,365,369,386,391,405,407,409,418,424,426,448,449,451,455,456,458,476,481,482,483,485,535,537],iactbasicimageestim:[355,408],iau2015:52,iau:[52,388,392],ic:514,icon:536,icr:[79,81,84,86,89,90,97,99,103,104,126,155,158,174,175,176,178,181,183,186,187,188,199,200,204,212,215,229,237,238,312,349,350,373,393,420,421,422,423,424,426,429,430,432,433,436,438,439,440,441,444,445,447,448,449,450,452,453,455,456,457,458,463,464,476,479,483,488,492,495,496,497,499,500,501],icrc:404,id:[65,76,78,79,83,84,86,87,105,362,365,385,421,423,432,434,436,441,444,452,455,456,457,458,463,476],id_obs_vela:441,idea:[354,357,364,368,369,370,421,447,453,456,463],ideal:[351,352,359,363,364,373,377,378,418,456],idempot:[16,80],ident:[324,352,364,411,422],identif:[65,355,444],identifi:[65,84,98,102,174,240,349,359,360,362,365,374,375,379,395,424,432,437,444,445,452,455,457,478],identified_object:444,idx1:446,idx2:446,idx:[79,83,86,87,95,173,174,175,176,177,178,179,180,183,184,185,186,187,188,225,423,432,440,444,446,449,491],idx_glob:174,idx_loc:174,ie:[28,29,30,31,32,35,36,37,39,40,375,451,452,475,537],iem:[451,456],iem_minus_iem:449,iem_plus_iem:449,iem_times_two:449,ignacio:410,ignasi:404,ignor:[11,83,86,139,149,178,193,195,211,278,290,350,402,434,440,441,445,450,463,479,538],ii:[191,406],ij:191,ilhipiha:423,ilist:174,illustr:[103,104,350,359,361,362,363,365,368,422,424,429,434,445,448,449,451,452,456,469,475,488,489,495,496,504,536],illustrate_colormap:368,iloc:[83,86],im:[338,446],imag:[97,99,103,104,107,116,117,126,134,135,136,142,144,145,146,148,150,160,173,174,175,176,178,183,184,186,187,188,252,271,274,314,335,337,338,339,340,344,349,357,358,360,365,366,369,370,379,381,386,388,389,390,393,394,395,401,405,406,407,408,409,425,426,428,434,435,448,450,452,455,464,465,475,476,477,484,487,488,489,490,491,492,535,536,537,543],image_analysi:[369,389],image_err:117,image_fitting_with_sherpa:[369,410],image_pip:408,image_profil:407,imagehdu:[175,176,187,188],imagenorm:[339,340],imageprofil:117,images_t:430,imagin:538,img:[337,449],iminuit:[192,348,366,375,400,402,409,413,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,535],immut:203,impact:[356,362,366,457],imperfect:448,implement:[19,20,97,99,103,104,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,268,349,354,355,357,358,361,362,363,364,365,366,367,370,371,372,373,374,376,390,391,392,393,394,395,396,397,400,401,402,407,408,410,411,414,417,425,437,439,443,444,448,449,450,467,475,477,479,484,485,486,523,535,536,537,538,539,542],implent:349,impli:[216,349,368,475,537],implic:371,implicit:[28,29,30,31,32,35,36,37,39,40,484],implicitli:448,importantli:[373,409,417,538],importerror:[83,86],impos:[413,416,488],improv:[102,260,351,353,354,355,357,358,359,363,364,365,366,367,368,369,374,379,380,386,387,388,389,390,391,392,393,394,395,396,397,398,400,401,403,404,405,406,407,408,409,410,412,449,455,479,489,495],imshow:[97,99,143,176,188,337,343,407,449,465],in2p3:[375,455],in_memori:[84,479],in_memory_gener:87,in_safe_data_rang:[97,99,103,104],inaccur:349,incex:[16,80],incid:[355,537],includ:[16,28,29,30,31,32,35,36,37,39,40,45,78,79,80,83,84,86,118,143,149,151,152,158,159,163,173,174,183,186,226,286,348,349,355,357,360,361,362,363,365,366,370,371,372,373,374,375,376,377,378,379,381,390,392,397,408,413,414,416,429,431,432,434,440,443,444,446,448,450,451,452,455,457,467,469,475,477,478,489,491,535,539,542],include_irf:[79,84,476],include_ssc:226,inclus:[79,183,363],incompat:[349,374,402],incomplet:[349,379,389,390,391,392,393,394,395,396,397,400,402,403,405,406,407,408,409,410,411,412,413,414],inconsist:[397,403,413,414],inconveni:[368,409],incorpor:[365,369,377,537],incorrect:[79,349,376,393,411,412,448],incorrectli:[411,450],increas:[126,150,180,185,204,212,215,349,358,376,448,475,495],increment:[19,20,26,107,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,363,449,491],ind:[174,186,203,225],inde:[432,496],indefinit:356,indent:[16,80],independ:[65,114,118,275,289,349,355,359,360,361,362,363,364,367,370,371,372,373,375,381,390,400,416,421,438,444,449,450,451,452,457,463,464,474,479,484,537,541],index1:[197,241,505,519],index2:[197,241,505,519],index:[19,20,26,28,29,30,31,32,33,34,35,36,37,38,39,40,51,52,53,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,83,85,86,87,95,96,97,99,103,104,111,112,113,114,115,120,121,125,132,133,134,140,143,145,148,168,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,192,194,196,197,198,201,203,205,207,208,209,213,219,220,222,223,225,226,228,230,231,232,236,241,243,244,245,246,249,253,256,286,300,305,352,355,358,359,360,361,364,365,372,373,374,378,381,391,405,407,408,414,417,418,420,421,423,424,425,428,430,431,432,433,434,436,438,439,440,441,444,445,446,447,451,452,455,456,457,458,463,464,465,477,490,491,492,494,495,496,497,499,500,501,502,504,506,508,509,510,515,516,517,525,526,527,528,529,530,531,532,533],index_1:[244,245,246,520,521,522],index_2:[244,245,246,520,521,522],index_arrai:[83,86],index_column:[83,86],index_data:179,index_error:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],index_mod:[83,86],indexerror:[87,95,225],indic:[28,29,30,31,32,35,36,37,39,40,83,86,95,173,174,175,176,177,178,179,180,183,184,185,186,187,188,349,411,423,433,437,448,449,453,457,458,479,491,492,537],indico:358,indirect:[443,467],individu:[83,86,102,109,116,345,355,361,362,364,369,372,373,377,417,420,423,431,434,439,444,445,446,448,451,452,465,475,479,484,537],indiviud:371,indxschm:[175,176,187,188],ineffici:[83,86,352],ineqcon:[28,29,30,31,32,35,36,37,39,40],inequ:[28,29,30,31,32,35,36,37,39,40],inertia:[51,54],inf:[65,215,377],infer:[112,113,173,174,175,176,178,186,187,188,205,350,463,491],inferno:449,infil:349,info:[16,65,69,70,71,72,73,74,75,76,78,81,82,83,84,86,89,95,96,97,98,99,101,102,103,104,136,142,144,146,262,263,286,350,364,365,369,378,384,394,395,397,404,405,408,421,425,426,428,432,439,443,444,445,449,456,457,458,460,462,463,538],info_dict:[97,99,103,104,262,263,342,397,445],info_t:[95,417,420,421,423,428,440,445,451,479],infodict:342,inform:[11,28,29,30,31,32,35,36,37,39,40,56,65,67,69,70,71,72,73,74,75,76,80,81,84,86,89,94,95,96,97,99,103,104,112,113,132,136,142,144,146,147,150,155,156,162,181,192,197,198,199,200,201,202,204,205,207,209,210,212,213,214,215,216,217,218,220,226,227,228,229,230,232,233,237,238,239,241,244,245,246,248,249,252,253,264,270,286,302,331,332,349,353,354,359,361,362,363,364,365,372,373,376,377,379,384,385,386,394,396,397,400,402,408,414,418,421,422,429,432,433,436,437,445,446,448,449,452,455,456,457,458,463,464,465,474,475,476,477,479,492,537,538,541],infrar:205,infrastructur:[379,400,411,414],ingredi:[373,443],inherit:[83,86,349,359,361,364,373,376,377,395,400,407,445,447,490,491],init:[19,20,26,83,86,111,115,121,152,197,198,199,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,226,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,290,302,361,397,412,414,434,444,445,465],initi:[15,16,28,29,30,31,32,35,36,37,39,40,42,53,63,80,83,86,112,113,121,176,179,180,203,225,227,228,278,354,359,360,361,365,402,416,423,426,428,429,431,432,433,436,441,444,445,449,452,463,464,465,474,476,523,537],initialis:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,302,305,306,307,308,349,371],inject:[423,436],inlin:[354,416,417,418,420,421,422,423,424,425,426,428,434,436,438,439,440,441,443,444,445,446,449,450,451,452,455,456,458,463,464,465],inner:[44,52,53,115,150,160,238,426,465,501],inner_height:[488,492],inner_width:[488,492],input:[16,28,29,30,31,32,35,36,37,39,40,41,80,82,83,86,97,99,102,107,109,111,112,113,114,117,118,121,122,123,124,125,127,128,133,134,136,143,144,145,146,147,148,150,152,156,158,160,174,175,176,178,180,181,182,183,184,185,186,187,188,194,196,217,251,252,253,278,289,299,302,319,321,342,344,355,357,359,360,361,362,363,364,365,370,385,395,400,403,410,414,423,432,433,441,449,477,491,492,539],input_shap:[28,29,30,31,32,35,36,37,39,40],input_unit:[28,29,30,31,32,35,36,37,39,40],input_units_allow_dimensionless:[28,29,30,31,32,35,36,37,39,40],input_units_equival:[28,29,30,31,32,35,36,37,39,40],input_units_strict:[28,29,30,31,32,35,36,37,39,40],inputs_map:[28,29,30,31,32,35,36,37,39,40],ins:414,insensit:182,insert:[83,86,87,95,225,375,395,541],insert_row:[83,86],inset:401,insid:[50,79,97,103,132,158,174,175,176,178,183,186,187,188,203,225,240,338,342,349,350,363,365,373,400,416,420,423,425,428,430,436,440,445,448,450,451,452,455,457,476,486,488,489,492],inside_geom:450,inspect:[361,365,385,420,422,428,432,433,446,449,451,455,456],inspir:[349,373],instal:[83,86,348,349,352,356,357,358,366,378,379,380,383,385,386,389,390,400,404,407,408,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,460,463,464,465,479,538],instanc:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,50,80,81,82,83,84,86,87,109,113,114,116,118,119,147,149,157,175,176,177,178,179,180,184,185,187,188,197,198,199,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,226,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,296,302,336,338,339,340,343,345,349,355,360,361,364,365,371,373,376,400,418,420,423,434,444,446,448,450,451,452,465,469,479,491,492,514],instanti:[15,19,20,28,29,30,31,32,35,36,37,39,40,175,176,178,180,187,188,360,365,417,421,444,445,449,452,463],instead:[16,19,20,26,80,81,83,86,97,99,103,104,106,162,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,349,350,352,354,356,357,359,360,363,364,365,366,367,368,369,370,371,372,377,378,380,381,383,390,393,396,397,410,414,422,428,432,436,438,440,441,444,445,447,448,449,452,476,483,484,491,492,538],instruct:[349,358,366,378,380,381,389,400,404,408,432,455],instrument:[6,79,90,102,135,139,140,211,349,359,360,361,362,364,369,373,381,385,394,397,409,410,411,417,418,420,421,424,428,435,441,445,446,447,448,451,452,453,455,456,458,460,463,464,475,476,477,481,483,485,535,536,537],int_:[17,18,19,20,21,22,23,24,25,26,27,197,198,201,205,207,208,209,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,484,495],int_flux:443,integ:[67,68,69,70,71,72,73,74,75,76,77,83,86,87,88,95,97,99,103,104,112,113,114,115,118,121,126,127,133,134,140,145,148,151,173,174,175,176,178,179,180,183,184,186,187,188,194,196,203,225,278,296,302,349,355,363,426,491],integr:[6,17,18,19,20,21,22,24,25,26,27,31,32,37,51,97,99,103,104,112,113,116,118,125,129,130,131,132,135,136,137,139,142,144,146,147,150,175,176,178,180,184,187,188,189,190,197,198,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,254,255,256,258,289,348,356,358,360,362,363,364,366,367,369,373,375,388,390,391,395,396,400,405,406,407,408,409,410,411,414,422,423,425,440,443,444,445,449,450,452,465,467,475,477,483,497,517],integral_error:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,367,397],integral_flux_imag:401,integrate_geom:[199,200,204,212,215,227,229,237,238,240,242,248,252,400,413],integrate_log_log:[129,130,131,132,135,136,137,139,142,144,146,147],integrate_spectrum:[19,20,26,197,198,201,205,207,208,209,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,391,397],integrate_spectrum_separ:[17,18,21,22,24,25,27],intend:[83,86,278,359,377,447],intens:[175,176,178,184,187,188,192,216,359,449,475],intent:354,interact:[19,20,83,86,145,148,175,176,178,184,187,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,348,349,350,358,359,360,361,365,369,372,385,394,428,436,446,449,451,452,460,463,464,488,491,514,538],interchang:491,interest:[114,118,192,260,354,362,363,367,369,379,418,428,432,434,444,445,446,448,450,453,455,456,465,476,477,514,537,540,541],interfac:[6,11,15,19,20,83,86,191,192,193,194,195,196,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,353,354,355,359,361,362,364,366,367,368,369,390,393,395,396,397,400,404,407,408,414,421,424,425,428,436,438,446,452,455,460,464,465,466,479,490,514,535,536,537,538],intermedi:[186,358,365,375,385,417,439],intern:[15,83,86,112,113,122,123,124,152,158,183,246,258,278,290,349,361,363,365,368,373,400,402,411,414,416,421,428,437,438,445,447,449,455,458,463,475,479,533],interp1:449,interp1d:291,interp2:449,interp:[19,20,137,175,176,178,180,184,185,187,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,227,228,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,291,344,372,377,413,423,429,433,436,440,447,448,449,452,456,457,458,491,492,514,515],interp_by_coord:[175,176,178,184,187,188,252,411,449],interp_by_pix:[175,176,178,184,187,188,248,249,449],interp_kwarg:[66,129,130,131,132,135,136,137,139,142,144,146,147,205,248,249,252,253,349,447,456],interp_map:[175,176,178,184,187,188],interp_missing_data:[129,130,131,132,135,136,137,139,142,144,146,147],interp_param:349,interp_scal:[261,291],interp_to_geom:[175,176,178,184,187,188,397,413,449,456,479],interp_weight:174,interpol:[6,26,89,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,155,174,175,176,178,180,184,185,187,188,205,217,227,228,248,249,251,252,253,261,290,291,292,348,360,361,362,390,395,400,402,405,408,410,411,412,413,414,433,447,448,452,456,457,479,487,491,523],interpolatedunivariatesplin:251,interpret:[86,97,99,116,126,127,176,180,186,187,188,296,367,377,449,477,492],intersect:[85,158,159,163,183,363,439],interspers:354,interstellar:[45,432],interv:[52,53,74,78,79,82,84,85,86,87,95,96,98,102,113,118,156,180,185,192,202,210,214,216,217,218,233,239,251,254,358,359,363,364,367,373,381,394,396,397,400,409,410,438,440,446,449,457,464,476,491,537,540],interval_edg:185,intrins:[28,29,30,31,32,35,36,37,39,40,226,269,360,364],intro_map:409,introduc:[19,20,175,176,178,180,184,187,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,349,356,357,359,361,362,363,364,366,369,371,374,377,391,393,394,396,397,400,402,403,407,408,409,411,414,431,437,448,452,492,496,538,541],introduct:[352,370,371,372,390,394,395,396,397,418,421,452,457,458,463,464,468],introductori:437,introspect:278,intuit:[370,541],invalid:[16,80,335,349,363,376,377,400,432,458],invalid_pixel:450,invers:[19,20,26,28,29,30,31,32,35,36,37,39,40,186,197,198,201,205,207,208,209,213,216,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,262,263,300,307,362,432,450,452,514],inverse_al:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],inverse_cdf:432,inversecdf:362,inversecdfsampl:[362,392],inversecompton:[226,514],invert:[86,174,186,465],invest:352,investig:431,involv:[83,86,97,99,103,104,349,354,363,365,367,371,424,538],io:[13,79,82,83,86,100,101,114,168,178,183,192,253,352,358,369,379,391,394,406,410,414,432,446,447,449,455,476,479,490,492],iop:268,iopscienc:268,ipix:174,ipynb:[357,369,391,394,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],ipynb_to_galleri:349,ipython3:382,ipython:[83,86,348,349,365,366,380,384,392,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,460,463,464,465,478,538],ipywidget:449,irap:369,irf:[6,78,84,91,97,98,99,102,103,104,105,106,121,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,149,155,161,162,164,165,166,168,170,171,174,183,186,240,349,355,359,360,361,362,365,368,369,370,371,377,381,389,391,394,396,397,400,402,403,404,405,406,407,408,409,410,411,413,414,417,418,420,421,422,423,424,425,428,432,433,436,438,440,448,450,453,454,456,457,458,460,463,464,475,476,479,481,482,483,485,486,491,536,537],irf_dict:149,irf_dl3_hdu_specif:447,irf_fil:[84,130,134,135,136,145,416,423,436,440,447,455],irf_filenam:[432,433,447,455],irf_map:[133,134,140,145,148],irf_path:432,irfmap:[133,134,145,148,381,397,479],irfmetadata:376,irfmodel:360,irfs1:455,irfs2:455,irfs_path:78,irfstack:[397,406],irregular:[174,186,491],irrespect:[362,428,449,491],is_align:[174,180,185,186],is_all_point_sky_region:183,is_all_same_energy_shap:95,is_all_same_shap:95,is_all_same_typ:95,is_allclos:[129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,177,178,179,180,183,184,185,186,187,188],is_allski:[173,174,183,186],is_bkg:101,is_contigu:[185,449],is_convertible_to_flux_sed_typ:[112,113],is_energy_axi:180,is_energy_depend:[199,200,202,204,210,212,214,215,216,217,218,227,229,233,237,238,239,242,248,251,252,254,413,452],is_fixed_rad_max:147,is_flat:[173,174,179,183,186],is_hpx:[174,183,186],is_imag:[173,174,183,186],is_mask:[175,176,178,184,187,188],is_norm:[19,20,96,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,377,402,417,420,421,422,423,425,428,429,436,440,444,446,452,464,465,514,523],is_norm_spectral_model:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,400,452],is_nul:449,is_pointed_observ:79,is_pointlik:[69,71,72,73,74,129,130,131,132,135,136,137,139,142,144,146,147,400],is_region:[174,183,186],is_regular:[174,183,186],is_ul:[65,112,113,400,444,465],is_unidimension:179,isf:[446,540],isinst:[349,360,363,372,376,377],ism:[52,53,514],isn:[352,356,363,365,368,379,384,430,538],isnan:[449,450],iso:[84,113,185,190,414,440,451,456,491,532],iso_p8r2_source_v6_v06:[451,456],isol:[363,380,381,383,450],isot:[330,542],isotherm:[22,467],isotrop:[47,200,257,451],issu:[19,20,26,83,86,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,350,352,357,358,360,361,363,366,369,374,375,376,377,378,381,382,383,390,402,403,405,406,407,408,409,411,412,413,414,430,450,455,475,479,538,539,542],item:[28,29,30,31,32,35,36,37,39,40,83,86,87,95,182,225,369,376],iter:[83,86,87,95,112,113,175,176,178,179,180,182,184,185,187,188,225,352,355,357,365,401,424,440],iter_by_axi:[112,113,175,176,178,184,187,188],iter_by_axis_data:184,iter_by_coord:392,iter_by_edg:[180,185],iter_by_imag:[175,176,178,184,187,188,409],iter_by_image_data:[175,176,178,184,187,188,449],iter_by_image_index:[175,176,178,184,187,188],iter_by_pix:392,iter_with_reshap:179,itercol:[83,86],iterrow:[83,86],itertool:446,its:[19,20,26,28,29,30,31,32,35,36,37,39,40,97,99,103,104,112,113,151,152,161,174,180,182,197,198,201,204,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,260,349,352,355,358,359,361,364,365,366,368,373,375,376,379,382,400,414,417,421,422,425,432,433,437,438,439,444,446,448,449,450,451,452,463,465,468,484,486,488,490,491,492,537,540],itself:[83,86,348,349,364,375,417,438,439,441,538],j0001:[444,465],j0002:[444,465],j0003:[444,465],j0006:444,j0007:465,j0008:[444,465],j0009:465,j0010:444,j0013:444,j0021:444,j0022:444,j0025:444,j0031:444,j0349:444,j0521:420,j0534:[444,465],j0633:465,j0835:[418,465],j0851:444,j1036:444,j1104:[444,465],j1506:418,j1507:418,j1513:444,j1514:444,j1555:465,j1653:444,j1713:417,j1731:451,j1732:451,j1741:451,j1744:451,j1745:451,j1746:451,j1747:451,j1748:451,j1753:451,j1800:451,j1801:451,j1802:451,j1809:451,j1811:451,j1824:444,j1825:431,j1843:65,j1844:65,j2028:444,j2158:444,j2347:465,j2350:465,j2351:465,j2352:465,j2356:465,j2357:[444,465],j2358:[444,465],j2359:[444,465],j:[19,20,23,97,103,116,350,352,475],j_:23,jackson:[83,86],jacob:[390,409],jacobian:[28,29,30,31,32,35,36,37,39,40,396],jalel:[397,400],jan:[354,355,358,361,366,370,387],januari:[356,358,374],jargon:381,jason:390,javascript:[83,86],jax:367,jean:[408,409],jeltema:467,jep:354,jet:340,jfact:443,jfact_decai:443,jfact_map:443,jfactor:[19,20,414],jfactori:443,jj:191,jk:[97,103,475],jkl:475,jl:475,jo:[83,86],job:[88,114,115,118,121,151,402],johann:[393,400,404,405,406,407,408,409],john:[83,86],join:[351,360,361,455],joint:[95,103,104,109,260,357,358,361,365,369,371,381,390,391,393,394,409,410,417,418,420,421,422,424,431,435,440,445,446,448,452,453,456,460,463,477,479,535,536,537],joint_fit:441,joint_result:441,jointli:[453,457],jonathan:[404,405],jose:[400,402,408],joshi:400,journal:375,jouvin:[390,392,393,394,397,405,406,407,408,409],jqueri:[83,86],jskwarg:[83,86],json:[16,80,378,402,404,408],json_data:[16,80],json_encod:16,json_schema:[16,80],jsonschema:[366,393,394],jsviewer:[83,86,430],jul:[355,364,366,368,387],juli:[355,358,363,365,366,368,372,374,376,439],julian:542,julien:[406,407,408],jun:[363,365,366,371,372],june:[363,367,387],junior:[64,369],jupyt:[348,356,365,366,369,380,381,383,384,386,391,406,407,408,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538],jupyterlab:[348,366,369,385,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],jupytext:369,just:[28,29,30,31,32,35,36,37,39,40,79,82,135,324,349,350,351,352,354,357,359,363,365,366,367,369,378,379,380,381,382,383,408,410,420,421,423,428,430,432,437,438,439,441,445,449,456,457,463,465,476,492,538],juypter:365,jyear:[83,86],k:[19,33,52,53,97,103,182,201,251,302,418,420,422,444,449,451,456,475,492,495,507,514,525],kai:[408,409],kaori:392,kaspi:[31,39,45],katrin:[377,413,414],kb:357,keep:[13,83,86,95,112,143,175,176,178,184,187,188,192,349,350,352,354,355,356,357,363,366,367,368,369,372,373,398,408,425,426,431,436,446,451,456],keep_byteord:[83,86],keep_column:[83,86],keep_mc_id:[98,102],keepdim:[143,145,148,175,176,178,184,187,188,389,394,448],kei:[16,28,29,30,31,32,35,36,37,39,40,67,78,80,83,85,86,97,99,103,104,107,121,182,192,318,335,357,359,366,371,373,376,386,409,445,452,504],kept:[85,97,99,103,104,112,113,114,118,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,183,184,186,187,188,349,355,369,373,477],kernel:[97,99,103,104,107,111,116,117,121,132,133,134,143,145,148,150,155,160,162,165,176,186,188,355,376,395,396,401,406,410,411,424,426,441,448,449,450,456,465,475,479,483],kernel_width:[121,424,430],kernelbackgroundestim:396,kernelbackgroundmapestim:370,kev:[101,121,180,424,445,492],keyboard:385,keyerror:[86,182,373],keyword:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,66,78,79,80,82,83,84,86,90,96,97,99,103,104,113,115,116,128,129,130,131,132,135,136,137,139,142,143,144,145,146,147,148,173,174,175,176,178,179,180,182,183,184,185,186,187,188,191,192,193,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,257,261,290,298,299,330,332,333,336,337,338,342,343,344,345,346,376,396,400,403,411,412,422,432,433,445,449,457,477,492,502],kg:52,khelifi:[392,394,397,400,403,407,408,409,411,412],kind:[83,86,253,324,360,361,362,367,368,372,375,409],kinet:44,king:[144,393,404,405,406,407,408,409,447,485],kirsti:[413,414],kl:475,klepser:404,km2:455,km2a:[57,68],km:[32,37],know:[350,352,354,358,363,365,366,373,379,391,408,409,410,430,433,443,447,448,449,455,457,458,538],knowledg:[377,385,418,423,429,431,434,436,438,446,448,449,451],known:[262,263,278,362,420,424,426,431,438,448,449,450,465,479,489,538,539,540],kovalev:437,kpc:[17,18,21,22,24,25,27,29,33,34,38,226,278,281,443,444,473,514],ks:446,kwarg:[19,20,26,28,29,30,31,32,35,36,37,39,40,53,56,58,59,60,61,62,63,64,79,82,83,84,86,96,97,99,103,104,113,114,115,116,118,129,130,131,132,135,136,137,139,142,143,144,145,146,147,148,157,173,174,175,176,177,178,179,180,182,183,184,185,186,187,188,191,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,257,261,290,301,324,336,337,338,341,343,344,345,346,349,360,376,377,413,418,432,441,448,458,526],kwargs_ax:[342,426,428],kwargs_background:[103,104],kwargs_colorbar:[129,130,132,135,136,137,142,144,146,188,337],kwargs_count:[103,104],kwargs_excess:[103,104],kwargs_extens:[199,200,204,212,215,227,229,237,238,242,248,252,431],kwargs_fit:[103,104,342],kwargs_fp:96,kwargs_hist:[342,426,428],kwargs_list:182,kwargs_model:96,kwargs_npred_sign:[103,104],kwargs_point:[183,203,225,422],kwargs_posit:[199,200,204,212,215,227,229,237,238,242,248,252,431],kwargs_residu:[96,103,104],kwargs_saf:[103,104],kwargs_spati:[97,99,103,104,428,464],kwargs_spectr:[97,99,103,104,428,464],kwargs_spectrum:[96,103,104],l06:[48,469],l:[23,26,51,54,97,155,350,363,372,375,421,423,424,425,426,428,430,431,436,440,444,445,446,448,449,450,452,456,463,464,465,475,479,492,537,539,540,541],l_0:[51,472,495,496],l_:[52,53],l_snr:44,la:406,lab:[375,385,408],label:[87,177,180,185,203,225,276,337,338,343,346,349,350,353,358,362,363,378,379,400,402,411,412,414,416,418,420,422,426,428,429,433,434,438,441,443,446,449,452,453,465,472,473,481,504,510,513,514,518],label_axi:449,label_axis2:449,labelcolor:416,labelmapaxi:[400,414],lack:[182,364,441],lafferti:[388,537],lafferty1994:537,lai:450,lambda:[16,65,208,209,342,444,446,455,508,540],lambda_:[208,209,260,418,420,428,508,510],land:379,langl:19,languag:[356,368],laplac:[215,497],lar:[365,389,390,391,407,408,409,412,414],larg:[65,83,86,175,176,178,184,187,188,248,250,252,349,352,354,355,363,369,370,390,400,409,410,416,420,426,444,450,455,456,457,465,475,477,479,480,492,497,535,538,543],large_scale_compon:[65,444],larger:[27,120,260,268,357,368,414,416,417,420,445,448,449,450,476,492,497,539,540],largest:[97,99,103,104,188,349],last:[28,29,30,31,32,35,36,37,39,40,87,89,95,175,176,177,178,180,184,187,188,225,308,346,356,359,361,371,375,378,379,381,383,389,390,488],lat:[16,47,58,60,61,63,69,71,72,74,79,82,86,89,97,99,103,111,114,115,117,121,133,134,140,145,148,151,175,176,178,181,184,186,187,188,199,200,204,211,212,215,227,229,237,238,240,242,248,250,252,257,260,280,281,284,306,349,350,357,358,359,360,361,362,368,369,372,379,381,386,389,394,407,408,409,418,421,424,425,426,428,430,434,438,439,444,445,447,448,449,450,451,452,453,459,460,463,464,465,467,474,475,476,477,479,484,491,492,495,496,497,498,499,500,501,535,542],lat_0:[204,212,215,229,237,238,252,364,372,425,428,429,431,432,433,436,438,444,445,451,452,456,463,464,495,496,497,499,500,501,502],lat_0_err:431,lat_pnt:[280,284],lat_rang:306,lat_t:[280,284],later:[349,354,355,356,360,361,362,365,366,367,368,369,370,381,382,383,388,390,400,401,403,404,410,420,422,428,429,445,448,449,452,456,465,475],latest:[114,168,253,278,352,356,369,374,375,378,382,411,416,423,425,428,429,430,436,440,446,455,476,492],latex:[349,350],latex_inlin:414,latitud:[89,173,174,175,176,181,183,186,187,188,306,336,393,434,449,452,484,491,498],latpol:449,latter:[162,192,360,362,364,370,373,376,394,422,423,432,433,436,450,451,486,488,537,539],launch:[408,538],laura:[397,400,402,403,409,411,413,414],law2:517,law:[27,96,111,112,113,115,120,125,143,145,148,197,207,208,209,230,231,232,233,241,244,245,246,255,305,362,388,394,408,423,425,428,432,434,436,439,440,441,451,452,479,493,504,524,530],layer:[83,86,361,368],layout:[400,428,436,449,463,464],lazi:[84,95,97,99,103,104,250,287,408,479],lazili:97,lazyfitsdata:396,lc:[82,118,185,362,364],lc_1d:[437,438,439,440],lc_3d:438,lc_estim:364,lc_maker_1d:[438,439,440],lc_maker_3d:438,lea:397,lead:[111,349,358,363,368,370,372,374,375,393,455,457,467,538],leak:[422,488],leakag:438,learn:[130,135,349,366,369,378,381,382,383,385,409,418,420,424,430,431,432,434,437,444,445,446,449,452,455,460,465,538],least:[43,44,349,352,354,358,432,437,491],leav:[354,361,363,364,366,369,378,380,451],lefaucheur:[406,407,408],left:[21,24,25,27,28,29,30,31,32,35,36,37,39,40,50,51,52,53,83,86,97,103,112,113,118,121,133,135,175,176,178,184,187,188,209,213,232,244,264,270,349,357,359,363,365,368,372,385,424,430,437,438,440,451,477,486,489,496,497,504,505,508,509,511,512,514,516,519,520,521,522,526,527,528,530,539,540,541],legaci:[349,408,409],legacy_altaz:81,legal:[83,86],legend:[346,416,418,420,422,428,429,433,438,441,443,446,452,453,456,472,473,481,504,510,513,514,518],legend_kwarg:346,len:[79,260,346,424,431,432,433,437,439,441,444,446,448,451,465,479],lenain:[408,409],length:[19,20,26,28,29,30,31,32,35,36,37,39,40,76,78,83,86,89,151,173,174,175,176,178,179,183,184,186,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,290,342,375,418,423,430,434,444,446,449,456,465,495],lengthi:449,lennarz:[391,405,407],leq:[495,500,501],less:[174,176,180,217,251,270,349,354,356,367,379,408,446,452,453],let:[65,256,349,352,354,358,363,366,381,384,408,409,410,418,421,422,423,424,428,429,430,431,432,434,440,441,444,445,446,449,450,452,456,463,465,538],level:[6,11,15,16,79,80,111,192,262,263,349,350,352,353,354,360,362,364,368,369,370,373,376,381,385,392,393,394,395,396,400,408,417,418,420,421,424,425,426,428,430,432,436,437,438,439,440,441,443,446,451,453,455,456,457,458,460,462,465,466,475,476,477,484,486,487,491,535,536,537,538,542],levelnam:349,levmar:[192,446],lf:379,lgpl:349,lgtm:379,lhaaso:[55,57],li:[107,111,158,355,416,424,426,432,537,540],lib:[314,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,510,513,526],librari:[83,86,349,354,355,359,369,375,386,417,420,432,452,455,464,467,476,479,536,538],licenc:375,licens:[375,385],lie:[173,174,180,183,186],life:[356,446],lifetim:20,lifetime_age_of_univers:20,light:[15,118,122,205,217,269,353,360,362,365,369,373,381,394,396,397,404,407,409,414,437,442,460,475,476,477,478,487,488,493,534,536],light_curv:[16,217,369,409,421,425,426,428,438,442,463,533],light_curve_flar:[439,442],light_curve_model:533,light_curve_simul:[440,442],lightcrv_pksb1222:[217,533],lightcurv:[69,71,72,74,108,113,118,122,123,124,184,185,217,266,267,269,358,360,365,368,370,373,381,392,394,395,396,400,406,407,408,409,411,412,414,438,439,442,460,474,479,533],lightcurve_at_energi:373,lightcurveconfig:16,lightcurveestim:[108,364,365,370,373,381,392,394,396,397,400,408,409,414,438,439,440,479],lightcurvetablemodel:[360,362],lightcurvetempl:360,lightcurvetemplatemodel:[413,414],lightcurvetemplatetemporalmodel:[247,372,411,414,433,452,533],like:[19,20,28,29,30,31,32,35,36,37,39,40,46,50,52,53,65,76,78,83,84,86,126,127,139,147,175,176,178,182,184,187,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,278,298,308,348,349,350,352,354,355,356,357,359,360,363,364,365,366,367,368,369,370,371,372,375,377,378,380,381,382,385,391,400,402,403,407,408,410,411,413,414,416,418,420,421,422,423,426,433,434,437,441,443,445,446,447,449,453,455,456,460,463,465,467,468,475,479,484,492,501,536,538,539,540,541],likelhood:361,likelihood:[95,97,99,104,111,112,113,115,121,261,275,349,355,358,361,362,365,367,369,370,371,373,381,388,390,391,394,401,404,407,409,410,418,420,421,422,424,430,434,438,441,445,446,448,456,463,464,467,475,477,479,514,536,537,539,540],likelihood_profil:[360,390],likelihood_typ:395,likewis:[176,188],lima1983:[477,537,540],lima:107,lima_map:426,limamapestim:[370,396],limit:[28,29,30,31,32,35,36,37,39,40,52,53,76,83,86,96,105,111,112,113,114,115,118,119,121,132,147,150,180,194,196,230,261,262,263,298,299,336,355,357,358,360,361,362,363,364,366,367,369,370,372,373,377,390,396,400,407,408,409,410,416,420,428,431,434,438,445,446,449,450,453,456,463,475,477,479,488,496,514,523,536,537,541],lin:[19,20,180,184,185,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,227,228,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,261,290,291,292,377,433,447,449,458,492,514],line2d:[183,203,225],line:[6,13,46,78,79,83,86,96,97,99,103,104,136,142,144,146,183,184,203,225,310,311,346,348,350,352,355,358,360,363,365,366,373,379,381,383,385,394,405,408,428,446,448,452,467,479,492,536],linear:[19,20,26,28,29,30,31,32,35,36,37,39,40,129,130,131,132,135,137,139,142,147,175,176,178,184,185,187,188,197,198,201,205,207,208,209,213,217,218,219,220,222,226,228,230,231,232,236,241,243,244,245,246,248,249,251,252,253,290,349,411,428,433,434,436,449,452,456,463,464,493,534],linear_model:529,linearli:[185,188,449,475],linearsegmentedcolormap:[339,340],linearstretch:[339,340],lineartemporalmodel:[247,452,529],lineno:349,liner:[251,363],linestyl:[416,437,441,443,473,492,495,496],linewidth:[346,350],linhoff:[412,413,414],link:[65,67,76,96,203,205,225,260,352,354,357,358,361,369,375,379,385,386,397,400,402,406,407,408,417,420,421,422,423,425,428,429,436,440,444,446,452,455,464,465,479,523,535],linkag:276,linkage_kwarg:276,linkcheck:350,linspac:[79,134,175,176,178,184,187,188,432,434,441,446,447,449,491,495],linux:[356,366,379,382,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,538],list:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,69,70,71,72,73,74,75,76,78,79,80,82,83,84,85,86,87,88,91,95,96,97,98,99,102,103,104,107,111,112,113,114,115,118,119,121,128,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,150,151,155,156,158,159,161,162,163,164,167,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,190,191,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,299,309,310,311,313,338,342,343,345,346,348,349,350,351,352,353,354,355,356,357,358,359,368,369,370,371,372,373,375,376,378,379,380,381,382,384,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,405,406,407,408,409,410,411,412,413,414,417,420,423,424,429,433,434,436,437,438,440,445,447,448,453,455,456,457,458,460,464,475,479,482,491,492,535,536,537,538],list_format:[83,86],listen:479,listenv:352,listinfo:378,liter:[16,80,296,349],literatur:[467,469,537],littl:[83,86,368,370,376,449,456,484,488,538],live:[79,82,84,349,354,357,359,370,410,413],livetim:[65,84,85,99,100,104,145,167,169,170,355,416,417,420,421,423,430,432,433,436,440,444,445,447,449,456,457,465,475,479],livetime_fract:85,ljouvin:355,ll:[112,113,121,352,354,366,382,416,417,420,422,425,426,430,437,438,439,440,441,538,540],llvm:385,ln:[53,446,521],lo:[23,407],lo_bnd:180,lo_threshold:132,load:[64,65,78,79,82,83,86,95,96,97,99,103,115,117,149,155,173,174,175,176,186,286,349,403,406,408,414,421,423,425,426,432,433,436,437,440,441,450,455,456,457,458,463,465,476,479],load_cta_irf:[410,414],load_irf_dict_from_fil:[145,414,416,423,432,433,436,440,455],loc:[83,86,188,342,441,472,473,481,504,510,513,514,518],loc_indic:[83,86],local:[17,18,21,22,24,25,27,83,86,126,127,160,173,174,183,184,186,349,350,352,357,363,378,379,382,386,390,400,421,424,425,426,431,432,443,448,460,463,479],local_dataset:448,local_dens:[17,18,21,22,24,25,27,443],local_to_glob:174,localfold:11,localis:286,localn:[16,80],locat:[47,78,79,81,83,84,89,122,133,134,140,145,148,186,307,357,363,367,370,375,376,381,383,414,416,423,432,433,436,440,444,457,458,476,492,538],location_info:83,log10:441,log:[16,19,20,26,42,80,97,112,113,129,130,131,132,135,136,137,139,142,144,146,147,155,180,184,188,193,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,248,249,251,252,253,255,258,264,270,289,290,292,335,344,361,365,387,404,411,421,423,424,425,426,428,429,430,433,436,438,439,440,443,445,446,447,448,449,452,456,457,462,463,464,479,481,491,492,493,515,523,524,530,537,538,539,540,541],log_2:267,log_:[219,220,452,512],log_en:452,log_level:11,log_parabola:418,log_parabola_norm:372,logarithm:[34,449,512],logarithmic_spir:34,logb:42,logconfig:16,logenergyaxi:407,loggaussian:360,logger:[316,318,349,430],logic:[16,80,82,161,373,449,450],logical_and:[175,176,178,184,187,188],logical_or:[175,176,178,184,187,188,448],loglog:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,289,416,443,471,472,473],lognorm:443,logo:379,logparabola:[360,513],logparabolanormspectralmodel:[220,235,372,397,452,513],logparabolaspectralmodel:[219,235,372,418,420,422,429,444,446,452,506,512,513],logscal:394,logspac:[134,175,176,178,184,187,188,423,436,440,441,443,449,471,472,473,492],logspir:[33,38],lomb:[364,408],lon:[16,47,86,89,97,99,103,111,115,117,121,133,134,140,145,148,151,175,176,178,181,184,186,187,188,199,200,204,211,212,215,227,229,237,238,240,242,248,250,252,280,281,284,306,349,350,360,363,368,372,393,421,425,426,428,430,434,438,439,444,445,447,448,449,452,453,456,463,464,465,477,491,492,495,496,497,498,499,500,501],lon_0:[204,212,215,229,237,238,252,364,372,425,428,429,431,432,433,436,438,444,445,451,452,456,463,464,495,496,497,499,500,501,502],lon_0_err:431,lon_pnt:[280,284],lon_rang:306,lon_t:[280,284],longer:[268,349,355,356,363,364,366,369,382,400,403,408,409,411,414,417,423,438],longest:179,longitud:[66,89,173,174,175,176,181,183,186,187,188,306,336,363,434,449,452,484,491,498],lonpol:449,look:[28,29,30,31,32,35,36,37,39,40,46,56,57,58,59,60,61,62,63,64,65,79,84,97,99,103,104,113,129,130,132,133,134,135,136,137,142,143,144,145,146,148,308,349,351,352,354,361,363,364,366,368,369,372,385,408,417,420,421,423,424,425,426,428,430,432,434,436,438,440,441,445,447,449,452,455,456,458,460,463,465,467,476,479,538],look_up:406,lookup:181,loop:[83,86,299,362,414,420,444,449,457,463,479],lopez21:[206,504],lopez:[205,408,414,504],lopez_2021:206,lorimer2006:[28,29,30,36,39,40,48],lose:349,loss:[52,537],lost:[95,97,103,479,492],lot:[78,349,352,354,355,356,357,360,362,363,365,369,379,389,391,392,400,408,409,421,430,456,463,464,489],low:[83,86,132,180,301,349,350,353,358,378,406,408,417,420,424,430,432,445,450,451,455,456,460,463,466,475,476,477,486,487,491,535,539],low_zenith:453,lower:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,52,53,112,113,132,161,180,182,185,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,349,363,368,369,376,434,448,464],lower_error:113,lowest:[368,437],lp:[219,220,372,418,444,452,506],lp_norm:513,ls:[96,103,104,346,417,420,422,441,444,453,455,456,514],lst:[356,455],lt:[349,375,402,411,500,501],ltcube:[174,175,176,178,187,188,449],lts_author:375,luca:[390,391,392,393,394,395,396,397,400,402,403,411,414],lui:410,luigi:405,luminos:[41,46,51,52,53,54,226],luminosity_spindown:[51,54],luminosity_tev:[52,53,473],lvtm:440,lw:[422,424,430,441,446,492,495,497],ly:[400,451],lyne:37,m1:[381,382,383],m2:[97,135,155,421,423,425,426,428,430,436,445,447,448,455,463,464],m:[19,28,29,30,31,32,35,36,37,38,39,40,52,53,83,86,89,92,118,173,174,175,176,178,184,186,187,188,275,349,350,352,363,380,381,382,383,433,443,446,447,449,452,462,484,488,490,491,492,502,538,541],m_3fhl_gc:449,m_4d:449,m_:[20,50,52,53],m_allski:449,m_b:539,m_cube:449,m_ejecta:[52,472],m_gc:449,m_hpx:449,m_i:539,m_iem_10gev:449,m_iem_cutout:449,m_iem_gc:449,m_iem_interp:449,m_sub:449,m_sun:472,m_wc:[175,176,178,184,187,188,449],ma:[83,86,107,111,416,424,426,537,540],mac:[83,86,349,356,379,407,538],machin:[352,356,357,362,366,379,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],machineri:[28,29,30,31,32,35,36,37,39,40,428],maco:[366,409],macport:[366,407,409],made:[155,162,183,186,194,196,203,225,278,310,311,349,352,354,365,368,370,373,374,375,400,411,412,420,424,428,429,448,455,492,502,537],madrid:359,magenta:[346,431,453],magic:[92,381,386,402,408,411,422,456,537],magic_ecpl:256,magic_lp:[256,422],magnet:[42,50,51,54,514],magnetic_field:[50,51,54],magnitud:[290,432],mai:[16,28,29,30,31,32,35,36,37,39,40,78,80,83,86,89,96,113,114,115,118,193,195,349,350,352,357,358,362,363,365,366,374,375,379,380,382,387,388,425,426,432,455,478,491,497,514,535,538,542],mail:[350,352,354,356,363,365,368,370,372,375,378,384,389,390,465,538],mailman:378,mailmap:[400,411],main:[86,97,103,349,352,354,355,357,361,364,365,366,369,373,374,375,379,390,396,400,403,408,414,421,431,432,434,436,444,447,449,450,451,462,463,464,474,476,480,538],mainli:[349,359,360,363,370,449],maintain:[28,29,30,31,32,35,36,37,39,40,83,86,349,351,366,368,369,370,374,378,379,409,448],mainten:[349,356,375,379,391,413],major:[183,204,212,215,349,353,354,358,366,374,402,408,409,495,496,497],majorana:19,make:[16,28,29,30,31,32,35,36,37,39,40,45,46,59,78,80,83,86,90,96,150,151,155,156,157,158,160,161,162,165,166,171,172,174,175,176,179,180,183,185,186,187,188,251,308,310,311,320,348,350,351,354,355,356,359,361,363,365,366,367,368,369,370,373,375,376,379,385,388,389,391,394,395,400,402,405,406,407,408,411,413,417,420,422,423,426,428,432,436,438,446,447,448,449,452,455,456,457,462,465,476,479,538,539],make_background:[155,162],make_background_fit:152,make_background_scal:152,make_base_catalog_galact:[408,469],make_concentric_annulus_sky_region:434,make_contour:446,make_count:[155,156,157,162],make_counts_off:[156,157],make_cub:150,make_dataset:151,make_default_fov_background_model:152,make_edisp:[155,162],make_edisp_kernel:[155,162],make_edisp_kernel_map:447,make_edisp_map:134,make_effective_livetime_map:448,make_exclusion_mask:152,make_exposur:[155,162],make_exposure_irf:[155,162],make_imag:409,make_lupton_rgb:344,make_map_background_irf:403,make_map_count:355,make_map_cutout:355,make_map_exposure_reco_energi:355,make_map_exposure_true_energi:[134,355,447],make_map_fov_background:355,make_map_hadron_accept:355,make_map_ring_background:355,make_map_xxx:355,make_maps_off:160,make_mask_bkg_invalid:161,make_mask_energy_aeff_default:161,make_mask_energy_aeff_max:161,make_mask_energy_bkg_peak:161,make_mask_energy_edisp_bia:161,make_mask_offset_max:161,make_mean_edisp:410,make_mean_psf:410,make_meta_t:[155,162],make_model:368,make_more_random_stuff:349,make_observation_time_map:448,make_orthogonal_rectangle_sky_region:[115,434],make_path:[113,429,445],make_pixel_region:363,make_psf:[145,155,162,410],make_quant:320,make_random_stuff:349,make_region:363,make_sky_coord:363,make_some_random_stuff:349,make_theta_squared_t:[400,458],makefil:[379,404],maker:[6,134,145,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,355,362,364,375,394,396,397,402,411,414,416,420,422,423,426,430,432,433,436,440,441,445,447,450,454,457,458,460,475,476,489,491,537],maker_fov:464,maker_safe_mask:[430,436,464],mamba:[352,380,402],manag:[83,86,194,196,203,225,298,327,348,349,352,357,365,366,368,371,375,376,378,400,405,407,411,449,451,538],manconi:392,mandatori:[161,352,362,375,433,452],mandatory_keyword:447,mani:[83,86,290,349,350,352,354,356,358,361,363,364,365,366,369,370,375,379,382,385,391,392,397,400,406,407,408,409,410,413,414,417,420,423,431,436,437,449,458,460,467,475,477,489,492,535,536,537,538,542],manifest:359,manipul:[83,86,373,376,402,491],manner:[413,414],manpow:[354,366],manual:[28,29,30,31,32,35,36,37,39,40,83,86,356,361,371,378,432,479,487,538,539],manuel:[401,404,405],map:[6,15,16,23,26,28,29,30,31,32,35,36,37,39,40,65,76,79,80,83,86,91,93,97,98,99,100,101,102,103,104,106,107,108,109,111,112,113,115,117,118,121,125,126,127,129,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,148,150,152,153,155,158,159,160,161,162,163,164,165,166,167,168,169,170,171,173,174,175,176,177,179,180,181,183,184,185,186,187,188,189,190,200,203,204,211,212,215,217,225,227,229,237,238,240,242,248,249,250,252,253,259,300,336,337,342,344,346,348,349,352,356,360,361,362,363,364,365,368,369,370,371,372,373,376,381,385,389,390,392,393,394,395,396,397,400,401,402,404,405,406,408,409,410,411,414,416,417,420,421,422,423,427,428,431,432,433,434,435,438,439,440,444,445,448,452,454,455,456,457,458,460,461,463,464,467,474,475,476,478,479,483,484,485,486,487,488,489,494,496,497,498,499,502,533,535,536,537],map_4d:449,map_:[189,190,337,344],map_analysi:368,map_cent:252,map_coord:[79,134,145,148],map_dataset:[361,441],map_dataset_empti:441,map_dataset_mak:441,map_dataset_on_off:441,map_in:[175,176,178,184,187,188],map_out:[99,104,133,134,140,145,148,175,176,178,184,187,188],map_select:[16,421,425,426,428,463],map_typ:[175,176,178,184,187,188,449,491],mapax:[129,130,131,132,135,136,137,139,142,144,146,147,397,400,402,447,449],mapaxi:[19,20,26,97,99,103,104,105,106,112,113,115,129,130,131,132,133,134,135,136,137,139,142,143,144,145,146,147,148,155,165,166,171,172,173,174,175,176,178,179,183,184,185,186,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,344,364,373,391,392,394,397,400,410,414,416,417,420,422,423,429,430,432,433,436,439,440,441,445,447,448,449,452,456,457,458,464,483,486,488,489,491,492],mapcoord:[79,134,145,148,173,174,175,176,178,179,183,184,186,187,188,227,408,409,449,492,498],mapdataset:[93,94,98,99,102,103,104,105,106,107,111,115,118,121,125,150,151,152,155,156,160,161,211,342,345,362,364,370,371,390,391,392,393,394,395,396,397,400,414,424,425,429,430,431,433,434,436,438,440,441,446,448,450,451,456,463,464,477,479,486,489,537,539,540],mapdataseteventsampl:[88,102,394,395,396,403,414,432,433],mapdatasetmak:[145,153,162,362,394,397,400,403,411,430,432,433,436,441,447,448,457,463,464,479,486,489],mapdatasetmetadata:376,mapdatasetoff:402,mapdatasetonoff:[93,97,103,104,107,111,125,150,156,160,394,395,397,400,413,414,426,441,448,475,489,539],mapdatasetsampl:362,mapevalu:[360,361,393,394,397,400,411,412,413],mapeventsampl:[392,393],mapfit:[360,361,390,409,410],mapgeom:[355,410,411],mapmak:[155,365,390,394,409],mapmakerob:[393,394],mappabl:373,mappanelplott:[370,543],mapper:286,mappingintstrani:[16,80],maps_off:160,mar:[366,387,412],march:[356,358,387,389,410],marcocirelli:26,margin:[99,104,174,176,186,188,203,225,240,360,450,495,537,539],marion:[390,409],mark:[86,349,360,378],marker:[96,97,99,103,104,416,417,420,422,424,430,437,438,439,440,465],markerfacecolor:[97,99,103,104],markers:[96,97,99,103,104],mask:[79,83,86,94,96,97,99,103,104,111,114,115,117,118,119,121,133,134,140,145,148,150,152,157,158,159,160,161,163,173,174,175,176,178,181,183,184,186,187,188,194,196,203,225,240,361,377,394,396,397,398,400,403,409,411,412,413,414,416,417,428,430,437,448,451,454,457,460,475,486,488,491,537],mask_1:453,mask_2:453,mask_bright:444,mask_contains_region:188,mask_data:450,mask_energi:[445,450],mask_fit:[96,97,99,103,104,361,394,411,422,428,441,445,446,450,475],mask_fit_imag:[97,99,103,104],mask_imag:[97,99,103,104],mask_map:[174,186,450,454],mask_map_catalog:450,mask_nearest_posit:[175,176,178,184,187,188],mask_off:441,mask_roi:444,mask_saf:[96,97,99,100,103,104,161,361,394,445,448,450,475],mask_safe_edisp:[97,99,103,104],mask_safe_imag:[97,99,103,104,133,134,140,145,148],mask_safe_psf:[97,99,103,104],mask_spac:445,masked_ev:79,maskedarrai:[83,86],maskedcolumn:[83,86],mass:[19,20,26,52,362,396,443,467,499],massdm:[19,20,443],master:[355,356,363,374,378,379,388],match:[83,86,102,105,173,174,176,179,180,181,183,186,188,190,262,263,349,357,408,410,420,423,440,456,474,491],match_by_nam:181,math:[212,348,446],mathcal:[446,475],mathemat:452,mathieu:[400,403],mathrm:[19,20,23,97,103,135,443,446,475,539,541],mathworld:[305,306],matplotlib:[19,20,26,64,65,79,117,129,132,135,136,137,142,143,144,145,146,147,148,175,176,178,184,187,188,191,197,198,199,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,252,253,254,327,337,338,339,342,343,344,346,348,349,350,363,366,375,382,385,392,400,402,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,471,472,473,479,481,482,483,485,488,495,497,501,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,542],matric:191,matrix:[28,29,30,31,32,35,36,37,39,40,132,133,134,137,191,192,194,203,225,262,263,342,366,367,377,410,411,414,446,447,475,477,483],matter:[1,17,18,19,20,21,22,23,24,25,26,27,363,369,377,409,414,448,454,456,460,468,491,536,538],matthew:[356,406,408,409],matthia:[408,409],mattox:424,max:[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,79,83,84,86,96,97,105,114,116,118,145,147,148,151,155,161,188,193,194,195,196,197,198,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,306,357,365,372,377,385,396,397,398,400,402,414,417,420,421,422,423,425,426,428,429,430,431,434,436,437,438,439,441,444,445,446,447,448,449,450,452,453,456,457,463,464,467,486,488,489,495,514,517,523,540],max_ag:[45,469],max_column:[83,86],max_energi:437,max_lin:[83,86],max_offset:365,max_percentil:79,max_radiu:[143,145,148,186,456],max_region_numb:[158,488],max_width:[83,86],maxcal:192,maxclust:276,maxfev:446,maxim:[45,78,86,105,161,200,204,212,215,227,237,238,242,248,252,412,413,414,488],maxima:[126,194,196],maximilian:[400,402,403,412,413,414],maximum:[19,20,45,46,47,79,83,86,95,112,113,114,116,118,145,148,150,158,161,167,170,174,180,185,186,193,195,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,262,263,305,307,310,346,352,355,363,402,418,424,437,448,449,457,464,469,477,488,514,536,537,540],maxwellian:32,mayb:[28,29,30,31,32,35,36,37,39,40,349,357,359,360,371,381,383],mb:[173,174,183,186,357,381,383,419,427,435,442,454,455,456,458,459,461,466,503,524,534],mbox:[97,103],mc:367,mc_id:[79,359,362,402,432,455],mcerp:367,mckee:53,mcmc:[367,369,390,395,397,514],mcmc_sampl:[369,392],md:[352,369,375],mdm:[26,443],mean:[42,66,83,86,91,97,115,117,132,133,134,137,140,145,148,213,217,251,266,277,296,349,350,352,354,356,362,363,365,366,372,377,382,385,397,406,423,433,437,446,448,452,453,456,457,465,496,511,538,539],meaning:452,meant:[355,414,416,423,425,428,430,436,440,455],measur:[27,65,99,104,117,180,256,262,263,266,267,268,269,272,273,275,355,363,368,373,379,388,393,401,407,409,417,420,422,423,426,429,431,434,436,437,438,439,444,456,464,465,477,484,486,489,536,537,540,541],mechan:[357,367,373,376],media:375,median:[79,145,148,385,441,453,456],median_zenith:453,medium:[45,52,349,358],meeseeksdev:349,meeseeksmachin:349,meet:[203,225,278,355,357,369,374,379],megabyt:[173,174,183,186],member:[79,350,354,363,375,376,408,414,455,458],memo:[132,180],memori:[83,84,86,87,95,97,98,99,102,103,104,173,174,183,186,248,250,252,327,349,359,361,362,365,371,373,394,400,423,436,479,537],memoryobserv:84,mender:[413,414],mention:[59,349,350,352,356,357,361,363,366,368,369,374,375,378,379,447,451,452,467,537],mentor:[352,369],mere:359,merg:[65,82,83,86,177,180,203,225,317,349,352,353,354,355,362,363,364,368,369,374,375,378,379,389,390,391,392,393,394,395,396,397,405,406,407,408,409,410],merge_equ:82,mergesort:[83,86],mess:350,messag:[96,352,363,365,372,398,413,417,418,420,421,422,428,429,430,440,441,446,456,463,464,479,538],met:[82,330,414,439,537],met_start:82,met_stop:82,meta:[28,29,30,31,32,35,36,37,39,40,79,81,83,84,86,89,95,98,101,102,112,113,129,130,131,132,135,136,137,139,142,144,146,147,155,162,175,176,178,184,187,188,248,249,252,253,288,330,331,332,333,359,362,363,364,373,376,396,397,408,412,414,432,441,449,453,455,457,476,477,533],meta_t:[95,96,97,99,103,104,155,162,373,376,397,417,423,448,475],metaattribut:[83,86],metadata:[16,79,80,81,83,84,86,100,112,113,129,130,131,135,136,139,142,144,146,147,175,176,178,184,187,188,331,353,355,366,421,432,452,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],metadata_fits_export_kei:80,metadatabas:376,metadatabasemodel:376,metapackag:366,method:[6,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,50,51,52,53,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,94,95,96,97,98,99,100,101,102,103,104,107,109,110,111,112,113,114,115,116,117,118,119,120,121,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160,161,162,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,269,276,286,290,294,298,299,300,323,336,338,348,349,352,355,358,359,360,363,364,365,367,368,369,371,373,375,376,381,385,386,388,389,390,391,392,393,394,395,396,397,398,400,402,403,405,406,407,408,409,410,411,414,416,417,418,420,421,422,424,425,426,428,429,430,431,432,433,436,439,441,443,444,445,446,447,448,450,451,452,453,455,456,457,458,463,464,465,474,476,478,479,483,486,488,489,490,492,512,526,535,536,537,538,540],method_kwarg:[298,299],methoda:392,metric:276,mev:[71,79,129,130,131,135,416,423,425,428,430,436,440,441,444,447,449,452,455,456,465,523],meval:497,mexico:457,meyer2010:537,meyer:[222,256,429,537],mgtime:364,michael:413,mid:[403,414,455],middl:[338,365],midli:420,midpoint:84,might:[13,28,29,30,31,32,35,36,37,39,40,163,180,192,349,354,360,361,363,366,368,373,375,376,381,383,384,390,420,439,441,445,448,450,456,457,460,465,467,475,479,486,492,538,540],migra:[97,99,103,104,134,137,166,365,432,433,447,484],migra_axi:[97,99,103,104,106,134,137,432,433,447,448],migrad:[96,192,417,418,420,421,422,428,429,430,441,446,456,463,464],migrad_opt:[192,446],migrat:[97,99,103,104,106,137,358,393,400,409,432,448,483,484],milagro:[92,340],mileston:[358,378],milki:[33,38,388,469],miller:[83,86],million:[349,376],min:[16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,79,86,97,114,116,118,155,193,194,195,196,197,198,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,267,306,364,365,372,377,385,400,408,421,423,425,426,428,429,430,431,434,436,437,438,439,440,441,445,446,447,448,449,452,453,456,463,464,467,488,514,517,523],min_count:152,min_dist:[126,127,158,424,430,488],min_distance_input:[158,488],min_energi:437,min_npred_background:152,min_signific:364,min_significance_lc:364,minaya:410,mind:[352,369,436,446],mini:369,miniconda:[381,383],minim:[19,20,26,105,120,175,176,178,183,184,187,188,189,192,197,198,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,229,230,236,237,238,240,241,242,243,244,245,246,248,249,252,253,260,361,364,372,376,402,412,414,416,432,445,446,464,479,488,489,492,536,541],minima:[194,196],minimis:[440,453],minimum:[19,20,26,47,79,95,111,112,113,114,116,118,120,122,126,127,150,152,158,180,183,185,193,195,197,198,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,258,261,264,267,278,305,307,310,344,366,402,408,420,424,432,446,449,456,477,479,488,514,541],mino:[192,446],minor:[349,354,369,372,374,399,412,496,497],minos_contour:[392,410,446],minu:[137,441],minuit:[96,109,192,360,367,394,409,410,414,417,418,420,421,422,428,429,430,441,446,456,463,464],minuit_opt:446,minut:[369,379,408,420,424,426,428,430,431,432,434,439,440,443,445,446,448,463],mireia:411,mirror:172,misc:[388,401,405,406,407],miss:[78,83,86,129,130,131,132,135,136,137,139,142,144,146,147,155,349,352,357,358,359,360,363,369,370,373,398,400,402,408,413,449],mission:[79,414,537],mistak:[354,374],mix:[348,349,365,445,449],mixin:[83,86],mjd:[82,89,113,202,210,214,216,217,218,233,239,251,254,331,333,350,413,414,424,432,433,437,438,439,440,449,452,476,526,527,528,529,530,531,532,533,542],mjdref:[424,449],mjdreff:[89,330,333,433],mjdrefi:[89,330,333,433],mkdir:[365,420,421,428,429,432,463,464],mkn:[465,537],mkn_421_3fhl:465,mncontour:192,mnra:122,mnt:411,mock:431,mock_dl4:431,mode:[16,80,81,83,86,89,97,99,103,116,133,134,140,145,148,151,174,175,176,178,179,180,183,184,186,187,188,250,376,395,408,411,440],model1:[198,504,506,510,513,515,518],model2:[198,440,504,506,510,513,515,518],model:[1,6,15,16,18,19,20,26,28,29,30,31,32,35,36,37,38,39,40,45,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,80,84,88,94,95,96,97,98,99,102,103,104,105,107,109,111,112,113,114,115,118,119,120,121,125,129,135,136,143,144,145,146,148,152,155,168,175,176,178,184,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,224,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,271,274,275,345,348,349,350,353,354,355,361,362,364,365,367,369,370,373,388,389,390,391,392,393,394,395,396,397,398,400,401,402,404,405,406,407,408,409,410,411,412,413,414,416,418,423,424,426,431,434,436,441,448,449,450,454,456,457,460,467,468,474,475,477,479,480,484,486,487,491,503,524,534,536,537,540,541],model_1d:[28,29,30,31,32,35,36,37,39,40,421],model_2d:[28,29,30,31,32,35,36,37,39,40],model_3d:[28,29,30,31,32,35,36,37,39,40],model_add:[452,506],model_best_joint:420,model_best_stack:420,model_bkg:445,model_computed_field:[16,80],model_config:[16,80,425,463],model_constraint:[28,29,30,31,32,35,36,37,39,40],model_construct:[16,80],model_copi:[16,80,452],model_dump:[16,80],model_dump_json:[16,80],model_extra:[16,80],model_field:[16,80],model_fields_set:[16,80],model_fit:440,model_joint:428,model_json_schema:[16,80],model_manag:[451,454],model_nam:[97,99,103,104,203,225,345,445],model_parametrized_nam:[16,80],model_plot:431,model_post_init:[16,80],model_rebuild:[16,80],model_set_axi:[28,29,30,31,32,35,36,37,39,40],model_simu:[423,436,440],model_spectrum:452,model_str:421,model_typ:[203,211,223,225,240,250,260,372,451],model_valid:[16,80],model_validate_json:[16,80],model_validate_str:[16,80],model_without_nam:452,modelbas:[211,240,242,243,250,254,377],modeldm:[19,20],modelevalu:360,modeling_2d:[425,427],modelmetadata:376,modelmodel_dump:[16,80],modelmodel_dump_json:[16,80],models_3fhl:451,models_4fgl_roi:444,models_as_dict:[16,80],models_diffus:432,models_fil:[16,421,425,426,428,463],models_fit:436,models_gc:451,models_gp:455,models_joint:428,models_or:451,models_read:452,models_select:451,models_stack:428,models_yaml:452,modelsmetadata:376,modern:[83,86,367],modernis:[366,394],modest:[349,496],modif:[16,80,83,86,349,352,371,378,411],modifi:[28,29,30,31,32,35,36,37,39,40,41,83,86,88,97,103,113,114,115,118,121,151,192,298,321,346,359,361,365,371,375,376,395,397,398,400,402,410,413,414,421,433,448,450,457,463,477,479,492,542],modul:[6,239,349,350,354,358,365,370,388,390,396,408,440,444,448,451,467,468,469,470,514,531,542],modular:355,mohrmann2019:537,mohrmann:[365,389,390,391,407,408,409,412,414,537],moment:[15,51,54,82,90,240,325,355,363,365,366,369,374,375,447,449,484],moncar:[192,446],monitor:[362,455,479],monkei:349,mono:357,mont:[367,484],montecarlo:[98,102,192],month:[74,352,358,363,366,368,369,374,378,382,388,389,390,391,392,401,404,405,406,407,408,409,410],monthli:[358,376,381,410],moor:24,morcuend:[410,413],more:[19,20,28,29,30,31,32,35,36,37,39,40,69,71,72,74,83,86,94,95,96,97,99,103,104,126,132,175,176,178,187,188,197,198,199,200,201,202,204,205,207,209,210,212,213,214,215,216,217,218,220,226,227,228,229,230,232,233,237,238,239,241,244,245,246,252,253,264,270,286,324,349,350,352,354,355,356,358,359,360,361,362,363,364,365,366,368,369,370,373,374,375,376,377,379,380,381,382,385,394,395,396,397,400,407,409,410,414,417,420,422,424,426,428,432,433,437,440,443,445,446,448,449,450,451,452,453,457,458,460,465,475,476,477,479,488,489,491,492,496,535,536,538,540,542],moreov:[365,444,448,475],morpholog:[50,52,109,360,362,372,388,405,407,417,425,432,433,435,436,444,448,460,475,491,493],mosaic:355,most:[28,29,30,31,32,35,36,37,39,40,79,83,86,90,107,113,348,349,350,352,354,355,356,357,360,361,362,363,365,366,367,368,369,371,372,373,374,375,376,379,381,382,400,407,408,410,411,414,425,426,434,438,440,444,446,447,448,449,450,455,456,460,465,467,477,478,479,484,492,535,537,538,541],mostli:[56,67,278,349,350,355,356,357,358,363,365,368,369,370,373,374,376,378,379,400,408,444,448,458,465,540,542],motion:[45,282],motiv:[161,354,356,357,363,366,368,378,452,479],move:[260,354,355,356,357,360,363,368,369,370,373,378,384,390,391,393,394,395,396,400,401,405,406,408,409,410,411,423],move_axi:414,movement:375,mpatch:434,mpg:65,mpi:65,mpl:349,mpl_check_plot:349,mpl_kwarg:[420,430,434],mpl_normal:[339,340],mpl_plot_check:349,mpl_style:408,msg:[416,423,425,428,430,436,440,455],msh15:458,msh:[426,444,448],mst:455,mu:[26,262,263,264,342,377,443,483,484,540],mu_:[264,270,539,540,541],mu_background:538,mu_bkg:[99,104,262,273,275,385,538,540],mu_off:540,mu_on:[264,270,540],mu_sig:[263,273,275,539,540],mu_x:540,much:[176,349,355,360,363,365,368,369,393,400,423,428,434,441,456,465,497],mul:[26,443,452,504,510,513,515,518,523],multi:[83,86,174,186,358,363,377,394,397,401,408,418,424,435,445,446,447,452,453,456,460,475,477,479,491,535,536,537],multidimension:[355,365,377,460,484,536],multinorm:367,multipl:[19,20,26,78,83,86,87,96,102,105,121,126,149,175,176,178,184,187,188,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,349,355,358,361,362,363,365,367,370,371,373,377,381,390,397,398,400,408,414,422,428,444,445,448,449,450,452,456,477,491,514,523,535,536,537,538,543],multipli:[19,20,26,113,197,198,200,201,203,204,205,207,208,209,212,213,215,217,219,220,222,225,226,227,228,230,231,232,236,237,238,241,242,243,244,245,246,248,249,251,252,253,259,271,274,278,441,443,452,504,540],multiprocess:[13,88,114,115,118,121,151,293,298,299,394,414],multithread:13,multivari:367,multivariategaussianprior:377,multiwavelength:205,muon:[84,453],muoneff:[84,453],mur:[26,443],must:[19,20,26,28,29,30,31,32,35,36,37,39,40,78,79,83,84,86,96,97,99,100,104,113,118,121,126,127,132,143,151,155,162,169,173,174,175,176,177,178,179,180,183,184,185,186,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,268,269,278,296,344,349,354,360,361,364,373,374,375,376,416,425,445,448,450,451,452,455,456,464,465,479,491,537],mutablemap:182,mutablesequ:[87,95,225],mutipl:381,mutltipl:352,my:[349,371,372,380,432,433,445,452],my_custom_model:452,my_flux_map:373,my_ob:85,my_obs_filt:85,my_sourc:371,mybind:[379,408],myconfig:[11,538],mycustomgaussianmodel:[372,452],mycustomspectralmodel:[235,452],n:[19,20,51,78,83,86,112,113,173,174,175,176,178,180,181,184,186,187,188,193,195,255,260,349,352,363,366,380,382,406,436,439,443,444,446,449,451,455,456,457,458,484,491,492,496,497,537,539,541],n_0:[213,511],n_:[97,103,264,270,475,539,540,541],n_bad:456,n_bin:445,n_bkg:[262,263,540],n_dof:[112,113,477],n_event:[175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,362],n_events_bkg:362,n_fit_bin:[428,440,445,451],n_free_paramet:260,n_input:[28,29,30,31,32,35,36,37,39,40,48,49],n_ism:[43,44,45,52,472,473],n_job:[16,88,114,115,118,121,151,298,414,421,425,426,428,434,448,463],n_jobs_default:[88,114,115,118,121,151],n_model:[70,73],n_ob:[423,432,440],n_observ:538,n_off:[99,104,263,272,273,275,539,540],n_off_posit:422,n_off_region:[163,422],n_on:[262,263,264,270,272,273,275,385,538,539,540],n_output:[28,29,30,31,32,35,36,37,39,40,48,49],n_point:[19,20,26,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,377,532],n_scale:107,n_sig:[262,263,441,540],n_sig_matching_signific:[262,263],n_sigma:[69,71,72,74,111,112,113,114,115,118,119,120,121,260,262,263,416,434,444,445,463,465,477],n_sigma_sensit:[111,112,113],n_sigma_ul:[69,71,72,74,111,112,113,114,115,118,119,121,434,438,444,445,463,465,477],n_sourc:[45,469],n_spatial_ax:179,n_submodel:[28,29,30,31,32,35,36,37,39,40],n_tel:86,n_time_bin:439,nachiketa:[406,407],naima:[226,348,366,367,368,369,372,391,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,479,493,523,524],naimamodel:[391,394,396],naimaspectralmodel:[235,372,400,452,479,514],nakashima:392,name1:446,name2:446,name:[15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,48,49,52,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,86,89,91,94,95,96,97,99,100,101,103,104,112,113,114,115,118,119,122,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,155,156,165,166,171,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,299,328,329,344,350,352,355,358,359,361,362,363,364,367,368,371,372,373,375,376,377,378,390,391,392,393,394,395,396,397,400,409,411,412,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,444,445,446,447,448,449,451,452,453,455,456,457,458,463,464,465,467,477,479,483,486,488,489,491,492,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,540],name_err:[114,115,118,119],name_scan:[114,115,118,119],name_substr:[203,225,451],name_ul:[114,115,118,119],namedtupl:349,nameerror:349,namespac:[6,16,80,349,368,370,393,396,406,452,468,542],namibia:458,nan:[19,20,26,28,29,30,31,32,35,36,37,39,40,65,83,86,96,97,112,113,155,173,174,175,176,178,184,187,188,193,195,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,372,377,420,421,422,425,426,428,429,434,436,438,444,445,447,448,449,450,451,452,463,464,465,514,523],nan_to_num:[95,97,99,103,104,133,134,140,145,148,176,184,188,250],nansum:[175,176,178,187,188],nasa:[58,60,61,63,132,180,369,378,517],nativ:[83,86,181,361,366,400,449],natur:[83,86,349,355,372,375,452,512],nauroi:[275,537],naurois2012:537,navarro:467,navig:[408,410],naxi:449,naxis1:449,naxis2:449,naxis3:449,naxis4:449,nbin:[16,115,135,137,143,145,177,180,185,188,310,311,365,416,420,421,422,425,426,428,429,430,432,433,434,438,439,441,445,447,448,449,452,456,457,458,463,483,486,488,489,492],nbin_per_decad:180,nbqbq_ng:448,nbstripout:357,ncol:[129,130,175,176,178,184,187,188,342,346,417,420,424,426,428,430,441,445,446,449,450,488,504],ncp:437,nd6hmz6y:452,nd:[175,176,178,184,187,188,248,249,370,449,492],ndarrai:[17,18,21,22,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,83,86,87,96,107,114,118,129,130,131,132,133,136,137,139,142,143,144,145,146,148,161,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,191,193,194,195,196,203,227,228,253,261,262,263,264,265,266,268,269,270,271,274,275,278,289,290,291,300,305,307,338,342,343,349,445,449,465,491,492],nddata:[391,394],nddataarrai:[392,406,407],ndecad:[17,18,21,22,23,24,25,27,258],ndim:[97,103,130,132,135,174,181,186,422,425,430,434,445,447,448,449,455,456,465,477,492],ndimag:[188,363],ndmap:450,ndmin:278,ne:361,nearest:[26,121,129,130,131,132,135,136,137,139,142,144,146,147,155,175,176,178,180,184,187,188,290,402,409,411,449,477,479,491],nearli:[349,400,417],nebula:[50,256,260,394,420,421,422,426,429,430,431,438,446,450,452,456,457,458,463,464,465,470,492,537],necess:373,necessari:[16,80,352,359,364,375,402,417,420,422,423,426,432,433,436,439,440,448,449,451,452,464,475,476,479],necessarili:[28,29,30,31,32,35,36,37,39,40,78,364,425],need:[11,16,19,20,28,29,30,31,32,35,36,37,39,40,80,81,83,85,86,89,96,99,111,113,133,134,145,147,148,183,255,256,278,348,349,350,354,355,356,357,359,360,361,362,363,364,365,366,367,368,369,371,373,374,375,376,379,380,385,389,390,391,408,410,417,421,423,424,425,426,430,432,433,437,439,440,446,447,449,450,451,452,453,455,457,463,465,475,488,490,491,538,542],need_upd:400,neg:[19,20,26,83,86,112,113,114,115,118,119,121,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,252,253,262,263,350,397,477,540,541],neglect:[116,161,416,448,477,541],neighbor:[136,144,146,402,409],neighbour:[290,499],neither:[91,161,366,374],neldermead:192,nep:[354,374],neraest:176,nest:[15,174,175,176,226,260,278,317,414,456,490,540],nested_model:226,net:[26,83,86,420],neutrino:52,neutron:36,never:[346,348,349,352,355,359,363,371,457],new_attribut:349,new_dataset_nam:[203,225],new_datasets_nam:[19,20,26,197,198,199,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254],new_flux_map:373,new_funct:349,new_input:[28,29,30,31,32,35,36,37,39,40],new_model:523,new_nam:[83,86,173,174,175,176,178,179,180,183,184,186,187,188],new_ob:[84,479],new_observ:87,newer:[366,379,390,409],newli:[394,395,396],next:[83,86,97,349,350,354,365,369,370,374,377,378,406,407,416,428,431,432,434,436,444,445,448,449,452,453,456],nfcn:446,nfev:[96,192,417,418,420,421,422,428,429,430,441,446,456,463,464],nfw:[25,27,467],nfwprofil:443,ni:349,nice:[349,354,360,366,368,376,392,400,424,428,444,538],nicer:[349,385,446,465],nieto:[397,400,402,403,411,413,414],nieva:411,night:[364,439],nightli:[381,438],nightwise_lc:438,nigro:[397,400,402,408,409,411,414],niter:[112,113,121,424],nmcid:403,nn:457,noah:377,node:[19,20,26,145,148,177,180,197,198,201,205,207,208,209,213,219,220,222,226,227,228,230,231,232,236,241,243,244,245,246,249,253,391,446,447,449,455,456,498,515],node_typ:[177,180,185,432,433,447,456],noeth:[397,398],nois:[268,367,537],noisi:455,non:[16,80,83,86,95,97,99,103,104,112,113,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,161,173,174,175,176,178,179,180,181,183,184,185,186,187,188,250,278,339,340,342,344,355,360,363,367,369,370,376,390,394,395,396,400,408,411,412,414,417,456,460,475,479,490,491,514,537],none:[16,17,19,20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,50,51,52,66,67,68,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,91,94,95,96,97,98,99,102,103,104,105,106,107,109,111,112,113,114,115,116,117,118,119,120,121,125,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,150,151,152,155,157,158,159,160,161,162,163,165,166,167,168,170,171,172,173,174,175,176,178,179,180,181,182,183,184,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,262,263,275,276,278,281,286,290,298,299,300,302,305,306,307,308,316,318,324,332,336,337,338,342,343,344,345,346,349,361,363,366,373,376,377,402,413,414,417,418,420,421,423,424,428,429,430,432,433,434,436,439,440,441,443,444,445,448,449,451,452,456,463,467,475,491,495,496,497,538],nonetyp:80,nonposit:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],nonposx:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,400],nonstopmod:350,nonzero:39,nooverlaperror:413,noqa:[19,20,96,97,99,103,104,111,114,115,121,132,168,179,180,186,205,257,346],nor:[91,161,359,370,374,378],norm:[19,20,26,111,112,113,114,115,118,121,152,193,194,196,197,198,200,201,202,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,254,342,360,371,373,377,394,395,397,400,420,425,426,428,429,431,432,433,434,436,440,441,443,444,445,446,456,463,464,465,467,477,486,493,497,503,504,511,523,524,532,540],norm_0:[498,515],norm_1:[498,515],norm_2:[498,515],norm_3:[498,515],norm_4:515,norm_5:515,norm_err:[111,112,113,115,121,373,434,445,477],norm_errn:[112,113,444,465,477],norm_errp:[112,113,444,465,477],norm_max:[114,115,118],norm_min:[114,115,118],norm_n_valu:[114,115,118],norm_only_chang:412,norm_paramet:[193,194,195,196],norm_prior:377,norm_scan:[112,373,420,421,477],norm_sensit:[112,113],norm_ul:[112,113,373,434,444,445,465,477],norm_valu:[114,115,118],norma:[33,38],normal:[42,96,97,99,103,104,114,115,116,118,125,129,130,131,132,134,135,136,137,139,142,143,144,145,146,147,148,152,175,176,178,184,185,187,188,211,227,228,231,250,252,255,278,339,340,349,350,354,355,359,360,363,367,373,389,393,402,426,432,438,439,441,448,449,450,451,452,456,464,465,491,495,496,497,500,501,502,523,537,539,540],normalis:[65,76,118,129,130,131,132,135,137,139,142,143,147,152,172,175,176,178,184,187,188,227,228,240,347,421,425,426,440,450,451,452,456,463],normed_templ:452,normspectralmodel:[203,225,372,397,413,452,486],north:[204,212,215,495],notat:[397,481,483,489,541],note:[15,16,19,20,28,29,30,31,32,35,36,37,39,40,74,78,79,80,82,83,86,89,96,97,98,102,107,113,118,121,132,137,145,147,157,168,186,190,192,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,268,269,278,299,340,346,348,351,352,354,357,362,363,366,369,373,374,375,377,378,379,382,388,390,410,412,414,416,417,421,422,424,425,428,431,433,437,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,475,477,479,492,500,501,512,540,541,542],notebook:[83,86,314,352,353,358,359,363,364,365,366,367,369,379,381,382,383,386,389,390,391,392,394,395,396,398,400,402,406,407,408,409,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,478,479,480,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538],noth:[302,366],notic:[355,446,460],notimplementederror:[28,29,30,31,32,35,36,37,39,40],nov:[356,361,366,367,369,373,387,411],novemb:[358,387,397,398,399,400],now:[16,78,80,84,94,112,113,185,226,349,352,354,355,356,359,361,362,363,365,366,367,368,369,370,373,375,376,377,381,383,384,389,390,391,392,393,394,395,396,397,400,401,402,403,407,408,409,410,411,412,413,414,416,417,420,421,422,423,425,426,428,429,431,432,433,434,436,438,439,440,441,445,446,449,450,451,452,453,455,456,457,458,463,464,465,476,477,488,525,529,530,531,538,540,541,542],np:[79,83,86,107,113,134,175,176,178,184,187,188,255,349,350,360,361,364,372,373,377,411,416,420,423,424,426,428,430,432,434,436,437,439,440,441,443,444,446,447,448,449,450,452,453,457,471,472,473,477,479,491,492,495,496,498,523,531],npanel:336,npix:[174,183,186,187,188,420,430,447,456,488,492,494,498],npix_max:174,npoint:446,npred:[97,99,103,104,111,112,113,114,115,118,119,121,250,265,360,361,362,371,373,388,390,397,400,406,408,432,434,444,445,456,475,477,540],npred_background:[97,99,103,104,112,113,397,422,423,434,445,477,540],npred_background_min:128,npred_excess:[111,112,113,115,121,426,434,441,477],npred_excess_err:[112,113],npred_excess_errn:[112,113],npred_excess_errp:[112,113],npred_excess_ref:[112,113],npred_excess_ul:[112,113],npred_min:128,npred_off:[99,104,540],npred_sig:[97,99,103,104,361],npred_sign:[97,99,103,104,345,400,414,445,540],npred_signal_min:128,npred_sourc:445,nrow:[417,420,446,504],ns:[83,86],nside2resol:176,nside:[174,175,176,411,456,490],nside_til:[174,176],nsigma:446,nsou:424,nstep:364,nu:[19,26],nu_e:[26,443],nu_mu:[26,443],nu_tau:[26,443],nuisanc:[420,446,537,541],null_valu:[119,260,434],nullabl:[83,86],num:79,numba:366,number:[11,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,35,36,37,39,40,42,45,46,47,65,70,73,78,79,81,82,83,86,87,88,89,95,97,98,99,102,103,104,105,107,111,112,113,114,115,118,119,120,121,129,130,131,132,134,135,136,137,139,142,144,145,146,147,148,151,152,155,158,163,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,192,193,194,196,197,198,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,254,258,260,262,263,278,296,298,299,300,301,302,305,306,307,308,310,311,336,342,353,354,355,358,360,361,362,363,364,368,370,373,375,376,378,385,390,400,402,403,404,409,410,411,414,416,417,420,421,422,423,425,426,428,430,431,432,433,436,437,438,439,440,441,443,444,445,448,449,450,452,453,455,456,457,458,463,464,465,469,475,477,479,486,488,491,492,537,538,539,540,541],number_of_column:[83,86],numer:[17,18,19,20,21,22,24,25,26,27,83,86,113,180,193,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,254,278,348,349,362,367,400,416,423,425,428,430,436,440,449,455],numpi:[19,20,28,29,30,31,32,35,36,37,39,40,79,83,86,87,96,107,113,114,118,129,130,131,132,134,135,136,137,139,142,143,144,146,147,173,174,175,176,178,183,184,186,187,188,190,191,193,194,196,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,240,241,244,245,246,251,252,262,263,278,302,307,343,348,349,350,352,356,360,362,366,367,368,375,377,385,386,393,394,397,405,406,407,409,411,412,413,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,463,464,465,471,472,473,477,479,491,492,495,496,498,523,531],numpoint:[192,446],numpy121:352,nupeak_ob:465,nutshel:542,o2:479,o:[65,83,86,96,182,349,358,363,366,370,373,381,383,392,400,406,408,414,416,417,420,424,430,437,438,439,440,453,455,479,537],ob:[40,78,79,84,85,86,87,145,155,361,362,365,366,371,385,403,404,413,416,417,420,423,424,430,432,436,439,440,441,448,453,455,456,457,458,462,464,476,479,484,486,488,489],obei:491,obj:[16,80,422],object:[6,15,16,19,20,23,26,28,29,30,31,32,34,35,36,37,39,40,50,51,52,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,89,95,96,97,98,99,103,104,112,113,116,117,118,122,123,124,127,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,151,159,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,262,263,278,282,286,287,290,298,300,302,308,311,323,324,325,326,331,336,342,344,345,346,355,360,361,362,363,364,365,367,368,369,370,373,375,376,381,385,391,392,394,395,396,397,400,402,407,408,409,411,414,416,417,418,420,421,422,423,424,429,431,434,436,437,438,439,440,445,446,448,449,450,451,452,455,456,458,463,464,465,469,474,475,476,477,485,488,490,491,492,535,537,538,542],obs_:420,obs_clust:[87,453],obs_col:430,obs_con:[16,421,425,426,428,463],obs_copi:84,obs_fil:[16,421,425,426,428,463],obs_filenam:457,obs_filt:[84,85],obs_id:[16,78,83,84,85,86,359,361,371,376,385,417,420,421,422,423,425,426,428,429,430,432,433,438,439,440,446,448,453,455,457,458,462,463,464,488],obs_id_uniqu:83,obs_index:78,obs_info:[84,376],obs_list:[408,410],obs_list_vela:441,obs_mod:90,obs_muoneff:453,obs_po:[41,281],obs_tabl:[78,86,402,430,432,439,448,453,455,457,458,462,464,488],obs_table_filenam:78,obs_tim:[16,421,425,426,428,463],obs_time_src:448,obs_zenith:453,observ:[6,15,16,41,78,79,81,82,83,85,86,88,89,90,91,96,97,98,99,102,103,104,105,145,150,151,152,155,156,157,158,160,161,162,165,166,167,168,170,171,172,202,205,210,214,216,217,218,233,239,251,254,264,270,275,286,307,353,355,361,362,363,364,365,369,371,373,376,381,390,394,395,400,401,402,403,404,405,406,407,408,409,410,411,414,416,417,422,423,425,426,428,429,436,437,440,441,446,454,455,457,458,460,462,467,475,476,479,482,484,486,488,489,514,537,538,539,540],observation_clust:[453,454],observation_dead_time_fract:[79,84],observation_list:87,observation_live_time_dur:[79,84],observation_time_dur:[79,84],observation_time_start:79,observation_time_stop:79,observationcheck:409,observationcta:359,observationfilt:[84,359,364,389,410],observationlist:[359,410],observationmetadata:376,observations_list:87,observationsconfig:16,observationssummari:394,observationstat:[389,394],observationt:[78,362,363,411,453,457,464],observationtablecheck:409,observationtablesummari:406,observatori:[57,59,62,78,79,81,84,89,362,376,378,381,401,455,457,458,474,479],observatory_earth_loc:[79,84],observatory_loc:[376,402,416,423,432,433,436,440],obstim:[81,89,168,542],obtain:[81,97,99,102,122,267,359,364,366,367,373,410,420,421,422,426,432,433,437,439,446,449,450,463,465,475,479,483,484,537,539,540],obviou:[361,368,369,370,376],obvious:[28,29,30,31,32,35,36,37,39,40,467],occur:[175,176,178,187,188,308,349,369,370,374,456],occurr:[87,95,179,194,196,203,225],oct:[357,359,360,364,366,369,375],octob:358,odd:[186,188],odd_npix:[186,188],odot:[28,35,39,40,52],off:[97,99,101,103,104,111,150,156,157,160,163,172,263,275,346,347,352,355,361,363,364,365,394,400,402,404,414,416,417,421,422,426,430,438,439,441,445,446,448,475,488,489,537,539,540,541],off_2:[99,104],off_ev:441,off_patch:441,off_phas:[156,441],off_phase_rang:441,offdatabackgroundmak:405,offer:[112,352,360,375,376,381,382,409,422,446,448,452,479],offici:[375,480,538],offlin:[83,86],offset2:79,offset:[79,91,105,129,130,131,132,135,136,137,139,142,144,145,146,147,148,151,155,161,162,167,170,175,176,178,180,184,187,188,349,355,363,385,394,404,406,408,413,414,416,422,423,425,428,429,430,436,441,447,448,453,455,458,464,476,484,486,489],offset_axi:[135,137,142,147],offset_band:79,offset_from_median:79,offset_index:142,offset_max:[16,79,151,161,167,170,421,425,426,428,430,436,441,448,463,464,486,489],offset_min:79,often:[28,29,30,31,32,35,36,37,39,40,122,256,339,340,349,354,363,364,365,367,407,416,417,421,425,426,429,430,436,445,446,448,450,463,464,475,537],ogip:[90,100,101,104,132,177,179,180,183,184,185,361,364,407,420,429,475,483,492],ogip_column:184,ogipdatasetread:104,ogipdatasetwrit:[104,413],ok:[349,363,446],old:[179,334,349,354,357,361,365,366,391,392,407,408,409],old_attribut:349,older:[356,366,382,407,444],oldest:369,olga:[405,406],olivera:[397,400,402,403,411,413,414],omega:[19,20,23,239,255,495,531],omit:[121,350,428,455,538],omp:369,on_circl:488,on_ellipse_annulu:488,on_ev:441,on_patch:441,on_phas:[156,441],on_phase_rang:441,on_posit:172,on_radii:416,on_radiu:[430,441],on_rectangl:488,on_region:[16,97,99,158,416,417,420,421,422,423,425,426,428,430,432,433,438,439,441,445,463,488],on_region_radiu:[416,420,423,432,433,439],onc:[83,86,97,186,349,352,354,359,360,363,364,365,369,370,371,373,374,378,379,381,383,422,441,448,451,457,460,476,479,538],one:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,59,68,80,83,85,86,87,88,90,94,97,99,102,103,104,105,107,112,113,114,115,116,118,119,121,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,155,173,174,175,176,177,178,179,180,183,184,185,186,187,188,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,258,260,262,263,286,291,307,320,336,342,343,349,350,351,352,354,355,356,357,358,360,361,362,363,365,366,367,368,369,371,373,374,375,376,377,379,380,381,408,411,412,414,416,417,420,421,422,425,428,432,437,438,440,441,444,445,446,447,448,449,450,451,452,455,456,457,463,464,465,474,475,476,477,479,484,486,488,491,492,497,535,536,538,539,540,541,542],ones:[83,86,107,111,114,118,121,132,353,357,361,363,366,369,377,382,384,385,437,440,447,449,467,486,537,538],ones_lik:441,ongo:[352,355,356,379],onli:[16,19,20,28,29,30,31,32,35,36,37,39,40,68,70,71,75,78,79,80,81,82,83,84,85,86,88,90,95,96,97,98,99,102,103,104,114,118,121,133,134,138,140,145,148,151,157,162,173,174,175,176,178,183,184,185,186,187,188,193,194,196,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,223,225,226,229,230,231,232,233,236,237,238,239,240,241,244,245,246,250,251,252,262,263,278,298,324,346,349,350,352,354,355,356,357,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,382,390,392,396,400,402,403,408,412,414,417,418,420,421,422,425,426,428,429,431,432,433,434,438,439,440,441,444,445,446,447,448,449,450,451,452,453,455,456,457,464,467,475,477,479,483,486,489,492,533,537,538,539,540],onlin:[83,86,350,354,357,369,385],onoff:[403,475],onserv:88,ontim:[168,359,432,445],onto:[175,176,178,184,186,187,188,336,355,464,475,479,491,536],oo:375,op:365,opac:205,open:[64,83,86,350,352,354,360,363,366,368,369,373,374,375,378,381,382,383,385,386,407,421,429,449,455,457,458,463,474,537,538],openastronomi:408,oper:[83,86,174,186,198,349,355,360,363,395,397,400,409,410,414,445,451,452,491,492,504,506,510,513,515,518,523],opinion:[354,538],oppos:[437,514,538],opposit:[175,176],opt:[84,85,444,504,514],opt_method:446,optic:[205,363,504],optim:[19,20,26,96,119,121,191,192,193,194,195,196,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,342,348,349,358,361,362,371,373,417,418,420,421,422,423,424,428,429,430,437,441,446,456,463,464],optimis:[19,20,192,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,363,365,367,409,477,535],optimize_opt:[192,428,436,446,464],optimize_result:[192,414],optimizeresult:[96,192,417,418,420,421,422,428,429,430,441,446,456,463,464],optin:375,optinon:[103,104],option:[11,13,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,45,46,47,65,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,103,104,105,107,109,111,112,113,114,115,116,117,118,119,120,121,125,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,155,156,157,158,159,162,163,165,166,167,168,169,170,171,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,267,268,269,275,276,278,289,299,302,305,306,307,308,310,311,318,320,331,332,336,337,338,343,344,345,346,349,352,354,355,357,358,360,361,363,365,367,369,372,376,379,381,382,383,389,390,391,394,396,397,400,402,406,408,409,410,411,413,414,428,436,438,440,444,445,448,449,450,452,453,455,456,463,464,475,477,479,491,492,533,538],option_context:[83,86],optionali:498,optout:375,optpars:354,oral:375,orang:[350,420,428,434,437,438,441,443,488],orchestr:[355,359,361,365,421,463,464],orcid:375,order:[28,29,30,31,32,35,36,37,39,40,78,83,86,89,95,96,97,99,113,129,130,133,134,140,145,148,151,155,162,165,166,171,173,174,175,176,178,179,183,184,185,186,187,188,250,260,278,346,350,355,360,361,363,364,365,366,373,374,375,377,390,391,392,393,394,395,396,397,400,420,421,422,424,428,429,432,441,444,446,447,448,449,452,457,463,464,465,490,491,492,538,541],ordereddict:[355,366,393],ordinari:465,org:[11,34,62,63,79,83,84,86,161,192,231,232,245,246,268,278,352,357,366,369,374,375,378,381,383,387,406,408,416,423,425,428,429,430,436,440,443,444,446,448,455,521,522,538],organ:[353,369,374,375,400,457,458,476,491],organis:[356,365,368,375,408],orient:[130,138,139,349,360],origin:[41,83,86,97,103,176,188,248,250,252,359,363,375,376,406,421,437,449,452,456,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,541,542],orthogon:311,os:[78,403,407,449,455,538],oscar:[408,409],osx:396,ot:378,other:[13,16,28,29,30,31,32,35,36,37,39,40,56,65,67,79,80,82,83,86,97,99,103,104,112,114,118,119,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,157,174,175,176,177,178,179,180,183,184,185,186,187,188,192,194,196,250,261,278,291,319,338,343,348,352,354,356,357,358,360,362,363,364,365,366,367,368,369,370,371,373,375,376,380,408,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,475,476,477,479,484,486,488,492,506,535,536,538,542],other_id:417,otherwis:[16,28,29,30,31,32,35,36,37,39,40,78,80,83,86,97,99,103,104,143,182,186,188,190,193,194,195,196,203,225,278,342,362,372,375,451,452,456,505],oup:122,our:[349,352,358,363,365,366,368,371,372,373,375,390,391,407,416,417,420,421,422,425,426,428,429,430,433,439,440,441,449,450,457,463,464,538],ourself:465,out:[11,28,29,30,31,32,35,36,37,39,40,83,86,87,89,95,96,113,175,176,178,184,187,188,225,237,238,348,349,350,352,354,357,359,361,363,365,367,368,369,374,378,384,385,386,388,394,408,418,422,425,426,449,450,455,456,463,465,467,468,488,500,501,535,538,542],out_fold:365,outcom:[354,363],outdat:[366,369],outdir:[16,78,88,421,425,426,428,463],outer:[43,44,52,53,115,150,237,501],outer_height:[488,492],outer_width:[488,492],outfil:349,outflow:185,outlin:[97,99,103,104,199,200,204,212,215,229,237,238,252,352,354,357,358,359,360,363,369,372],output:[11,16,28,29,30,31,32,35,36,37,39,40,41,79,80,82,83,84,86,88,126,127,132,137,175,176,178,184,187,188,203,217,225,307,350,357,359,362,365,366,370,373,376,389,404,410,413,414,428,432,433,436,440,448,449,463,464,477,479,538,539],output_map:[175,176,178,184,187,188],output_unit:[28,29,30,31,32,35,36,37,39,40],outsid:[83,86,97,103,132,152,173,174,175,176,177,178,179,180,183,184,185,186,187,188,193,195,205,253,337,349,363,364,365,400,426,446,448,449,450,479,486,497,523,537],over:[28,29,30,31,32,35,36,37,39,40,65,79,83,84,86,87,90,97,99,103,104,114,121,122,132,133,143,145,148,155,162,165,166,168,169,175,176,178,179,180,184,186,187,188,203,225,255,262,263,267,289,290,303,340,349,350,354,357,358,359,362,363,364,369,372,376,380,382,400,417,420,428,431,432,440,444,445,448,449,452,464,465,477,483,539,540],overal:[357,363,420],overcom:450,overestim:[477,540],overflow:[185,422,440,526],overkil:440,overlai:421,overlaid:[97,99,103,104,421],overlap:[82,86,118,163,180,185,346,364,420],overlap_ok:82,overlin:[97,103,475],overload:400,overplot:[444,474],overrid:[16,28,29,30,31,32,35,36,37,39,40,80,317,360,420,422,430,434],overridden:[16,28,29,30,31,32,35,36,37,39,40,80,83,86,183,346],oversampl:[98,102,143,145,148,155,162,168,174,175,176,178,183,184,187,188,200,204,212,215,216,217,227,237,238,240,242,248,252,254,258,391,448],oversample_energy_factor:[98,102,433],oversampling_factor:[176,186,199,200,204,212,215,216,217,227,229,237,238,240,242,248,252,254],overview:[6,352,379,394,395,397,400,441,449,452,460,465,466,479,480,493,539],overwrit:[11,15,16,19,20,26,78,79,84,88,95,96,97,99,101,103,104,112,113,133,134,140,145,148,173,174,175,176,178,180,182,183,184,185,186,187,188,193,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,248,249,250,251,252,298,373,409,411,420,421,428,429,432,433,434,447,449,450,451,452,455,456,462,463,464,475,479,492,502,538],overwrite_templ:[203,225],overwritten:[145,148,290],owen:[388,401],own:[83,86,94,112,113,182,184,352,355,365,371,375,400,416,432,452,456,479,491,492],p0_birth:43,p90:48,p:[38,51,54,83,86,103,104,117,266,275,349,400,431,443,446,479,484,485,540],p_0:[51,175,178,184,187,188,471],p_:[481,483,484,485],p_dot:[51,54],p_i:[175,178,184,187,188],p_lat:[175,178,184,187,188],p_lon:[175,178,184,187,188],p_mean:42,p_n:[175,178,184,187,188],p_stdv:42,p_valu:[262,263,446,538,540],pace:[357,358],packag:[6,11,126,278,314,348,349,350,352,353,354,355,356,357,358,363,366,367,369,374,375,376,378,380,381,383,384,385,386,387,388,390,393,394,396,397,400,403,404,405,406,407,408,409,411,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,475,478,479,480,487,492,502,510,512,513,526,538,542],pacman:405,paczynski1990:[28,29,30,35,37,39,40,48],paczynski1990veloc:49,paczynski:37,pad:[83,86,97,99,103,104,121,129,130,131,132,135,136,137,139,142,144,146,147,155,173,174,175,176,177,178,179,180,183,184,186,187,188,337,397,400],pad_width:[97,103,121,129,130,131,132,135,136,137,139,142,144,146,147,173,174,175,176,178,179,180,183,184,186,187,188],pad_with:[175,176,178,184,187,188],page:[6,83,86,192,264,270,275,350,352,354,361,363,366,369,375,378,379,381,382,386,394,395,400,403,404,407,408,409,410,446,449,458,460,477,479,490,492,539,542],pain:[349,352,356],pair:[16,80,97,99,103,104,112,113,122,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,182,183,184,186,187,188,365],panda:[83,86,348,366,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],panel:[84,96,97,99,103,104,336,403,432,446],panel_fov:336,panni:400,papadopoulo:[400,402],paper:[57,59,62,70,71,114,161,369,375,409,437,439,444,448,457,467],papermil:365,par:[360,372,377,446,455],par_000_amplitud:446,par_001_alpha:446,par_002_beta:446,par_00x_:360,par_1:[192,446],par_2:[192,446],par_alpha:446,par_beta:446,par_box:86,par_nam:[203,225],par_to_v:455,par_typ:[203,225],parabol:[261,291,446],parabola:[219,220,429,446,493,524],paragraph:354,parallel:[6,88,114,115,118,121,151,293,294,295,296,297,298,299,352,366,379,402,414,445],parallel_backend:[88,114,115,118,121,151,298,434],parallelbackendenum:293,parallelmixin:[88,114,121,151],param:[16,80,205,253,342,365,395],param_nam:[28,29,30,31,32,35,36,37,39,40],param_set:[28,29,30,31,32,35,36,37,39,40],paramet:[15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,91,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,152,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,274,275,276,277,278,280,282,284,285,287,289,290,291,292,298,299,300,302,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,330,331,332,333,334,336,337,338,339,340,342,343,344,345,346,347,349,350,358,361,362,364,365,367,368,371,373,375,386,389,390,391,392,393,394,396,397,400,402,407,408,409,410,411,412,413,414,417,418,420,422,423,424,425,426,428,429,430,432,433,434,436,438,439,440,441,443,444,445,447,448,453,455,456,464,465,467,475,477,478,479,486,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,536,537,538,539,540,541],parameter:452,parameter_constraint:[28,29,30,31,32,35,36,37,39,40],parameter_name_scan:192,parameterestim:[108,396],parameteris:[481,483],parameters_list:[194,196],parameters_nam:[203,225],parameters_stat_sum:377,parameters_unique_nam:[203,225,446],parametr:[16,27,80,96,135,136,141,144,146,219,220,237,361,365,372,390,397,400,422,424,452,455,500,501,512],parametricpsf:[136,144,400,402],parametris:[144,372,394,483,485,495,496,497,498,505,508,509,510,511,512,513,515,516,517,518,519,520,521,522,525,526,527,528,529,530,531,532,533],parent:[16,80,107,111,114,118,121,186,349,359,376,439,477,514],parenthes:[360,366,412,414],parfiv:[366,393],pars:[16,80,81,174,183,350,363,416,423,425,428,430,436,440,450,455,538],parse_arg:538,parse_fil:[16,80],parse_obj:[16,80],parse_raw:[16,80],parseabl:278,parser:538,part:[96,349,352,355,358,360,362,363,364,365,367,368,369,374,375,390,394,395,396,404,409,414,416,417,420,428,436,444,445,449,450,464,465,479,484,488],parti:354,partial:[86,97,99,133,134,140,145,148,151,174,186,188,250,363,367,395,409,490],partial_overlap:86,particip:[354,358,369],particl:[19,26,226,255,396,467,514],particle_distribut:[226,514],particular:[83,86,349,355,362,364,371,373,374,376,397,400,411,412,417,420,421,422,423,425,429,432,437,439,440,446,448,451,455,457,458,463,464,476,479,486,488,492,540],particularli:[28,29,30,31,32,35,36,37,39,40],partli:[352,358,359,363,369,370],pass4:457,pass:[15,16,19,20,26,28,29,30,31,32,33,35,36,37,39,40,42,45,46,47,66,79,80,81,82,83,84,85,86,88,96,97,99,102,103,104,113,116,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,152,160,168,173,174,175,176,178,180,182,183,184,186,187,188,191,192,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,261,278,290,298,299,300,305,306,307,308,336,337,342,344,345,349,352,359,361,362,363,364,376,396,400,402,414,417,418,420,421,428,429,433,437,438,439,444,445,446,447,448,449,450,452,453,455,463,464,465,479,490,491,492,495,496,538,542],passkwarg:422,past:[349,354,357,365,366,369,370,372,375,377,385,406,408,409,449,538],patch:[346,349,356,375,403,412,420,422,430,434,441],path:[11,15,16,64,78,79,80,82,83,84,86,88,95,100,101,104,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,149,175,176,178,183,184,187,188,203,217,225,251,286,314,315,316,318,349,352,384,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,477,532,533,538],path_effect:[183,203,225],path_to_notebook:349,path_to_script:349,patheffect:[183,203,225],pathlib:[78,79,82,83,86,132,184,203,225,315,420,421,428,429,432,433,455,463,464],pathpatch:434,pattern:[349,355,363],paz:[401,404,405],pbar:479,pc:[46,47,50,52,472,473],pcolormesh:[79,113,129,130,132,135,136,137,142,144,146,147,407,413,446,447],pd:[83,86],pdf:[132,136,161,231,232,245,246,300,342,350,429,432,443,448,469,471,472,473,475,476,481,482,483,485,488,492,521,522,540,543],pdf_in_safe_rang:132,pdf_matrix:132,pdf_threshold:[132,133,137],pdflatex:350,peak:[66,116,126,127,132,161,209,214,216,220,402,408,424,437,444,448,501],peak_bright:66,peak_brightness_error:66,peak_latitud:66,peak_latitude_error:66,pedant:349,peek:[79,84,97,99,103,104,116,117,129,130,132,133,134,135,136,137,142,143,144,145,146,148,349,361,385,397,403,407,411,417,422,428,432,433,441,445,447,455,457,458,476,479,481,482,483,485],pend:278,peopl:[354,356,369,375,378,379,443,467,479,538],pep8:352,pep:354,per:[17,18,21,22,24,25,27,28,29,30,31,32,35,36,37,39,40,94,96,97,99,103,104,105,111,112,113,114,115,118,119,126,128,145,148,180,210,217,218,258,264,270,275,349,355,361,362,365,373,375,376,388,396,400,402,416,423,432,436,438,440,443,448,449,453,457,458,475,479,482,537,539],per_decad:[180,420,422,432,433,441,445,456,483,489],percent:120,percentag:[132,161,448],percentil:79,perfect:132,perfectli:[496,538],perform:[11,16,28,29,30,31,32,35,36,37,39,40,80,81,83,86,89,102,152,160,174,186,188,200,204,212,215,227,237,238,242,248,252,262,263,342,349,350,355,358,359,360,364,365,373,376,379,381,390,397,400,402,405,409,412,414,416,418,420,421,422,423,424,425,426,428,429,431,433,436,438,439,440,445,446,448,449,450,451,453,457,460,463,475,479,487,488,491,496,514,536,537,538,539],perhap:492,period:[42,51,54,251,356,375,408,453,471],period_dot:51,periodogram:[364,409],permit:[28,29,30,31,32,35,36,37,39,40,375],perseu:[33,38],person:[349,352,354,356,357,358,362,367,370],perspect:[83,86],pertain:[28,29,30,31,32,35,36,37,39,40],peter:408,pf:26,pformat:[83,86],pformat_al:[83,86],pg:465,ph:334,pha:[100,101,104,184,361,406,409,420,429],pha_:445,pha_meta:100,pha_ob:[100,429,446],pha_obs23523:[103,104,260,477],pha_obs23592:477,phacountsspectrum:392,phacountsspectrumlist:391,phase:[50,52,53,85,153,156,251,354,359,360,363,364,366,368,373,385,390,409,411,414,452,468,479,493,534],phase_axi:373,phase_bkg_mak:441,phase_column_nam:[156,441],phase_curve_model:532,phase_filt:85,phase_max:441,phase_min:441,phase_model:532,phasebackgroundestim:394,phasebackgroundmak:[153,394,414,441],phasecurv:[251,408,532],phasecurve_lsi_dc:532,phasecurvemodel:372,phasecurvetablemodel:[360,362],phasecurvetempl:360,phasogram:[251,532],phi:[19,20,26,181,197,198,201,204,205,207,208,209,212,215,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,282,372,436,446,451,452,456,465,484,495,496,497,499,500,501,505,507,508,509,511,512,516,517,519,520,521,522],phi_0:[197,199,200,204,207,208,209,212,215,219,220,227,229,231,232,237,238,241,242,244,245,246,248,252,372,446,505,508,509,512,516,519,520,521,522],phi_ref:[251,532],philipp:[408,409],phone:369,photon:[44,205,226,334,364,423,432,436,450,452,465,484,514,537],photutil:[126,349,363,409],php:62,physic:[114,115,118,121,298,299,348,373,377,391,421,429,449,452,455,463,477,479,514,537,540,541],pi:[19,20,30,31,32,37,54,213,255,372,452,473,495,496,497,500,501,511,531],pick:[349,356,363,374,390,465],pictur:350,pie:479,piec:[349,355,363,368,377],piecewis:[227,228,452,493,503,524],piecewisebrokenpowerlawnormspectralmodel:372,piecewisebrokenpowerlawnormspectramodel:372,piecewisenormsectralmodel:397,piecewisenormspatialmodel:[234,414,452,498],piecewisenormspectralmodel:[235,377,397,400,413,452,486,515],pig:[13,349,351,352,389,390,392,393,394,396,397,408,410,411],pillar:365,pin:409,pink:[103,104],pint:[441,479],pintor:[362,392,393,394,395,396,397,399,400,402,403,411,413,414],pip:[348,352,356,366,380,381,383,390,409,455,538],pipe:[405,406,407],pipelin:[362,364,396],piron2001:537,piron:537,pivot:[19,20,26,65,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,444],pivot_energi:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],pix:[173,174,175,176,177,178,179,180,183,184,185,186,187,188,491],pix_reg:443,pix_reg_rec:443,pix_to_coord:[173,174,177,179,180,183,185,186],pix_to_idx:[173,174,177,179,180,183,185,186],pixcoord:363,pixel:[13,79,97,99,103,104,105,106,107,116,126,127,129,130,131,132,135,136,137,139,142,143,144,146,147,158,173,174,175,176,177,178,179,180,183,184,185,186,187,188,200,203,204,212,215,225,227,237,238,242,248,252,360,388,392,406,409,424,426,432,434,445,448,449,456,465,475,477,489,490,491,499],pixel_area:186,pixel_scal:[107,174,186],pixelregion:[363,488],pixilis:449,pixreg:497,pixregion:188,pk:[122,395,437,439,440,444,453,465,504],pks2155:439,pks2155_hess_lc:437,pl:[65,76,111,115,121,152,223,230,231,232,372,418,434,444,445,452,465],pl_model:530,place:[79,82,83,86,87,95,97,99,103,104,126,129,130,131,132,133,134,135,139,140,145,147,148,158,163,175,176,178,184,187,188,225,250,322,349,350,356,357,360,361,362,363,365,368,369,370,371,374,379,393,395,420,438,449,450,452,465,475,476,479,536,542],placehold:354,plai:[369,430],plain:[366,449],plan:[353,354,358,359,363,365,366,369,374,378,389,406,408,409,410,535],planar:[252,360],plane:[29,65,66,114,173,174,175,176,178,183,184,186,187,188,369,443,444,449,455,474,489,492,496,537,543],plate:[186,449],platform:[366,375,400],plausibl:[376,431],pleas:[98,102,350,352,354,356,358,384,389,390,391,400,408,410,418,420,421,422,423,425,428,432,433,437,439,440,445,463,468,479],pleasant:352,plot:[6,19,20,26,64,65,79,84,96,97,99,103,104,113,116,117,129,130,132,133,134,135,136,137,142,143,144,145,146,147,148,175,176,177,178,180,183,184,185,187,188,191,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,252,253,254,256,259,327,336,337,341,342,343,344,345,346,347,348,350,363,364,365,367,368,370,373,385,388,391,394,396,397,400,401,402,403,404,405,406,407,408,409,413,414,416,417,418,422,425,426,428,429,433,436,437,438,439,440,441,443,444,445,446,448,450,452,453,455,456,457,458,463,465,469,471,472,473,475,479,481,482,483,485,488,532,533,540,542],plot_absorb:[504,524],plot_at_energi:[129,130,455],plot_bia:[132,137],plot_broken_powerlaw:[505,524],plot_compound:[506,524],plot_const:[494,503],plot_constant_spectr:[507,524],plot_constant_tempor:[525,534],plot_containment_radiu:[136,142,144,146],plot_containment_radius_vs_energi:[136,142,144,145,146,148,455,456],plot_contour_lin:446,plot_correl:[191,446],plot_count:[103,104],plot_dat:542,plot_disk:[495,503],plot_distribut:[426,428],plot_energi:[79,433],plot_energy_depend:[129,135,455,481],plot_energy_offset:79,plot_err:116,plot_error:[19,20,26,64,65,96,197,198,199,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,229,230,231,232,236,237,238,241,242,243,244,245,246,248,249,252,253,367,418,420,422,428,429,431,444,446,464],plot_excess:[103,104,403],plot_exp_cutoff_powerlaw:[508,524],plot_exp_cutoff_powerlaw_3fgl:[509,524],plot_exp_cutoff_powerlaw_norm_spectr:[510,524],plot_expdecay_tempor:[526,534],plot_extension_error:[199,200,204,212,215,227,229,237,238,242,248,252],plot_fit:[96,103,104,417,420,421,422,430,441,463],plot_gauss:[496,503],plot_gauss_spectr:[511,524],plot_gaussian_tempor:[527,534],plot_gen_gauss:[497,503],plot_generalized_gaussian_tempor:[528,534],plot_grid:[143,175,176,178,184,187,188,199,200,204,212,215,227,229,237,238,242,248,252,373,402,413,428,445,447,448,449,450,452,457],plot_heatmap:191,plot_hist:[184,492],plot_imag:79,plot_interact:[175,176,178,184,187,188,199,200,204,212,215,227,229,237,238,242,248,252,402,409,428,436,449,463,464],plot_kernel:143,plot_kwarg:[420,422,430],plot_linear_tempor:[529,534],plot_logparabola:[512,524],plot_logparabola_norm_spectr:[513,524],plot_map_rgb:414,plot_mask:[103,104,176,184,188,417,420,421,488],plot_matrix:[132,445,456],plot_migr:137,plot_naima:[514,524],plot_npred_sign:[414,428,430,464],plot_offset2_distribut:79,plot_offset_depend:[129,135],plot_panel:336,plot_phasogram:251,plot_piecewise_norm_spati:[498,503],plot_piecewise_norm_spectr:[515,524],plot_point:[499,503],plot_posit:[203,225,451],plot_position_error:[199,200,204,212,215,227,229,237,238,242,248,252],plot_powerlaw2:[517,524],plot_powerlaw:[516,524],plot_powerlaw_norm_spectr:[518,524],plot_powerlaw_tempor:[530,534],plot_profil:116,plot_psf_vs_rad:[136,142,144,145,146,148,456],plot_rad_max_vs_energi:[147,422],plot_region:[183,184,203,225,346,422,434,451,488,492],plot_residu:[96,97,99,103,104,398,400,428,464],plot_residuals_spati:[97,99,103,104,428,436,464],plot_residuals_spectr:[97,99,103,104],plot_rgb:414,plot_shel:[500,503],plot_shell2:[501,503],plot_sine_tempor:[531,534],plot_smooth_broken_powerlaw:[519,524],plot_spati:400,plot_spectrum:[96,129,428,440,445],plot_spectrum_datasets_off_region:[397,413,414,420,422,430,488],plot_super_exp_cutoff_powerlaw_3fgl:[520,524],plot_super_exp_cutoff_powerlaw_4fgl:[521,524],plot_super_exp_cutoff_powerlaw_4fgl_dr1:[522,524],plot_templ:[502,503],plot_template_phase_tempor:[532,534],plot_template_spectr:[523,524],plot_template_tempor:[533,534],plot_theta_squared_t:[457,458],plot_tim:79,plot_ts_profil:[113,420,421,434,438],plotmixin:[103,104],plotter:336,plsuperexpcutoff3fgl:407,plsuperexpcutoff4fgl:392,plt:[19,20,26,64,65,117,129,135,136,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,337,346,349,350,385,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,471,472,473,479,481,482,483,485,488,495,497,501,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531],plu:[28,29,30,31,32,35,36,37,39,40,204,369,375,452],pmf:362,png:[136,357,385,469,471,472,473,475,476,481,482,483,485,488,492,540,543],po:[134,186,488],point:[15,17,18,21,22,24,25,27,60,63,65,69,70,71,72,74,75,76,78,79,81,83,84,86,89,90,91,94,95,96,97,99,103,104,108,112,113,114,115,118,119,120,121,123,134,136,139,145,147,148,158,159,161,162,163,165,166,168,169,171,172,175,176,178,183,184,187,188,192,203,225,229,240,258,260,268,280,284,290,296,306,341,349,351,352,354,355,356,357,358,359,361,362,363,365,366,369,370,371,372,373,374,375,376,378,381,388,391,393,394,400,402,403,405,406,407,408,410,413,414,417,419,422,423,424,428,433,434,436,438,440,441,445,446,447,448,449,452,453,456,458,460,467,468,474,475,476,479,484,487,488,491,493,496,497,503,514,535,536,537],point_sourc:360,pointer:357,pointing_altaz:[376,414],pointing_galact:86,pointing_info:[81,89,416],pointing_posit:[423,433,436],pointing_radec:[79,86,414,455],pointing_t:89,pointing_zen:414,pointinginfo:[81,406],pointingmetadata:376,pointingmod:81,pointlik:[129,130,131,132,135,136,137,139,142,144,146,147,408,488],points_scal:290,pointskyregion:[157,162,183,229,403,422,433],pointsourc:[360,467],pointspatialmodel:[19,20,70,76,121,234,372,373,393,413,424,425,428,429,432,433,438,444,445,451,452,456,463,464,499],pointspreadfunct:447,poisson:[99,104,262,263,264,270,272,273,275,308,361,362,391,396,418,423,426,436,537,538,540],poissonian:[437,441,537],poissonlikelihoodfitt:405,polar:[51,54,279,349],pole:[51,363,449],poli:[28,29,30,31,32,35,36,37,39,40,176],polici:353,pollut:364,polygon:[176,190,363],polygonis:363,polygonpixelregion:363,polygonskyregion:[190,363],polynomi:[28,29,30,31,32,35,36,37,39,40,222,449],polynomial1d:[28,29,30,31,32,35,36,37,39,40],polynomialmodel:[28,29,30,31,32,35,36,37,39,40],pool:[294,298,299],pool_kwarg:[298,299],poolmethodenum:294,poon:406,poorli:448,pop:[87,95,182,225],popitem:182,popul:[6,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,350,369,407,468,470,514,536],popular:538,port:407,pos_ob:430,pos_on:172,pos_target:[430,441],posit:[16,28,29,30,31,32,33,34,35,36,37,38,39,40,41,45,46,47,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,79,80,81,83,86,89,90,91,97,98,99,102,112,113,114,115,118,119,121,133,134,140,143,145,148,158,161,163,172,174,175,176,178,183,184,185,186,187,188,189,193,194,195,196,199,200,203,204,212,215,225,227,229,237,238,240,242,248,250,252,260,262,263,280,281,284,285,337,349,356,360,362,363,372,373,374,375,390,392,397,400,402,416,422,423,424,425,426,428,429,430,431,432,433,434,436,440,441,443,444,445,447,448,449,450,451,452,453,455,456,458,465,475,476,477,479,484,485,488,489,490,492,495,496,497,499,514,540],position_angl:423,position_error:[199,200,204,212,215,227,229,237,238,242,248,252,394],position_lonlat:[199,200,204,212,215,227,229,237,238,240,242,248,252],position_off:172,positv:411,posixpath:[16,314],possibl:[33,78,83,86,112,138,349,350,352,355,356,357,359,360,361,362,363,364,365,366,367,368,369,370,373,376,378,379,381,391,392,400,407,409,414,424,425,426,431,434,445,446,447,448,449,456,465,477,479,486,491,492,514,538,539],post:[52,358,376],poster:[352,375,379,404],posterior:367,postfix:349,potenti:[109,357,365,431,479],potentiel:375,power:[19,20,26,27,96,111,112,113,115,120,125,143,145,148,174,193,195,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,233,236,241,243,244,245,246,249,253,255,259,305,360,362,388,394,406,408,423,425,428,432,434,436,439,440,441,451,452,479,493,504,524,530],powerlaw2spectralmodel:[223,231,232,235,372,418,425,452,465,517],powerlaw:[161,231,233,256,360,361,365,406,408,417,425,433,434,444,452,464,493,518,534],powerlawnormspectralmodel:[65,211,230,232,235,250,371,372,377,397,428,429,432,433,436,445,451,452,456,463,486,498,518,523],powerlawspectr:121,powerlawspectralmodel:[68,70,73,76,96,103,104,113,121,194,196,230,231,235,256,372,373,377,417,418,421,423,424,430,431,432,433,434,436,438,439,440,441,444,445,451,452,455,456,463,464,465,477,494,495,496,497,499,500,501,502,504,506,515,516,518,525,526,527,528,529,530,531,532,533],powerlawspectramodel:377,powerlawtemporalmodel:[247,452,530],pppc4dmid:26,pprint:[83,86,539],pprint_al:[83,86],pprint_exclude_nam:[83,86],pprint_include_nam:[83,86],pr:[349,359,361,363,372,373,375,377,378,394,395],practic:[362,366,370,373,374,375,376,420,445,450,452,464,475,479,488,537],pre:[16,28,29,30,31,32,35,36,37,39,40,80,96,102,113,278,349,352,358,369,375,376,381,383,397,409,411,421,425,426,429,431,434,437,444,446,451,475,481],preced:[296,363,365,375,452],precis:[121,136,142,144,146,200,204,212,215,227,237,238,242,248,252,349,367,374,375,433],precision_factor:[145,148,175,176,178,184,187,188],precomput:[26,96,113,445,451],pred:475,predefin:[402,434,438,439,463],predic:360,predict:[96,97,99,102,103,104,111,112,113,114,115,118,119,125,152,155,161,168,229,240,265,300,345,355,360,361,362,397,414,421,423,425,426,428,430,432,434,436,445,448,463,464,477,479,483,486,504,537,540],prefer:[83,86,324,349,354,356,360,368,369,375,380,381,385,434,440,449,450,460,538,540],prefix:[180,360],preliminari:[358,369,377,405,407,424,456],prepar:[78,155,359,360,378,421,429,446,448,452,456,463,487,535],prepare_input:[28,29,30,31,32,35,36,37,39,40],prepare_output:[28,29,30,31,32,35,36,37,39,40],prepend:[83,86],presenc:[28,29,30,31,32,35,36,37,39,40,424,437,449,514,537],present:[15,68,78,79,81,86,87,95,100,104,112,113,149,177,182,203,211,225,278,349,350,352,362,365,369,373,376,379,400,417,422,425,426,437,438,439,443,447,448,449,451,475,477,480,492,538,540],preserv:[83,86,99,175,176,178,180,184,187,188,366,445,450],preserve_count:[175,176,178,184,187,188,449],press:455,pretti:[363,369,379,385],prevent:[176,205,278,400,428],preview:[352,458],previou:[71,83,86,349,352,363,369,370,374,378,391,397,422,431,432,449,452,453,465,474],previous:[260,366,396,408,409,416,420,428,429,444,448,450],priliminari:447,primari:[26,83,86,175,176,178,179,187,188,354,375,396,411,449],primarili:[28,29,30,31,32,35,36,37,39,40],primary_axi:179,primary_band:449,primary_hdu:432,primaryflux:[19,20,443,467],primaryhdu:[432,449],prime:23,primer:367,princip:431,principl:[375,377,420,489],print0:349,print:[11,65,78,79,81,82,83,84,86,89,96,97,103,111,113,115,121,130,132,135,136,142,144,146,155,158,194,196,203,217,225,256,286,317,349,350,360,361,364,373,376,384,385,416,417,418,420,421,422,423,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,445,446,447,448,449,450,451,452,453,455,456,463,464,465,477,479,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538,539,540,542],print_level:[428,436,446,464],print_stack:349,printout:[349,407,408,445],prior:[19,20,94,96,97,103,193,194,195,196,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,353,358,417,420,421,422,423,425,428,429,434,436,440,444,446,452,464,465,523],prior_stat_sum:[193,194,195,196,377],priorfitstatist:377,priori:[373,426,450],prioriti:[346,358,360,361,363,375,378],priormodel:377,priorparamet:377,privat:[349,352,358,372,408,457,458],pro:[349,365],probabl:[13,137,349,352,355,356,357,359,362,363,367,369,371,377,379,423,436,446,449,452,456,483,484,485,537,538,540,541],probe:[268,452],problem:[19,20,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,327,357,359,363,370,377,384,412,446],problemat:[368,373,376,439,479],proce:[352,379,381,383,411,417,420,421,432,436,439,450,451,456,463,464],procedur:[362,374,379,424,428],proceed:[369,375,457],process:[11,79,88,114,115,118,121,151,176,188,297,298,299,308,349,350,352,354,355,357,358,359,361,362,364,365,371,374,375,376,386,392,397,400,402,408,417,420,430,432,433,444,445,448,457,462,464,469,476,478,479,536,537,538],process_lots_of_data:349,processor:369,prod3:369,prod3b:455,prod5:[432,433],prod:389,produc:[15,97,99,103,104,106,112,349,350,355,364,365,373,374,376,379,394,417,420,422,424,429,430,431,432,436,439,441,443,446,448,455,464,479,482,484,537,538],product:[102,175,176,178,181,184,187,188,251,355,364,365,375,376,385,400,414,418,424,433,441,445,446,447,448,456,458,477,484,537],prof_mak:115,profil:[17,18,21,22,23,24,25,27,108,112,113,114,115,116,117,118,119,136,142,144,145,146,148,172,176,184,192,214,216,261,275,291,310,311,361,363,367,368,375,381,383,388,390,397,400,405,407,409,410,420,421,430,435,438,440,446,460,467,475,477,479,491,495,537,540],profile_err:116,profile_high:434,profile_new:434,profuma:467,program:[349,365],programmat:428,progress:[15,78,107,118,121,192,299,355,358,365,366,379,400,407,408,409,479],progress_download:479,prohibit:479,proj:[97,99,103,104,155,174,175,176,186,187,188,420,448,449,456,464,488],project:[97,103,115,152,158,174,175,176,178,183,184,186,187,188,200,203,204,212,215,225,227,237,238,242,248,252,285,311,349,350,351,352,354,356,363,365,366,369,375,392,400,408,414,421,424,426,430,434,441,447,449,450,451,455,456,462,463,464,465,467,488,491,492,500,501,536,538],projected_distance_axi:115,prompt:538,pronounc:479,pronunci:479,prop_cycl:346,propag:[19,20,26,53,116,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,267,360,367,394,414,446],proper:[45,95,364,375,413,414,422,428,479],properli:[121,168,354,364,375,412,413,420,421,446,463,475,539],properti:[19,20,28,29,30,31,32,35,36,37,39,40,79,83,86,91,112,152,186,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,269,346,349,350,360,362,372,373,376,377,397,400,402,407,408,410,413,414,420,422,430,432,434,444,450,452,453,465,476,492,537],propos:[351,353,354,355,356,358,366,374,375,377,390,393,394,396,397,408,414],proto:[16,80],proton:[255,514],prototyp:[28,29,30,31,32,35,36,37,39,40,349,354,360,362,365,366,367,369,405,407,408,468],proven:365,provid:[15,16,28,29,30,31,32,35,36,37,39,40,78,79,81,83,84,86,97,99,103,104,106,118,121,132,133,151,165,166,171,175,176,178,180,181,182,183,184,185,186,187,188,192,275,278,342,349,350,359,360,362,364,365,366,369,370,373,375,376,377,378,379,380,381,383,386,390,393,394,395,397,400,402,411,414,416,422,423,424,433,436,437,444,445,446,448,449,450,452,453,456,457,458,460,464,465,467,469,474,476,477,478,479,480,481,482,483,485,486,489,490,491,492,493,499,502,514,523,535,536,537,538,540,543],proxi:359,prune:352,ps:[421,463],pset:[28,29,30,31,32,35,36,37,39,40],pseudonym:352,psf3d:[84,136,141,144,146,171,390,408,485],psf68:416,psf:[16,78,83,84,91,97,98,99,102,103,104,105,106,134,136,141,142,143,144,145,146,148,155,162,171,186,203,225,240,349,355,359,360,361,362,365,388,390,394,395,396,397,400,401,405,406,407,408,409,410,411,412,414,416,417,420,421,422,424,425,426,428,430,432,433,436,438,445,448,450,453,455,457,458,463,464,475,477,479,484,487,492,537],psf_3gauss:[83,136,455,485],psf_:475,psf_assym:447,psf_kernel:[145,456],psf_kernel_map:[143,456],psf_king:[83,144,485],psf_map:[98,102,145,148],psf_map_reco:[148,457],psf_mean:456,psf_new:447,psf_out:[145,148],psf_r95:450,psf_tabl:[78,83,142,447,458],psf_theta:349,psf_valu:[136,144,146],psfkernel:[99,145,148,176,188,361,370,409,485],psfking:[141,402,485],psfmap:[97,98,99,102,103,104,133,134,140,141,143,148,155,162,171,361,362,370,390,393,394,396,397,409,424,445,456,479,485],psfnd:447,psr:[441,444,465],publicli:[455,457,458],publish:[11,366,379,420,456],pull:[350,353,354,357,358,359,360,361,362,363,369,374,375,379,387],puls:216,pulsar:[30,31,32,35,39,42,50,54,79,359,369,390,392,411,414,426,431,442,452,460,469,470,475,476,477,479,487,491,535],pulsar_analysi:[369,441,442],pulsat:239,pulse_stat:441,punch:413,pure:[349,366,368,369,488],purpl:492,purpos:[28,29,30,31,32,35,36,37,39,40,302,324,353,355,361,364,368,372,374,375,408,424,445,451,452,483],push:[349,352,378,411],put:[349,350,352,354,356,357,360,369,378,379,385,391,423,432,450,456,538],pwbpl:372,pwd:[352,381,383],pwl2:452,pwl:[19,20,26,113,194,196,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,256,360,372,377,418,432,452,477,494,495,496,497,499,500,501,502,504,506],pwl_decai:432,pwl_norm:[372,452,518],pwn:[43,444,465,472],pwne:431,py310:352,py35:407,py:[16,80,349,350,356,363,366,368,370,378,379,385,390,392,393,401,406,410,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,461,462,463,464,465,466,479,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,538],pycharm:391,pydant:[16,80,348,394,413],pydantic_cor:[16,80],pydanticundefin:[16,80],pydata:402,pyfact:[388,406],pyflak:402,pyjok:348,pymc:367,pymotw:538,pypi:[366,376,378,379,381,382],pyplot:[19,20,26,64,65,79,117,136,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,337,342,385,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,471,472,473,479,481,482,483,485,488,495,497,501,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531],pyproject:397,pyregion:363,pytest:[349,350,352,379,408],python3:[314,382,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,510,513,526],python:[11,16,80,126,278,318,348,352,353,354,358,359,361,362,363,365,366,367,368,369,370,375,376,379,380,381,382,383,384,386,388,389,390,392,393,400,402,405,406,407,408,409,410,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,467,478,479,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,536,538],python_execut:[416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],python_vers:[416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],pytorch:367,pyx:[352,379],pyyaml:[348,366,389,393],q5ibmrui:428,q:[26,79,83,86,344,443],qtabl:[83,86,364],quadrat:[449,458,465,541],qualiti:[184,369,408,409,414,453,464,479,536,543],quantifi:[431,437],quantiti:[13,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,45,46,47,50,51,52,53,54,69,71,72,76,79,82,83,84,86,89,91,95,97,98,99,100,102,103,104,105,106,107,109,111,112,113,114,115,116,118,119,120,121,122,123,124,126,127,128,129,130,131,132,133,135,136,137,139,142,143,144,145,146,147,148,150,159,160,161,163,167,168,169,170,173,174,175,176,178,179,180,183,184,185,186,187,188,189,190,193,195,197,198,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,250,251,252,253,254,258,262,263,266,267,268,269,278,280,282,284,285,290,308,310,311,320,324,349,350,355,358,360,363,364,365,367,372,373,376,377,391,393,397,400,401,409,410,411,416,424,432,433,434,437,444,445,447,448,449,452,455,457,458,465,471,472,473,475,479,492,517,526,528,537,540,542],quantity_support:[447,495],quasar:122,quentin:[367,371,372,392,393,394,395,396,397,400,402,403,411,412,413,414],queri:[365,405,444],question:[317,352,354,356,357,358,360,361,362,363,366,368,373,384,389,390,408,409,410,430,465,479,480,538],questionnair:[356,408],quetin:394,quick:[79,84,97,99,103,104,129,130,132,133,134,135,136,137,142,143,144,145,146,148,349,352,369,379,380,424,425,428,430,432,440,445,447,451,455,457,458,460,465,467,476],quickest:350,quickli:[349,350,352,354,365,366,369,375,379,407,420,428,437,457,483,538],quicklook:79,quickplot:176,quicksort:[83,86],quickstart:[386,421,463],quiescent:504,quit:[83,86,349,377,432],quival:360,quot:[71,256,349,350,443],r68:[79,105,136,145,148],r70:[65,444],r:[17,18,21,22,24,25,26,27,28,30,35,36,39,40,51,54,82,83,86,137,172,185,279,349,350,374,379,421,429,433,446,448,463,469,484,488,495,496,497,501,504],r_0:[30,33,38,48,204,215,237,451,495,497,501],r_1:[39,48],r_:[17,18,21,22,24,25,27,28,35,36,39,40,50,52,53,237,238,443,497,500,501],r_eval:215,r_exp:[36,48],r_in:[44,150,160,237,426,489],r_m:497,r_out:44,r_out_max:150,r_out_pwn:43,r_sun:38,ra:[65,79,81,83,84,86,89,126,158,349,350,362,365,416,420,422,424,426,430,433,438,439,441,444,448,450,455,456,457,458,464,465,467,479,483,542],ra_pnt:458,ra_tru:[349,362],rad:[33,79,84,97,99,103,104,105,106,136,142,144,145,146,147,148,158,171,239,365,402,414,422,445,447,448,456,484,485,488,531],rad_axi:[97,99,103,104,106,142,145,148,445,447,448,479],rad_di:[45,469],rad_index:142,rad_max:[78,79,83,84,141,147,164,402,411,413,414,422],rad_max_2d:[83,147,157,162,164,422],radec:[79,89,129,130,131,132,135,136,137,138,139,142,144,146,147,349,350,447,449,465],radecsi:502,radesysa:502,radi:[226,514],radial:[28,30,35,36,39,40,45,117,172,176,304,349,360,368,373,390,405,407,432,434,448,455,467,469,485,488],radian:[17,18,21,22,24,25,27,181,199,200,204,212,215,227,229,237,238,240,242,248,252],radiat:[205,479,500,501,514],radiative_model:[226,514],radii:[27,443,456,496],radio:[122,363,449],radiobutton:[428,436,449,463,464],radiu:[16,17,18,21,22,24,25,27,33,34,38,43,44,50,51,52,53,54,70,78,79,86,91,97,99,103,104,111,115,116,136,142,144,145,146,148,150,158,160,176,186,188,189,203,204,212,215,225,227,229,237,238,240,242,248,250,252,310,350,363,365,372,373,390,399,400,404,414,416,417,420,421,423,424,425,426,428,430,432,433,438,439,441,443,445,447,448,450,451,452,453,455,463,464,465,472,473,486,488,489,492,495,496,497,500,501],radius_inn:[52,53],radius_max:[310,434],radius_min:310,radius_reverse_shock:[50,53,472],radmax2d:[79,84,141,164,400,422],radmax:[402,403,414],rai:[11,19,20,26,52,53,57,59,62,64,79,88,111,114,115,118,120,121,122,151,205,255,256,268,269,298,299,355,360,361,363,367,378,379,381,385,386,391,407,409,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,444,445,446,448,449,450,451,452,453,455,456,457,458,463,464,465,467,469,470,474,475,476,479,482,484,486,488,489,504,535,536,537,538,539,540,543],rais:[16,26,28,29,30,31,32,35,36,37,39,40,70,80,82,83,86,87,95,177,182,203,205,225,248,249,250,252,278,327,349,363,372,373,376,377,394,411,414,433],raise_error:[16,80],raj2000:[444,465],ran:455,random:[6,33,42,45,46,47,83,86,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,301,302,303,304,305,306,307,308,352,361,362,365,392,404,408,432,452,479,539,540,542],random_se:361,random_st:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,301,302,305,306,307,308,349,362,423,432,433],randomli:[46,349],randomnumb:305,randomst:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,302,305,306,307,308,349],rang:[17,18,19,20,21,22,24,25,26,27,65,69,71,72,76,79,83,86,87,95,96,97,99,103,104,114,132,145,147,148,161,173,174,177,179,180,183,184,186,193,195,197,198,201,202,204,205,207,208,209,210,213,214,216,217,218,219,220,222,225,226,228,230,231,232,233,236,239,241,243,244,245,246,249,250,251,253,254,258,303,305,306,307,342,349,355,361,362,364,373,391,396,397,400,408,409,411,417,420,422,423,425,428,429,431,433,437,439,440,441,444,445,446,447,449,450,452,453,456,457,463,464,465,475,477,479,497,507,536,540],rangl:19,rapid:[122,268,355,358,373,374],rare:[348,349,368,449],raster:[90,176],rate:[44,45,79,84,129,130,161,168,308,362,385,409,420,422,441,448,455,456,458,469,482,537],rather:[107,111,114,118,121,354,367,370,408,411,413,417,446,449,465,475,496,540],ratio:[99,104,150,174,175,176,263,275,373,416,441,455,489,537,539,540,541,543],ravel:[174,432],raw:[112,161,465],rc1:378,rc:[175,176,178,184,187,188,346,449],rc_context:[175,176,178,184,187,188,449],rc_param:[175,176,178,184,187,188,449],rcparam:346,rdbu:463,rdbu_r:[97,99,103,104],re:[83,86,91,113,114,119,152,175,176,178,184,187,188,192,342,349,350,352,354,356,357,363,364,365,367,370,371,372,373,384,388,400,402,409,418,420,421,426,428,429,430,440,446,447,451,453,456,463,465,477,479,499,538],reach:[53,120,189,354,359,362,452],reactiv:411,read:[15,16,79,81,82,83,84,86,89,95,96,97,99,100,103,104,107,111,112,113,115,117,121,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,157,175,176,178,182,183,184,187,188,203,205,217,225,251,252,253,257,260,316,335,337,342,344,349,350,352,354,359,360,361,362,365,369,371,373,375,376,377,381,383,394,397,400,408,409,411,414,420,421,422,426,428,431,432,437,445,446,447,452,455,456,457,460,463,465,476,477,479,481,482,483,485,502,532,533,538,541],read_arf:100,read_bkg:100,read_builtin:[205,504],read_covari:[203,225],read_dataset:15,read_lazi:402,read_model:15,read_pha:100,read_rmf:100,read_xspec_model:253,readabl:[330,360,402,421,463],reader:[376,416,423,425,428,430,433,436,440,455],readi:[359,376,537],readili:369,readm:[352,375],readthedoc:[13,114,168,183,192,253,352,369,391,406,446,447,455,476,490,492],real:[51,349,352,379,423,424,426,433,446,450,475],realis:[349,354,363,375],realist:377,realiz:[355,537],realli:[349,356,363,366,423,436,446],rearrang:369,reason:[28,29,30,31,32,35,36,37,39,40,349,354,355,356,357,360,361,362,364,366,368,370,375,408,432,446,457,475,538],reassign:[19,20,26,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254],rebas:[349,363],rebin:[364,402,437,445],rebuild:[16,80,429],recarrai:[83,86,136,146],receiv:[367,369,370,372,374],recent:[28,29,30,31,32,35,36,37,39,40,83,86,359,363,364,365,366,369,382,389,403,409,429,455,457],recip:[351,365,386,400,441,480,540],reco:[97,99,103,104,132,165,349,355,364,373,410,411,416,445,448,457,537],reco_exposur:111,reco_psf:[97,99,103,104,106,448,457],recogn:[416,423,425,428,430,432,436,440,455],recognis:[360,538],recognit:375,recommend:[87,95,162,203,225,261,290,291,348,349,350,352,356,358,366,375,379,380,382,385,392,409,422,431,445,446,448,452,456,479,486,491,492,538,539,542],recomput:[113,373],recompute_ul:113,recon_vers:[456,465],reconstruct:[79,97,98,99,102,103,104,105,106,111,120,121,125,132,133,134,137,147,148,161,168,349,355,360,362,397,412,416,417,420,423,425,426,428,432,436,440,445,448,450,457,475,477,483,484,485,492,537],recopsfmap:[141,411,414],record:[79,84,349,354,355,375],recov:365,rectangl:[200,204,212,215,227,237,238,242,248,252,311,363,434,488],rectangleskyregion:[186,199,200,252,310,311,363,417,443,450,488,492],rectangular:[434,488,492],recurr:364,recurs:[317,376],red:[96,268,339,416,423,426,428,431,443,453,495,496],redesign:358,redistribut:483,redo:441,redshift:[19,20,205,372,465,504],reduc:[6,11,15,95,97,99,103,104,143,145,148,153,163,175,176,178,180,184,187,188,355,356,358,360,361,365,368,370,375,376,381,388,393,400,409,417,418,421,422,423,428,429,432,436,438,439,440,450,453,454,457,460,475,479,484,489,491,492,496,497,536,537,538],reduce_data:365,reduce_over_ax:[175,176,178,184,187,188,425,448,457],reduct:[6,11,151,355,361,362,365,369,370,371,376,381,394,396,414,426,430,431,434,441,445,447,450,451,453,454,460,475,476,479,486,488,489,491,536,537],ref:[79,89,97,103,111,115,121,174,183,186,203,225,373,430,434,444,445,447,449,456,465,492,526,527,528,529,530,531,537,538],ref_templ:[16,80],refactor:[349,361,363,364,365,372,390,391,392,394,395,396,397,400,402,404,406,408],refer:[16,17,18,19,20,21,22,23,24,25,26,27,28,30,31,32,33,34,35,36,37,38,39,40,50,52,53,57,59,62,65,67,79,80,81,82,83,84,86,89,96,97,99,100,103,104,105,106,112,113,114,116,121,122,137,151,152,155,158,159,162,163,164,167,168,170,185,186,187,188,192,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,256,264,268,269,270,275,305,306,330,331,332,333,349,350,355,357,360,361,363,365,367,372,373,374,375,376,379,386,400,407,408,417,418,420,421,422,423,425,428,429,430,431,432,433,436,437,438,439,440,441,444,445,446,448,449,451,452,455,456,457,463,464,465,468,475,477,490,491,492,494,495,496,497,498,499,500,501,502,504,506,508,509,510,512,513,515,516,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,540,542],referenc:[349,537],reference_flux:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],reference_map:449,reference_model:[112,113,416,429],reference_model_default:[112,113],reference_spectral_model:[112,113],reference_tim:[82,84,97,99,103,104,185,202,210,214,216,217,218,233,239,251,254,413,414,433,440,448,449,533],reflect:[153,157,158,159,163,172,358,363,365,368,370,381,393,400,402,405,406,409,417,420,421,422,430,439,450,487,537],reflected_bkg_mak:448,reflectedbgestim:365,reflectedregionsbackgroundmak:[153,158,394,417,420,422,430,439,448],reflectedregionsfind:[157,163,392,488],refpix:[186,187,188],refresh:[83,86],refus:349,reg:[97,99,103,104,450,452],reg_dataset:445,regard:[373,376,420],regardless:[83,86],regeard:[412,413,414],regi:[355,360,361,365],region:[6,27,79,86,95,97,99,101,103,104,115,117,120,122,133,134,140,145,148,150,151,152,155,157,158,159,160,161,162,163,164,165,166,168,169,172,174,175,176,178,183,184,186,187,188,190,192,199,200,203,204,212,215,225,227,229,237,238,240,242,248,250,252,253,255,263,275,309,310,311,312,313,345,346,348,350,353,355,356,364,365,366,368,371,373,381,392,393,394,396,400,402,403,405,406,408,409,411,413,414,421,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,449,452,455,456,457,458,463,464,465,474,475,476,477,479,486,487,489,490,491,495,496,514,536,537,539,540,541],region_coord:183,region_ev:441,region_find:[157,422],region_io:183,region_map:[184,188,492],region_map_1:492,region_map_2:492,region_mask:[79,174,186,363,420,426,430,445,448,450,464,486,488,489],region_nd_map:184,region_new:312,region_pix:452,region_weight:186,regionfind:[158,159,163],regiongeom:[97,99,103,104,112,115,155,162,164,165,166,168,169,184,200,204,212,215,227,237,238,240,242,248,252,363,364,371,381,396,397,400,416,417,420,422,423,430,434,439,440,441,444,445,448,456,465,475,488,491],regionndmap:[26,100,103,104,120,156,157,162,164,175,176,178,183,187,188,200,204,212,215,217,227,237,238,242,248,249,252,346,363,381,396,397,400,403,411,414,433,456,475,533],regions_ds9:450,regionsfind:[157,158,163,402],regist:452,registri:[55,93,108,141,153,221,223,234,235,247,370,377,393,396,397,400,409,444,452],regress:352,regul:375,regular:[28,29,30,31,32,35,36,37,39,40,174,182,186,358,377,402,414,436,449,450],regulargridinterpol:[253,290,349],regularis:377,regularli:[377,458],reichardt:404,reimplement:360,rej_sampl:362,reject:[353,354,362],rel:[28,29,30,31,32,35,36,37,39,40,65,78,83,84,86,99,100,104,121,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,183,184,185,186,187,188,237,256,267,308,364,375,400,437,440,457,501,540],rel_reduction_of_f_:446,relat:[11,13,65,79,81,191,268,355,357,360,362,363,366,368,369,370,375,379,396,397,409,432,445,452,455,469,535,540],relative_variability_amplitud:437,relative_variability_error:437,relative_variability_signific:437,relativist:514,releas:[11,51,63,90,351,353,354,356,357,363,366,367,376,380,382,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,417,420,421,429,438,439,455,457,458,463,464,467,479,481,482,483,485],relev:[112,262,263,332,349,355,364,369,373,378,420,421,424,438,439,440,451,453,455,457,458,463,464,475,476,542],reli:[112,349,354,355,359,360,364,368,373,374,392,397,400,411,418,428,450,467,540],reliabl:[352,382,426,446,450,539],remain:[28,29,30,31,32,35,36,37,39,40,83,86,95,354,355,356,357,362,366,375,390,409,422,451,485],remark:422,rememb:[349,363,446,460,538],remi:[371,372,392,393,394,395,396,397,400,411,412,413,414],remind:[375,430,542],remnant:[28,52,417,431,452,470],remot:352,remov:[13,83,86,87,91,95,114,115,118,145,148,160,173,174,179,182,183,186,188,193,195,225,277,352,356,357,359,360,363,364,365,366,367,368,369,370,371,372,380,389,390,391,392,393,394,395,396,397,400,401,402,404,405,406,407,408,409,412,413,414,420,426,441,445,450,453,455,468,479,488],remove_column:[83,86],remove_indic:[83,86],remove_row:[83,86],renam:[28,29,30,31,32,35,36,37,39,40,83,86,113,173,174,175,176,178,179,180,183,184,186,187,188,352,359,360,368,369,372,388,391,393,394,395,396,400,410,411,414,538],rename_ax:[173,174,175,176,178,179,183,184,186,187,188,411],rename_column:[83,86,113],rename_dupl:[83,86],render:[28,29,30,31,32,35,36,37,39,40,83,86,327,349,357,408],renorm:[426,486],renormalis:160,reoptim:[114,118,119,192,390,434,438,446,463],reorder_ax:[175,176,178,184,187,188,414],reorgan:400,reorganis:369,repeat:[350,428,457],repl:349,replac:[15,16,80,83,86,95,97,99,103,104,133,134,140,145,173,174,176,179,183,184,186,188,250,260,349,359,360,363,367,370,376,382,391,392,394,396,397,414,432,441],replace_axi:[173,174,183,186],replace_column:[83,86],repo:[350,357,378,379,388,401],report:[83,352,365,378,379,388,402,403,408],repositori:[83,86,349,352,354,357,359,375,378,400,409,432,458],repres:[13,16,19,20,28,29,30,31,32,35,36,37,39,40,47,57,58,59,60,61,62,63,64,65,68,69,70,71,72,73,74,75,76,80,83,86,97,99,103,104,174,176,178,180,181,183,185,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,240,241,244,245,246,251,252,278,286,296,349,360,361,362,363,367,370,371,372,373,390,414,433,434,444,446,448,449,450,452,456,465,474,475,477,481,482,483,485,491,535,536,537,542],represent:[16,19,20,26,79,80,82,83,86,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,363,376,390,392,414,418,444,449,452,491],reprocess:355,reproduc:[89,96,113,350,365,366,367,369,375,376,380,382,409,448,467],reproject:[161,175,176,178,184,187,188,345,349,355,363,366,373,394,401,409,411,449,450],reproject_by_imag:[175,176,178,184,187,188],reproject_to_geom:[175,176,178,184,187,188,411],request:[81,112,113,350,353,354,356,357,358,359,360,361,363,369,373,374,375,377,379,387,432,450,467,477],requir:[16,28,29,30,31,32,35,36,37,39,40,43,44,78,79,80,81,83,84,86,90,97,99,103,104,113,116,121,129,130,136,144,152,175,176,177,178,179,180,183,184,185,187,188,189,278,324,328,329,347,354,355,356,358,359,360,361,362,363,364,365,371,372,373,374,375,377,378,380,382,388,393,394,395,396,401,402,404,405,406,407,410,411,412,417,422,426,429,437,439,440,441,445,447,449,450,452,455,464,477,479,492],require_ev:78,required_ax:[129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,447],required_hdu:403,required_irf:[16,78,421,422,425,426,428,463],required_nam:[177,179,180,185],required_paramet:[136,144,146],rerun:364,resampl:[97,99,103,104,128,133,173,174,175,176,177,178,179,183,184,186,187,188,344,400,402,479],resample_axi:[173,174,175,176,178,183,184,186,187,188,344,397],resample_energy_axi:[97,99,103,104,133,397,402,445],resample_energy_edg:[420,479],resampled_map:[175,176,178,184,187,188],rescal:448,research:[365,375],reset:[28,29,30,31,32,35,36,37,39,40,97,99,103,104,211,250,350,397],reset_data_cach:[97,99,103,104],reset_to_default:211,reshap:[175,176,178,184,187,188,416,433,447,449],resid:[371,452],residu:[70,96,97,99,103,104,152,360,361,365,392,397,403,410,426,445,446,456,475,488,537],resolut:[52,132,133,137,174,186,358,360,362,363,408,414,444,456],resolv:[16,80,350,352,359,363,364,371,372,390,409],resort:425,resourc:[408,460],respect:[15,16,28,29,30,31,32,35,36,37,39,40,47,79,80,83,86,100,113,122,174,176,186,188,261,359,364,375,377,397,424,426,440,449,450,457,477,492,541],respond:375,respons:[6,102,132,133,134,137,139,140,158,349,355,356,358,360,361,362,364,365,373,375,381,407,408,409,410,417,420,421,422,423,436,440,447,448,451,455,458,460,463,464,475,476,481,483,485,536,537],rest:[26,352,366,368,444,474],restor:[19,20,26,28,29,30,31,32,35,36,37,39,40,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,451],restore_statu:[194,196,203,225],restore_valu:[194,196,203,225],restrict:[83,86,363,428,445,450],restructur:[350,364,365,366,368,370,376,379,394,400,401,402,403,405,414],result2:451,result:[46,71,82,83,86,87,96,97,99,103,104,107,109,111,112,113,114,115,117,118,119,121,126,137,143,145,148,161,165,166,171,173,174,175,176,178,180,183,184,186,187,188,192,203,225,252,260,278,342,348,349,350,352,354,356,358,359,360,361,362,365,367,368,371,375,377,382,385,392,400,402,403,408,410,414,418,420,422,423,428,430,432,433,436,437,439,440,441,444,445,446,449,450,453,456,457,458,463,464,467,474,477,492,526,537,539,540],result_ecpl:418,result_joint:[417,420,428],result_list:342,result_log_parabola:418,result_minuit:446,result_pwl:418,result_scipi:446,result_stack:420,results_joint:429,results_simplex:446,results_t:431,retain:[444,492],retriev:[83,86,373,375,417,418,420,449,452,453,457,464,476,491,492],return_delta:308,return_diff:308,return_unit:[28,29,30,31,32,35,36,37,39,40],reus:[365,397],reval:497,revers:[28,29,30,31,32,35,36,37,39,40,50,53,83,86,87,95,179,225,449,472],review:[352,357,358,359,362,363,365,366,368,369,370,372,373,375,377,410,411,491],revis:369,revisit:205,rework:395,rewrit:[355,358,365,395,405,406,408,409,410,538],rewritten:[407,410],rf:443,rgb:[344,346,414,416,420],rglob:[78,432,455],rhe:164,rho:[17,18,21,22,23,24,25,27],rho_:[17,21,22,24,25,27,52,53],rich:[349,365],rid:355,right:[21,24,25,27,28,29,30,31,32,35,36,37,39,40,50,51,52,53,83,86,97,103,112,113,121,135,209,213,232,244,264,270,337,349,363,372,375,384,424,430,432,437,438,440,455,495,496,497,504,505,508,509,511,512,516,519,520,521,522,526,527,528,530,538,539,540,541],rightarrow:[501,541],rigid:354,ring2dkernel:[150,160],ring:[99,111,150,153,160,174,175,176,355,358,365,368,381,390,394,396,406,407,408,409,427,431,450,460,475,478,487,490,491,537],ring_background:[426,427],ring_bkg_mak:489,ring_mak:426,ringbackgroundestim:[355,408],ringbackgroundmak:[150,153,394,426,448,489],rise:[122,216,437,528],risk:[28,29,30,31,32,35,36,37,39,40,352,375],rm:[132,133,137,372,422,446,481,483,484,485,497,526,527,528,529,530,531],rmax:[17,18,21,22,24,25,27],rmf:[100,101,104,132,133,134,406,420],rmf_ob:100,rmffile:100,rmin:[17,18,21,22,24,25,27],rng:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,300,302,305,306,307,308,349],roadmap:[353,356,365,374,389,410],roberta:[408,409],robust:[349,409],roi:[65,365,444,458,537],roi_max:365,role:[408,448],rolf:388,rolk:537,rolke2005:[537,540],roll:456,room:359,root:[19,20,26,112,121,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,271,274,349,367,400,424,467,477,538,540],rosillo:411,rotang:433,rotat:[51,54,158,159,163,168,204,212,215,433,488,495,496],rough:[70,365],roughli:[107,352,357,363,365,368,369,407,426],round:[83,86,175,176,178,180,184,187,188,420,491],round_to_edg:[173,174,183,186],round_trip:[16,80],routin:388,row:[56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,83,86,126,132,286,320,343,364,373,376,411,414,423,433,434,444,446,449,455,457,458,465,474],row_idx:[65,83],row_index:[56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,444],row_label:343,row_specifi:[79,83,86],royalblu:441,rpovid:364,rs:53,rspec:[65,444],rst:[352,354,369,374,375,378,379,395,400],rtd:409,rtol:[121,324,349],rtol_ax:[129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,183,184,186,187,188],rtol_wc:186,ruben:408,ruiz:[357,365,369,389,390,391,392,393,394,395,396,397,400,402,408,409,410],rule:[83,86,240,258,289,375,449,491],run:[16,78,79,80,84,88,96,98,102,107,109,110,111,114,115,117,118,119,120,121,150,151,152,154,155,156,157,158,159,160,161,162,163,173,174,183,186,192,298,299,323,342,348,349,350,356,357,359,362,364,365,366,369,371,373,377,378,379,380,385,391,392,395,396,407,409,410,414,416,417,418,423,424,425,426,428,429,430,432,436,437,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,464,465,475,476,477,479,484,486,488,489,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],run_fit:[15,421,425,463],run_id:[456,465],run_multiprocess:479,runner:[16,314,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,504,510,513,526,532,533],runtim:[358,376],runtimewarn:[422,432,458,526],rx:417,rxj1713_2016_250gev:502,rxj:417,s180:268,s2:251,s3:251,s:[16,19,20,28,29,30,31,32,35,36,37,39,40,41,51,52,53,64,65,78,79,80,82,83,86,87,90,95,96,97,98,99,102,103,104,113,118,121,126,129,130,131,135,155,182,188,197,201,202,207,209,210,213,214,216,217,218,220,223,225,226,230,232,233,239,240,241,244,245,246,251,254,255,256,260,269,286,334,338,339,346,349,350,352,354,359,360,361,363,365,366,367,368,369,372,375,378,379,381,382,384,385,386,387,416,417,418,420,422,423,424,425,426,428,429,430,431,432,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,459,460,462,464,465,471,472,473,474,476,477,479,484,494,495,496,497,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,537,538,539,540,542],s_0:479,s_1:479,safari:[83,86],safe:[94,96,97,99,103,104,133,134,140,145,148,153,161,349,361,363,375,394,396,397,411,412,413,414,417,420,445,450,464,475,536],safe_mask:[16,97,103,421,425,426,428,463],safe_mask_mak:[151,417,441,448,486,488,489],safe_mask_mask:[420,422,430,439,448],safemask:457,safemask_mak:457,safemaskconfig:16,safemaskmak:[151,153,370,394,395,400,402,403,417,420,422,430,436,439,441,448,450,457,463,464,486,487,488,489],safeti:375,sagittariu:[33,38],saha:408,sai:[71,354,368,538],said:[349,354,356,457,458,538],sake:[432,446],saldana21:504,saldana:[205,206,414,504],same:[27,28,29,30,31,32,35,36,37,39,40,78,79,83,86,90,95,97,99,100,103,104,111,126,127,136,137,143,144,145,146,148,149,151,172,173,174,175,176,178,179,182,183,184,186,187,188,256,268,342,349,352,357,359,361,363,364,368,369,370,371,372,373,374,375,377,379,381,382,392,393,397,400,414,418,421,422,423,428,429,432,436,438,441,444,445,449,450,451,452,453,456,457,460,463,475,476,477,483,491,492,538],sampl:[47,88,98,102,121,134,136,142,144,145,146,148,175,176,178,184,186,187,188,202,210,214,216,217,218,233,239,251,254,261,291,300,305,306,307,308,353,361,363,364,367,369,381,388,390,392,393,396,402,409,411,414,422,435,437,445,446,460,475,476,479,484,487,491],sample_axi:300,sample_background:[98,102,394],sample_coord:[134,145,148,175,176,178,184,187,188,394,396,411],sample_edisp:[98,102],sample_powerlaw:368,sample_psf:[98,102],sample_sourc:[98,102],sample_spher:[404,542],sample_tim:[202,210,214,216,217,218,233,239,251,254,400,411],sampler:[98,300,358,362,396,400,432],sampler_kwarg:88,saniti:408,satisfi:[128,152,174,175,176,278,451,479],save:[15,19,20,26,79,95,121,190,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,349,357,365,373,377,428,429,432,446,450,451,457,476],savefig:[327,385],savez:190,saw:386,sbpl:[241,372,452],sc:[83,86],scalar:[83,86,143,174,175,176,178,184,187,188,278,368,402,413,449,491],scale10:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,377,514],scale:[17,18,19,20,21,22,23,24,25,26,27,29,52,53,65,82,84,91,95,99,104,107,114,115,118,136,152,180,184,185,186,188,193,195,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,251,252,253,259,261,277,290,291,292,308,330,331,332,342,350,358,363,364,367,372,395,400,401,409,412,413,414,421,424,433,434,438,439,440,443,444,447,448,449,452,453,455,463,465,467,504,525,526,527,528,529,530,531,532,533],scale_method:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,377,514],scale_to_local_dens:[17,18,21,22,24,25,27,443],scaled_featur:277,scaled_features_irf:453,scaledregulargridinterpol:[66,205,395,410],scalespectralmodel:[114,115,118,235,372,452],scan:[19,20,90,112,113,114,115,118,119,192,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,364,373,400,434,477,479],scan_max:[19,20,114,118,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,446],scan_min:[19,20,114,118,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,446],scan_n_sigma:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,446],scan_n_valu:[19,20,114,118,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,446],scan_valu:[19,20,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,434,446],scargl:[364,408,437],scatter:[203,225,370,424,430,495,496],scenario:[83,86,354,361,371,381,449,452,468,539],scengin:[83,86],schedul:358,schema:[15,16,80,365,368],schema_gener:[16,80],schema_json:[16,80],scheme:[16,80,100,101,174,175,176,185,217,349,355,359,361,364,371,372,373,374,376,393,400,411,433,447,449,452,479,484,490,491,493],school:375,scienc:[175,176,178,187,188,356,358,362,365,366,369,375,386,408,409,423,429,440,449,452,453,455,456,460,467,479,512,537,538],scientif:[350,356,372,375,382],scikit:[126,349,363,366,369,409,450],scipi:[19,20,26,28,29,30,31,32,35,36,37,39,40,188,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,276,290,329,342,348,349,352,358,363,366,367,369,375,386,390,391,392,393,405,406,407,410,412,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,535,540],scipy_mvn:191,scipy_opt:446,scitool:517,scope:[362,363,364,365,368,376,468],scratch:[135,349,359,363,379,428,450],screen:[83,86,449,465],script:[6,83,86,113,314,315,316,317,318,350,355,356,358,360,363,365,368,369,375,378,379,389,390,391,392,400,401,405,408,409,410,411,420,424,426,428,429,430,431,432,434,439,440,443,444,445,446,448,461,463,478,479,538],scriptabl:376,scutum:[33,38],sdist:379,seaborn:479,search:[83,86,262,263,314,349,350,385,408,409,421,424,430,431,443,444,453,463,464,465,467,479,538],season:369,sebastian:400,sec:[54,79,89,95,118,308],second:[42,58,79,82,83,84,86,132,251,308,311,326,330,333,338,350,357,359,361,363,367,373,375,379,394,413,420,421,424,426,428,430,431,432,433,434,439,440,443,445,446,448,449,455,460,463,474,539,542],secpl:[244,245,246,372,452],section:[19,83,86,264,270,349,350,352,354,363,365,366,368,372,375,379,380,397,410,423,428,432,433,436,440,444,446,450,451,452,465,467,468,479,492,536,538,542],secur:450,sed:[108,111,112,113,115,118,121,184,205,348,365,367,373,381,388,407,418,434,444,445,463,465,477],sed_fit:[418,419],sed_fitting_gammacat_fermi:369,sed_typ:[19,20,26,112,113,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,400,416,418,420,421,422,429,430,434,438,440,444,465,477,479,514],sed_type_init:[69,71,72,74,112,113],sed_type_plot_default:[112,113],sedov:[52,53],sedov_taylor_begin:[52,53,473],sedov_taylor_end:[52,53,473],see:[11,13,19,20,26,28,29,30,31,32,35,36,37,39,40,50,64,78,79,81,83,85,86,90,94,95,96,97,99,103,104,107,111,113,114,115,118,120,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,151,158,160,168,173,174,176,178,180,181,183,186,188,192,193,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,250,251,252,253,257,264,270,272,273,275,278,286,302,317,339,340,348,349,350,352,353,354,356,357,358,359,362,363,364,365,366,367,369,370,374,375,376,377,378,379,380,381,382,384,385,387,389,390,391,392,393,394,395,396,397,398,399,405,406,407,408,409,410,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,434,436,437,438,439,440,443,444,445,446,447,448,449,450,451,452,453,455,457,460,463,465,467,475,476,479,489,490,492,517,521,522,535,537,538,539,540,542],seed:[33,42,45,46,47,97,98,99,102,103,104,134,145,148,175,176,178,184,187,188,202,210,214,216,217,218,226,233,239,251,254,300,301,302,305,306,307,308,349,408,432,514],seed_photon_field:[226,514],seem:[349,356,357,360,366,370,467],seen:[349,363,370,417,424,429,439,449,452,456],select:[16,78,79,82,83,84,85,86,87,95,97,99,103,104,155,162,175,176,177,178,180,185,187,188,194,196,203,225,240,250,260,345,346,359,361,362,363,364,365,369,371,373,376,381,383,389,392,400,404,416,420,422,423,425,426,428,429,431,432,433,436,440,441,445,446,448,449,450,453,455,457,458,460,465,477,479,483,484,488,536,538],select_energi:[79,476],select_from_geom:[203,225],select_map_mask:390,select_mask:[79,203,225,400,451],select_nested_model:414,select_obs_id:[86,430],select_observ:[86,365,439,453,464,479],select_offset:[79,432,458,476],select_paramet:[79,85,441,476],select_phas:359,select_rad_max:79,select_rang:86,select_region:[79,85,203,225,363,392,400,432,433,441,451,465,476],select_row_subset:79,select_sky_box:363,select_sky_circl:[86,363],select_tim:[79,82,84,87,95,359,373,394,433,439,476],select_time_rang:86,selected_energi:476,selected_ev:79,selected_id:476,selected_obs_t:[86,453,464],selected_offset:476,selected_region:476,selected_tim:476,selection_al:[107,121],selection_mask:[203,225,451],selection_opt:[16,107,109,110,111,114,115,117,118,119,120,121,400,420,421,425,426,428,429,430,434,438,439,440,441,450,457,463],selection_vari:86,selectionconfig:16,selectionslid:[428,436,449,463,464],self:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,79,80,82,83,86,112,113,183,184,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,240,241,243,244,245,246,249,253,349,350,360,361,363,366,372,373,376,377,396,449,452],semant:[363,374],semi:204,semiaxi:[204,212,215,495,496,497],semilog:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,416,433],semimajor:444,semiminor:444,semver:374,send:378,sens:[349,356,359,363,365,368,369,370,426],sensibl:453,sensit:[108,111,112,113,120,256,362,369,395,397,407,408,414,419,436,455,460,467,475,484,487,491],sensitivity_estim:416,sensitivity_t:416,sensitivityestim:[108,389,395,416],sent:354,sentenc:[354,369,375],sep:[183,358,366,372,387,452],separ:[17,18,21,22,24,25,27,28,29,30,31,32,35,36,37,39,40,65,69,70,71,72,73,74,75,76,79,86,174,183,186,338,349,350,355,356,357,358,361,362,363,364,365,368,369,370,371,396,400,406,408,409,413,414,423,426,428,430,436,440,444,451,452,453,468,476,484,485,495,496,500,501,514,537],septemb:[358,366,368,369,374],sequenc:[83,86,87,95,97,103,129,130,131,132,134,135,136,137,139,142,144,145,146,147,148,173,174,175,176,178,179,180,181,183,184,185,186,187,188,194,203,225,278,379],sequenti:[355,420,464],seri:[83,86,113,267,308,358,363,364,400,437],serial:[16,80,83,86,94,95,96,97,99,103,104,355,360,364,365,370,373,393,396,400,402,409,411,412,413,414,449,452,467],serialis:[20,97,99,103,104,197,198,201,203,205,207,208,209,211,213,217,219,220,222,224,225,226,228,230,231,232,236,241,243,244,245,246,248,249,250,251,252,253,361,363,365,368,370,371,372,392,394,396,400,405,408,410,411,413,414,463,479,492,533],serializ:[16,80],serialize_method:[83,86],serializiaton:361,serilis:[26,199,200,202,204,210,212,214,215,216,218,227,229,233,237,238,239,240,242,249,252,254],sersic2d:372,sersic:372,sersicspatialmodel:372,serv:[83,86,349,354,361,365,373,379,402,443,483],server:[371,381,383,460],servic:408,session:[365,375,478],set:[15,16,19,20,23,26,28,29,30,31,32,35,36,37,39,40,78,80,83,86,90,96,97,98,99,100,102,103,104,106,109,111,112,113,114,115,117,118,121,132,134,145,148,151,152,155,161,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,229,230,231,232,233,236,237,238,239,241,242,244,245,246,248,251,252,253,260,298,300,349,350,355,358,359,361,362,364,365,366,367,369,373,374,375,376,377,379,381,383,384,396,402,404,406,408,411,414,416,417,420,422,423,424,425,428,430,431,432,433,434,438,439,441,444,445,446,448,450,452,453,455,457,458,460,467,475,476,479,488,490,491,492,514,535,538,541,542],set_by_coord:[175,176,178,184,187,188,449,491],set_by_idx:[175,176,178,184,187,188,449,491],set_by_pix:[175,176,178,184,187,188,491],set_log:16,set_model:[15,371,421,425,438,463],set_models_paramet:371,set_parameter_factor:[194,196],set_parameters_bound:[203,225],set_prior:[225,377],set_prop_cycl:416,set_slice_arg:[28,29,30,31,32,35,36,37,39,40],set_subcovari:191,set_titl:[417,420,424,426,430,441,443,446,447,448,451,488,497,501,504],set_unit:[418,479],set_xlabel:[416,417,420,423,441,446,453],set_xlim:[418,421,429,441,481,504],set_xscal:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],set_xtick:[497,501],set_ylabel:[416,417,420,434,441,443,446,453,504],set_ylim:[416,418,420,421,422,438,441,481,504],set_yscal:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,434,443,481],set_ytick:[497,501],setdefault:182,seterr:349,setlevel:430,setter:[350,377,394,400,445],settl:[375,542],setup:[13,351,352,353,356,361,362,366,369,377,406,410,460,538],setuptool:[401,538],sever:[83,86,157,354,355,356,363,364,365,368,373,376,394,395,396,400,403,412,413,414,423,429,444,455,456,457,479,538,540],seyfert:268,sf:540,sgr:465,shade:[176,184,188,446,536],shall:352,shape:[28,29,30,31,32,35,36,37,39,40,95,96,97,99,103,104,111,112,115,116,121,125,126,127,130,132,135,173,174,175,176,178,179,181,183,184,186,187,188,191,215,261,278,291,307,360,363,367,398,413,418,420,422,425,430,433,434,437,439,444,445,447,448,449,450,452,455,456,465,477,491,492,493,497,501],shape_ax:[174,186],share:[175,176,178,182,184,187,188,349,354,361,364,368,371,382,400,402,414,428,429,450,451,479,538],sharp:[216,339,340,495],she:[359,364],shear:363,sheet:[384,479],shell2:[237,452,493,503],shell2d:52,shell2spatialmodel:[234,238,452,501],shell:[52,53,76,237,238,360,365,372,381,383,452,493,501,503,538],shellspatialmodel:[76,234,237,372,400,452,500],sherpa:[101,104,132,179,180,183,184,192,264,270,348,349,358,366,367,369,370,381,382,383,390,404,405,406,407,409,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,492,512,539],sherpa_opt:446,shift:[28,29,30,31,32,35,36,37,39,40,252,385],shim:356,shini:334,ship:[356,357,366,389,407,423,436,441,452,479],shock:[50,52,53,472],short_observ:439,shortcut:[78,385,402],shorten:400,shorter:[268,349,350,363,369,374,397,423,439,452,538],should:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,79,80,83,86,97,99,102,103,104,105,112,113,114,118,122,123,124,133,134,137,143,145,148,160,165,166,171,173,174,175,176,178,180,182,183,184,186,187,188,193,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,278,324,338,339,340,350,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,369,370,372,374,375,376,378,379,381,383,384,385,390,392,414,422,428,431,432,433,440,441,445,446,447,448,449,450,451,452,455,457,475,477,479,484,491,538,539,541,542],shoulder:255,shouldn:[79,349,352],show:[11,78,83,86,115,116,117,136,155,217,346,349,350,352,361,363,364,368,369,377,379,389,390,394,402,407,408,409,414,416,417,418,420,421,422,423,424,425,426,428,429,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,460,463,464,465,471,472,473,479,481,482,483,485,486,488,490,495,504,536,538,540,543],show_dtyp:[83,86],show_in_brows:[83,86,430],show_in_notebook:[83,86],show_nam:[83,86],show_progress_bar:479,show_row_index:[83,86],show_unit:[83,86],shower:[404,455,484],shown:[19,20,26,79,143,183,184,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,344,349,356,366,367,368,376,377,379,394,396,417,420,428,430,431,432,433,437,440,441,447,448,451,452,453,455,464,476],showwarn:349,si:[79,174,183,186,203,225,255,492],side:[186,188,262,263,349,363],sider:542,sidereal_tim:350,siejkowski:409,sig:[342,539,540,541],sight:467,sigma1:31,sigma2:31,sigma:[19,20,30,32,48,49,111,112,113,114,118,119,121,132,133,137,143,144,145,148,191,192,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,260,262,263,269,372,377,430,431,436,437,438,446,450,452,463,477,483,496,511,527,540],sigma_10tev:[372,452],sigma_1:[31,49,136,447],sigma_1tev:[372,452],sigma_2:[31,49,136,447],sigma_3:[136,447],sigma_:[191,496],sigma_err:431,sigma_gauss:215,sigma_laplac:215,sigma_m:496,sigma_nod:452,sigma_to_t:540,sigmav:467,sign:[193,195,262,263,352,375,396,411,477,540],signal:[79,97,99,102,103,104,160,188,239,262,263,275,373,416,420,421,426,429,438,450,463,467,482,486,488,537,539,540,541],signif_avg:465,signific:[107,111,112,113,120,121,260,262,263,267,339,340,347,354,355,356,357,364,365,369,370,373,375,396,397,405,408,409,414,416,420,421,427,428,429,430,431,437,438,441,444,446,457,460,463,465,475,477,479,484,491,536,537,538],significance_lima:396,significance_map:[426,428],significance_map_off:426,significance_mask:450,significance_mask_inv:450,significancemapestim:396,significantli:[400,432,455,537],signoff:352,silent:411,silicon:[381,382,383],silvia:392,simeq:53,similar:[28,29,30,31,32,35,36,37,39,40,83,86,340,349,352,361,362,363,364,365,368,369,370,373,400,414,422,437,449,453,465,475,483,538],similarli:[355,357,373,376,400,444,446,447,449,450,452,492],simon:[413,414],simpifi:358,simpl:[50,52,126,200,204,212,215,227,237,238,242,248,252,255,349,350,361,362,363,364,365,368,373,376,377,390,400,404,408,409,414,416,417,418,420,421,422,423,425,428,437,441,446,449,450,453,458,463,464,465,469,479,536,537,538],simple_norm:188,simple_rebin_lc:364,simplefilt:479,simpler:[163,357,362,363,371],simplest:[416,420,437],simplex:[192,446],simpli:[28,29,30,31,32,35,36,37,39,40,82,83,86,152,192,194,196,349,363,364,373,411,414,416,417,430,445,450,451,452,465,492,538,540],simplic:[429,432,439,446,452,456],simplif:[360,372,411],simplifi:[121,182,356,358,360,367,373,390,393,394,395,397,400,404,411,418,424,484,541],simu:[436,440],simul:[45,78,79,84,88,97,99,102,103,104,105,134,145,148,308,359,362,365,369,376,377,381,388,392,394,396,402,405,407,408,409,414,419,420,425,428,430,435,441,442,451,455,460,469,475,477,484,487,535,536],simulate_3d:[369,409,435,436],simulate_dataset:[390,394,395],simulate_observ:88,simulated_d:422,simulated_data:88,simulated_model:422,simultan:[377,440,445,452,475],sin:[495,496,497,531],sinc:[16,28,29,30,31,32,35,36,37,39,40,51,79,80,83,84,86,114,115,118,176,186,193,195,324,349,350,355,359,363,365,366,367,368,369,373,375,376,377,379,400,410,411,412,413,414,422,426,428,440,445,451,452,455,457,510,513,539,542],sine:[239,360,493,534],sine_model:531,sinetemporalmodel:[247,452,531],singl:[28,29,30,31,32,35,36,37,39,40,65,78,83,84,85,86,88,90,111,114,115,118,121,133,134,145,147,148,151,155,157,162,165,166,171,173,174,175,176,178,180,183,184,186,187,188,203,225,349,355,356,359,361,362,363,364,365,366,370,371,376,377,381,388,390,395,396,408,414,416,420,422,424,425,426,438,440,444,445,448,449,451,457,458,463,465,475,477,489,491,492,535,537],singleobscubemak:355,singleobsimagemak:355,singleton:302,sinha:[361,364,389,390,391,392,393,394,395,396,397,399,400,402,403,408,409,410,411,412,413,414],sink:366,sinu:[239,452],sinusoid:[239,531],sipocz:[366,390,392,394,396,405,406,407,408,409,410],sit:352,site:[314,379,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,510,513,526,538],situat:[363,364,366,484],six:[368,374],size:[19,20,26,46,47,65,70,76,83,84,86,97,99,103,104,105,106,116,121,129,130,132,133,134,135,136,137,140,142,143,144,145,146,148,150,151,157,158,159,162,163,164,172,174,175,176,178,181,183,184,186,187,188,197,198,200,201,204,205,207,208,209,212,213,215,219,220,222,226,227,228,229,230,231,232,236,237,238,240,241,242,243,244,245,246,248,249,250,251,252,253,300,301,305,306,307,308,337,349,357,360,362,363,381,383,413,416,422,426,428,432,439,441,444,448,449,450,452,455,456,457,458,465,475,490,495,496,542],skeleton:365,sketch:365,skill:[352,385],skimag:409,skip:[78,350,352,361,363,369,407,451],skip_miss:[78,408],sklearn:349,sky:[6,13,41,57,66,68,69,70,71,72,73,74,75,76,79,84,91,97,99,102,103,104,107,126,133,134,145,148,168,174,175,176,178,183,184,186,187,188,203,225,240,252,255,257,280,284,285,309,311,313,336,348,349,350,362,368,381,390,392,406,407,409,420,421,423,424,426,436,440,441,444,449,452,455,456,460,462,463,464,465,467,474,475,476,479,484,485,488,490,492,495,496,500,501,502,536,537],sky_circl:[86,439,453,464],sky_coordin:81,sky_model:[68,69,70,71,72,73,74,75,76,364,438,439,444,451,452,464,506],sky_model_pntpwl:432,sky_reg:443,sky_reg_rec:443,sky_region:85,skycood:360,skycoord:[56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,79,81,83,84,86,89,91,97,99,103,104,112,113,115,117,133,134,140,145,148,158,159,161,163,165,166,168,169,171,172,174,175,176,178,181,183,184,186,187,188,189,199,200,203,204,212,215,225,227,229,237,238,240,242,248,250,252,310,311,325,345,350,360,363,373,376,416,417,420,422,423,426,430,431,432,433,434,436,438,439,440,441,443,444,445,447,448,449,450,451,452,453,455,456,457,458,464,465,479,483,488,490,492,499],skycoord_from_t:363,skycoord_to_pixel_scale_angl:363,skycoordconfig:16,skycub:[355,368,406,407,408,409],skydiffusecub:[360,372,391,396,397,409],skydiffusemap:[360,391],skydir:[16,79,97,99,103,104,134,145,155,174,175,176,178,184,186,187,188,420,421,422,425,426,428,430,431,432,433,436,438,441,443,445,447,448,449,450,452,456,457,463,464,486,488,489,490,492,496,497,498,499],skydirfunct:467,skydisk:391,skydiskelong:360,skyellips:[390,391,392,393],skygaussian:390,skygaussianelong:360,skyimag:[355,368,406,407,408,409],skyimagelist:406,skymap:[175,176,178,184,187,188,363,405,406,433],skymap_band:[433,533],skymap_region:433,skymask:407,skymodel:[65,68,69,70,71,72,73,74,75,76,96,97,99,103,104,112,113,121,152,203,221,225,257,260,360,361,362,364,370,372,373,390,394,395,396,400,409,417,418,420,421,422,423,424,425,428,429,430,431,432,433,436,438,439,440,441,444,445,446,451,456,463,464,474,475,477,494,495,496,497,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535],skypointsourc:393,skyregion:[95,97,99,103,104,115,133,134,140,145,148,158,159,163,178,183,184,188,203,225,309,312,363,417,432,434,450,452,483,488,492],skyspatialmodel:[360,409],slack:[351,352,356,372,378,384,389,390,538],slew:90,slice:[79,83,86,95,97,99,103,104,109,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,173,174,175,176,177,178,179,180,183,184,185,186,187,188,192,199,200,204,212,215,227,229,237,238,242,248,250,252,271,355,397,431,434,445,455,491],slice_by_coord:[112,113],slice_by_energi:[95,97,99,103,104,112,113,250,397,445],slice_by_idx:[97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,173,174,175,176,178,179,183,184,186,187,188,397,409,411,434,449,456],slice_by_tim:[112,113],slide:[358,424,444],slider:449,sliderstyl:[428,436,449,463,464],slightli:[107,180],slope:[27,391],slow:[83,86,192,356,365,421,446,463,464],slower:[83,86,176,349,357,367],slowest:379,small:[340,349,355,357,363,365,366,369,371,376,379,389,390,391,392,393,394,395,396,397,399,400,402,403,405,406,407,408,409,410,411,414,438,439,449,455,456,457,458,496,500,501,537,538],smaller:[27,163,174,175,176,178,184,187,188,342,352,390,409,432,437,439,446,449,496],smallest:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,236,241,243,244,245,246,249,253,424],smooth:[97,99,103,104,107,116,117,126,176,188,204,241,341,344,400,405,406,407,409,410,426,428,430,434,436,441,445,448,449,451,456,463,464,465,493,495,524],smooth_kernel:[97,99],smooth_radiu:[97,99],smoothbrokenpowerlawspectralmodel:[197,235,372,395,396,452,519],sn:[45,50,52,53],sn_rate:[45,469],snippet:[350,369,479],snr:[44,50,53,65,456,472,473],snr_model:473,snrcat:[404,444],snrtruelovemcke:[50,472,473],so:[28,29,30,31,32,35,36,37,39,40,79,83,86,90,99,104,111,114,116,118,119,121,172,175,176,178,180,184,187,188,192,193,195,215,252,260,324,332,339,340,349,350,352,354,355,356,357,360,361,362,363,364,366,367,368,369,370,371,372,373,376,378,380,381,382,383,385,390,392,400,410,412,413,417,420,422,424,425,430,431,432,436,438,443,444,446,449,450,452,455,456,457,460,464,479,488,492,497,501,538,539,540,541],social:375,soft:268,softwar:[175,176,178,187,188,363,364,366,375,376,379,449],solar:52,sole:[359,375],solid:[173,174,183,186,200,204,212,215,227,237,238,242,248,252,255,365,388,390,391,392,409,426,448,449,455,482,488,537],solid_angl:[173,174,183,186,449,492],solut:[19,20,26,52,132,197,198,201,205,207,208,209,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,251,253,350,352,354,356,357,362,363,365,366,367,369,371,373,377,382,475,477,479,541],solv:[28,29,30,31,32,35,36,37,39,40,352,357,359,360,361,362,402,479],some:[13,16,28,29,30,31,32,35,36,37,39,40,70,78,80,83,86,161,182,278,286,352,354,355,356,357,358,363,364,365,366,367,368,369,370,373,374,375,376,379,381,382,383,384,385,386,388,390,392,400,401,403,405,407,408,409,414,416,417,418,420,422,424,425,426,429,430,432,433,434,436,437,438,439,440,441,443,444,445,446,448,449,451,452,455,456,464,465,467,468,475,476,479,484,489,491,537,538,539,540,542],some_class:349,some_map:143,some_map_convolv:143,somehow:[357,363,368,467],someon:[352,354,369],someth:[83,86,349,350,351,352,354,357,363,366,367,369,379,381,383,423,444,492,538],sometim:[19,20,79,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,327,349,352,356,363,369,379,381,446,537,542],somewhat:[366,455],somewher:[352,366,379],soon:[352,363,379],sort:[78,79,83,86,96,126,318,349,366,391,465],sort_kei:318,sortedarrai:[83,86],sourc:[6,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,269,270,271,272,273,274,275,276,277,279,280,281,282,283,284,285,286,287,288,289,290,291,292,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,349,350,352,354,357,360,361,362,363,364,365,366,367,368,369,371,372,373,375,379,381,386,388,390,394,395,400,401,406,407,408,409,414,418,419,421,422,423,425,426,427,428,429,434,435,436,437,438,439,441,442,443,445,446,447,448,449,451,452,453,454,456,457,458,460,462,463,464,467,468,473,475,476,477,479,484,487,488,491,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,536,537,539,540],source1:452,source2:452,source_1:[360,365],source_2:360,source_42:365,source_fermi_3fgl:418,source_fermi_3fhl:418,source_gammacat:418,source_irf_model:360,source_librari:455,source_model:517,source_nam:[56,57,58,59,60,61,62,63,64,65,444,465],source_name_alia:56,source_name_kei:56,source_po:[426,430,448],source_population_model:[369,394],source_posit:[416,431,453],sourcebackground:360,sourcecatalog1lhaaso:[55,68,444],sourcecatalog2fhl:[55,69,444,474],sourcecatalog2hwc:[55,70,444,474],sourcecatalog3fgl:[55,71,418,444,474],sourcecatalog3fhl:[55,72,418,444,451,465],sourcecatalog3hwc:[55,73,444,474],sourcecatalog4fgl:[55,74,402,444,474],sourcecatalog:[57,58,59,60,61,62,63,64,65,363,400,444,450,465,474],sourcecataloggammacat:[55,75,418,444],sourcecataloghgp:[55,76,77,444,474],sourcecataloglargescalehgp:65,sourcecatalogobject1lhaaso:57,sourcecatalogobject2fhl:58,sourcecatalogobject2hwc:59,sourcecatalogobject3fgl:60,sourcecatalogobject3fhl:61,sourcecatalogobject3hwc:62,sourcecatalogobject4fgl:63,sourcecatalogobject:[68,75,76,77,444,474],sourcecatalogobjectfermibas:[69,71,72,74],sourcecatalogobjectgammacat:64,sourcecatalogobjecthgp:[65,77,389,444],sourcecatalogobjecthgpscompon:65,sourcecatalogobjecthwcbas:[70,73],sourceevalu:360,sources_flux_map:424,sourcetempl:360,south:[432,433],south_z20_50h:[78,130,134,135,136,145,416,423,436,440,447,455],south_z40_50h:455,southern:455,space:[83,86,97,99,103,104,185,188,248,249,289,307,348,349,359,365,371,441,445,446,449,491,514,523],span:453,spars:[174,175,176,178,183,186,187,188,391,400,408,433,449],sparsif:373,sparsifi:[175,176,178,187,188],spatail:121,spatial:[1,33,38,46,48,65,68,69,70,71,72,73,74,75,76,77,79,97,99,103,104,105,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,173,174,175,176,178,179,181,183,184,186,187,188,194,196,199,200,203,204,211,212,215,225,227,229,234,237,238,240,242,248,250,252,260,342,344,349,355,358,361,362,363,365,367,368,373,381,389,390,392,393,394,395,397,400,408,409,411,414,418,421,423,425,428,429,431,432,433,434,436,440,441,444,445,448,451,454,456,460,463,467,468,475,477,479,480,490,491,503,535,536,537],spatial_bin_s:105,spatial_bin_size_min:105,spatial_model:[68,69,70,71,72,73,74,75,76,77,121,204,211,240,250,260,364,394,424,428,430,431,432,433,436,438,439,444,445,451,452,456,464,494,495,496,497,498,499,500,501,502],spatial_model_point:432,spatial_model_registri:452,spatial_par:372,spatial_typ:372,spatial_width:105,spatial_width_max:105,spatialbackground:360,spatialcircleconfig:16,spatialconst:360,spatialgaussian:360,spatialmodel:[68,69,70,71,72,73,74,75,76,199,200,204,211,212,215,227,229,237,238,240,248,250,252,360,372,394,409,413,444,452,464,467,474,493,535],spatialtempl:360,spatiamodel:143,speak:446,spec:[76,104,349,363,405,428,433,444,455,464],spec_model_tru:441,special:[83,86,215,349,359,361,363,364,372,375,376,389,425,432,444,445,447,451,452],specialis:[363,369],specif:[15,28,29,30,31,32,35,36,37,39,40,78,79,81,82,83,86,89,97,99,104,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,151,165,166,171,175,176,177,178,180,184,185,186,187,188,192,217,250,260,338,348,349,350,352,354,359,361,363,364,365,366,367,368,370,373,374,375,376,379,380,381,382,394,397,400,402,411,412,414,417,420,422,423,426,428,429,434,436,440,441,445,446,447,449,450,453,458,460,465,475,476,477,479,481,482,483,485,490,491,492,542],specifi:[16,28,29,30,31,32,35,36,37,39,40,78,79,80,83,84,86,87,91,97,99,103,104,107,109,112,113,114,116,118,119,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,150,161,173,174,175,176,178,179,180,182,183,184,186,187,188,203,217,225,260,278,280,284,289,336,359,366,371,374,382,393,396,400,422,425,428,431,432,434,436,445,446,447,448,449,451,452,455,464,475,477,490],spectra:[26,103,104,114,235,255,260,355,358,360,362,364,368,372,388,392,405,409,417,422,423,429,433,438,440,441,445,446,448,452,467,475,477,479,537],spectral:[1,19,20,26,52,53,64,65,68,69,70,71,72,73,74,75,76,96,97,99,103,104,107,111,112,113,114,115,118,120,121,125,143,145,148,152,194,196,197,198,201,203,205,207,208,209,211,213,217,219,220,222,223,225,226,228,230,231,232,235,236,240,241,243,244,245,246,249,250,251,253,255,256,268,305,355,358,360,361,362,363,364,365,367,368,370,371,373,381,389,391,392,393,394,395,396,397,399,400,401,402,403,404,405,406,407,408,409,410,411,412,414,419,423,425,428,431,432,433,434,436,438,439,440,441,444,445,446,448,450,451,454,455,456,463,464,467,468,474,475,476,477,478,479,480,486,487,488,491,494,495,496,497,498,499,500,501,502,520,521,522,524,525,526,527,528,529,530,531,532,533,535,536,537,539],spectral_analysi:[419,420],spectral_analysis_hli:[419,421],spectral_analysis_rad_max:[419,422],spectral_cub:401,spectral_index:[19,20,26,52,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253],spectral_index_error:[19,20,26,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,414],spectral_irf_model:360,spectral_model1:440,spectral_model2:440,spectral_model:[64,65,68,69,70,71,72,73,74,75,76,96,103,104,111,121,125,152,203,211,223,225,240,250,260,364,367,371,372,373,377,397,417,418,420,422,423,424,428,429,430,431,432,433,436,438,439,440,441,444,445,446,451,452,456,464,465,477,486,494,495,496,497,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],spectral_model_pwl:432,spectral_model_registri:452,spectral_par:372,spectral_point:365,spectral_typ:372,spectralbackground:360,spectralbackgroundmodel:361,spectralcompoundmodel:360,spectralconst:360,spectralevalu:360,spectralexponentialcutoffpowerlaw3fgl:368,spectralgaussian:[360,392],spectralmodel:[19,20,69,71,72,74,75,76,96,107,111,112,113,115,120,125,143,145,148,152,197,198,201,203,205,207,208,209,211,213,219,220,222,225,226,228,230,231,232,236,240,241,244,245,246,249,250,253,255,360,361,364,367,373,397,400,407,414,444,452,464,465,474,493,535],spectralregion:363,spectraltempl:360,spectrum:[19,20,26,70,73,93,95,96,97,99,100,103,104,107,112,113,115,118,120,122,143,145,148,153,157,161,162,175,176,178,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,255,256,268,346,355,360,361,364,365,368,369,370,381,391,392,393,394,396,400,402,405,406,407,408,409,411,413,416,417,418,419,421,428,429,432,433,434,440,443,444,445,450,452,455,456,460,463,465,467,475,479,484,487,492,505,508,509,511,512,516,517,519,520,521,522,535,538],spectrum_analysi:420,spectrum_dataset:[361,441,445],spectrum_dataset_1:361,spectrum_dataset_2:361,spectrum_dataset_empti:[441,448],spectrum_dataset_mak:[441,448],spectrum_dataset_on_off:441,spectrum_fitting_with_sherpa:369,spectrum_mak:416,spectrum_simul:[369,419,423],spectrumanalysisiact:[365,393,407],spectrumdataset:[93,94,95,97,99,104,118,120,128,156,157,161,162,211,370,391,392,393,394,395,396,397,400,403,416,417,420,422,423,430,439,440,441,446,448,475,488,539],spectrumdatasetmak:[153,394,400,416,417,420,422,423,430,439,440,441,448,488],spectrumdatasetonoff:[93,99,100,101,103,120,128,156,157,260,346,364,391,392,393,395,396,412,413,414,416,417,420,421,423,429,430,438,441,445,446,448,477,539],spectrumdatasetonoffstack:393,spectrumdatasetsonoff:361,spectrumenergygroup:408,spectrumevalu:396,spectrumextract:[364,391,394,407],spectrumfit:[391,407,408,409],spectrumobserv:[361,391,407],spectrumobservationlist:[391,406],spectrumobservationstack:406,spectrumonoffdataset:364,spectrumresult:391,spectrumsimul:[392,406,409],spectrumstack:408,spectrumstat:392,specutil:363,speed:[121,278,352,382,392,394,402,408,409,446],spell:[354,479],spend:[362,369],spent:[356,448],sphere:[47,306,388,390,491,495,496,499],spherepointpick:306,spheric:[47,349,390,491,536],sphericalcircleskyregion:[368,441,465],sphinx:[352,356,369,379,391,395,402,408,409,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],sphinx_gallery_conf:379,sphinx_gallery_thumbnail_numb:[350,420,422,424,426,431,434,447,504],spill:448,spin:[50,51,54,392,471],spir:[390,409],spiral:[33,34,38,45,404],spiralarm:[33,38,45,408,469],spiralarm_index:[33,34,38],spirit:375,split:[19,20,83,86,87,112,113,175,176,178,184,187,188,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,355,357,359,361,363,364,368,370,372,381,397,439,452,468,543],split_by_axi:[175,176,178,184,187,188],sporad:376,spot:349,spread:[78,84,136,145,148,349,371,397,416,424,447,484,537],spring:[359,410],sprint:[357,358,362,365,366,367,368,370,374],spuriou:126,sqrt:[19,20,30,31,32,65,97,99,103,104,107,112,113,116,121,175,176,178,180,184,187,188,191,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,261,269,290,291,292,361,417,420,424,428,434,436,437,441,444,446,448,449,451,456,463,464,465,477,496,497,500,501,511,540],sqrt_space:[368,394],sqrt_t:[107,111,112,113,121,262,263,342,373,385,397,417,420,421,424,426,428,430,441,444,445,450,457,463,465,477,538,540],sqrt_ts_min:[128,420],sqrt_ts_threshold_ul:[69,71,72,74,111,112,113,115,121,434,438,444,445,463,465],squar:[17,18,21,22,24,25,27,46,97,99,112,132,133,134,140,145,148,151,172,186,188,250,266,364,367,397,450,467,477,491,538,539,540,541],squash:[134,173,174,177,179,180,183,185,186,414,416,426,445,449],squeez:[416,447],sr:[129,130,131,142,173,174,183,186,200,252,255,416,423,425,428,430,436,440,444,445,447,449,452,455,456,484,494,502],src:[362,431,475],src_above_bkg:431,src_event:[432,433],src_posit:[432,433],srcmap:[174,175,176,178,187,188,449],ssc:[58,60,61,63,226,369,517],ssc_model:226,st:[53,446,456],stabil:[19,20,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,374,436],stabl:[11,83,86,183,192,278,356,357,358,365,366,369,374,378,379,380,382,394,395,396,402,407,409,411,446,476],stack:[16,79,82,87,95,96,97,99,103,104,111,112,113,133,134,140,145,148,151,175,176,177,178,183,184,187,188,191,194,196,250,319,349,361,364,365,371,376,390,393,394,397,400,405,406,411,412,414,417,421,425,429,430,438,441,445,446,448,453,463,464,476,477,486,489,537],stack_dataset:[151,441,448],stack_reduc:[95,393,417,420,422,428,429,430,441,445,446,477],stacked_dataset:[430,431],stacked_fit:420,stacked_on_off:426,stackedobscubemak:355,stackedobsimagemak:355,stackoverflow:317,stage:[352,365,426,428,440,445,475,537],stai:361,stand:354,standard:[28,29,30,31,32,35,36,37,39,40,42,82,83,86,91,176,188,192,256,277,331,332,349,350,352,354,358,360,361,362,365,367,373,375,376,385,392,393,409,416,421,423,426,429,431,433,436,439,440,443,446,449,452,453,455,458,460,463,475,478,483,491,536,537,538],standard_broadcast:[28,29,30,31,32,35,36,37,39,40],standard_scal:453,standardis:[321,322,334,408],standardise_unit:[321,335],standpoint:349,star:[36,40,205],starmap:[294,298,299],start:[16,53,79,82,84,85,86,87,89,95,118,126,185,202,203,210,214,216,217,218,225,233,239,251,254,349,350,352,354,356,357,358,359,362,363,365,366,374,375,377,378,379,380,383,385,386,388,393,402,405,406,407,408,409,414,416,417,418,420,421,422,424,425,426,428,430,431,432,433,434,437,438,439,440,441,443,444,449,452,455,456,460,463,465,479,483,536],start_po:[115,311,434],startswith:349,stat:[6,95,96,99,104,112,113,114,115,118,119,121,192,193,195,262,263,264,265,266,267,268,269,270,271,272,273,274,275,342,349,361,369,377,379,385,392,394,395,396,397,400,406,409,410,411,417,418,420,421,422,426,428,429,430,431,434,437,441,446,456,463,464,477,538,539,540],stat_arrai:[94,96,97,99,103,104,377],stat_contour:192,stat_max:[262,263],stat_nul:[112,113,114,115,118,119,121,262,263,424,434,477],stat_per_bin:361,stat_profil:[192,446,479],stat_scan:[112,113,114,115,118,119,192,261,420,421,446,477],stat_sum:[94,95,96,97,99,103,104,377,413,414,428,440,445,451,479],stat_surfac:[192,397,479],stat_typ:[96,97,99,103,104,395,428,440,445,451],state:[16,45,47,185,192,349,355,359,361,365,369,371,373,421,463,484,504],stateless:376,statement:[349,352,356,413,468],staticmethod:[360,372,377,452],statist:[6,19,20,26,75,94,95,96,97,99,103,104,111,112,113,114,115,118,119,121,127,128,155,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,236,241,243,244,245,246,249,253,260,261,262,263,264,265,270,275,361,364,367,368,369,371,377,391,395,396,397,400,402,414,416,421,423,424,425,426,428,430,434,436,437,438,440,441,445,446,448,463,464,475,477,479,489,536,537],statu:[19,20,26,112,113,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,349,352,353,355,356,357,358,360,361,362,363,364,365,366,367,369,370,371,372,373,375,376,377,410,451,452],std:[28,29,30,31,32,35,36,37,39,40,277,423,437,456],stddev:66,stderr:349,stdout:[286,349],steep:423,stefan:404,step:[19,20,26,111,114,118,119,121,192,197,198,199,200,201,202,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,241,242,243,244,245,246,248,249,251,252,253,254,349,352,355,356,359,360,361,363,364,365,367,370,374,377,378,379,385,402,409,410,414,416,420,422,425,428,430,431,432,433,439,440,445,446,448,452,463,464,465,479,487,492],stepprior:377,stepsiz:150,steradian:183,stewart2009:[121,537,540],stewart:[121,271,424,537],stick:[352,372,390,409,446,537],still:[28,29,30,31,32,35,36,37,39,40,356,357,359,362,363,366,368,369,370,373,374,376,378,379,407,408,409,452,465,477,500,501,538],stipul:375,stone:[349,369],stop:[16,52,79,82,84,85,86,87,95,118,121,185,202,203,210,214,216,217,218,225,233,239,251,254,359,385,414,421,425,426,428,439,441,446,456,463],storag:[78,479],store:[11,15,28,29,30,31,32,35,36,37,39,40,56,67,78,79,81,82,83,86,112,113,116,118,143,156,157,175,176,178,184,187,188,192,193,195,203,225,332,349,352,355,357,358,359,361,362,365,367,371,373,375,376,379,397,400,401,417,422,423,432,433,437,441,445,446,447,448,449,450,453,455,456,457,458,465,475,476,479,484,485,486,491,492,514,535,536,538,542],store_per_ob:365,store_trac:[192,446],str3:[83,86],str:[15,16,19,20,26,50,56,57,58,59,60,61,62,63,64,65,78,79,80,81,82,83,84,85,86,88,89,94,95,96,97,99,100,101,102,103,104,105,109,111,112,113,114,116,118,119,121,122,123,124,129,130,131,132,133,134,135,136,137,138,139,140,142,144,145,146,147,148,149,152,155,156,161,162,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,193,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,257,278,290,299,314,315,331,332,334,338,342,343,345,363,376,420,422,448,452,457],straight:[350,381,479],straightforward:[379,541],strang:349,strategi:[349,356,363,414,446,541],stream:349,streil:[377,413,414],strength:[51,54,377,514],stretch:[175,176,178,184,187,188,339,340,344,424,428,434,436,448,449,451,456,463,464,465],strict:[16,28,29,30,31,32,35,36,37,39,40,80,97,99,133,134,140,145,148,151,186,188,250],strict_bound:180,strictli:[16,80,180],strike:475,string:[15,16,26,28,29,30,31,32,35,36,37,39,40,56,67,68,69,70,71,72,73,74,75,76,77,78,79,80,83,86,88,112,113,114,115,118,121,136,142,144,146,151,174,175,176,178,180,181,183,184,186,187,188,193,195,203,225,278,296,338,349,362,363,366,368,375,376,388,392,400,402,421,444,450,452,463,491,492],strip:[28,29,30,31,32,35,36,37,39,40],strip_units_from_tre:[28,29,30,31,32,35,36,37,39,40],strong:[52,362,369,420],strongli:[268,364,366,375,400,425,446],structur:[83,86,186,353,354,355,358,360,362,365,369,372,375,376,387,393,394,396,400,403,434,445,448,449,450,452,460,466,467,474,476,480,491,492,538],stuck:538,student:352,studi:[46,255,362,365,373,382,409,417,418,429,430,431,434,436,439,440,446,449,452,455,469,479,488,539],stuff1:349,stuff2:349,stuff:[350,379,479],style:[83,86,96,175,176,178,184,187,188,346,352,358,375,404,406,428,436,447,449,463,464,479,492],sub:[11,28,29,30,31,32,35,36,37,39,40,97,99,103,104,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,175,176,177,178,180,184,185,187,188,191,349,352,356,358,359,363,368,369,370,371,376,379,388,390,394,396,397,405,407,408,430,432,448,450,452,457,458,475,478,479,487,536,538,542],subclass:[16,28,29,30,31,32,35,36,37,39,40,80,83,86,278,363,406,409,452],subcompon:[65,76],subfold:[357,400],submit:[354,375],submodul:[357,390,391,396,449,465,477],subok:278,subpackag:[370,376,393,400,404],subplot:[64,65,175,176,178,184,187,188,416,417,418,420,421,422,423,424,426,428,429,430,434,437,438,440,441,443,446,447,449,450,451,453,479,481,488,497,501,504],subplot_kw:[424,426,430,441,450,488],subplots_adjust:443,subsect:[369,449],subsequ:[267,358],subset:[78,79,83,86,114,118,226,376,404,405,430,441,451,455,457,478,536],subspac:363,substanti:[83,86],substitut:539,substr:[203,225],subtract:422,succed:378,succeed:112,success:[16,80,96,112,113,114,115,118,119,121,192,377,400,417,418,420,421,422,424,428,429,430,434,438,441,446,451,456,463,464,502],successfulli:[96,417,418,420,421,422,428,429,430,440,441,446,456,463,464],sudo:382,suffer:[366,441],suffic:440,suffici:[352,355,362,375,414],suffix:[96,112,350,360,372,378,452,491,493],suggest:[352,354,356,359,363,369,371,373,377,424,432,433,479,538],suit:[176,349,492],suitabl:176,sum:[28,29,30,31,32,35,36,37,39,40,82,97,99,103,104,114,115,117,118,119,121,129,130,131,132,133,135,136,137,139,142,143,144,145,146,147,148,175,176,178,184,187,188,202,210,214,216,217,218,233,239,251,254,255,262,263,265,345,349,359,360,362,371,373,377,391,428,432,441,443,445,456,463,464,465,475,485,537,539],sum_:475,sum_band:[175,176],sum_i:116,sum_j:475,sum_k:475,sum_of_implicit_term:[28,29,30,31,32,35,36,37,39,40],sum_over_ax:[175,176,178,184,187,188,337,409,426,428,434,441,445,448,450,451,456,464],sum_over_energy_group:[114,121,430,434],summar:[358,467],summari:[15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,98,99,100,101,102,103,104,107,109,110,111,112,113,114,115,116,117,118,119,120,121,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160,161,162,163,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,262,263,286,290,300,323,336,350,352,369,387,417,421,439,440,445,455,463,479],summaris:[349,354,356,369],summat:[262,263,355],summer:357,sun:41,sunpi:[366,369,370],superexpcutoffpowerlaw3fglspectralmodel:[235,372,452,520],superexpcutoffpowerlaw4fgldr3spectralmodel:[235,452,521],superexpcutoffpowerlaw4fglspectralmodel:[235,372,452,522],superfici:467,superflu:[359,441],supernova:[28,52,417,431,452,469,470],superpixel:174,supersed:[174,175,176,186,187,188],supervisor:365,suppli:[83,86,226,440],support:[79,81,82,83,84,85,86,87,90,95,97,99,103,104,113,138,143,174,175,176,177,178,185,186,187,188,192,203,225,348,353,354,358,359,360,361,362,363,364,365,366,367,368,369,371,372,373,376,382,386,389,390,392,393,394,395,396,397,400,402,405,407,408,409,410,411,412,413,414,416,421,423,425,428,430,436,440,443,444,445,449,455,456,457,458,463,478,484,491,492,533,535,536,538],suppos:[217,251,354,361,537,539],suppress:[132,133,137,479],sure:[28,29,30,31,32,35,36,37,39,40,349,352,354,365,378,420,438,449,479,538],surfac:[28,30,35,36,39,40,45,192,240,255,304,368,397,446,452,469],surface_brightness_err:444,surprisingli:363,surround:[52,296,349],survei:[62,65,114,205,356,359,369,385,455,460,461,469,474,479,537],survey_map:[461,462],suspect:540,suss:[358,375],svg:349,swap:174,swept:52,swh:375,swhid:375,switcher:378,sy:[349,384],syllabl:479,symbol:450,symmetr:[97,99,103,104,111,119,121,163,172,176,212,349,360,390,402,405,418,440,448,455,467,477,485,495,496,540],symmetri:[176,390],sync:409,sync_constraint:[28,29,30,31,32,35,36,37,39,40],synchronis:375,synchrotron:[226,396,514],syntact:[83,86],syntax:[16,83,86,350,365,368,394,411,538],synthesi:[469,470],synthet:388,system:[11,79,83,86,130,138,139,174,175,176,178,181,183,186,187,188,203,225,349,355,360,362,366,369,370,374,375,377,382,390,408,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,490,491,536,538,542],systemat:[360,373,375,376,397,420,438,448,477,537,539],t0:[210,233,432,439,440,526,530],t1:[83,86],t2:[83,86],t:[16,26,28,29,30,31,32,35,36,37,39,40,50,51,52,53,67,79,80,82,83,84,86,107,111,114,118,121,132,172,185,203,217,225,276,321,325,348,349,350,352,354,356,357,359,361,363,365,366,367,368,369,372,374,376,379,381,383,384,385,409,416,417,420,425,428,430,436,437,438,443,446,448,449,450,452,453,455,456,467,471,472,473,475,479,488,525,526,527,528,529,530,531,536,538,541,542],t_0:530,t_:[52,53,267,484,526,527,528,529,530,531,539],t_b:539,t_decai:[216,528],t_delta:[98,102,185,202,210,214,216,217,218,233,239,251,254],t_i:267,t_j:475,t_live:[79,84],t_max:[202,210,214,216,217,218,233,239,251,254,362,373],t_min:[202,210,214,216,217,218,233,239,251,254,362,373],t_observ:[79,84],t_r:217,t_ref:[210,214,216,217,218,233,239,251,413,414,432,433,440,452,526,527,528,529,530,531,532,533],t_rise:[216,528],t_start:[82,476],t_stop:[52,82,476],tab:[132,354,428,434,438,488],tabl:[6,41,42,43,44,45,46,47,56,57,58,59,60,61,62,63,64,65,66,67,69,71,72,74,76,78,79,81,82,83,84,85,86,89,90,91,95,96,97,99,103,104,112,113,116,120,122,123,124,126,127,129,130,131,132,133,134,135,136,137,139,140,141,142,144,145,146,147,148,155,157,162,164,172,173,174,175,176,177,178,179,180,182,183,184,185,186,187,188,194,196,203,217,225,240,251,253,255,276,277,286,319,320,321,322,347,348,349,355,359,362,363,364,366,368,370,373,376,394,397,401,402,403,404,405,406,407,408,410,411,412,414,416,418,420,421,422,423,430,432,433,434,436,438,441,445,447,448,449,452,453,455,456,457,458,460,463,465,469,474,475,477,479,484,533,539,542],table_arrai:[83,86],table_associ:65,table_bkg_src:431,table_class:[83,86],table_compon:[65,444],table_filenam:26,table_from_row_data:414,table_hdu:82,table_identif:65,table_large_scale_compon:[65,444],table_model:[253,372],table_oth:319,tableau:479,tableclass:[83,86],tablegroup:[83,86],tableid:[83,86],tableiloc:[83,86],tableindic:[83,86],tableloc:[83,86],tablelocindic:[83,86],tablemodel:[360,410],tablepsf:[370,388,390],tablepsfcheck:406,tabul:467,tabular:[452,523],tackl:358,tag:[19,20,26,56,57,58,59,60,61,62,63,64,65,80,83,86,94,96,97,98,99,100,101,102,103,104,107,109,110,111,112,114,115,117,118,119,120,121,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,150,151,152,154,155,156,157,160,161,162,175,176,178,184,187,188,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,223,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,244,245,246,248,249,250,251,252,253,374,377,378,397,411,447,452,497,501],tail:[455,538],take:[28,29,30,31,32,35,36,37,39,40,83,86,97,99,103,104,111,130,150,152,184,186,192,203,225,240,324,347,349,354,355,358,359,360,361,362,363,364,365,368,369,370,373,379,395,396,397,400,402,410,411,413,414,416,417,422,423,432,433,434,440,441,446,448,449,450,452,453,455,464,465,476,479,492,507,539,540,541],taken:[15,27,83,86,97,99,103,104,112,113,135,143,162,168,170,184,185,188,192,270,350,354,358,362,413,420,428,429,441,447,450,451,455,465,475,477,488,489,540],talk:[352,354,356,366,375],tan:[176,183,363,392,420,449,456,488],tandem:467,tangent:[158,200,204,212,215,227,237,238,242,248,252],tangenti:[174,492],tar:[379,455],target:[28,29,30,31,32,35,36,37,39,40,84,97,99,103,104,106,107,111,121,133,134,145,148,165,166,170,171,175,176,178,180,184,187,188,355,356,362,375,378,406,417,422,430,439,448,450,464],target_nam:488,target_posit:[158,417,420,422,430,438,439,464],target_radec:84,task:[299,369,373,375,376,378,379,410,421,424,448,449,456,460,463,479,487,536,538,542],task_nam:299,tast:538,tau:[26,51,54,377,443,504],tau_0:51,taul:[26,443],taur:[26,443],taylor:[52,53],tbl:[83,86],tctypn:432,tcunin:432,teal:437,team:[354,358,366,369,371,375,387,408],technic:[351,352,354,362,369,371,373,375,379,425,479],techniqu:[355,364,365,367,417,420,428,431,448,450,486,489,536],tediou:444,tel:[83,86],telescop:[78,79,81,86,90,135,362,363,376,381,385,386,432,438,441,453,455,456,458],tell:422,temp:[404,433],temperatur:[52,53],templat:[16,26,57,68,80,99,104,152,160,174,175,176,178,179,180,186,187,188,203,217,225,248,249,250,251,252,253,271,274,354,360,361,365,372,397,411,414,423,424,426,433,449,450,451,452,467,488,491,493,503,510,513,518,524,532],template_diffus:[451,456],template_model:432,templatelightcurvetemporalmodel:411,templatend:[248,249,452],templatendspatialmodel:[234,452],templatendspectralmodel:[26,235,402,413,452],templatenpredmodel:[221,400],templatephasecurvetemporalmodel:[247,411,452,532],templatespatialmodel:[65,234,371,372,397,411,412,414,432,451,452,456,502],templatespectralmodel:[203,225,235,257,372,452,456,475,510,513,518,523],templatetemporalmodel:411,tempo2:[441,479],tempor:[194,196,202,203,210,214,216,217,218,225,233,239,240,247,251,254,267,360,362,372,373,393,395,396,397,402,411,413,414,418,421,423,428,429,430,432,435,436,437,444,445,451,456,460,463,475,476,479,480,484,487,491,534,535,537],temporal_model1:440,temporal_model2:440,temporal_model:[240,362,432,433,440,452,525,526,527,528,529,530,531,532,533],temporal_model_map:433,temporal_model_registri:452,temporal_typ:372,temporalbackground:360,temporalmodel:[202,210,214,216,217,218,233,239,240,251,360,373,396,411,413,414,493],temporari:460,temporarili:[28,29,30,31,32,35,36,37,39,40,360],ten:[355,369],tend:[349,497],tension:437,tensorflow:[367,369],tent:378,term:[28,29,30,31,32,35,36,37,39,40,218,272,275,352,354,356,358,359,363,366,369,374,376,398,402,411,424,446,447,538,540,541],termin:[83,86,96,365,381,382,383,384,417,418,420,421,422,428,429,430,441,446,456,463,464,538],terrestri:542,terrier:[355,358,359,360,361,363,364,365,366,368,370,371,372,373,374,376,388,389,390,391,392,393,394,395,396,397,398,399,400,402,403,404,406,407,408,409,410,411,412,413,414],test2:440,test:[6,89,96,109,111,112,113,114,115,118,119,121,127,143,145,148,175,176,178,184,187,188,217,260,261,262,263,266,308,323,324,325,326,327,328,329,350,355,356,357,358,359,361,362,363,364,365,366,367,374,377,378,379,389,391,392,394,396,400,401,402,405,406,407,408,409,410,411,414,417,423,424,433,436,438,439,440,445,447,477,479,483,489,532,533,537,540],test_aeff3d:447,test_edisp:447,test_events_with_gti:476,test_gti:476,test_person_txt:349,test_plot:349,test_psf:447,test_someth:349,test_using_data_fil:328,test_using_scipi:329,testcod:350,testoutput:350,testpar:377,teststatisticnest:414,tev:[16,19,20,26,44,52,53,64,65,69,72,79,96,97,99,103,104,107,113,114,129,130,132,134,135,136,137,142,143,144,145,146,148,155,175,176,178,184,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,240,241,243,244,245,246,249,253,255,256,298,344,360,372,373,376,377,385,416,417,418,420,421,422,423,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,452,453,455,456,457,458,463,464,465,473,476,477,483,484,486,488,489,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,536],tevcat:[401,444],tevcat_nam:69,tevpi:388,tevtevtev1:430,tex:350,texliv:350,text:[17,18,21,22,23,24,25,27,50,51,52,53,54,99,104,112,113,121,237,238,277,338,350,357,365,375,379,421,441,447,455,463,465,495,496,497,500,501,505,521,528,538,540],textcolor:338,textkw:338,th:180,than:[27,28,29,30,31,32,35,36,37,39,40,83,86,120,136,137,144,146,152,173,174,175,176,178,179,180,183,184,186,187,188,260,268,327,342,349,352,354,355,356,359,362,363,364,367,368,373,375,376,379,408,411,412,413,416,417,428,429,432,437,438,439,446,448,450,453,475,492,496,497,538,540],thank:[373,394,395,400,402,448,479],thaw:451,thei:[28,29,30,31,32,35,36,37,39,40,83,86,90,102,105,118,122,149,251,267,298,349,350,352,354,355,356,357,358,360,363,365,366,368,369,372,373,374,375,376,377,379,386,397,400,402,414,417,418,422,443,445,446,450,451,452,453,455,458,467,476,477,479,484,491,492,536,537,538,539,540,542],them:[11,15,28,29,30,31,32,35,36,37,39,40,79,83,86,95,194,196,203,225,278,349,350,352,354,356,357,363,365,368,375,376,378,379,385,392,408,417,418,420,423,425,428,429,431,433,438,444,445,446,449,450,452,455,457,460,464,476,479,488,538,540],theme:[402,409],themselv:[83,86,365,448,450,486],theorem:[260,477,540],therefor:[99,355,359,362,363,364,368,370,372,400,417,438,441,446,449,450,453,465,477,540,541],thereof:360,thermal:[19,514,537],thermal_relic_cross_sect:19,theta2:[162,172,347,408],theta2_axi:458,theta2_max:347,theta2_min:347,theta2_t:458,theta:[33,34,38,52,53,136,142,144,146,150,158,172,181,279,282,349,397,422,456,465,495,496,500,501],theta_0:[33,38],theta_squared_axi:[172,458],thew:444,thi:[6,15,16,19,20,26,27,28,29,30,31,32,35,36,37,39,40,46,47,56,65,66,67,78,79,80,81,82,83,84,86,95,97,98,99,102,103,104,106,107,111,112,113,114,115,117,118,120,121,122,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,150,152,155,158,159,161,163,165,166,169,171,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,192,193,195,197,198,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,251,252,253,255,260,262,263,269,278,286,296,299,302,307,308,324,327,334,336,338,339,340,344,346,348,349,350,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,384,385,387,389,390,391,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,411,412,413,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,467,468,475,476,477,479,481,482,483,484,485,486,488,489,490,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,536,537,538,539,540,541,542],thick:346,thin:[56,290],thing:[349,352,354,357,363,364,365,366,369,373,379,388,407,422,425,440,441,450,456],think:[354,366,367,369,384],third:[61,62,83,86,350,400,444,446,449,460,465,474],thoma:[375,408],thorough:[449,467],those:[15,79,161,175,176,178,184,187,188,192,194,196,203,225,286,338,349,352,354,356,358,363,365,368,369,370,371,372,374,379,381,383,394,397,438,446,449,450,451,453,460,465,477,479,488,542],though:[15,352,357,363,364,365,367,369,421,452,463],thought:[354,363],three:[83,86,143,349,358,361,363,375,430,432,437,438,449,460,484,491,537],threshold:[65,97,103,107,112,113,121,126,127,132,133,137,150,161,185,260,338,339,340,363,390,396,397,416,420,422,424,430,434,438,444,445,446,448,450,455,463,475,477],threshold_alpha:150,through:[41,83,86,277,278,346,352,354,362,363,369,373,374,386,400,411,433,437,446,448,449,450,451,456,457,479,484,491,537,540],throughout:[13,356,358,359,363,365,407,444],throught:434,thrown:452,thu:[349,356,363,366,367,369,404,416,425,426,430,432,535,541],thumbnail:400,ti:[28,29,30,31,32,35,36,37,39,40,176,358,440],tibaldo:405,tick:[413,414],tick_param:416,ticker:338,tight_layout:[446,497,501],tightli:368,tikonov:377,tild:[174,186],tile:[174,176],tilt:[231,250,360,371,372,377,389,395,425,428,429,432,433,436,445,452,456,463,464,486,492,498,518,523],tilt_prior:377,time:[6,19,20,50,51,52,53,74,78,79,81,82,83,84,85,86,87,89,95,96,97,98,99,102,103,104,112,113,118,121,122,151,157,168,170,175,176,177,178,184,185,187,188,192,193,195,202,205,210,214,216,217,218,233,239,240,251,254,267,308,326,330,331,332,333,349,350,352,354,355,356,357,359,362,363,365,366,367,368,369,370,372,373,374,375,378,379,381,385,389,390,393,394,395,397,400,404,406,407,408,409,410,411,413,414,420,422,423,424,426,428,430,431,433,434,438,441,443,444,445,446,448,449,450,452,453,455,456,457,463,464,465,471,472,473,475,476,477,479,484,487,492,496,497,504,525,526,527,528,529,530,531,532,533,535,537,538,539,540,541],time_axi:[175,176,178,184,187,188,433,449,492],time_bin:364,time_bin_end:364,time_bin_s:364,time_bin_start:364,time_bound:185,time_box:86,time_column:373,time_delta:[82,185,330,333],time_edg:[185,449],time_filt:85,time_format:[113,185,414,440],time_interv:[16,79,82,84,87,118,421,425,426,428,433,438,439,463],time_map_axi:449,time_map_axis_contigu:449,time_max:[95,112,113,185,363,364,365,433,438,444,449],time_mid:[185,437],time_min:[95,112,113,185,363,364,365,433,438,444,449],time_rang:[86,202,210,214,216,217,218,233,239,251,254,433,525,526,527,528,529,530,531,532,533],time_ref:[79,81,82,86,89],time_ref_default:82,time_ref_from_dict:542,time_relative_to_ref:542,time_start:[81,82,86,364],time_step:364,time_stop:[81,82,86,364],time_sum:[82,202,210,214,216,217,218,233,239,251,254],timedelta64:[83,86],timedelta:[83,86,89,185,202,210,214,216,217,218,233,239,251,254,308,330,333,542],timelin:[354,356,408],timemapaxi:[177,400,440],timerangeconfig:16,timeref:432,timescal:[122,210,268,374,437],timeseri:364,timesi:[89,412,414,432],timestamp:349,timeunit:432,tini:[430,455],tip:479,titl:[354,434,443],tiziani:406,tke:456,tm:[83,86],tmax:[364,437],tmid:[84,414,430,448,453,464],tmin:[364,437],to_2d:[130,458],to_3d:[129,413],to_bands_hdu:[173,174,183,186],to_binsz:[174,183,186,400],to_binsz_wc:183,to_contigu:[185,449],to_counts_hdulist:101,to_cub:[173,174,175,176,178,183,184,186,187,188,397,426,492],to_dict:[19,20,26,94,96,97,99,103,104,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,376],to_edisp_kernel:[137,483],to_edisp_kernel_map:[134,400,483],to_energy_dependent_table_psf:408,to_even_npix:186,to_fits_head:81,to_fram:181,to_gti:185,to_hdu:[175,176,187,188],to_hdulist:[97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,175,176,182,183,184,187,188,449],to_head:[80,174,177,179,180,185,186,376],to_html:349,to_imag:[97,99,103,104,132,133,143,145,148,173,174,183,186,371,394,395,416,426,430,445,456,489,492],to_json:[16,80],to_map:[112,113],to_map_dataset:[99,104],to_mask:[97,99,103,104,443],to_model:[56,57,58,59,60,61,62,63,64,65,400,444],to_node_typ:180,to_nsid:[174,176],to_odd_npix:186,to_panda:[83,86],to_parameters_t:[203,225,417,420,421,422,425,428,446,464],to_pixel:[363,420,430,443,448,452,488,495,496,497],to_polygon:363,to_psf3d:[136,144,146],to_python:[16,80],to_region:[199,200,203,204,212,215,225,229,237,238,252,363,394,452,495,496,497],to_region_map_dataset:[97,99,103,104,445],to_region_nd_map:[133,134,140,145,148,176,184,188,397,400,456],to_region_nd_map_histogram:[188,414],to_sed_typ:373,to_sherpa:[394,408,409],to_spectrum:400,to_spectrum_dataset:[95,97,99,103,104,371,393,395,441,445],to_st:414,to_str:[414,416],to_swap:[174,175,176],to_tabl:[96,113,129,130,131,132,135,136,137,139,142,144,146,147,179,180,184,194,196,217,400,418,420,421,430,434,436,438,440,444,452,465,477],to_table_hdu:[79,82,129,130,131,132,135,136,137,139,142,144,146,147,179,180,449],to_table_psf:406,to_template_sky_model:[203,225],to_template_spectral_model:[203,225,372],to_unit:[129,130,131,132,135,136,137,139,142,144,146,147,175,176,178,184,187,188],to_wc:[175,176],to_wcs_geom:[174,183,492],to_wcs_til:[174,176],to_yaml:[16,80,203,225,360,376,452,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],tob:421,todai:375,todo:[13,75,83,86,94,143,253,350,373,391,455,469,470,542],tof:142,togeth:[95,97,99,103,104,114,118,203,225,346,349,362,366,369,381,383,392,426,428,429,434,445,446,448,451,452,453,458,464,475,476,538],tol:446,toler:[82,95,118,129,130,131,132,135,136,137,139,142,144,146,147,174,175,176,178,180,183,184,186,187,188,326,446],tolist:446,toml:397,ton:[268,455],too:[349,354,355,399,400,413,414,446,450],took:374,tool:[6,13,175,176,178,187,188,348,352,356,358,360,362,365,366,369,375,386,394,405,408,409,431,434,440,445,446,449,453,455,456,467,479,512,536,537],toolbox:[365,405],top:[103,104,336,345,349,354,365,369,371,382,408,422,424,430,434,437,438,440,444,448,465,479,492,536,538,542],top_five_ts_3fhl:465,tophat2dkernel:111,topic:[354,358,369,377,465],total:[51,65,94,96,97,99,103,104,114,115,118,119,125,155,170,174,202,210,214,216,217,218,233,239,251,254,275,357,373,377,381,383,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,439,440,441,442,443,444,445,446,448,449,450,451,454,456,459,461,463,464,465,466,469,475,479,484,503,514,524,534,537],total_jfact:443,total_jfact_decai:443,total_model:360,total_obstim:448,total_stat:[446,539],touch:[82,389],tour:460,toward:[296,356,363,369,410],tox:[314,350,352,411,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,502,510,513,526],tqdm:479,trace:[192,397,446],traceback:[28,29,30,31,32,35,36,37,39,40,349],track:[81,89,349,358,364,375,402,451],tracker:[352,363],tradition:[452,539],train:374,traitlet:[365,376],traittyp:376,transfer:376,transform:[28,29,30,31,32,35,36,37,39,40,79,81,89,143,177,179,180,185,186,203,225,280,284,307,312,349,363,365,373,377,388,390,406,409,424,430,448,491,495,496,542],transit:[27,339,340,356,389,390,408,457],transit_map:457,transit_numb:457,transitsmap_crab:457,translat:[28,29,30,31,32,35,36,37,39,40,365,477],transpar:364,transport:449,transpos:409,trapezoid:[129,130,131,132,135,136,137,139,142,144,146,147,258,289],trapz:289,trapz_loglog:395,trash:391,travi:[394,396,400],treat:[90,381,413,414,420,432,541],treatment:[400,428,537],tree:374,trend:432,tri:[357,363],tributor:375,tricki:363,trigger:[327,349,378,457],trim:[97,99,133,134,140,145,148,151,186,188,250],tripl:136,trivial:356,troubl:538,troubleshoot:[381,382,383],trough:437,truelov:53,truncat:[121,296,400],truncation_valu:[264,270],trust:[16,80],trustworthi:377,ts:[65,107,108,109,111,112,113,114,115,118,119,121,260,262,263,365,369,373,397,401,404,405,406,414,417,420,431,434,441,444,446,477,479,537,538],ts_image_estim:430,ts_scan:[112,113],ts_threshold:260,ts_threshold_ul:[441,477],ts_to_sigma:[431,540],tsimageestim:408,tsmap_est:342,tsmapestim:[108,342,370,373,395,396,398,400,414,424,430,479],tstart:[84,86,362,364,423,432,436,439,440,455],tstop:[84,362,364,423,432,436,439,455],tt:[82,89,331,332,375,433,542],tth_sec3:180,tupl:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,41,56,79,80,83,84,86,96,97,99,103,104,116,121,129,130,132,133,134,135,136,137,140,142,143,144,145,146,148,151,156,173,174,175,176,177,178,179,180,181,182,183,184,186,187,188,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,250,253,262,263,266,290,300,307,349,449,491],turn:[79,84,350,352,363,455,535],tutori:[78,94,118,120,160,349,352,353,358,361,362,363,364,365,366,367,370,379,383,384,385,386,389,390,391,392,393,394,395,396,397,399,400,402,403,406,407,408,409,410,411,414,416,417,418,420,421,422,423,425,428,429,430,432,433,434,436,437,438,439,440,441,444,445,446,447,449,451,452,453,456,457,458,463,464,465,479,480,482,491,535,538],tutorials_analysi:[419,427,435,442],tutorials_api:454,tutorials_data:459,tutorials_jupyt:[378,460],tutorials_python:460,tutorials_script:461,tutorials_start:466,tweak:[365,400,449],twice:[111,491,541],twinx:416,two:[19,20,26,28,29,30,31,32,35,36,37,39,40,59,82,83,85,86,96,97,99,103,104,129,130,131,132,135,136,137,138,139,142,144,146,147,151,156,158,174,175,176,177,178,180,183,184,186,187,188,192,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,308,317,338,343,346,348,349,350,352,356,358,359,360,361,363,364,365,366,367,369,370,373,374,375,377,378,379,402,408,410,414,421,422,428,429,431,434,440,444,445,446,447,449,450,452,453,455,457,463,464,469,475,476,477,479,488,491,492,506,540,541],txt:[113,374,376,451,456],tyler:402,type:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,67,80,83,85,86,94,95,96,97,111,112,113,115,121,149,155,173,174,175,176,178,180,183,184,186,187,188,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,278,308,355,358,359,360,361,363,364,365,368,372,373,375,377,379,380,385,393,400,406,407,408,414,417,418,420,421,422,423,425,426,428,429,430,431,432,433,434,436,438,439,440,444,445,446,447,448,449,450,451,452,453,455,456,457,463,464,465,467,477,479,491,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,537,538],typeerror:[16,80,278,363,373,377],typic:[112,355,358,360,367,371,372,373,374,376,381,382,417,422,426,434,436,438,439,444,445,447,450,452,453,467,474,475,476,484,488,536,537],typing_extens:[16,80],typo:[349,386,412,413],u03c3:431,u18:[33,38],u:[19,20,26,28,29,30,31,32,35,36,37,39,40,64,79,81,83,86,97,99,103,104,107,113,115,117,121,132,134,143,175,176,178,184,187,188,197,198,201,205,207,208,209,213,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,255,256,278,298,344,349,364,372,373,376,377,409,416,417,418,420,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,469,476,477,479,481,486,488,489,492,495,497,498,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532],uc:[83,86],ufunc:[175,176,178,184,187,188,422],ui:[28,30,31,32,33,35,36,37,38,39,40,50,52,53,57,58,60,61,79,84,107,114,135,222,255,256,269],ul:[65,111,112,113,114,115,118,119,121,261,429,434,440,444],ultim:349,un:[361,375,397,451],unambigu:452,unbin:[361,362,409],unboundlocalerror:349,uncertaint:367,uncertainti:[52,97,99,103,104,262,263,353,366,407,418,420,441,446,464,536,537,539],unchang:[97,99,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,144,145,146,147,148,173,174,175,176,178,179,183,184,186,187,188,408],unclear:[349,359,360,366,376],uncom:[365,455],undefin:541,under:[70,86,349,353,358,366,375,409,410,421,460,463,475,540,541],underestim:477,underflow:185,underli:[83,86,183,362,418,444,449,465,467,476,479,488,491],underscor:349,understand:[365,386,394,395,417,420,421,422,425,432,433,437,439,440,449,450,451,455,463,464,467,538],undertak:369,unexpect:457,unfold:537,unfreez:[19,20,26,194,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,514],unfreeze_al:[194,196,451],unfrozen:486,unheard:538,uni:377,unicod:[83,86,349],unid:65,unidimension:179,unif:394,unifi:[83,86,353,358,363,389,392,394,395,396,397,400,409,410,537],uniform:[143,192,307,349,358,360,361,371,373,377,391,392,396,400,417,449,536],uniform_filt:[116,188],uniformli:[362,477],uniformprior:377,uninstal:348,union:[80,82,85,97,99,183,313,363,364,375,376,392,475],uniqu:[83,86,95,132,174,175,176,177,178,184,186,187,188,194,196,203,225,342,359,360,361,362,372,375,395,421,445,452,457,492,535],unique_id:452,unique_paramet:[194,196],uniquifi:[83,86],unit:[6,16,19,20,26,27,28,29,30,31,32,35,36,37,39,40,52,64,79,81,83,84,86,91,96,97,99,101,103,104,107,112,113,115,117,121,129,130,131,132,134,135,136,137,139,142,143,144,145,146,147,155,158,174,175,176,177,178,180,181,183,184,185,186,187,188,193,195,197,198,200,201,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,226,228,229,230,231,232,233,236,237,238,239,240,241,243,244,245,246,249,250,251,252,253,255,256,277,278,308,320,321,322,324,333,334,335,338,339,340,344,350,358,360,363,365,367,372,373,377,389,390,392,400,402,408,409,411,412,413,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,469,471,472,473,476,477,479,481,483,484,486,488,489,490,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,537],unit_string_format:[414,416],unitbas:278,uniti:[116,177,252,412,497],unitless:[28,29,30,31,32,35,36,37,39,40,211,250],unitsmap:[28,29,30,31,32,35,36,37,39,40],unitswarn:[416,423,425,428,430,436,440,455],univers:[175,176,178,184,187,188,537],univsers:20,unknown:[263,424,446,537,539,540],unless:[88,90,114,115,118,121,151,278,348,355,374,376,447],unlik:[83,86,260,356,367],unmaintain:390,unmask:[83,86],unnam:[83,86,181],unnecessari:[400,411,428],unneed:414,unphys:541,unrealist:349,unrel:542,unreli:455,unsaf:349,unstabl:[349,455],unsupport:366,untar:455,until:[349,352,356,363,374,407],unus:[365,392,394],unusu:354,uontxtzd:448,up:[28,29,30,31,32,35,36,37,39,40,52,56,57,58,59,60,61,62,63,64,65,71,115,117,121,136,142,144,146,183,278,349,350,353,354,356,357,358,361,363,365,366,367,369,371,375,377,379,381,383,384,385,388,390,391,392,393,394,395,396,397,400,404,406,407,408,409,410,420,421,428,431,432,455,456,492,538],upcast:278,upcom:[357,358],updat:[15,16,80,83,86,98,102,182,193,195,203,225,260,298,317,349,352,354,355,356,357,358,361,366,371,373,375,376,378,379,381,382,389,390,391,392,393,394,395,397,399,400,401,402,403,406,407,408,409,411,414,449,452,490,491,542],update_config:15,update_forward_ref:[16,80],update_from_dict:[193,195],update_link_label:[203,225],update_parameters_from_t:[203,225],upgrad:[174,348,374,382],upload:[366,378,455],upon:[97,99,103,104,358,425,451,455,475],upper:[17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,35,36,37,39,40,76,96,111,112,113,114,115,118,119,121,132,180,185,192,197,198,201,202,205,207,208,209,210,213,214,216,217,218,219,220,222,226,228,230,231,232,233,236,239,241,243,244,245,246,249,251,253,254,261,262,263,376,385,396,400,407,408,409,420,434,438,445,448,463,475,477],upper_error:113,upsampl:[145,173,174,175,176,177,178,179,180,183,184,185,186,187,188,391,411],upstream:[349,352],upward:[262,263],url:357,us:[11,13,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,35,36,37,39,40,41,46,47,53,56,57,59,63,67,68,69,71,72,76,78,79,80,81,82,83,84,86,88,89,90,91,96,97,98,99,101,102,103,104,105,106,109,111,112,113,114,115,116,118,119,121,122,123,124,126,127,128,129,130,131,132,133,135,136,137,139,142,143,144,145,146,147,148,150,151,152,155,158,159,160,161,162,163,164,165,166,168,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,256,258,261,264,276,278,286,289,290,291,298,299,302,307,308,314,317,332,333,335,336,338,339,340,342,343,344,345,346,348,350,351,352,354,355,356,357,358,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,378,379,380,381,383,384,386,388,389,390,391,392,393,394,395,396,397,400,401,402,404,405,406,407,408,409,410,411,412,414,416,417,418,420,422,423,424,425,426,428,429,430,433,434,436,437,439,440,441,443,444,448,450,451,452,453,454,455,456,457,458,460,462,465,468,469,479,481,482,483,485,489,490,492,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,510,511,512,513,514,515,516,517,518,519,523,524,525,526,527,528,529,530,531,532,533,536,537,538,539,540,542,543],usabl:349,usag:[16,28,29,30,31,32,35,36,37,39,40,78,80,118,120,160,173,174,183,186,302,355,359,360,362,364,368,373,393,414,444,448,450,451,538],use_cach:226,use_center_as_plot_label:180,use_enum_valu:[16,80],use_evaluation_region:[203,225],use_fft:188,use_local_fil:[83,86],use_nullable_int:[83,86],use_region_cent:[155,162,165,166,168,169,400,417],useless:455,user:[15,19,20,28,29,30,31,32,35,36,37,39,40,78,84,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,349,350,352,354,355,357,358,359,360,361,362,363,364,365,366,367,368,369,371,373,374,375,376,378,379,380,382,386,393,400,401,407,408,409,411,421,431,432,433,445,447,449,450,451,452,453,460,463,476,477,478,479,484,488,499,503,524,534,535,538],userdataset:361,usernam:352,userwarn:[420,422,430,434],uses_quant:[28,29,30,31,32,35,36,37,39,40],usr:538,usual:[29,78,79,112,126,129,130,131,143,184,286,349,350,352,354,355,356,357,363,364,369,375,379,414,416,417,418,420,422,423,425,426,430,432,433,436,437,438,439,440,443,445,450,453,457,464,467,475,479,481,482,483,485,488,492,496,535,537,538,539],ut1:542,utc:[82,84,330,432,438,439,449,452,525,526,527,528,529,530,531,532,533,542],utf8:[16,80],utf:[83,86],util:[6,80,88,113,114,115,121,122,123,124,125,126,127,128,134,151,164,165,166,167,168,169,170,171,172,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,349,358,360,361,362,363,373,388,391,392,393,394,401,402,405,406,407,408,409,410,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,463,464,465,467,468,479,537],utilis:[79,127,416,420,424,431,437,449,453,476,479],v0:[90,356,357,360,361,363,366,368,369,374,389,390,391,392,393,394,395,396,397,398,399,400,402,403,409,410,411,432,433,447,451],v1:[13,16,79,80,84,349,356,358,360,365,366,367,368,374,375,378,394,395,396,402,407,411,412,413,414,510,513],v2:[375,376,400,408,455],v3:392,v:[26,31,32,37,83,86,182,282,352,364,376,377,378,379,402,416,443],v_0:[37,49],v_glat:285,v_glon:285,va:495,vagu:354,vain:352,val:[83,86,175,176,178,184,187,188,194,196,449,491],valfmt:338,valid:[16,28,29,30,31,32,35,36,37,39,40,80,83,86,100,112,115,147,161,173,174,175,176,177,178,179,180,181,183,184,186,187,188,278,296,348,349,358,362,365,366,375,394,402,411,417,420,446,448,449,452,456,477,479,484,537],valid_hdu_class:[78,83],valid_hdu_typ:83,validate_al:376,validate_assign:[16,80,376],validate_default:[16,80],validate_loc:376,validate_zenith_angl:376,validationerror:[16,80,376],valle:38,valleespir:469,valu:[11,15,16,19,20,26,28,29,30,31,32,35,36,37,39,40,42,52,79,80,82,83,84,86,87,90,94,95,96,97,99,103,104,105,107,109,111,112,113,114,115,116,118,119,121,126,127,129,130,131,132,133,134,135,136,137,138,139,140,142,144,145,146,147,148,151,155,161,162,164,165,166,168,169,173,174,175,176,177,178,179,180,182,183,184,185,186,187,188,192,193,194,195,196,197,198,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,260,261,262,263,264,266,267,268,278,282,290,291,305,308,317,320,335,338,339,340,350,352,355,360,361,363,365,367,369,372,373,376,391,394,400,411,414,416,417,418,420,421,422,423,424,425,426,428,429,430,432,433,434,436,437,438,440,441,443,444,445,446,447,448,450,451,452,453,455,456,457,458,463,464,465,467,471,472,473,477,479,483,491,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,538,539,540,541],value_rang:86,value_scan:261,valueerror:[16,28,29,30,31,32,35,36,37,39,40,70,80,83,86,87,95,203,225,349,363,376],values_equ:[83,86],values_err:441,values_scal:[129,130,131,184,188,217,248,252,253,290,412,414,433],vanilla:[83,86],vari:[66,98,102,118,143,192,290,317,361,363,364,374,394,397,425,430,431,433,442,448,452,456,460,477,484,487,535],variability_amplitud:437,variability_amplitude_100:437,variability_amplitude_error:437,variability_amplitude_signific:437,variability_estim:[437,442],variabl:[11,16,28,29,30,31,32,35,36,37,39,40,78,80,86,122,188,262,263,266,267,268,269,289,315,349,350,352,362,364,365,379,381,383,389,390,406,407,408,414,416,417,420,421,422,423,424,425,426,428,429,430,431,433,434,438,439,440,441,442,443,444,445,446,448,449,450,451,452,455,456,457,458,460,463,464,465,484,538,539,540],varianc:[91,123,124,268,269,277,364,453],variant:379,variat:[122,218,268,355,365,416,437,447,448,489,540],varieti:[360,536],variou:[109,114,115,118,119,121,127,349,355,359,361,364,373,376,379,381,400,401,418,421,424,429,431,438,446,463,475,479,536,542],vast:[366,402],vaughan2003:269,vaughan:[269,437],vb9gajj:448,ve:[349,350,352,538],vector:[173,174,175,176,178,183,184,186,187,188,449,483,491],vega:409,vel:441,vel_di:[45,469],vela:[64,388,418,441,465],veloc:[31,32,37,45,49,282,285],ver:449,verbos:[11,78,350,372,538,540],veri:[62,83,86,126,192,339,348,349,350,351,354,355,360,362,363,364,365,366,367,368,369,372,373,376,379,410,416,423,437,444,446,449,456,465,475,479,492,500,501,535,537,538,539],verifi:[194,196,215,260,349,362,444,479],verifywarn:479,verita:[92,381,386,456],versa:174,version:[11,74,79,81,83,84,86,113,114,115,118,163,193,195,348,350,352,353,356,357,358,359,363,366,369,375,376,377,379,380,381,382,384,386,388,389,390,391,393,394,399,401,402,404,407,408,409,411,412,414,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465,477,538],versu:[129,135,260,262,263,455,473],vert:232,vertex:363,vhe:[417,467],via:[28,29,30,31,32,35,36,37,39,40,65,78,79,86,98,102,176,181,191,348,350,352,357,361,363,364,365,366,367,368,370,372,375,376,377,378,379,381,382,389,397,405,407,408,409,413,414,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,462,463,464,465,479,483,488,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,538,542],viabil:376,vice:174,victor:404,view:[79,83,86,129,130,131,132,135,136,137,138,139,142,144,146,147,152,175,176,178,182,184,187,188,211,280,284,336,349,363,390,395,400,402,409,410,420,422,426,428,432,445,447,448,450,455,456,479,481,482,483,484,485,486,488,537],vika:400,viridi:[422,443],virtual:[352,379,381,382,383,538],visibl:[83,86,339,340,357,400,416,432,457,464,465,537],vision:354,visit:433,visual:[6,176,188,336,337,338,339,340,341,342,343,344,345,346,347,363,395,396,414,420,422,426,428,430,433,437,446,447,453,457,458,464,465,479,488,493,495,536],visualis:[346,361,363,370,396,411,422,424,447,452,455,479],vline:[473,495,496],vmax:[97,99,103,104,339,340,425,428,430,436,445,449,450,456,457,463,464,488],vmin:[97,99,103,104,339,340,424,428,436,445,449,450,456,457,463,464,488],volum:[27,179,183,186],vorokh:[405,406],voruganti:[407,408],vs:[136,142,144,145,146,148,157,164,251,260,357,365,438,453,463],vstack:[79,82,362],vuillaum:[375,408],vx:[282,285,374],vy:[282,285],vz:[282,285],w:[26,31,49,82,172,185,275,350,374,424,426,434,443,448,452,479,488,539,541],wa:[16,19,20,28,29,30,31,32,35,36,37,39,40,59,80,81,83,86,88,89,97,107,114,115,118,121,151,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,342,349,352,354,355,356,357,358,359,362,363,365,366,367,368,369,370,372,373,374,375,376,377,379,389,392,393,394,395,396,397,404,408,409,410,411,412,413,414,418,420,426,428,430,448,455,456,457,458,465,538],wagner:437,wai:[33,38,79,83,86,180,302,308,348,349,350,352,354,355,356,357,359,360,361,363,364,365,366,369,370,373,375,381,382,383,385,388,392,408,409,418,420,422,425,428,437,444,445,446,448,449,450,451,453,455,456,457,458,460,469,476,478,479,483,492,536,538,540],wait:[349,378,379],wall:[79,84],want:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,78,79,80,101,132,158,183,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,349,351,352,354,355,356,359,363,364,365,367,368,369,379,380,381,382,383,384,385,386,389,409,417,420,421,422,423,425,432,433,436,438,440,441,443,444,445,446,448,449,450,451,452,455,456,463,464,465,483,535,538,539,540,541,542],ward:276,warn:[11,16,26,78,80,83,86,176,193,194,195,196,248,249,250,252,335,374,379,391,408,413,414,416,423,424,425,428,430,432,433,436,440,441,455,479,502,510,513,538],warn_miss:83,warn_with_traceback:349,wasn:[356,409],watch:[456,542],water:[381,457],watson:390,wavelength:368,wavelet:[388,406],wc:[13,16,79,97,99,103,115,150,158,159,163,174,175,176,178,183,184,186,187,188,200,203,204,212,215,225,227,237,238,242,248,252,311,344,349,355,363,368,390,391,392,394,400,408,409,413,420,421,424,425,426,428,430,434,438,441,443,445,447,448,450,451,452,456,463,464,465,488,491,495,496,497,502],wcda:[57,68],wcs_geom:[183,203,225,449,492],wcs_geom_3d:449,wcs_geom_cel:449,wcs_map:[187,188,342],wcs_tile:[174,176],wcsax:[97,99,103,104,176,183,184,188,203,225,344,346,428,449,465,494,498,499,500],wcsconfig:16,wcsgeom:[23,79,97,99,103,104,106,111,112,121,134,143,145,155,168,169,173,174,183,187,188,199,200,204,212,215,227,229,237,238,242,248,252,355,363,390,393,394,395,400,413,420,425,430,432,433,434,436,441,443,445,447,448,449,450,452,456,457,458,464,465,475,477,486,488,489,492,494,496,497,498,499],wcslib:349,wcsmap:[175,176,178,188,411],wcsndmap:[97,99,107,121,126,143,145,148,150,152,157,158,159,160,163,168,169,174,175,176,178,184,186,187,189,190,203,225,240,248,336,342,344,355,393,394,395,397,400,402,409,411,414,424,425,434,443,445,448,449,450,456,465,475,477,485,488],wcsprm:502,wcsshape:449,we:[13,19,20,28,29,30,31,32,35,36,37,39,40,63,79,83,84,85,86,90,157,183,186,193,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,256,324,349,350,352,354,355,356,358,359,360,361,362,363,366,367,368,369,370,371,372,375,376,378,379,380,381,382,383,385,388,389,390,391,396,400,402,407,408,409,410,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,462,463,464,465,476,483,484,486,488,491,501,504,514,535,538,539,540,541,542],weak:368,weaker:260,weakli:450,web:[83,86,357,375,378,379,385,386,400,408,444],webpag:[351,357,369,375,378,408,411],wedg:363,week:[352,357,367,369,374,378],weekli:[355,358,362,363,438],wegen:[408,409],weigh:[145,148],weight:[65,133,134,140,143,145,148,174,175,176,178,183,184,186,187,188,250,377,410,414,431,437,475,491],weighted_chi2_paramet:431,weighted_kernel:143,welcom:[354,363,456],well:[11,19,20,28,29,30,31,32,35,36,37,39,40,56,65,79,83,86,99,104,111,112,119,174,178,180,184,186,193,197,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,339,340,348,349,350,351,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,378,379,380,381,382,385,386,389,391,392,393,394,395,396,397,400,402,403,408,409,410,414,417,423,426,431,433,438,440,445,446,447,448,449,450,452,455,456,460,463,464,465,475,476,477,488,491,492,535,536,538,540],went:389,were:[16,28,29,30,31,32,35,36,37,39,40,80,122,267,349,354,355,356,357,362,364,365,366,367,368,369,370,372,374,377,379,389,392,393,394,395,396,397,400,403,408,409,412,429,441,450,455,541],what:[13,28,29,30,31,32,35,36,37,39,40,46,256,308,350,355,363,366,368,369,376,379,387,434,443,444,446,455,456,460,464,467,475,492,523,538,539,542],whatev:[363,365,366,538],whatsnew:378,wheel:366,when:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,52,53,79,80,82,83,84,85,86,95,96,97,98,99,101,102,103,104,111,112,125,133,134,140,145,147,148,158,161,175,176,178,180,182,184,187,188,192,197,198,201,205,207,208,209,213,217,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,252,253,290,348,349,350,352,354,355,356,359,361,363,364,366,369,374,375,376,377,382,394,402,403,408,410,413,414,422,426,430,433,434,438,439,441,444,446,448,449,452,453,455,456,475,477,479,484,486,490,491,537,539,540,541,542],whenev:[83,86],where:[11,16,19,20,26,28,29,30,31,32,35,36,37,39,40,52,79,80,83,84,86,112,113,116,121,132,133,134,140,145,148,150,161,173,174,175,176,178,180,183,184,186,187,188,189,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,264,267,270,271,278,314,350,352,354,356,357,358,359,360,361,362,363,365,367,368,369,370,371,372,373,376,377,379,381,383,385,391,403,409,416,420,425,432,433,444,448,449,450,452,455,456,457,465,467,475,476,479,484,491,495,496,497,500,501,504,537,538,539,540,541,542],wherea:[355,363,366,538],whether:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,79,80,82,83,84,86,95,97,99,101,103,104,112,113,114,121,129,130,131,132,135,136,137,139,142,144,146,147,161,173,174,175,176,177,178,179,180,183,184,185,186,187,188,192,193,197,198,200,201,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,225,226,228,229,230,231,232,233,236,237,238,239,241,243,244,245,246,249,250,251,252,253,278,287,318,346,354,356,363,366,368,369,376,414,423,436,448,449,465,491,539,540],which:[16,19,20,26,28,29,30,31,32,35,36,37,39,40,41,43,56,57,59,65,68,70,76,79,80,81,82,83,84,85,86,88,89,90,91,95,96,97,99,101,103,104,107,109,111,112,113,114,115,117,118,119,120,121,122,129,130,131,132,135,136,137,139,142,143,144,145,146,147,148,150,151,155,156,161,162,172,174,175,176,178,179,180,183,184,187,188,192,197,198,199,200,201,203,204,205,207,208,209,212,213,215,219,220,222,225,226,227,228,229,230,231,232,236,237,238,240,241,242,243,244,245,246,248,249,250,252,253,256,260,262,263,267,268,269,276,290,300,310,311,327,336,338,343,345,348,350,352,354,355,356,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,377,379,380,384,386,390,391,392,394,395,396,397,400,403,409,411,414,416,417,420,423,424,425,426,428,431,432,433,434,437,438,440,441,444,445,446,448,449,450,451,452,453,455,456,457,458,463,464,465,469,470,475,476,477,479,481,482,483,485,486,488,490,491,492,493,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,535,536,537,538,539,540,541],whichev:[174,175,176],whilst:[350,453,460],whippl:92,whirlwind:460,white:[268,338,339,430,441,446,451,467,492],whitespac:296,who:[375,443,467],whole:[90,107,152,155,162,165,166,168,169,174,175,176,178,187,188,226,255,262,263,349,355,361,364,375,417,420,428,433,438,441,445,452,456,458,535],whose:[375,379,433,485,496],why:[349,350,354,356,363,446,492],whz3_vb9:428,wide:[356,375,376,390,409,418,429,537],wider:[439,450],widget:[175,176,178,184,187,188,428,436,449,463,464],width:[16,27,66,79,83,86,97,99,103,104,105,107,116,121,132,133,134,137,140,143,145,148,150,155,160,174,175,176,177,178,179,180,183,184,185,186,187,188,200,203,204,212,214,215,225,227,237,238,240,242,248,250,252,339,340,365,372,410,421,422,425,426,428,430,431,432,433,434,436,438,441,443,444,445,447,448,449,450,452,456,457,463,464,465,486,488,489,490,491,492,495,496,497,499,500,501],width_err:444,width_error:66,width_min:183,width_pix:[174,175,176],widthconfig:16,wiki:[34,79,84,400,455],wikipedia:[34,79,84,307,363,367],wilk:[260,477,540],willing:352,wind:[50,426,431,452,470],window:[105,348,349,356,366,379,381,383,389,405,409,424,444,537,538,540],wise:[19,20,26,83,86,126,127,176,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,377,402,426,428,475],wish:[183,352,367,431,446],with_bbox:[28,29,30,31,32,35,36,37,39,40],with_bounding_box:[28,29,30,31,32,35,36,37,39,40],with_units_from_data:[28,29,30,31,32,35,36,37,39,40],withdraw:[359,360,361,364,371,373],withdrawn:[353,354,359,360,361,364,371,373],within:[114,117,126,174,188,202,203,204,210,214,215,216,217,218,225,233,237,239,240,251,254,348,349,350,354,358,363,365,366,367,368,369,372,374,375,377,379,380,381,383,403,406,408,412,414,421,422,428,431,438,439,440,444,448,449,452,453,456,460,465,475,478,479,537],without:[13,28,29,30,31,32,35,36,37,39,40,118,135,173,174,179,183,186,346,349,352,354,357,359,363,364,365,366,368,373,379,390,391,395,421,424,428,429,443,448,449,450,463,479,490,491,492,533,538,540],without_units_for_data:[28,29,30,31,32,35,36,37,39,40],wl:[26,443],wo:441,wobbl:[90,440,455],wobbleregionfind:402,wobbleregionsfind:422,wolfram:[305,306],women:405,won:[83,86,107,111,114,118,121,321,374,428,449,455,541],wong:392,wood:[356,406,408,409],word:[28,29,30,31,32,35,36,37,39,40,479],work:[11,13,16,28,29,30,31,32,35,36,37,39,40,83,86,95,185,314,348,349,350,352,354,356,357,358,359,360,361,363,364,365,366,367,368,369,371,374,375,378,379,380,381,382,384,385,386,388,389,390,391,392,394,395,401,404,405,406,407,408,409,410,411,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,436,438,439,440,441,443,444,445,446,447,448,449,450,451,452,455,456,457,458,463,464,465,475,479,489,491,502,504,510,513,526,532,533,538],workaround:366,workflow:[352,357,358,365,370,374,379,394,421,426,460,463,464,480],workshop:358,workspac:352,world:[79,186,203,225,349,355,430,465,491],worst:352,worth:[349,467],would:[16,80,83,86,90,175,176,178,184,187,188,349,352,355,356,357,360,361,363,364,365,366,367,368,369,370,373,375,376,391,400,418,420,423,424,436,446,449,450,452,456,492],wouldn:363,wp:[378,455],wrap:[28,29,30,31,32,35,36,37,39,40,236,286,363,393],wrap_at:360,wrapper:[56,226,236,290,363,364,391,394,467,479],write:[11,15,16,26,78,79,82,83,84,86,95,96,97,99,101,103,104,112,113,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,175,176,178,182,184,187,188,203,217,225,248,249,250,251,252,318,327,350,352,358,359,360,361,362,363,365,366,368,369,371,372,373,375,376,377,379,385,388,394,397,402,404,407,408,409,410,416,420,428,429,432,434,447,451,452,455,456,462,463,464,479,484,539,541],write_arf:101,write_bkg:101,write_covari:[15,95,203,225],write_dataset:15,write_ds9:452,write_model:15,write_pha:101,write_rmf:101,writeabl:377,writer:[83,86,369,376],writeto:[82,129,130,131,135,136,137,139,142,144,146,147,432],written:[79,84,95,96,97,99,101,103,104,133,134,140,145,148,175,176,178,182,184,187,188,190,349,350,352,354,358,359,369,375,377,412,416,433,451,467,475,476,479,492,537,542],wrong:[349,398,412,413,414],wrote:375,wrt:[79,145,148,349,367,440,533],wstat:[99,104,272,273,361,388,406,407,420,421,423,426,430,441,445,475,537],wstatcountsstatist:[441,540],wt:[26,443],wun:392,www:[26,65,83,86,369,455],wyatt:[388,537],x27:447,x86_64:[416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],x:[19,20,28,29,30,31,32,33,34,35,36,37,38,39,40,41,46,65,66,83,86,97,103,116,126,130,180,184,185,192,193,195,197,200,201,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,222,229,230,231,232,233,236,237,238,239,241,244,245,246,251,252,268,269,271,281,282,283,285,289,291,296,305,338,341,342,349,350,354,356,357,358,363,374,378,381,383,418,423,424,430,433,437,441,444,446,447,449,456,465,473,479,495,496,538,540],x_0:[175,176,178,184,187,188],x_1:290,x_2:290,x_3:290,x_:116,x_bkg:441,x_edg:117,x_high:[28,29,30,31,32,35,36,37,39,40],x_i:[175,176,178,184,187,188],x_j:116,x_low:[28,29,30,31,32,35,36,37,39,40],x_max:[116,303,305,434],x_min:[116,303,305,434],x_n:[175,176,178,184,187,188],x_r_0:215,x_ref:[116,434],x_sigma:212,x_stddev:[28,29,30,31,32,35,36,37,39,40],x_valu:[192,446],xarg:349,xaxi:479,xerr:[416,437],xf:455,xfail:349,xlabel:[64,65,350,414,426,440,446,456,471,472,473,495,532],xlim:[336,428,456,473],xmax:[17,18,21,22,24,25,27,184,377],xmin:[17,18,21,22,24,25,27,184,377],xml:[358,359,360,393,407,409,455,467],xmltodict:[401,455],xovh6r3t:452,xref:116,xspec:[205,253,275,407,539],xunit:[422,504],xviii:369,xx:[360,375],xxx:[83,86,354,375],xxx_by_coord:449,xxxx:479,xy:[420,430,434,495],xy_posit:[33,34,38],xytext:495,xyz:378,y277mdag:448,y:[19,20,26,28,29,30,31,32,33,34,35,36,37,38,39,40,41,46,66,83,86,126,130,180,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,281,282,283,285,289,291,341,349,363,374,381,383,414,416,424,430,433,446,473,479],y_high:[28,29,30,31,32,35,36,37,39,40],y_low:[28,29,30,31,32,35,36,37,39,40],y_stddev:[28,29,30,31,32,35,36,37,39,40],y_valu:[192,446],yaml:[11,15,16,20,26,80,94,95,96,97,99,103,104,112,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,224,225,226,227,228,229,230,231,232,233,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,260,316,318,348,357,358,360,361,362,365,366,371,376,377,379,380,392,393,394,397,402,411,416,417,420,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,464,465,478,535,536,537,538],yaml_str:[203,225,421],yaxi:[418,479],ye:379,year:[45,60,63,74,349,354,356,357,359,366,369,370,374,376,379,406,408,409,429,431,444,455,471,472,473,474],yearli:[382,407],yellow:339,yerr:441,yet:[85,348,349,352,354,356,363,366,369,370,415,418,421,463,542],yield:[28,29,30,31,32,35,36,37,39,40,78,79,84,87,175,176,178,184,187,188,314,356,362,363,368,370,372,377,450,539,540,541],yk04:[45,48],yk04b:48,ylabel:[64,65,350,440,446,456,471,472,473,495,532],ylim:[336,426,437,456,471,473,511,520,521,522],ymax:[495,496],ymin:[495,496],yml:[352,366,378,379,381,383,408],ynrrrydv:448,you:[16,19,20,26,65,78,79,80,83,86,89,96,101,113,126,130,132,135,158,175,176,178,184,187,188,192,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,255,260,348,349,350,351,352,354,356,359,363,366,367,378,379,380,381,382,383,384,385,386,389,390,391,400,408,409,410,417,418,420,421,422,423,425,426,428,430,432,433,436,439,440,441,444,445,446,448,449,450,451,452,455,456,457,458,460,463,464,465,475,476,479,482,490,512,535,538,539,540,541,542],your:[16,19,20,26,80,94,197,198,201,205,207,208,209,213,219,220,222,226,228,230,231,232,236,241,243,244,245,246,249,253,348,349,350,352,354,356,379,380,381,382,383,385,386,389,390,391,394,395,400,409,410,416,417,418,420,422,423,424,425,426,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,460,462,463,464,465,474,479,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,537,540],yourself:[538,539],yr:[45,52,53,469,471,472,473],yscale:[426,530],yt:349,yu:392,yunit:[420,422,443,444,456,515],yusifovkucuk2004:[28,29,30,35,36,40,48],yusifovkucuk2004b:[28,29,30,35,36,39,48],yve:408,yy:375,yyyi:375,z:[19,20,26,28,29,30,31,32,35,36,37,39,40,41,46,83,86,281,282,285,374,375,381,383,443,469,504],z_0:29,z_high:[28,29,30,31,32,35,36,37,39,40],z_low:[28,29,30,31,32,35,36,37,39,40],zabalza:404,zanin:[408,409],zd:79,zen:453,zen_pnt:453,zenith:[416,429,453,455,456,457,484],zenith_angl:[79,376,456,465],zenodo:[375,402],zero:[52,53,65,83,86,95,97,99,103,104,121,126,132,133,134,137,140,145,161,175,176,178,184,187,188,229,250,252,253,290,296,308,349,393,396,411,444,448,449,541],zhao:27,zip:[364,377,378,420,437,439,443,446,451,460,473,493,497,501,514],zl:[26,443],zone:441,zsh:350,zt:[26,443]},titles:["analysis - High level interface","astro - Astrophysics","catalog - Source catalogs","data - DL3 data and observations","datasets - Reduced datasets","estimators - High level estimators","API reference","irf - Instrument response functions","makers - Data reduction","maps - Sky maps","modeling - Models and fitting","scripts - Command line tools","stats - Statistics","utils - Utilities","visualization - Plotting features","Analysis","AnalysisConfig","BurkertProfile","DMProfile","DarkMatterAnnihilationSpectralModel","DarkMatterDecaySpectralModel","EinastoProfile","IsothermalProfile","JFactory","MooreProfile","NFWProfile","PrimaryFlux","ZhaoProfile","CaseBattacharya1998","Exponential","FaucherKaspi2006","FaucherKaspi2006VelocityBimodal","FaucherKaspi2006VelocityMaxwellian","FaucherSpiral","LogSpiral","Lorimer2006","Paczynski1990","Paczynski1990Velocity","ValleeSpiral","YusifovKucuk2004","YusifovKucuk2004B","add_observed_parameters","add_pulsar_parameters","add_pwn_parameters","add_snr_parameters","make_base_catalog_galactic","make_catalog_random_positions_cube","make_catalog_random_positions_sphere","radial_distributions","velocity_distributions","PWN","Pulsar","SNR","SNRTrueloveMcKee","SimplePulsar","CATALOG_REGISTRY","SourceCatalog","SourceCatalog1LHAASO","SourceCatalog2FHL","SourceCatalog2HWC","SourceCatalog3FGL","SourceCatalog3FHL","SourceCatalog3HWC","SourceCatalog4FGL","SourceCatalogGammaCat","SourceCatalogHGPS","SourceCatalogLargeScaleHGPS","SourceCatalogObject","SourceCatalogObject1LHAASO","SourceCatalogObject2FHL","SourceCatalogObject2HWC","SourceCatalogObject3FGL","SourceCatalogObject3FHL","SourceCatalogObject3HWC","SourceCatalogObject4FGL","SourceCatalogObjectGammaCat","SourceCatalogObjectHGPS","SourceCatalogObjectHGPSComponent","DataStore","EventList","EventListMetaData","FixedPointingInfo","GTI","HDUIndexTable","Observation","ObservationFilter","ObservationTable","Observations","ObservationsEventsSampler","PointingInfo","PointingMode","get_irfs_features","observatory_locations","DATASET_REGISTRY","Dataset","Datasets","FluxPointsDataset","MapDataset","MapDatasetEventSampler","MapDatasetOnOff","OGIPDatasetReader","OGIPDatasetWriter","ObservationEventSampler","SpectrumDataset","SpectrumDatasetOnOff","create_map_dataset_from_observation","create_map_dataset_geoms","ASmoothMapEstimator","ESTIMATOR_REGISTRY","EnergyDependentMorphologyEstimator","Estimator","ExcessMapEstimator","FluxMaps","FluxPoints","FluxPointsEstimator","FluxProfileEstimator","ImageProfile","ImageProfileEstimator","LightCurveEstimator","ParameterEstimator","SensitivityEstimator","TSMapEstimator","compute_lightcurve_doublingtime","compute_lightcurve_fpp","compute_lightcurve_fvar","estimate_exposure_reco_energy","find_peaks","find_peaks_in_flux_map","resample_energy_edges","Background2D","Background3D","BackgroundIRF","EDispKernel","EDispKernelMap","EDispMap","EffectiveAreaTable2D","EnergyDependentMultiGaussPSF","EnergyDispersion2D","FoVAlignment","IRF","IRFMap","IRF_REGISTRY","PSF3D","PSFKernel","PSFKing","PSFMap","ParametricPSF","RadMax2D","RecoPSFMap","load_irf_dict_from_file","AdaptiveRingBackgroundMaker","DatasetsMaker","FoVBackgroundMaker","MAKER_REGISTRY","Maker","MapDatasetMaker","PhaseBackgroundMaker","ReflectedRegionsBackgroundMaker","ReflectedRegionsFinder","RegionsFinder","RingBackgroundMaker","SafeMaskMaker","SpectrumDatasetMaker","WobbleRegionsFinder","make_counts_rad_max","make_edisp_kernel_map","make_edisp_map","make_effective_livetime_map","make_map_background_irf","make_map_exposure_true_energy","make_observation_time_map","make_psf_map","make_theta_squared_table","Geom","HpxGeom","HpxMap","HpxNDMap","LabelMapAxis","Map","MapAxes","MapAxis","MapCoord","Maps","RegionGeom","RegionNDMap","TimeMapAxis","WcsGeom","WcsMap","WcsNDMap","containment_radius","containment_region","Covariance","Fit","Parameter","Parameters","PriorParameter","PriorParameters","BrokenPowerLawSpectralModel","CompoundSpectralModel","ConstantFluxSpatialModel","ConstantSpatialModel","ConstantSpectralModel","ConstantTemporalModel","DatasetModels","DiskSpatialModel","EBLAbsorptionNormSpectralModel","EBL_DATA_BUILTIN","ExpCutoffPowerLaw3FGLSpectralModel","ExpCutoffPowerLawNormSpectralModel","ExpCutoffPowerLawSpectralModel","ExpDecayTemporalModel","FoVBackgroundModel","GaussianSpatialModel","GaussianSpectralModel","GaussianTemporalModel","GeneralizedGaussianSpatialModel","GeneralizedGaussianTemporalModel","LightCurveTemplateTemporalModel","LinearTemporalModel","LogParabolaNormSpectralModel","LogParabolaSpectralModel","MODEL_REGISTRY","MeyerCrabSpectralModel","Model","ModelBase","Models","NaimaSpectralModel","PiecewiseNormSpatialModel","PiecewiseNormSpectralModel","PointSpatialModel","PowerLaw2SpectralModel","PowerLawNormSpectralModel","PowerLawSpectralModel","PowerLawTemporalModel","SPATIAL_MODEL_REGISTRY","SPECTRAL_MODEL_REGISTRY","ScaleSpectralModel","Shell2SpatialModel","ShellSpatialModel","SineTemporalModel","SkyModel","SmoothBrokenPowerLawSpectralModel","SpatialModel","SpectralModel","SuperExpCutoffPowerLaw3FGLSpectralModel","SuperExpCutoffPowerLaw4FGLDR3SpectralModel","SuperExpCutoffPowerLaw4FGLSpectralModel","TEMPORAL_MODEL_REGISTRY","TemplateNDSpatialModel","TemplateNDSpectralModel","TemplateNPredModel","TemplatePhaseCurveTemporalModel","TemplateSpatialModel","TemplateSpectralModel","TemporalModel","create_cosmic_ray_spectral_model","create_crab_spectral_model","create_fermi_isotropic_diffuse_model","integrate_spectrum","scale_plot_flux","select_nested_models","stat_profile_ul_scipy","CashCountsStatistic","WStatCountsStatistic","cash","cash_sum_cython","compute_chisq","compute_flux_doubling","compute_fpp","compute_fvar","cstat","f_cash_root_cython","get_wstat_gof_terms","get_wstat_mu_bkg","norm_bounds_cython","wstat","hierarchical_clustering","standard_scaler","D_SUN_TO_GALACTIC_CENTER","cartesian","fov_to_sky","galactic","motion_since_birth","polar","sky_to_fov","velocity_glon_glat","HDULocation","LazyFitsData","earth_location_from_dict","trapz_loglog","ScaledRegularGridInterpolator","interpolate_profile","interpolation_scale","BACKEND_DEFAULT","METHOD_DEFAULT","METHOD_KWARGS_DEFAULT","N_JOBS_DEFAULT","POOL_KWARGS_DEFAULT","multiprocessing_manager","run_multiprocessing","InverseCDFSampler","draw","get_random_state","normalize","pdf","sample_powerlaw","sample_sphere","sample_sphere_distance","sample_times","compound_region_to_regions","make_concentric_annulus_sky_regions","make_orthogonal_rectangle_sky_regions","region_to_frame","regions_to_compound_region","get_images_paths","make_path","read_yaml","recursive_merge_dicts","write_yaml","hstack_columns","table_row_to_dict","table_standardise_units_copy","table_standardise_units_inplace","Checker","assert_quantity_allclose","assert_skycoord_allclose","assert_time_allclose","mpl_plot_check","requires_data","requires_dependency","absolute_time","time_ref_from_dict","time_ref_to_dict","time_relative_to_ref","standardise_unit","unit_from_fits_image_hdu","MapPanelPlotter","add_colorbar","annotate_heatmap","colormap_hess","colormap_milagro","plot_contour_line","plot_distribution","plot_heatmap","plot_map_rgb","plot_npred_signal","plot_spectrum_datasets_off_regions","plot_theta_squared_table","Dependencies","Developer How To","Documentation How To","Developer guide","How to contribute to Gammapy","PIGs","PIG 1 - PIG purpose and guidelines","PIG 2 - Organization of low level analysis code","PIG 3 - Plan for dropping Python 2.7 support","PIG 4 - Setup for tutorial notebooks and data","PIG 5 - Gammapy 1.0 roadmap","PIG 6 - CTA observation handling","PIG 7 - Models","PIG 8 - Datasets","PIG 9 - Event sampling","PIG 10 - Regions","PIG 11 - Light curves","PIG 12 - High level interface","PIG 13 - Gammapy dependencies and distribution","PIG 14 - Uncertainty estimation","PIG 16 - Gammapy package structure","PIG 18 - Documentation","PIG 19 - Gammapy package structure follow up","PIG 20 - Global Model API","PIG 21 - Models improvements","PIG 22 - Unified flux estimators API","PIG 23 - Gammapy release cycle and version numbering","PIG 24 - Authorship policy","PIG 25 - Metadata container for Gammapy","PIG 26 - Model Priors API","How to make a Gammapy release","Project setup","Virtual Environments","Getting started","Installation","Quickstart Setup","Troubleshooting","Using Gammapy","Gammapy","Release notes","0.1 (Aug 25, 2014)","0.10 (Jan 28, 2019)","0.11 (Mar 29, 2019)","0.12 (May 30, 2019)","0.13 (Jul 26, 2019)","0.14 (Sep 30, 2019)","0.15 (Dec 3, 2019)","0.16 (Feb 1, 2020)","0.17 (Apr 1, 2020)","0.18 (Nov 4th, 2020)","0.18.1 (Nov 6th, 2020)","0.18.2 (Nov 19th, 2020)","0.19 (Nov 22nd, 2021)","0.2 (Apr 13, 2015)","0.20 (May 12th, 2022)","0.20.1 (June 16th, 2022)","0.3 (Aug 13, 2015)","0.4 (Apr 20, 2016)","0.5 (Nov 22, 2016)","0.6 (Apr 28, 2017)","0.7 (Feb 28, 2018)","0.8 (Sep 23, 2018)","0.9 (Nov 29, 2018)","1.0 (November 10th, 2022)","1.0.1 (March 14th, 2023)","1.0.2 (December 6th, 2023)","1.1 (June 13th 2023)","1.2 (unreleased)","Point source sensitivity","Spectral analysis of extended sources","Flux point fitting","Computation times","Spectral analysis","Spectral analysis with the HLI","Spectral analysis with energy-dependent directional cuts","1D spectrum simulation","Source detection and significance maps","2D map fitting","Ring background map","Computation times","3D detailed analysis","Multi instrument joint 3D and 1D analysis","Basic image exploration and fitting","Morphological energy dependence estimation","Event sampling","Sample a source with energy-dependent temporal evolution","Flux Profile Estimation","Computation times","3D map simulation","Estimation of time variability in a lightcurve","Light curves","Light curves for flares","Simulating and fitting a time varying source","Pulsar analysis","Computation times","Dark matter spatial and spectral models","Source catalogs","Datasets - Reduced data, IRFs, models","Fitting","Using Gammapy IRFs","Makers - Data reduction","Maps","Mask maps","Modelling","Models","Observational clustering","Computation times","CTA with Gammapy","Fermi-LAT with Gammapy","HAWC with Gammapy","H.E.S.S. with Gammapy","Computation times","Tutorials","Computation times","Survey Map Script","High level interface","Low level API","Data structures","Computation times","Dark matter","Astrophysics","Astrophysical source population models","Astrophysical source models","Pulsar Source Models","Pulsar Wind Nebula Source Models","Supernova Remnant Models","Source catalogs","Datasets (DL4)","Data access and selection (DL3)","Estimators (DL4 to DL5, and DL6)","High Level Analysis Interface","How To","User guide","Effective area","Background","Energy Dispersion","Instrument Response Functions (DL3)","Point Spread Function","FoV background","Data reduction (DL3 to DL4)","Reflected regions background","Ring background","HEALPix-based maps","Sky maps (DL4)","RegionGeom and RegionNDMap","Model gallery","Constant spatial model","Disk spatial model","Gaussian spatial model","Generalized gaussian spatial model","Piecewise norm spatial model","Point spatial model","Shell spatial model","Shell2 spatial model","Template spatial model","Computation times","EBL absorption spectral model","Broken power law spectral model","Compound spectral model","Constant spectral model","Exponential cutoff power law spectral model","Exponential cutoff power law spectral model used for 3FGL","Exponential cutoff power law norm spectral model","Gaussian spectral model","Log parabola spectral model","Log parabola spectral norm model","Naima spectral model","Piecewise norm spectral model","Power law spectral model","Power law 2 spectral model","Power law norm spectral model","Smooth broken power law spectral model","Super exponential cutoff power law model used for 3FGL","Super Exponential Cutoff Power Law Model used for 4FGL-DR3","Super Exponential Cutoff Power Law Model used for 4FGL-DR1 (and DR2)","Template spectral model","Computation times","Constant temporal model","ExpDecay temporal model","Gaussian temporal model","Generalized Gaussian temporal model","Linear temporal model","PowerLaw temporal model","Sine temporal model","Phase curve temporal model","Light curve temporal model","Computation times","Modeling and Fitting (DL4 to DL5)","Gammapy analysis workflow and package structure","Glossary and references","Command line tools","Fit statistics","Statistical utility functions","Derivation of the WStat formula","Utility functions","Visualization"],titleterms:{"0":[358,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413],"1":[354,358,377,387,388,395,396,398,403,411,412,413,414,415],"10":[363,387,389],"10th":411,"11":[364,387,390],"12":[365,387,391],"12th":402,"13":[366,387,392,401,404],"13th":414,"14":[367,387,393],"14th":412,"15":[387,394],"16":[368,387,395],"16th":403,"17":[387,396],"18":[369,387,397,398,399],"19":[370,387,400],"19th":399,"1d":[421,423,429,438,439,460],"1dc":455,"2":[355,356,377,387,399,401,413,415,517],"20":[371,387,402,403,405],"2014":388,"2015":[401,404],"2016":[405,406],"2017":407,"2018":[408,409,410],"2019":[389,390,391,392,393,394],"2020":[395,396,397,398,399],"2021":400,"2022":[402,403,411],"2023":[412,413,414],"21":372,"22":[373,406],"22nd":400,"23":[374,409],"24":375,"25":[376,388],"26":[377,392],"28":[389,407,408],"29":[390,410],"2d":[425,460],"3":[356,377,387,394,404],"30":[391,393],"32":349,"3955":377,"3d":[428,429,436,438,460],"3fgl":[509,520],"3fhl":429,"4":[357,387,405],"4122":377,"4fgl":[521,522],"4th":397,"5":[358,387,406],"6":[359,387,407],"64":349,"6th":[398,413],"7":[356,360,387,408],"8":[361,387,409],"9":[362,387,410],"abstract":[354,355,356,357,358,359,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377],"break":349,"case":[355,359,377,541],"class":[0,1,2,3,4,5,7,8,9,10,12,13,14,349,350,359,360,373,376,464,485,540],"default":360,"do":349,"final":[354,378,421,541],"float":349,"function":[1,3,4,5,7,8,9,10,12,13,14,349,350,455,481,482,483,484,485,540,542],"import":[349,436],"long":375,"new":[349,360,364,389,390,391,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,411,414,439],"public":375,"return":[349,350],"super":[520,521,522],"true":[481,483,485],As:485,In:350,ON:[417,422,429],On:423,The:[355,379,429,431,446,476,488],To:[349,350,369,479],abov:431,absolute_tim:330,absorpt:[372,504],accept:352,access:[445,449,457,476],accessor:491,action:[349,369],ad:449,adapt:424,adaptiveringbackgroundmak:150,add:[360,451],add_colorbar:337,add_observed_paramet:41,add_pulsar_paramet:42,add_pwn_paramet:43,add_snr_paramet:44,addit:[372,377,485,536],aeff_2d:481,against:422,aim:451,alia:372,all:439,along:376,altern:[357,360,362,363,364,365,366,367,369,370,373,376],amplitud:377,an:[349,416,432,433,445,450],anaconda:382,analysi:[0,11,15,355,358,416,417,420,421,422,423,428,429,430,438,441,460,463,475,478,536],analysisconfig:16,angl:[481,482,483,485],angular:492,annihil:443,annotate_heatmap:338,api:[6,349,350,371,373,376,377,411,414,460,464],approach:[364,417,418,421,423,424,425,426,429,432,433,434,436,437,438,439,440,446,450,451,453,463,464],apr:[396,401,405,407],arbitrari:376,area:[447,455,481],argument:[349,363],arm:469,asmoothmapestim:107,assert:349,assert_quantity_allclos:324,assert_skycoord_allclos:325,assert_time_allclos:326,assess:[428,446],assign:[439,451],astro:[1,467,470],astronomi:364,astrophys:[1,468,469,470],astropi:[349,374],asymmetr:447,attribut:[349,350,360],aug:[388,404],author:375,authorship:375,avail:444,ax:[449,492],axi:[349,484],backend_default:293,background2d:129,background3d:130,background:[360,364,368,371,377,426,431,432,448,451,455,456,463,482,486,487,488,489,539],backgroundirf:131,backgroundirfmodel:360,backgroundmodel:360,backport:349,base:[373,376,490],basic:[430,449],bayesian:437,between:371,bin:[364,416,431,492],binder:379,bit:349,bkg_2d:482,bkg_3d:482,block:437,boundari:450,branch:378,broken:[350,505,519],brokenpowerlawspectralmodel:197,bsd:349,bug:[402,411,414],bugfix:378,build:[350,352,379,438,439],built:535,bundl:349,burkertprofil:17,butterfli:464,call:360,candid:[378,424],caplog:349,cartesian:279,casebattacharya1998:28,cash:[264,539,540],cash_sum_cython:265,cashcountsstatist:262,catalog:[2,444,450,451,465,474],catalog_registri:55,caveat:539,cell:349,certif:352,cff:375,chain:[420,422],chang:[349,370,411,414],changelog:369,character:437,check:[11,349,350,384,416,417,420,421,422,423,424,425,426,428,429,430,431,432,433,434,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],checker:323,chi:431,choos:350,citat:375,clean:368,cli:538,click:349,clobber:349,clumpi:467,cluster:[13,453],code:[349,350,355,358,379],codemeta:375,collect:375,colormap:543,colormap_hess:339,colormap_milagro:340,combin:[451,476],command:[11,349,538],compar:[422,438],compound:[452,506],compound_region_to_region:309,compoundspectralmodel:198,comput:[416,419,420,421,426,427,430,435,442,446,454,459,461,464,466,503,524,534],compute_chisq:266,compute_flux_doubl:267,compute_fpp:268,compute_fvar:269,compute_lightcurve_doublingtim:122,compute_lightcurve_fpp:123,compute_lightcurve_fvar:124,conda:380,confer:375,confid:446,config:[11,425,426,538],configur:[421,428,434,438,463,536],constant:[494,507,525],constantfluxspatialmodel:199,constantspatialmodel:200,constantspectralmodel:201,constanttemporalmodel:202,contain:376,containment_radiu:189,containment_region:190,content:[445,492],context:[417,418,420,421,422,423,424,425,426,429,431,432,434,436,437,438,439,440,450,453,463,464],contigu:449,continu:379,contour:446,contribut:[352,375,451],contributor:[375,388,389,390,391,392,393,394,395,396,397,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],conveni:361,convent:349,convers:349,convert:349,coordin:[13,349,360,482,492],correl:426,count:[451,456,475,540],covari:[191,446],creat:[417,420,425,426,433,445,447,449,450,464,492],create_cosmic_ray_spectral_model:255,create_crab_spectral_model:256,create_fermi_isotropic_diffuse_model:257,create_map_dataset_from_observ:105,create_map_dataset_geom:106,creation:[417,421,439],cstat:270,cta:[359,455],cube:[355,449,460],cumul:417,current:374,curv:[364,438,439,440,532,533],custom:[452,535],cut:[418,422],cutoff:[508,509,510,520,521,522],cutout:449,cycl:374,cython:[374,379],d_sun_to_galactic_cent:278,dark:[443,467],darkmatt:[1,467],darkmatterannihilationspectralmodel:[19,467],darkmatterdecayspectralmodel:20,data:[3,8,349,355,357,358,364,376,379,417,420,421,422,428,429,431,434,438,439,441,445,448,449,457,460,463,464,465,476,487,538,539],dataflow:376,dataset:[4,11,94,95,349,358,361,370,371,376,416,417,421,422,425,426,428,429,433,438,439,440,445,446,448,450,451,457,463,464,475,478],dataset_registri:93,datasetmodel:203,datasetsmak:151,datastor:[78,455,464,476],dco:[352,375],deal:350,dec:394,decai:443,decemb:413,decis:[354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377],defin:[416,417,420,422,430,432,433,438,439,450,464,492],definit:[375,438,487],depend:[348,366,372,402,422,431,433,452],deprec:[349,374],deriv:541,detail:[356,428],detect:[370,424,430,484],detector:482,develop:[349,351,352,356],diagram:359,differ:[429,449,542],diffus:456,dilat:450,direct:422,discuss:364,disk:[421,433,463,464,495],diskspatialmodel:204,dispers:[447,455,456,483],dissolv:368,distribut:[366,458,469],dl3:[3,429,458,476,484,487],dl4:[475,477,487,491,535],dl5:[477,535],dl6:477,dmprofil:18,doc:379,docstr:350,document:[350,352,358,369],doubl:437,download:[11,379],downsampl:492,dr1:[458,522],dr2:522,dr3:521,draw:301,driven:538,drop:356,durat:448,e:458,each:431,earli:352,earth_location_from_dict:288,ebl:504,ebl_data_builtin:206,eblabsorptionnormspectralmodel:205,edg:477,edisp:447,edisp_2d:483,edispkernel:132,edispkernelmap:[133,484],edispmap:134,effect:[447,448,455,481],effectiveareatable2d:135,einastoprofil:21,elaps:542,empti:445,end:349,energi:[372,416,422,431,433,447,450,452,455,456,477,481,482,483,485],energydependentmorphologyestim:109,energydependentmultigausspsf:136,energydispersion2d:137,environ:380,eros:450,error:[446,540],estim:[5,110,367,370,373,376,421,424,431,434,437,438,448,477,487,488,540],estimate_exposure_reco_energi:125,estimator_registri:108,evalu:[360,361,362],event:[358,362,432,433,441,449,455,456,458,465,476,484],eventlist:[79,476],eventlistmetadata:80,evolut:433,exampl:[379,467,474,475,476,477,478,484,486,487,488,491,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,535,539],excess:[373,417,426,437,540],excessmapestim:111,exclus:[420,421,426,450,463],execut:538,exemplari:377,exercis:[416,418,420,423,428,430,432,433,440,455,456,457,458,465],exist:355,expcutoffpowerlaw3fglspectralmodel:207,expcutoffpowerlawnormspectralmodel:208,expcutoffpowerlawspectralmodel:209,expdecai:526,expdecaytemporalmodel:210,expect:484,explor:[417,421,430,460],exponenti:[29,418,508,509,510,520,521,522],expos:360,exposur:[447,456],extend:[417,432],extens:350,extern:349,extra:379,extract:[426,438,439,440],extrapol:349,f_cash_root_cython:271,factor:443,factori:449,factoris:484,faucherkaspi2006:30,faucherkaspi2006velocitybimod:31,faucherkaspi2006velocitymaxwellian:32,faucherspir:33,favor:377,featur:[14,374,378,411,414],feb:[395,408],fermi:[429,456],fermist:467,file:[350,375,421,425,426,429,455,463,476,492],fill:[449,492],filter:439,find_peak:126,find_peaks_in_flux_map:127,finder:488,first:[378,421],fit:[10,13,192,358,364,417,418,420,421,422,425,428,429,430,436,440,446,450,456,463,464,492,535,539,540,541],fix:[349,402,411,414],fixedpointinginfo:81,fixtur:349,flare:439,flux:[373,377,416,418,420,421,429,434,443,444,463,464,465,477],fluxestim:373,fluxmap:[112,373],fluxpoint:113,fluxpointscollect:373,fluxpointsdataset:[96,361,445],fluxpointsestim:[114,477],fluxprofileestim:115,fold:360,folder:379,follow:370,format:[349,542],formula:541,forward:360,found:538,fov:[448,486],fov_to_ski:280,fovalign:138,fovbackgroundmak:[152,486],fovbackgroundmodel:211,fraction:437,freez:[374,378,451],from:[349,439,449,450,451,492],further:[364,539],galact:[281,456],galactocentr:469,galleri:[349,350,493],gamlik:467,gamma:[364,443],gammalib:467,gammapi:[0,1,2,3,4,5,7,8,9,10,11,12,13,14,349,352,355,358,366,368,369,370,374,375,376,378,379,385,386,447,455,456,457,458,467,470,474,475,476,477,478,484,486,487,488,491,535,536,542],gaussian:[496,497,511,527,528],gaussianspatialmodel:212,gaussianspectralmodel:213,gaussiantemporalmodel:214,gener:[349,355,359,364,375,376,477,497,528],generalist:373,generalizedgaussianspatialmodel:215,generalizedgaussiantemporalmodel:216,geom:173,geometri:[417,430,438,439,449,450,463,464,490,492],get:[352,369,381,425,426,449,468,469,470,476,491],get_images_path:314,get_irfs_featur:91,get_random_st:302,get_wstat_gof_term:272,get_wstat_mu_bkg:273,github:349,given:451,global:371,glossari:537,good:541,gpl:349,group:453,gti:[82,476],guid:[351,480],guidelin:[350,354,355,369],h:458,halv:437,handl:[349,358,359,360,371,375,448,542],have:[357,359,364,365,373],hawc:[429,457],hduindext:83,hduloc:286,healpix:490,help:384,helper:361,hess:429,hgp:444,hierarch:453,hierarchi:376,hierarchical_clust:276,high:[0,5,358,365,463,478],hli:421,how:[349,350,352,369,378,449,479],hpxgeom:174,hpxmap:175,hpxndmap:[176,491],hstack_column:319,i:[349,434],idea:359,imag:[350,355,363,368,424,430,449,460],imageprofil:116,imageprofileestim:117,implement:[359,360,369,375,377,452],improv:[360,372,402,411,414],inbuilt:447,includ:350,index:[449,476],info:[11,349],inform:[375,444,483],input:[349,376,424],inspect:464,instal:[369,381,382,384],instrument:[7,429,484],integr:[13,379,416],integrate_spectrum:258,interact:371,interest:431,interfac:[0,358,360,365,463,478,491],interpol:[13,349,449],interpolate_profil:291,interpolation_scal:292,interv:439,introduc:[360,368,370,372,373,434],introduct:[360,363,364,366,367,369,373,375,376,416,420,422,430,441,443,444,445,448,449,455,456,460,465,467,469,470,539],inversecdfsampl:300,ipython:385,irf:[7,139,358,376,416,445,447,455,484],irf_registri:141,irfmap:140,isothermalprofil:22,isotrop:456,issu:384,iter:449,j:443,jan:389,jfactori:23,joint:[428,429,475],json:375,jul:392,june:[403,414],jupyt:[349,385],kernel:447,labelmapaxi:[177,449],lat:[429,456],law:[418,505,508,509,510,516,517,518,519,520,521,522],lazi:361,lazyfitsdata:287,lc:438,let:433,level:[0,5,355,358,365,463,464,478],li:441,licens:349,light:[364,438,439,440,533],lightcurv:[364,432,437,440,444],lightcurveestim:[118,477],lightcurvetemplatetemporalmodel:217,like:432,likelihood:541,limit:359,line:[11,349,538],linear:529,lineartemporalmodel:218,link:350,list:[360,361,362,363,364,365,366,432,439,444,449,450,451,452,465,476],literatur:422,livetim:448,load:[361,416,418,420,422,444,451],load_irf_dict_from_fil:[149,484],locat:349,log:[11,349,418,512,513],logparabolanormspectralmodel:219,logparabolaspectralmodel:220,logspir:34,loop:[417,448,464],lorimer2006:35,low:[355,464],lt:374,ma:441,mai:[391,402],maintain:[356,375],mainten:358,major:378,make:[349,352,378,430,433,441,464],make_base_catalog_galact:45,make_catalog_random_positions_cub:46,make_catalog_random_positions_spher:47,make_concentric_annulus_sky_region:310,make_counts_rad_max:164,make_edisp_kernel_map:165,make_edisp_map:166,make_effective_livetime_map:167,make_map_background_irf:168,make_map_exposure_true_energi:169,make_observation_time_map:170,make_orthogonal_rectangle_sky_region:311,make_path:315,make_psf_map:171,make_theta_squared_t:172,maker:[8,154,370,376,417,439,448,463,464,486,487,488],maker_registri:153,mamba:382,manag:[358,382],manual:[450,453],map:[9,178,182,355,358,359,424,425,426,429,430,436,441,443,447,449,450,451,462,465,477,490,491,492],mapax:179,mapaxi:180,mapcoord:[181,491],mapdataset:[97,361,428,432,445,457,475],mapdataseteventsampl:[98,362],mapdatasetmak:[155,487],mapdatasetonoff:[99,361],mappanelplott:336,mar:390,march:412,mask:[363,420,421,426,445,450,463],materi:375,matter:[443,467],measur:539,meet:358,messag:349,met:542,metadata:[375,376],method:[350,361,362,377,437,449,477,491],method_default:294,method_kwargs_default:295,meyercrabspectralmodel:222,miniconda:382,minor:370,mission:542,model:[10,223,225,358,360,368,371,372,376,377,417,420,421,422,425,428,429,430,432,433,438,439,440,443,444,445,446,451,452,455,463,464,465,469,470,471,472,473,493,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533,535,539],model_registri:221,modelbas:224,modif:450,modifi:[349,449,452],modul:[5,8,13],mooreprofil:24,morpholog:[431,452],motion_since_birth:282,motiv:377,mpl_plot_check:327,multi:429,multipl:[432,451,475],multiprocessing_manag:298,n_jobs_default:296,naima:514,naimaspectralmodel:226,name:[349,360,484],nebula:472,next:[418,420,421,424,430,438,455,457,458,463,465],nfwprofil:25,night:438,non:[349,449,492],norm:[372,452,498,510,513,515,518],norm_bounds_cython:274,normal:[303,463],notat:540,note:[349,387,539],notebook:[11,349,357,385],nov:[397,398,399,400,406,410],novemb:411,now:364,nuisanc:377,number:[349,374,484],numpi:374,o:434,object:[349,350,359,371,425,426,432,433,444,453],observ:[3,84,87,358,359,420,421,430,432,433,438,439,448,453,463,464],observationeventsampl:102,observationfilt:85,observationseventssampl:88,observationt:86,observatory_loc:92,obtain:[416,431,440,453],off:[418,420,423,429],offset:[481,482,483,485],ogipdatasetread:100,ogipdatasetwrit:101,old:379,onto:449,open:441,oper:[449,450],option:[348,366,446],org:379,organ:[355,364],origin:[349,352],other:[349,350,359,379,382,467],outlin:377,outlook:[361,362,363,365,366,368,369,370,373],output:349,over:441,overview:[369,381,431,455,486,488,489],overwrit:349,own:538,packag:[0,1,2,3,4,5,7,8,9,10,12,13,14,368,370,379,382,402,460,467,468,536],paczynski1990:36,paczynski1990veloc:37,panel:543,paper:358,parabola:[418,512,513],parallel:[13,361],paramet:[193,194,360,372,377,421,431,446,451,452,463],parameterestim:119,parametr:360,parametricpsf:146,pdf:304,perform:[362,417,455,464],person:375,perspect:356,phase:[441,532],phasebackgroundmak:156,phasogram:441,piecewis:[498,515],piecewisenormspatialmodel:227,piecewisenormspectralmodel:228,pig:[353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377],pip:382,pixel:[349,363,450],plan:356,plot:[14,349,420,421,424,430,431,434,449,451,464,492,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,543],plot_contour_lin:341,plot_distribut:342,plot_heatmap:343,plot_map_rgb:344,plot_npred_sign:345,plot_spectrum_datasets_off_region:346,plot_theta_squared_t:347,png:350,point:[377,416,418,420,421,429,430,432,437,444,455,463,464,465,477,485,499],pointinginfo:89,pointingmod:90,pointspatialmodel:229,poisson:539,polar:283,polici:375,pool_kwargs_default:297,popul:[1,469],posit:[377,483],possibl:375,post:378,power:[418,505,508,509,510,516,517,518,519,520,521,522],powerlaw2spectralmodel:230,powerlaw:[418,530],powerlawnormspectralmodel:231,powerlawspectralmodel:232,powerlawtemporalmodel:233,precis:362,predict:475,prepar:[364,374,416,417,433,464],prerequisit:[417,418,420,421,422,423,425,429,431,432,433,434,436,437,438,439,440,446,450,451,463,464],pretti:444,primaryflux:26,print:444,prior:377,priorparamet:[195,196],produc:457,product:443,profil:[434,443,541],project:[358,379],propag:376,propos:[357,359,360,361,362,363,364,365,367,368,369,370,371,372,373,376,417,418,421,423,424,425,426,429,432,433,434,436,437,438,439,440,446,450,451,453,463,464],psf3d:142,psf:[447,456,485],psf_tabl:485,psfkernel:143,psfking:144,psfmap:[145,484],pull:[349,352,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],pulsar:[51,441,471,472],purpos:354,pwn:50,pydant:376,python:[349,350,356,374,385],qualiti:[358,379,420,422,428,446],quantiti:[453,477],quickstart:[381,383],radial:482,radial_distribut:48,radmax2d:147,rai:[364,443],random:[13,349],rang:[448,487],read:[424,429,433,434,449,450,451,492],read_yaml:316,reconstruct:482,recopsfmap:148,recursive_merge_dict:317,reduc:[4,425,426,445,463,464],reduct:[8,358,364,417,420,421,422,428,438,439,448,457,463,464,487,538],refer:[6,369,537,538,539],reflect:[448,488],reflectedregionsbackgroundmak:[157,488],reflectedregionsfind:158,region:[13,360,363,416,417,420,422,448,450,451,488,492],region_to_fram:312,regiongeom:[183,492],regionndmap:[184,491,492],regions_to_compound_region:313,regionsfind:159,relat:492,releas:[349,358,374,375,378,379,387],remark:354,remnant:473,remov:[349,451],renam:349,repositori:379,repr:349,represent:[372,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],request:[349,352,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],requir:[348,349,366,376],requires_data:328,requires_depend:329,resampl:445,resample_energy_edg:128,residu:[420,422,428,464],resolv:[370,441],respons:[7,484],restructur:369,result:[364,373,416,417,421,424,431,434,438,541],review:354,ring:[426,448,489],ringbackgroundmak:160,rmf:483,road:359,roadmap:358,rotat:363,rst:350,run:[11,352,420,421,422,431,433,434,438,463,538],run_multiprocess:299,s:[389,390,391,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,421,433,458,463],safe:[448,487],safemaskmak:161,sampl:[362,432,433],sample_powerlaw:305,sample_spher:306,sample_sphere_dist:307,sample_tim:308,sampler:433,save:[421,463,464],scale:542,scale_plot_flux:259,scaledregulargridinterpol:290,scalespectralmodel:236,scenario:359,schedul:374,scheme:[360,375],script:[11,13,349,385,460,462],section:369,select:[417,421,430,438,439,444,451,463,464,476],select_nested_model:260,sensit:416,sensitivityestim:120,sep:[393,409],serial:[361,376,429],serialis:[377,421,434,447,451,452,456,475],seril:360,set:[352,421,449,463],setup:[357,379,381,383,384,416,417,418,420,421,422,423,424,425,426,428,429,430,431,432,433,434,437,438,439,440,441,443,444,445,446,448,449,450,451,452,455,456,457,458,463,464,465],sever:349,share:452,shell2:501,shell2spatialmodel:237,shell:500,shellspatialmodel:238,shorter:372,should:349,show:[430,431,453],signal:431,signific:[417,424,426,450,540],simplepulsar:54,simplifi:372,simul:[358,361,422,423,432,433,436,440],sine:531,sinetemporalmodel:239,singl:[350,423],size:492,skip:349,sky:[9,360,363,430,432,450,483,491],sky_to_fov:284,skycoord:491,skymodel:[240,452],slice:449,small:352,smooth:[424,519],smoothbrokenpowerlawspectralmodel:241,snr:52,snrtruelovemcke:53,solut:376,some:[349,359,450],sourc:[1,2,416,417,420,424,430,431,432,433,440,444,450,455,465,469,470,471,472,474],sourcecatalog1lhaaso:57,sourcecatalog2fhl:58,sourcecatalog2hwc:59,sourcecatalog3fgl:60,sourcecatalog3fhl:[61,474],sourcecatalog3hwc:62,sourcecatalog4fgl:63,sourcecatalog:56,sourcecataloggammacat:[64,474],sourcecataloghgp:65,sourcecataloglargescalehgp:66,sourcecatalogobject1lhaaso:68,sourcecatalogobject2fhl:69,sourcecatalogobject2hwc:70,sourcecatalogobject3fgl:71,sourcecatalogobject3fhl:72,sourcecatalogobject3hwc:73,sourcecatalogobject4fgl:74,sourcecatalogobject:67,sourcecatalogobjectgammacat:75,sourcecatalogobjecthgp:76,sourcecatalogobjecthgpscompon:77,sourceirfmodel:360,sourcemodel:360,spatial:[360,372,430,443,449,452,469,492,493,494,495,496,497,498,499,500,501,502],spatial_model_registri:234,spatialirfmodel:360,spatialmodel:242,special:541,specif:[360,369,444],spectra:443,spectral:[372,377,417,418,420,421,422,429,430,443,452,460,465,493,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,523],spectral_model_registri:235,spectralirfmodel:360,spectralmodel:243,spectrum:[420,422,423,430,441,448,464],spectrumdataset:[103,361,445],spectrumdatasetmak:[162,487],spectrumdatasetonoff:[104,361,475],sphinx:[349,350],spiral:469,spread:[455,485],squar:[431,458],stack:[420,426,428,475],standard_scal:277,standardise_unit:334,start:[369,381,468,469,470,476,491],stat:12,stat_contour:446,stat_profile_ul_scipi:261,stat_surfac:446,statist:[12,420,450,539,540],statu:[354,359,368,374],step:[421,455,457,458,536],store:[364,421,483],str:349,structur:[368,370,402,465,536],studi:364,style:355,sub:[449,468],subclass:377,subpackag:355,subset:444,suggest:375,summari:[388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,428,456],superexpcutoffpowerlaw3fglspectralmodel:244,superexpcutoffpowerlaw4fgldr3spectralmodel:245,superexpcutoffpowerlaw4fglspectralmodel:246,supernova:473,support:[349,356,374,375,377,447,475],survei:[462,543],symmetr:482,systemat:377,tabl:[13,431,444,476],table_row_to_dict:320,table_standardise_units_copi:321,table_standardise_units_inplac:322,tag:372,target:420,task:[360,361,362,363,364,365,366],templat:[432,502,523],templatendspatialmodel:248,templatendspectralmodel:249,templatenpredmodel:250,templatephasecurvetemporalmodel:251,templatespatialmodel:252,templatespectralmodel:253,tempor:[433,440,452,493,525,526,527,528,529,530,531,532,533],temporal_model_registri:247,temporalmodel:254,term:375,terminolog:359,test:[13,349,352,431,441],text:349,theta:458,thi:352,thumbnail:350,time:[13,358,364,419,427,432,435,437,439,440,442,454,459,460,461,466,503,524,534,542],time_ref_from_dict:331,time_ref_to_dict:332,time_relative_to_ref:333,timemapaxi:[185,449],tool:[11,349,538],tooltip:350,touch:352,trapz_loglog:289,troubleshoot:[384,538],ts:[424,540],tsmapestim:121,tutori:[350,357,369,381,431,455,460],two:451,type:[349,376,475],uncertainti:367,underli:492,unfold:377,unfreez:451,unif:373,unifi:[360,373],unit:[13,349],unit_from_fits_image_hdu:335,unix:349,unreleas:415,up:[352,368,370],upsampl:492,us:[349,359,377,382,385,421,431,432,438,445,446,447,449,463,464,467,470,474,475,476,477,478,484,486,487,488,491,509,520,521,522,535],user:[356,480],util:[5,8,13,368,536,540,542],valid:376,valleespir:38,valu:[349,377,431,449],vari:440,variabl:[1,2,3,4,5,7,8,10,13,432,437],varianc:437,variou:453,veloc:469,velocity_distribut:49,velocity_glon_glat:285,venv:380,version:[349,374,378,387,436],virtual:380,visual:[14,370,449,492,543],volum:492,warn:349,wc:[449,492],wcsgeom:186,wcsmap:187,wcsndmap:[188,491],we:[357,364,365,373,457],webpag:379,what:[349,352,354,357,359,364,365,373,389,390,391,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,418,420,421,424,430,438,463,465],where:349,which:349,wind:472,wise:438,wobbleregionsfind:163,work:476,workflow:536,write:[349,354,421,433,449,450,476,492,538],write_yaml:318,wstat:[275,539,540,541],wstatcountsstatist:263,yaml:[372,421,463,494,495,496,497,498,499,500,501,502,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,525,526,527,528,529,530,531,532,533],your:[384,421,538],yusifovkucuk2004:39,yusifovkucuk2004b:40,zhaoprofil:27}})
\ No newline at end of file
diff --git a/docs/dev/tutorials/analysis-1d/cta_sensitivity.html b/docs/dev/tutorials/analysis-1d/cta_sensitivity.html
index 94b8e63592b..dd3cd5c8152 100644
--- a/docs/dev/tutorials/analysis-1d/cta_sensitivity.html
+++ b/docs/dev/tutorials/analysis-1d/cta_sensitivity.html
@@ -191,7 +191,7 @@
$("#version_switcher_menu").append(node);
// replace dropdown button text with the preferred display name of
- // this version, rather than using sphinx's 1.2.dev1863+ga8285d4fc variable.
+ // this version, rather than using sphinx's 1.2.dev1865+gcce7eee8f variable.
// also highlight the dropdown entry for the currently-viewed
// version's entry
if (entry.version == "dev") {
@@ -616,7 +616,7 @@
Check setup