Spectrum Plugins
The SpectrumLike plugin is designed to handle binned photon/particle spectra. It comes in three basic classes:
SpectrumLike: Generic binned spectral
DispersionSpectrumLike: Generic binned spectra with energy dispersion
OGIPLike: binned spectra with dispersion from OGIP PHA files
The functionality of all three plugins is the same.
SpectrumLike
The most basic spectrum plugin is SpectrumLike which handles spectra with and without backgrounds. There are six basic features of a spectrum:
the energy boundries of the bins,
the data in these energy bins,
the statistical properties of the total spectrum
Possion (counts are meausred in an on/off fashion),
Gaussian (counts are the result of a masking process or a fit),
the exposure,
the background (and its associated statistical properties),
and any known systematic errors associated with the total or background spectrum.
Let’s start by examining an observation where the total counts are Poisson distributed and the measured background ground has been observed by viewing an off-source region and hence is also Poisson.
[1]:
import warnings
warnings.simplefilter("ignore")
import numpy as np
np.seterr(all="ignore")
[1]:
{'divide': 'warn', 'over': 'warn', 'under': 'ignore', 'invalid': 'warn'}
[2]:
%%capture
import matplotlib.pyplot as plt
from threeML import *
from threeML.io.package_data import get_path_of_data_file
[3]:
from jupyterthemes import jtplot
%matplotlib inline
jtplot.style(context="talk", fscale=1, ticks=True, grid=False)
set_threeML_style()
silence_warnings()
We will construct a simulated spectrum over the energy range 10-1000 keV. The spectrum will have logrithmic energy boundaries.
We will simulate a blackbody source spectrum on top of powerlaw background.
[4]:
energies = np.logspace(1, 3, 51)
low_edge = energies[:-1]
high_edge = energies[1:]
# get a blackbody source function
source_function = Blackbody(K=9e-2, kT=20)
# power law background function
background_function = Powerlaw(K=1, index=-1.5, piv=100.0)
spectrum_generator = SpectrumLike.from_function(
"fake",
source_function=source_function,
background_function=background_function,
energy_min=low_edge,
energy_max=high_edge,
)
21:58:04 INFO Auto-probed noise models: SpectrumLike.py:490
INFO - observation: poisson SpectrumLike.py:491
INFO - background: None SpectrumLike.py:492
21:58:06 INFO Auto-probed noise models: SpectrumLike.py:490
INFO - observation: poisson SpectrumLike.py:491
INFO - background: None SpectrumLike.py:492
INFO Auto-probed noise models: SpectrumLike.py:490
INFO - observation: poisson SpectrumLike.py:491
INFO - background: poisson SpectrumLike.py:492
21:58:07 INFO Auto-probed noise models: SpectrumLike.py:490
INFO - observation: poisson SpectrumLike.py:491
INFO - background: poisson SpectrumLike.py:492
The count spectrum
Let’s examine a few properties about the count spectrum including the contents stored in the plugin, viewing the count distribution, masking channels, and rebinnined the spectrum.
We can examine the contents of our plugin with the display function:
[5]:
spectrum_generator.display()
0 | |
---|---|
n. channels | 50 |
total rate | 1918.0 |
total bkg. rate | 308.0 |
bkg. exposure | 1.0 |
bkg. is poisson | True |
exposure | 1.0 |
is poisson | True |
background | profiled |
significance | 36.003593 |
src/bkg area ratio | 1.0 |
src/bkg exposure ratio | 1.0 |
src/bkg scale factor | 1.0 |
These properties are accessible from the object. For example:
[6]:
print(spectrum_generator.exposure)
print(spectrum_generator.significance)
print(spectrum_generator.observed_counts)
1.0
36.003593186150404
[33 30 25 30 34 44 28 49 47 47 62 66 96 80 94 95 98 91 99 97 95 88 97 61
50 63 48 38 23 22 17 7 7 10 4 2 3 7 4 3 4 1 1 3 5 4 3 0
1 2]
To view the count spectrum, we call the view_count_spectrum method:
[7]:
fig = spectrum_generator.view_count_spectrum()
It is even possible see which channels are above a given significance threshold. Red regions are below the supplied significance regions.
[8]:
fig = spectrum_generator.view_count_spectrum(significance_level=5)
21:58:08 INFO channels below the significance threshold shown in red SpectrumLike.py:3196
Note: In 3ML, the Significance module is used to compute significnaces. When total counts (\(N_{\rm on}\)) are Poisson distributed and the background or off-source counts (\(N_{\rm off}\)) are also Poisson distributed, the significance in \(\sigma\) is calculated via the likelihood ratio derived in Li & Ma (1980):
In the case that the background is Gaussian distributed, an equivalent likelihood ratio is used (see Vianello in prep).
Selection
Many times, there are channels that we are not valid for analysis due to poor instrument characteristics, overflow, or systematics. We then would like to mask or exclude these channels before fitting the spectrum. We provide several ways to do this and it is useful to consult the docstring. However, we review the process here.
NOTE to Xspec users: while XSpec uses integers and floats to distinguish between energies and channels specifications, 3ML does not, as it would be error-prone when writing scripts. Read the following documentation to know how to achieve the same functionality.
Energy selections:
They are specified as ‘emin-emax’. Energies are in keV.
[9]:
spectrum_generator.set_active_measurements("10-12.5", "56.0-100.0")
fig = spectrum_generator.view_count_spectrum()
INFO Range 10-12.5 translates to channels 0-2 SpectrumLike.py:1247
INFO Range 56.0-100.0 translates to channels 18-24 SpectrumLike.py:1247
which will set the energy range 10-12.5 keV and 56-100 keV to be used in the analysis. Note that there is no difference in saying 10 or 10.0.
Channel selections:
They are specified as ‘c[channel min]-c[channel max]’.
[10]:
spectrum_generator.set_active_measurements("c10-c12", "c20-c50")
fig = spectrum_generator.view_count_spectrum()
21:58:09 INFO Range c10-c12 translates to channels 10-12 SpectrumLike.py:1247
INFO Range c20-c50 translates to channels 20-50 SpectrumLike.py:1247
This will set channels 10-12 and 20-50 as active channels to be used in the analysis
Mixed channel and energy selections:
You can also specify mixed energy/channel selections, for example to go from 0.2 keV to channel 10 and from channel 20 to 1000 keV:
[11]:
spectrum_generator.set_active_measurements("0.2-c10", "c20-1000")
fig = spectrum_generator.view_count_spectrum()
INFO Range 0.2-c10 translates to channels 0-10 SpectrumLike.py:1247
INFO Range c20-1000 translates to channels 20-49 SpectrumLike.py:1247
Use all measurements (i.e., reset to initial state):
Use ‘all’ to select all measurements, as in:
[12]:
spectrum_generator.set_active_measurements("all")
fig = spectrum_generator.view_count_spectrum()
Exclude measurements:
Excluding measurements work as selecting measurements, but with the “exclude” keyword set to the energies and/or channels to be excluded. To exclude between channel 10 and 20 keV and 50 keV to channel 120 do:
[13]:
spectrum_generator.set_active_measurements(exclude=["c2-20", "50-c40"])
fig = spectrum_generator.view_count_spectrum()
21:58:10 INFO Range c2-20 translates to excluding channels 2-7 SpectrumLike.py:1304
INFO Range 50-c40 translates to excluding channels 17-40 SpectrumLike.py:1304
INFO Now using 20 channels out of 50 SpectrumLike.py:1309
Select and exclude:
Call this method more than once if you need to select and exclude. For example, to select between 0.2 keV and channel 10, but exclude channel 30-50 and energy, do:
[14]:
spectrum_generator.set_active_measurements("0.2-c10", exclude=["c30-c50"])
fig = spectrum_generator.view_count_spectrum()
21:58:11 INFO Range 0.2-c10 translates to channels 0-10 SpectrumLike.py:1247
INFO Range c30-c50 translates to excluding channels 30-50 SpectrumLike.py:1304
INFO Now using 11 channels out of 50 SpectrumLike.py:1309
Rebinning
We can rebin the spectra based off a minimum total or background rate requried. This is useful when using profile likelihoods, however, we do not change the underlying likelihood by binning up the data. For more information, consult the statistics section.
To rebin a spectrum based off the total counts, we specify the minimum counts per bin we would like, say 100:
[15]:
spectrum_generator.set_active_measurements("all")
spectrum_generator.rebin_on_source(100)
fig = spectrum_generator.view_count_spectrum()
21:58:14 INFO Now using 14 bins SpectrumLike.py:1739
We can remove the rebinning this way:
[16]:
spectrum_generator.remove_rebinning()
Instead, when using a profile likelihood which requires at least one background count per bin to be valid, we would call:
[17]:
spectrum_generator.rebin_on_background(10)
fig = spectrum_generator.view_count_spectrum()
21:58:15 INFO Now using 23 bins SpectrumLike.py:1739
[18]:
spectrum_generator.remove_rebinning()
Fitting
To fit the data, we need to create a function, a PointSouce, a Model, and either a JointLikelihood or BayesianAnalysis object.
[19]:
bb = Blackbody()
pts = PointSource("mysource", 0, 0, spectral_shape=bb)
model = Model(pts)
# MLE fitting
jl = JointLikelihood(model, DataList(spectrum_generator))
result = jl.fit()
INFO set the minimizer to minuit joint_likelihood.py:1046
Best fit values:
result | unit | |
---|---|---|
parameter | ||
mysource.spectrum.main.Blackbody.K | (8.4 +/- 0.6) x 10^-2 | 1 / (s cm2 keV3) |
mysource.spectrum.main.Blackbody.kT | (2.03 +/- 0.04) x 10 | keV |
Correlation matrix:
1.00 | -0.91 |
-0.91 | 1.00 |
Values of -log(likelihood) at the minimum:
-log(likelihood) | |
---|---|
fake | 228.053846 |
total | 228.053846 |
Values of statistical measures:
statistical measures | |
---|---|
AIC | 460.363012 |
BIC | 463.931738 |
[20]:
count_fig1 = spectrum_generator.display_model(min_rate=10)
[21]:
_ = plot_spectra(jl.results, flux_unit="erg/(cm2 s keV)")
_ = plt.ylim(1e-20)
Perhaps we want to fit a different model and compare the results. We change the spectral model and will overplot the fit’s expected counts with the fit to the blackbody.
[22]:
import warnings
pl = Powerlaw()
pts = PointSource("mysource", 0, 0, spectral_shape=pl)
model = Model(pts)
# MLE fitting
jl = JointLikelihood(model, DataList(spectrum_generator))
with warnings.catch_warnings():
warnings.simplefilter("ignore")
result = jl.fit()
21:58:24 INFO set the minimizer to minuit joint_likelihood.py:1046
Best fit values:
result | unit | |
---|---|---|
parameter | ||
mysource.spectrum.main.Powerlaw.K | (10.00000 +/- 0.00008) x 10^2 | 1 / (keV s cm2) |
mysource.spectrum.main.Powerlaw.index | -1.339 +/- 0.011 |
Correlation matrix:
1.00 | 0.00 |
0.00 | 1.00 |
Values of -log(likelihood) at the minimum:
-log(likelihood) | |
---|---|
fake | 700.899731 |
total | 700.899731 |
Values of statistical measures:
statistical measures | |
---|---|
AIC | 1406.054781 |
BIC | 1409.623507 |
[23]:
spectrum_generator.display_model(
min_rate=10,
show_data=False,
show_residuals=True,
data_color="g",
model_color="b",
model_label="powerlaw",
model_subplot=count_fig1.axes,
)
[23]:
Examining the fit in count space lets us easily see that the fit with the powerlaw model is very poor. We can of course deterimine the fit quality numerically, but this is saved for another section.
DispersionSpectrumLike
Instruments that exhibit energy dispersion must have their spectra fit through a process called forward folding. Let \(R(\varepsilon,E)\) be our response converting between true (monte carlo) energy (\(E\)) and detector channel/energy (\(\varepsilon\)), \(f(E, \vec{\phi}_{\rm s})\) be our photon model which is a function of \(E\) and source model parameters \(\vec{\phi}_{\rm s}\). Then, the source counts (\(S_{c} (\vec{\phi}_{\rm s})\)) registered in the detector between channel (c) with energy boundaries \(E_{{\rm min}, c}\) and \(E_{{\rm max}, c}\) (in the absence of background) are given by the convolution of the photon model with the response:
Therefore, to fit the data in count space, we assume a photon model, fold it through the response, and calculate the predicted counts. This process is iterated on the source model parameters via likelihood minimization or posterior sampling until an optimal set of parameters is found.
To handle dispersed spectra, 3ML provides the DispersionSpectrumLike plugin.
[24]:
from threeML.plugins.DispersionSpectrumLike import DispersionSpectrumLike
from threeML.utils.OGIP.response import OGIPResponse
from threeML.io.package_data import get_path_of_data_file
# we will use a demo response
response = OGIPResponse(get_path_of_data_file("datasets/ogip_powerlaw.rsp"))
source_function = Broken_powerlaw(K=1e-2, alpha=0, beta=-2, xb=2000, piv=200)
background_function = Powerlaw(K=10, index=-1.5, piv=100.0)
dispersion_spectrum_generator = DispersionSpectrumLike.from_function(
"test",
source_function=source_function,
response=response,
background_function=background_function,
)
21:58:25 INFO Auto-probed noise models: SpectrumLike.py:490
INFO - observation: poisson SpectrumLike.py:491
INFO - background: None SpectrumLike.py:492
INFO Auto-probed noise models: SpectrumLike.py:490
INFO - observation: poisson SpectrumLike.py:491
INFO - background: None SpectrumLike.py:492
INFO Auto-probed noise models: SpectrumLike.py:490
INFO - observation: poisson SpectrumLike.py:491
INFO - background: poisson SpectrumLike.py:492
INFO Auto-probed noise models: SpectrumLike.py:490
INFO - observation: poisson SpectrumLike.py:491
INFO - background: poisson SpectrumLike.py:492
We can view the response and the count spectrum created.
[25]:
threeML_config.plugins.ogip.response_zero_color = "k"
threeML_config.plugins.ogip.response_cmap = "magma"
_ = dispersion_spectrum_generator.display_rsp()
[26]:
fig = dispersion_spectrum_generator.view_count_spectrum()
All the functionality of SpectrumLike is inherited in DispersionSpectrumLike. Therefore, fitting, and examination of the data is the same.
OGIPLike
Finally, many x-ray mission provide data in the form of fits files known and pulse-height analysis (PHA) data. The keywords for the information in the data are known as the Office of Guest Investigators Program (OGIP) standard. While these data are always a form of binned spectra, 3ML provide a convience plugin for reading OGIP standard PHA Type I (single spectrum) and Type II (multiple spectrum) files.
The OGIPLike plugin inherits from DispersionSpectrumLike and thus needs either a full response or a redistribution matrix (RMF) and ancillary response (ARF) file. The plugin will prove the keywords in the data files to automatically figure out the correct likelihood for the observation.
[27]:
ogip_data = OGIPLike(
"ogip",
observation=get_path_of_data_file("datasets/ogip_powerlaw.pha"),
background=get_path_of_data_file("datasets/ogip_powerlaw.bak"),
response=get_path_of_data_file("datasets/ogip_powerlaw.rsp"),
)
21:58:26 INFO Auto-probed noise models: SpectrumLike.py:490
INFO - observation: poisson SpectrumLike.py:491
INFO - background: poisson SpectrumLike.py:492
[28]:
ogip_data.display()
0 | |
---|---|
pha file | /home/runner/work/threeML/threeML/threeML/data... |
bak file | /home/runner/work/threeML/threeML/threeML/data... |
n. channels | 128 |
total rate | 1.74 |
total bkg. rate | 0.1464 |
bkg. exposure | 5000.0 |
bkg. is poisson | True |
exposure | 200.0 |
is poisson | True |
background | profiled |
significance | 31.103419 |
src/bkg area ratio | 1.0 |
src/bkg exposure ratio | 0.04 |
src/bkg scale factor | 0.04 |
response | /home/runner/work/threeML/threeML/threeML/data... |
[29]:
fig = ogip_data.view_count_spectrum()
When using PHA Type II data, a spectrum number must be supplied to indicate which spectrum from the file to use. Users can also follow the XSPEC convention of specifying the spectrum number in the filename (e.g. ‘my_pha.fits{1}’)