Simulating a thermal plasma with the HETGS grating

The purpose of this example is to show how to use marx to simulate an HETG grating spectrum of a star whose spectrum is represented by an APEC model.

Creating the spectral file for marx

As in Simulating a user-defined CCD spectrum with ACIS, we will use marxflux again to generate the spectral file from the parameter file describing the model. But in this case, the plasma model must be created before ISIS can compute the model flux. So, the idea is to put the definition of the model into a file, which not only defines the model but also creates the parameter file that marxflux will load. The contents of file apedfun.sl that defines the model is:

# ISIS file defining spetral model
plasma(aped);
define create_aped_model ()
{
   variable p = default_plasma_state ();
   p.temperature = [9.7e7, 3.2e7];
   p.norm = [ 0.016, 0.0156];
   p.elem = [Fe, Ne];
   p.elem_abund = [ 0.2, 2 ];

   create_aped_fun ("Aped", p);
   fit_fun("Aped(1)");
}

create_aped_model ();
save_par ("aped.p");

Then the marxflux script may be used to create the spectral file via:

marxflux --script apedfun.sl -l '[1:30:#16384]' aped.p apedflux.tbl

Here, the --script apedfun.sl arguments instruct marxflux to execute the apedfun.sl file. The -l '[1:30:#16384]' parameters indicate that a 16384 point wavelength grid running from 1 to 30 angstroms is to be used for the spectrum - marxflux will convert this to energy units. A plot of the spectrum in apedflux.tbl is shown below.

An emission line spectrum

Plot of the spectrum

Running marx

The next step is to run marx in the desired configuration. For this example, ACIS-S and the HETG are used:

marx SourceFlux=-1 SpectrumType="FILE" SpectrumFile="apedflux.tbl" \
   ExposureTime=80000 OutputDir=aped DitherModel="INTERNAL" \
   GratingType="HETG" DetectorType="ACIS-S"

This will run the simulation and place the results in a subdirectory called aped. The results may be converted to a standard Chandra level-2 fits file by the marx2fits program:

marx2fits aped aped_evt2.fits

The resulting fits file aped_evt2.fits may be further processed with standard CIAO tools, as described below. As some of these tools require the aspect history, the marxasp program will be used to create an aspect solution file that matches the simulation:

marxasp MarxDir="aped" OutputFile="aped_asol1.fits"

Creating a type-II PHA file

For a Chandra grating observation, the CIAO tgextract tool may used to create a type-II PHA file. Before this can be done, an extraction region mask file must be created using tg_create_mask, followed by order resolution using tg_resolve_events. The first step is to determine the source position, which is used by tg_create_mask. There are many ways to do this; the easiest might be to open the event file in ds9, put a circles on the source position and use the ds9 functions to center it. Another way would be to use the find zero-order algorithm of findzo , which is robust enough to work on heavily piled-up sources with read-out streaks. For this particular example, the position of the zeroth order in sky coordinates is (4017.88, 4141.43).

The following Bourne shell script runs the above set of tools to create a PHA2 file called aped_pha2.fits:

#!/bin/sh
evtfile="aped_evt2.fits"
evt1afile="aped_evt1a.fits"
reg1afile="aped_reg1a.fits"
asol1file="aped_asol1.fits"
pha2file="aped_pha2.fits"

X=4017.88;    # determined by findzo
Y=4141.43;    # determined by findzo

tg_create_mask infile="$evtfile" outfile="$reg1afile" \
  use_user_pars=yes last_source_toread=A \
  sA_id=1 sA_zero_x=$X sA_zero_y=$Y clobber=yes grating_obs=header_value 

tg_resolve_events infile="$evtfile" outfile="$evt1afile" \
  regionfile="$reg1afile" acaofffile="$asol1file" \
  osipfile=CALDB verbose=0 clobber=yes

tgextract infile="$evt1afile" outfile="$pha2file" mode=h clobber=yes

An important by-product of this script is the evt1a file, which includes columns for the computed values of the wavelengths and orders of the diffracted events. In fact, tgextract makes use of those columns to create the PHA2.

The resulting event file may be loaded into ISIS and displayed using

isis> load_data ("aped_pha2.fits");
isis> list_data;

with the result:

Current Spectrum List:
 id    instrument part/m  src    use/nbins   A   R     totcts   exp(ksec)  target
  1     HETG-ACIS  heg-1   1    8192/ 8192   -   -  1.3249e+04    78.988  POINT
file:  aped_pha2.fits
  2     HETG-ACIS  heg+1   1    8192/ 8192   -   -  1.1891e+04    78.988  POINT
file:  aped_pha2.fits
  3     HETG-ACIS  meg-1   1    8192/ 8192   -   -  2.6507e+04    78.988  POINT
file:  aped_pha2.fits
  4     HETG-ACIS  meg+1   1    8192/ 8192   -   -  2.6388e+04    78.988  POINT
file:  aped_pha2.fits

A plot of the MEG-1 spectrum, which corresponds to id=3 in the above list may be created using:

load_data ("aped_pha2.fits");
xrange (1, 25);
plot_open("apedmeg1.ps/CPS");
group_data (3, 2);
plot_data (3);
plot_close ();
../../_images/apedmeg1.png

Plot of the MEG-1 counts spectrum

In making the above plot, the group_data function was used to rebin the data by combining adjacent wavelength channels.