| AHELP for CIAO 4.5 Sherpa v1 | save_syserror |
Context: saving |
Synopsis
Save systematic errors to a FITS table or ASCII file
Syntax
save_syserror( [id=1], filename, [bkg_id=1,ascii=False,clobber=False] )
Description
The save_syserror command saves the array of systematic errors associated with the counts in a data set to a column in a FITS table file or column-based ASCII file, by data set id. The systematic error array associated with a data set may be viewed with the get_syserror command. If the systematic errors are not loaded in association with a data set by the user via the load_syserror command ("ahelp load_syserror"), it is assumed that they are zero.
- id - the id of the data set to use; if not given, uses the default data set id (id=1 by default, see "ahelp get_default_id")
- filename - name of outfile
- bkd_id - the id of the background data set to use (e.g., bkg_id=1 represents the first background data set loaded in association with the source data set specified in the 'id' argument)
- ascii - outfile format specification; True to save outfile in ASCII format, False for FITS, default=False
- clobber - clobber outfile; default=False (do not clobber if file exists)
Example 1
sherpa> load_syserror("data1_syserror.fits[cols channel,syserr]")
sherpa> save_syserror("syserror.fits")The save_syserror function can be called with just a filename, in which case all the default arguments will be used. In this example, the systematic error array which was loaded in association with data set 1 via the load_syserror command is written to the FITS table file 'syserror.fits'.
Example 2
sherpa> load_syserror(2, "data1_syserror.fits[cols channel,syserr]") sherpa> save_syserror(2, "syserror.txt", ascii=True)
Here, the optional 'ascii' argument is set to True in order to produce an outfile in ASCII format (overriding the default setting ascii=False). The systematic error array loaded in association with data set 2 via the load_syserror command is written to the text file 'syserror.txt'.
Example 3
sherpa> load_syserror(2, "data2_syserr.dat", bkg_id=1) sherpa> save_syserror(2, "syserror_bkg.fits", bkg_id=1, clobber=True)
The systematic error array loaded in association with the background of source data set 2 via the load_syserror command is written to FITS file syserror_bkg.fits (note the 'ascii' parameter default is False).
See Also
- contrib
- save_chart_spectrum
- data
- copy_data, dataspace1d, dataspace2d, delete_data, fake, get_axes, get_bkg_plot, get_counts, get_data, get_data_plot, get_dep, get_dims, get_error, get_quality, get_specresp, get_staterror, get_syserror, group, load_arf, load_arrays, load_ascii, load_bkg, load_bkg_arf, load_bkg_rmf, load_data, load_grouping, load_image, load_multi_arfs, load_multi_rmfs, load_pha, load_quality, load_rmf, load_staterror, load_syserror, load_table, pack_image, pack_pha, pack_table, set_data, set_quality, ungroup, unpack_arf, unpack_arrays, unpack_ascii, unpack_bkg, unpack_data, unpack_image, unpack_pha, unpack_rmf, unpack_table
- filtering
- get_filter, load_filter, set_filter
- info
- get_default_id, list_bkg_ids, list_data_ids, list_response_ids
- modeling
- add_model, add_user_pars, clean, load_table_model, load_template_model, load_user_model, save_model, save_source
- plotting
- plot_data, set_xlinear, set_xlog, set_ylinear, set_ylog
- saving
- restore, save, save_all, save_arrays, save_data, save_delchi, save_error, save_filter, save_grouping, save_image, save_pha, save_quality, save_resid, save_staterror, save_table, script
- statistics
- load_user_stat
- utilities
- calc_data_sum, calc_data_sum2d, calc_ftest, calc_kcorr, calc_mlr, calc_model_sum2d, calc_source_sum2d, get_rate
- visualization
- contour, contour_data, contour_ratio, get_ratio, get_resid, histogram1d, histogram2d, image_data, rebin

![[Sherpa Logo]](../imgs/sherpa_logo_navbar.gif)