set_rmf
- sherpa.astro.ui.set_rmf(id, rmf=None, resp_id: IdType | None = None, bkg_id: IdType | None = None) None
Set the RMF for use by a PHA data set.
Set the redistribution matrix for a PHA data set, or its background.
- Parameters:
id (int or str, optional) – The data set to use. If not given then the default identifier is used, as returned by
get_default_id.rmf – An RMF, such as returned by
get_rmforunpack_rmf.resp_id (int, str, or None, optional) – The identifier for the RMF within this data set, if there are multiple responses.
bkg_id (int, str, or None, optional) – Set this to identify the RMF as being for use with the background.
See also
get_rmfReturn the RMF associated with a PHA data set.
load_phaLoad a file as a PHA data set.
load_rmfLoad a RMF from a file and add it to a PHA data set.
set_full_modelDefine the convolved model expression for a data set.
set_arfSet the ARF for use by a PHA data set.
unpack_rmfCreate a RMF data structure.
Notes
The function does not follow the normal Python standards for parameter use, since it is designed for easy interactive use. When called with a single un-named argument, it is taken to be the
rmfparameter. If given two un-named arguments, then they are interpreted as theidandrmfparameters, respectively. The remaining parameters are expected to be given as named arguments.If a PHA data set has an associated RMF - either from when the data was loaded or explicitly with the
set_rmffunction - then the model fit to the data will include the effect of the RMF when the model is created withset_modelorset_source. In this case theget_sourcefunction returns the user model, andget_modelthe model that is fit to the data (i.e. it includes any response information; that is the ARF and RMF, if set). To include the RMF explicitly, useset_full_model.Examples
Copy the RMF from the default data set to data set 2:
>>> rmf1 = get_rmf() >>> set_rmf(2, rmf1)
Read in a RMF from the file ‘bkg.rmf’ and set it as the RMF for the background model of data set “core”:
>>> rmf = unpack_rmf('bkg.rmf') >>> set_rmf('core', rmf, bkg_id=1)