skyllh.plotting.core package

Submodules

skyllh.plotting.core.pdfratio module

Plotting module for core PDF ratio objects.

class skyllh.plotting.core.pdfratio.SpatialSigOverBkgPDFRatioPlotter(tdm, pdfratio)

Bases: object

Plotter class to plot a SpatialSigOverBkgPDFRatio object.

Creates a new plotter object for plotting a SpatialSigOverBkgPDFRatio object.

Parameters:
property pdfratio

The PDF ratio object to plot.

property tdm

The TrialDataManager that provides the data for the PDF evaluation.

plot(src_hypo_group_manager, axes, source_idx=None, log=True, **kwargs)

Plots the spatial PDF ratio. If the signal PDF depends on the source, source_idx specifies the index of the source for which the PDF should get plotted.

Parameters:
  • src_hypo_group_manager (instance of SourceHypoGroupManager) – The instance of SourceHypoGroupManager that defines the source hypotheses.

  • axes (mpl.axes.Axes) – The matplotlib Axes object on which the PDF ratio should get drawn to.

  • source_idx (int | None) – The index of the source for which the PDF ratio should get plotted. If set to None and the signal PDF depends on the source, index 0 will be used.

  • Arguments (Additional Keyword) –

  • ----------------------------

  • mpl.imshow (Any additional keyword arguments will be passed to the) –

  • function.

Returns:

img (instance of mpl.AxesImage) – The AxesImage instance showing the PDF ratio image.

skyllh.plotting.core.signalpdf module

class skyllh.plotting.core.signalpdf.SignalSpatialPDFPlotter(tdm, pdf)

Bases: object

Plotter class to plot spatial signal PDF object.

Creates a new plotter object for plotting a spatial signal PDF object.

Parameters:
  • tdm (instance of TrialDataManager) – The instance of TrialDataManager that provides the data for the PDF evaluation.

  • pdf (class instance derived from SpatialPDF and IsSignalPDF) – The PDF object to plot.

property pdf

The PDF object to plot.

property tdm

The TrialDataManager that provides the data for the PDF evaluation.

plot(src_hypo_group_manager, axes, source_idx=None, sin_dec=True, log=True, **kwargs)

Plots the signal spatial PDF for the specified source.

Parameters:
  • axes (mpl.axes.Axes) – The matplotlib Axes object on which the PDF ratio should get drawn to.

  • source_idx (int | None) – The index of the source for which the PDF ratio should get plotted. If set to None and the signal PDF depends on the source, index 0 will be used.

  • sin_dec (bool) – Flag if the plot should be made in right-ascention vs. declination (False), or in right-ascention vs. sin(declination) (True).

  • Arguments (Additional Keyword) –

  • ----------------------------

  • mpl.imshow (Any additional keyword arguments will be passed to the) –

  • function.

Returns:

img (instance of mpl.AxesImage) – The AxesImage instance showing the PDF ratio image.