Before we get to fitting the spectrum, a few words are in order about different
approaches to take. We will use for our example the RGS spectrum of Mkn 421
(ObsID 0153950701) that we reprocessed in §10 (or §
11 if we used the GUI).
For data sets of high signal-to-noise and low background, where counting statistics
are within the Gaussian regime, the data products above are suitable for analysis
using the default fitting scheme in Xspec, -minimization. However, for low
count rates, in the Poisson regime, -minimization is no longer suitable. With
low count rates in individual channels, the error per channel can dominate over the
count rate. Since channels are weighted by the inverse-square of the errors during
model fitting, channels with the lowest count rates are given overly-large
weights in the Poisson regime. Spectral continua are consequently often fit incorrectly,
with the model lying underneath the true continuum level. This will be a common problem
with most RGS sources. Even if count rates are large, much of the flux from these
sources can be contained within emission lines, rather than the continuum. Consequently,
even obtaining correct equivalent widths for such sources is non-trivial.
The traditional way to increase the signal-to-noise of a data set is to rebin or
group the channels, since, if channels are grouped in sufficiently large numbers,
the combined signal-to-noise of the groups will jump into the Gaussian regime. However,
this results in the loss of information. For example, sharp features like an absorption
edge or emission line can be completely washed out. Further, in the Poisson regime,
the background spectrum cannot simply be subtracted, as is commonly done in the
Gaussian regime, since this could result in negative counts. Therefore, rebinning
should be reserved for fast, preliminary analysis of spectra without sharp features,
or for making plots for publication. When working on the final analysis for a low-count
data set, the (unbinned) background and source spectra should be fitted simultaneously
using the Cash statistic. (If fitting with XSPEC, be sure you are running v11.1.0 or
later. This is because RGS spectrum files have prompted a slight modification to the
OGIP standard, since the RGS spatial extraction mask has a spatial-width which is a
varying function of wavelength. Thus, it has become necessary to characterize the
BACKSCL and AREASCL parameters as vectors (i.e., one number for each wavelength
channel), rather than scalar keywords as they are for data from the EPIC cameras and
past missions. These quantities map the size of the source extraction region to the
size of the background extraction region and are essential for accurate fits. Only
Xspec v11.1.0, or later versions, are capable of reading these vectors, so be
certain that you have an up-to-date installation at your site.)
Finally, a caveat of using the Cash statistic in Xspec is that the scheme requires
a "total" and "background" spectrum to be loaded into Xspec. This is in order to
calculate parameter errors correctly. Consequently, be sure not to use the "net"
spectra that were created as part of product packages by SAS v5.2 or earlier. To
change which statistic you use in Xspec before fitting the data, type:
XSPEC> statistic cstat
A more in-depth discussion on statistics in the Poissonian regime can be found in
Humphreys et al. 2009, ApJ, 693, 822. For our purposes, a quick, preliminary fit
is sufficient, so we will rebin and use statistics.
There are two ways to rebin a spectrum: the FTOOL grppha, or the RGS pipeline.
grppha can group channels using an algorithm which bins up consecutive channels
until a count rate threshold is reached. This method conserves the resolution in
emission lines above the threshold while improving statistics in the continuum. However,
while channel errors are propagated through the binning process correctly, the errors
column in the original spectrum product is not strictly accurate. The problem arises
because there is no good way to treat the errors within channels containing no counts.
To allow statistical fitting, these channels are arbitrarily given an error value of
unity, which is subsequently propagated through the binning. Consequently, the errors
are overestimated in the resulting spectra.
To rebin the spectrum and set the RESPFILE keyword in the header to our response file, type
> grppha
and edit the parameters as needed:
>Please enter PHA filename[] P0153950701R1S001SRSPEC1001.FIT >Please enter output filename[] P0153950701R1S001SRSPEC1001.bin30.FIT >GRPPHA[] chkey RESPFILE P0153950701R1S001RSPMAT1001.FIT >GRPPHA[] group min 30 >GRPPHA[] exit
The other approach, which involves calling the RGS pipeline after it is complete,
bins the data during spectral extraction. The following rebins the pipeline spectrum
by a factor 3:
where
One disadvantage of this approach is that you can only choose integer binning of
the original channel size. To change the sampling of the events, the pipeline
must be run from the second stage ("angles") or earlier:
where the parameters are as defined previously, and
The disadvantage of using rgsproc is that the binning is linear across the dispersion direction. Velocity resolution is lost in the lines, so the accuracy of redshift determinations will be degraded, transition edges will be smoothed, and neighboring lines will become blended.
To fit the spectrum, invoke Xspec on the command line:
Enter the data, background, and response file at the prompts, and edit the fitting parameters as needed. Please note that in this example, we are using the output from rgsproc, not the PPS data that came with the data set, so the names are slightly different. If we were using the PPS data, the input spectrum would have the format *SBSPEC*. Since we did not include background correction when we ran rgsproc, we can correct for it now.
XSPEC> data P0153950701R1S001SRSPEC1001.bin30.FIT ! input data XSPEC> back P0153950701R1S001BGSPEC1001.bin30.FIT ! input background XSPEC> ignore **-0.4 ! set sensible limits XSPEC> model wabs*pow ! set spectral model to absorbed powerlaw 1:wabs:nH> 0.01 ! enter reasonable initial values 2:powerlaw:PhoIndex> 2.0 3:powerlaw:norm> 1.0 XSPEC> renorm XSPEC> fit XSPEC> cpd /xw XSPEC> setplot wave XSPEC> setplot command window all XSPEC> setplot command log x off XSPEC> plot data chi XSPEC> exit
Figure 1 shows the fit to the spectrum.
|