Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions autogalaxy/aggregator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
from autogalaxy.aggregator.ellipse.fit_ellipse import FitEllipseAgg
from autogalaxy.aggregator.subplot import SubplotDataset as subplot_dataset
from autogalaxy.aggregator.subplot import SubplotFit as subplot_fit
from autogalaxy.aggregator.subplot import FITSFit as fits_fit
13 changes: 12 additions & 1 deletion autogalaxy/aggregator/subplot.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
from enum import Enum


class FITSFit(Enum):
"""
The HDUs that can be extracted from the fit.fits file.
"""

model_image = "MODEL_IMAGE"
residual_map = "RESIDUAL_MAP"
normalized_residual_map = "NORMALIZED_RESIDUAL_MAP"
chi_squared_map = "CHI_SQUARED_MAP"


class SubplotDataset(Enum):
"""
The subplots that can be extracted from the subplot_fit image.
Expand All @@ -15,7 +26,7 @@ class SubplotDataset(Enum):
psf_log_10 = (1, 1)
signal_to_noise_map = (2, 1)
over_sample_size_lp = (0, 2)
over_sample_Size_pixelization = (1, 2)
over_sample_size_pixelization = (1, 2)


class SubplotFit(Enum):
Expand Down
Loading