Документ взят из кэша поисковой машины. Адрес оригинального документа : http://xmm.vilspa.esa.es/sas/6.5.0/doc/asmooth.ps.gz
Дата изменения: Tue Aug 16 04:21:09 2005
Дата индексирования: Tue Oct 2 09:00:43 2012
Кодировка:

Поисковые слова: dust
XMM-Newton Science Analysis System Page: 1
asmooth
August 16, 2005
Abstract
This task smooths FITS images either simply or adaptively, with options to mask,
weight and exposure-correct.
1 Instruments/Modes
asmooth is not XMM-speci c: it can be applied to any FITS image.
2 Use
pipeline processing yes
interactive analysis yes
3 Description
This task smooths FITS images by a weighted cyclic convolution. The convolution procedure itself is
described in section 3.1. There are many ways in which the user can specify the convolver (see section
3.3). The user can also supply an exposure map (section 3.5), a weight image (section 3.4) and/or an
output mask image (also section 3.4). An image of the variance (square of the standard deviation) of the
input image may also be supplied, and an image of the variance of the smoothed image obtained (section
3.2).
3.1 Convolution details
A cyclic convolution of an input image I x;y weighted by w x;y gives output O x;y according to the following
prescription:
O x;y = C
P M
i=L
P Q
j=P c i;j w x i;y j I x i;y j
P M
i=L
P Q
j=P c i;j w x i;y j
; (1)
where c x;y is the convolver and
xmmsas 20050815 1803-6.5.0

XMM-Newton Science Analysis System Page: 2
C =
M
X
x=L
Q
X
y=P
c x;y :
The indices x i and y j are calculated modulo the image sizes X and Y respectively, that is, they
wrap around the image limits. This cyclic property is unavoidable if it is desired to make eфcient use of
the Fourier transform in performing the convolution. Potentially this is a nuisance because it means, for
example, that values at the left-hand edge of the image can become mixed with values on the right-hand
edge, and so forth. The task avoids this by padding the image with zero-valued pixels in both x and y
directions. The pad size is equal to the width of the convolver in that direction. If there are multiple
convolvers (see sections 3.3.4, 3.3.5 and 3.3.6), the largest convolver sizes are used.
In fact the `blank space' areas around the edges of the image are handled in three steps, as below.
1. If a smaller rectangle can be excised from the input image such that all the pixels of the
excess are zero-valued, this is done.
2. The pad described above is added.
3. The Fast Fourier Transform (FFT) algorithm used by the task works most eфciently if each
dimension of the image is a multiple of 2, 3, 5 or 7. For each dimension of the working
image, asmooth calculates the next largest integer which obeys this condition and adds
further blank space to increase the dimension to that value.
After the convolution is done, before the output is written to le, the process is reversed: the pad is rst
cut away, then the original amount of blank space is restored.
The convolution may be done either directly or via FFT. If left to itself, the task will try to use the
method which is quickest. If the image is large and the number of convolvers small, this will generally be
the FFT method; however direct convolution becomes more eфcient if the image is divided into many
small patches of di erent convolution. If the user desires the convolutions to be unilaterally performed
using one method or another, they should make use of the forcecalctype and calcbyfft parameters.
The two methods produce identical outputs except for small di erences caused by di erent propagation
of rounding errors. However the FFT method will, because it always acts on the whole image, in general
leave few if any pixels in the output which are exactly equal to zero. Use of a mask (section 3.4) or an
exposure map (section 3.5) can be helpful in this instance.
3.2 Variance images
The user has the opportunity both to supply a variance image of the input and to receive a variance
image of the smoothed output. (A variance image is an image of the variances, that is the squares of the
standard deviations, in the values of the input or output images.) A variance image is supplied by setting
parameter readvarianceset=`yes' and naming the image dataset in invarianceset; the variance of the
outset can be obtained via parameters writevarianceset and outvarianceset.
If the task is required to make use of the variance (either because the user has set writevarianceset=`yes'
or smoothstyle=`adaptive'), but none is supplied by the user, the task assumes that the input image
inset is Poissonian - that is, that the image itself is a reasonable estimate of its own variance. 1 In this
1 For small values this becomes a poor approximation. If the matter is of importance, an iterative procedure in which
the smoothed variance is fed back into the task might be worth trying.
xmmsas 20050815 1803-6.5.0

XMM-Newton Science Analysis System Page: 3
case naturally only insets with pixel values >= 0 are accepted. If a variance set is supplied, all pixel
values of the variance image must be >= 0, but the pixels of inset may have any value.
If writevarianceset=`yes', the task calculates the variance in the smoothed output image outset. The
variance  2 (y) of a linear combination y =
P
i a i x i of independent variates x i is given by
 2 (y) =
X
i
a 2
i  2 (x):
(Note there is no connection between the  used here and the  used in section 3.3.1 to signify the
characteristic width of a gaussian! I'm using the same symbol for two di erent things, but hopefully this
won't be too confusing.) By applying this to equation 1 we get
(O) x;y = C
q P M
i=L
P Q
j=P c 2
i;j w 2
x i;y j  2 (I) x i;y j
P M
i=L
P Q
j=P c i;j w x i;y j
; (2)
where (I) x;y is the standard deviation of the input image and (O) x;y that of the output.
3.3 Ways of specifying the convolvers
In all the following descriptions, the convolving function is designated by c x;y , where x and y are integer
pixel numbers. Convolvers must necessarily be of nite extent, hence are only de ned over a rectangular
array.
It is necessary to have some way to determine the `phase' of any convolver: ie, which pixel of the convolver
array should be taken to have row and column indices y and x equal to zero. The rule applied by asmooth
is as follows. If the convolver has for example N rows, then row 1 plus the integer 2 part ofN=2 is taken
as the zeroth row. This means that if N is odd, the central row is the zeroth row, ie the row indices are
taken to extend from (N 1)=2 to (N 1)=2; if N is even, the row indices run from N=2 to N=2 1.
The same rule is applied to the columns.
3.3.1 Single gaussian convolver
smoothstyle=`simple', convolverstyle=`gaussian'.
The convolving kernel is a rotationally-symmetric gaussian, truncated onto a square array of side length
2N + 1:
c x;y = A exp( [x 2 + y 2 ]=2 2 ) for jxj; jyj  N , 0 else.
The width  is read from the parameter width and N is set equal to 1 plus the integer part of 5. If
normalize=`yes', A is set from
A 1 =
N
X
x= N
N
X
y= N
exp( [x 2 + y 2 ]=2 2 );
2 `Integer' in the present document always means truncated rather than rounded.
xmmsas 20050815 1803-6.5.0

XMM-Newton Science Analysis System Page: 4
otherwise A = 1.
3.3.2 Single top-hat convolver
smoothstyle=`simple', convolverstyle=`tophat'.
The convolving kernel approximates a lled circle, viz:
c x;y = A for x 2 + y 2  r 2 , 0 else.
The radius r is read from the parameter width. The convolver array is again square and of side length
2N + 1, where N equals the integer part of r. If normalize=`yes', A 1 is set from
PP
c as before,
otherwise A = 1.
xmmsas 20050815 1803-6.5.0

XMM-Newton Science Analysis System Page: 5
3.3.3 Single square-box convolver
smoothstyle=`simple', convolverstyle=`squarebox'.
This simple convolver is a square array of side equal to 1 + 2(the integer part of width) and value
speci ed by A, which is calculated as in the previous two sections.
3.3.4 Multi-convolver smoothing
smoothstyle=`withset'.
In this mode, di erent parts of the image may be smoothed by di erent convolvers. A list or library of
convolvers is required, also an `index' image which shows those parts of the image to be smoothed by
each convolver. These are supplied in the form of a FITS dataset, as described in section 7. Separate
parameters inconvolversset and inindeximageset are provided for the convolver list and the index
image, so these may be stored either in the same dataset or in two di erent datasets. The image
inindeximageset must have the same dimensions as inset, and the maximum value of inindeximageset
must not exceed the number of convolvers in inconvolversset.
Regardless of the value of withweightset (see section 3.4 for the use of weight and mask images),
the convolution within each index `patch' is always a weighted convolution, the weight being 1 (or 1
the weightset image if this is supplied) within the patch allocated to that convolver and 0 outside it.
Likewise, the result of each patch convolution is masked by the patch (ANDed with the outmaskset mask
if this is supplied) before being added to the output image. In future a parameter may be provided to
allow the user to switch o this patch weighting and masking if desired.
If the user desires the convolvers to be normalized, the normalizeset parameter should be set.
3.3.5 Adaptive smoothing
smoothstyle=`adaptive'.
This is exactly the same as the patchwork convolution described in section 3.3.4, except here the task
calculates the library of convolvers and the associated index image itself.
Adaptive smoothing is designed for Poissonian images made by counting photons or events. (Note that
all images made by XMM instruments have this character.) For such non-negative images it is convenient
to de ne the signal-to-noise ratio (SNR) at each pixel as the value at that pixel divided by its standard
deviation. The intent of adaptive smoothing is to produce an output image in which the SNR at each
pixel is as close as possible to the constant value given in parameter desiredsnr. Through this process,
fainter areas become more thoroughly smoothed than brighter areas. This implies that the detail which
one wishes to preserve from smoothing should be bright rather than dark - it would not be advisable, for
example, to adaptively smooth an image of absorbing dust laments on a bright background.
The convolvers are normalized gaussians of the form described in section 3.3.1. The exact distribution
of their widths is not of primary importance so long as there are enough of them within a wide enough
range to cater for the variations in SNR of the input image. There are several ways in which the
widths of the gaussians can be established. Firstly, the user can provide a list of widths directly via the
userwidths parameter; alternatively, the user can provide minimum and maximum values (parameters
minwidth and maxwidth), specify the number of convolvers (nconvolvers) and the scaling rule to be
used (widthliststyle), and allow the task to calculate the widths.
xmmsas 20050815 1803-6.5.0

XMM-Newton Science Analysis System Page: 6
The relation between input and output standard deviation is given by equation 2. For the square,
symmetric gaussian convolvers of section 3.3.1 this becomes
(O) x;y = C
q P N
i= N
P N
j= N c 2
i;j w 2
x i;y j  2 (I) x i;y j
P N
i= N
P N
j= N c i;j w x i;y j
;
giving the following equation for the signal-to-noise ratio of the smoothed image:
SNR(O) x;y =
P N
i= N
P N
j= N c i;j w x i;y j I x i;y j
q P N
i= N
P N
j= N c 2
i;j w 2
x i;y j  2 (I) x i;y j
: (3)
As described in section 3.2, the user can either supply an explicit image of the variance  2 (I) x;y of the
input image, or this can be left implicit by leaving readvarianceset at its default value of `no'. In the
latter case, the task works under the assumption that the input image is Poissonian and thus may be
used as an estimate of its own variance.
It is not possible to invert equation 3 so as to arrive at the required width of the gaussian convolver
needed to give SNR(O) x;y =desiredsnr at each (x; y). Instead the solution must be found iteratively.
The procedure used by asmooth is simple and therefore robust: for each image pixel, the task starts
at the broadest gaussian in its library and works through the library until jSNR(O) x;y desiredsnrj
reaches a minimum.
The task actually makes two passes through the library of gaussians: the rst as described above, to
calculate the index image; the second refers to the index image while performing the convolution, exactly
as described in section 3.3.4.
Note that variance values = 0 are permitted. This leaves open the possibility that the denominator of
equation 3 may be zero-valued at some (x; y). Equation 3 is not calculated for such pixels: they are
instead simply allocated in the index image to the rst, ie broadest, gaussian.
Occasionally it is useful to be able to apply the adaptive smoothing calculated for one image to another.
The smoothing information can be stored to le in two ways: either directly as a set of convolver images
plus an index image (via parameters writeconvolvers, outconvolversset and outindeximageset), or
via a template image (writetemplateset and outtemplateset). To nd out how to make use of these
les, look in sections 3.3.4 and 3.3.6 respectively.
3.3.6 Smoothing from an adaptive template
smoothstyle=`template'.
Suppose you wish to make a false-colour image from several images of the same piece of sky taken in
di erent energy bands (or at di erent values of any other quantity). If the input images are event-
based images of low exposure it may be rewarding to adaptively smooth them before combining them
into a colour image. However, if each image is smoothed separately, in general convolvers of di erent
widths will be allocated to the same place in the sky in the di erent images. This can cause a sort
of chromatic aberration. To avoid this it is necessary to smooth each image according to the same
template. This template might for example be established by adaptively smoothing the sum of all
input images, then writing the result to le via the parameters writetemplateset and outtemplateset.
This template image just stores the characteristic width of the gaussian used to smooth each pixel
xmmsas 20050815 1803-6.5.0

XMM-Newton Science Analysis System Page: 7
of the input image. If you select smoothstyle=`template' and supply the template set to parameter
smoothstyle=`intemplateset', you will get the same smoothing pattern for any inset.
The same result can be achieved through outconvolversset and outindeximageset, which is a more
robust method. I'll probably abandon the template facility eventually.
3.4 Weighting and masking
Images necessarily have sharp boundaries at their edges, and may in addition have sharp internal steps
between zero- and non-zero-valued pixels. Such steps become `smeared out' through the convolution.
Smearing manifests itself as both `drooping' of non-zero values as the edge is approached and `bleeding'
of non-zero values into the previously zero-valued area. A glance at equation 1 shows that drooping can
be avoided by supplying as weight image (parameters withweightset and weightset) something which
exhibits the same steps as the input image. Where this is the case, both numerator and denominator of
equation 1 fall to approximately half their usual values at pixels adjacent to an image step to zero; if no
weight image is supplied, all values of w x;y are set to 1, and thus only the numerator of 1 falls by about
half at such pixels, so also the result as a whole. An exposure map often serves very well as a weight
image. This can also prevent large noise uctuations in areas of low exposure when the input image is
exposure-corrected before smoothing (see section 3.5).
Droop correction by weighting carries on in principle even outside the area of the input image which
was non-zero-valued. This facility can be used to interpolate over gaps or holes in the input and weight
images. However such extrapolation becomes increasingly noisy far from the step as fewer and fewer
non-zero pixels of the input and weight images overlap the convolver. Indeed such extrapolation cannot
extend further than the convolver array dimensions from non-zero areas of the weight image, else the
denominator of equation 1 would become zero.
This extrapolation can be controlled by supplying asmooth with a mask image via parameters withoutmaskset
and outmaskset. The mask actually has two e ects: only pixels for which the mask is TRUE contribute
to the convolution; and convolution is only performed for pixels for which the mask is TRUE. In fact we
should rewrite equation 1 to read
O x;y = C ф x;y
P M
i=L
P Q
j=P ф x i;y j c i;j w x i;y j I x i;y j
P M
i=L
P Q
j=P ф x i;y j c i;j w x i;y j
+ (1 ф x;y )I x;y ; (4)
where ф x;y represents the mask.
Note from section 7 that the image supplied to outmask may have any numeric data type. The exposure
map for example is often a convenient choice.
If the absolute value of the numerator of equation 1 falls below a certain minimum value, the task will do
the following: (i) issue the warning outMaskTooNarrow; (ii) set the value of that pixel in the outset to
zero; (iii) set the respective pixel of an internal logical image to TRUE. This logical image of pixels where
weighted smoothing could not be carried out can be written to le by setting writebadmaskset=`yes'.
An example of a situation in which a small amount of controlled extrapolation is desirable is in the
creation of background maps by smoothing. Bright sources should be removed from any image before
smoothing it to create such a map. However if pixels in the neighbourhood of sources are simply set
to zero, smoothing won't remove the resulting holes in the image, just blur them. The surrounding
background values can be interpolated into the holes by supplying a weight image (eg the exposure map)
with a matching set of holes. Provided the holes do not approach the convolver array dimensions in size,
the holes should become completely lled in. Note that if a mask is also used, the mask should not have
xmmsas 20050815 1803-6.5.0

XMM-Newton Science Analysis System Page: 8
holes cut in it at the source positions. In total, the recommended procedure is as follows:
1. Make a source-mask image which has holes at source locations. From its appearence the
name of `cheese mask' suggests itself. (Unfortunately the present sas o ers no easy way to
do this.)
2. Multiply the input image by the cheese mask. Let us call the result the cheesed input image.
3. Multiply the exposure map by the cheese mask. Let us call the result the cheesed weight
image.
4. Call asmooth as follows:
asmooth inset=
withweightset=yes weightset=
withoutmaskset=yes outmaskset=
If you still get the `outMaskTooNarrow' warning, you will either have to reduce the size of some of the
holes or use a broader convolver.
Note that, although the exposure map is recommended for three separate inputs of asmooth (weightset,
outmaskset and expimageset), these three functions are separate and should not be confused.
3.5 Correcting for exposure before smoothing
Di erent sections of an image may have di erent exposure. Few problems are likely to be encountered
where the exposure gradient is small compared to the characteristic width of the convolver. Sharp vari-
ations in exposure (such as occur for example in image mosaics) will however become blurred through
the smoothing. The obvious remedy for this is to divide the input image by the exposure map be-
fore smoothing. This facility is provided in asmooth through the parameters withexpimageset and
expimageset.
Clearly, the division by exposure cannot be done at pixels where the exposure map is zero-valued. The
task handles such pixels by setting the corresponding pixels of the weight image to zero. (Whether or not
the user explicitly supplies a weight image, an internal weight image is always constructed; the di erence
being that if withweightset=`no', the entire internal weight image is initially set equal to 1.) Note that
this also takes care of `droop' at image edges in the same way as is described in section 3.4; however the
output image may still contain noise at places where the exposure gradient is very large. The only way
to avoid such noise is to supply the exposure map also as a weight image.
If you wish to create a background map in counts per pixel from an XMM exposure in which the exposure
time varies signi cantly between CCDs, then you will need to remultiply the the output image by the
exposure map; if however you wish to create a mosaic from several di erent cameras or pointings, you
may wish not to do so. For this reason, remultiplication by the exposure map has been made optional
via the remultiply parameter.
3.5.1 Exposure division, variance and adaptive smoothing
A further matter to consider is the e ect of exposure correction on the variance map. Since variance is the
square of standard deviation, the obvious thing to to is to divide the input variance image by the square
of the exposure map . (Remember that, regardless of the value of readvarianceset, the task makes
xmmsas 20050815 1803-6.5.0

XMM-Newton Science Analysis System Page: 9
use of an internal variance image if either writevarianceset=`yes' or smoothstyle=`adaptive'.) For all
choices of smoothstyle but `adaptive', this makes sense. However, recall that adaptive smoothing makes
use of the input variance to calculate the signal-to-noise ratio (SNR) of the input image. From equation
3 one can see that correct division of variance by exposure squared produces the following equation for
SNR:
SNR(O) x;y =
P N
i= N
P N
j= N c i;j (w x i;y j = x i;y j ) I x i;y j
q P N
i= N
P N
j= N c 2
i;j (w 2
x i;y j = 2
x i;y j )  2 (I) x i;y j
: (5)
This treatment of variance will produce an image in which short-exposure areas are more heavily smoothed
than long-exposure areas. Short-exposure areas will in other words exhibit broader spatial variation -
they will appear more `out of focus'. This can be irritating. An alternative approach is provided via the
parameter expmapuse. If this is set to `samesnr' (the default), equation 5 is employed. If expmapuse
is instead set to `samesize', the input variance is divided by   max() instead of by  2 . The e ect on
the output of the `samesize' selection is to leave areas of the image of shorter exposure with a similar
distribution of spatial frequencies to, but larger noise brightness amplitude than, areas of longer exposure.
Note that this ONLY a ects the SNR calculation: if the variance of the output image is also desired, this
is calculated according to equation 2 in the standard way.
3.5.2 Smoothing of mosaics
Image mosaics assembled from several separate pointings look better if the result is divided by the
mosaiced exposure and then smoothed. The withexpimageset facility of asmooth allows you to do
this. Users who wish to make mosaics from XMM EPIC data however need to exercise some caution.
The largest component of the exposure spatial variation in XMM EPIC images is the mirror vignetting
function, which changes typically by a factor of three between the optic axis and the edge of the eld
of view. The problem is that a signi cant fraction of the background in such images arises from sources
(eg cosmic-ray uorescence, soft protons, electronic noise) which are subject to little or no vignetting.
Dividing an image which comprises a at part plus a vignetted part by a purely vignetted function is
going to leave one with an output image which appears to have a hollow centred on the optic axis - ie, is
anti-vignetted. It is therefore advisable to subtract the at background component rst before dividing
by the exposure map. NOTE however that this will destroy the Poisson nature of the input image, which
introduces a couple of complications: rstly, if you also want the variance of the output, you will need to
explicitly supply an invarianceset and not leave it to the task to calculate it; secondly, if you want to
adaptively smooth your mosaic (see section 3.3.5) you will have to adopt a more complicated procedure
than usual.
The recommended procedure for producing simply-smoothed mosaics is as follows:
1. Make a mosaic of the raw images.
2. Make a mosaic of the exposure maps.
3. Make a mosaic of the nonvignetted background (NVB) maps. (It is hoped that in future
there will be a sas task which will be able to decompose XMM EPIC background into its
various components; unfortunately, for the present you are on your own.)
4. Subtract the NVB mosaic from the raw mosaic.
5. Do
asmooth inset=<(raw-NVB) mosaic> smoothstyle=simple
withexpimageset=yes expimageset= remultiply=no
xmmsas 20050815 1803-6.5.0

XMM-Newton Science Analysis System Page: 10
If you also want a map of the output variance, add to this
readvarianceset=yes invarianceset=
writevarianceset=yes outvarianceset=
The recommended procedure for producing adaptively-smoothed mosaics is as follows:
1. Make a mosaic of the raw images.
2. Make a mosaic of the exposure maps.
3. Make a mosaic of the nonvignetted background (NVB) maps. (It is hoped that in future
there will be a sas task which will be able to decompose XMM EPIC background into its
various components; unfortunately, for the present you are on your own.)
4. Adaptively smooth the raw mosaic and save the convolvers using parameters writeconvolvers,
outconvolversset and outindeximageset. I don't at present have a recommendation for
use of withexpimageset or expmapuse at this stage: best to experiment to see which pro-
duces the most acceptable eventual output.
5. Subtract the NVB mosaic from the raw mosaic.
6. Do
asmooth inset=<(raw-NVB) mosaic> smoothstyle=withset
inconvolversset=
inindeximageset=
readvarianceset=yes invarianceset=
withexpimageset=yes expimageset= remultiply=no
4 Parameters
This section documents the parameters recognized by this task (if any).
Parameter Mand Type Default Constraints
inset yes dataset dummy default
The image dataset to be smoothed.
outset no dataset outimage.ds
The resulting smoothed data set.
smoothstyle no string adaptive simple|adaptive|withset|template
The type of smoothing desired.
convolverstyle no string gaussian gaussian|tophat|squarebox
This parameter is read if smoothstyle=`simple' is chosen and prescribes the shape or type of convolver
to use to smooth the image.
width no real 5.0 pixels 0:0  width  100:0
pixels
This parameter is read if smoothstyle=`simple' is chosen. It governs the width of the various types of
simple convolver. See section 3.3 for further details.
xmmsas 20050815 1803-6.5.0

XMM-Newton Science Analysis System Page: 11
normalize no boolean yes
This parameter is read if smoothstyle=`simple' is chosen. If set, the convolver is divided by its array
sum before use. See section 3.3 for further details.
withuserwidths no boolean no
This parameter is read if smoothstyle=`adaptive' is chosen. If set, the task reads a list of gaussian-
convolver sigma values from the userwidths parameter. See section 3.3.5 for further details.
userwidths yes real list 0 0:0  userwidths 
100:0 pixels
The list of gaussian-convolver sigma values read when withuserwidths=`yes'. The values must occurr
in a monotonically increasing sequence. See section 3.3.5 for further details.
nconvolvers no integer 20 2  nconvolvers 
126
If smoothstyle='adaptive' is chosen but withuserwidths=`no', the task constructs a library of nconvolvers
gaussian convolvers. See section 3.3.5 for further details.
minwidth no real 0.0 pixels 0:0  minwidth 
100:0 pixels
If smoothstyle='adaptive' is chosen but withuserwidths=`no', the task constructs a library of gaussian
convolvers which have sigma values ranging from minwidth to maxwidth. See section 3.3.5 for further
details.
maxwidth no real 10.0 pixels 0:0  maxwidth 
100:0 pixels
If smoothstyle='adaptive' is chosen but withuserwidths=`no', the task constructs a library of gaussian
convolvers which have sigma values ranging from minwidth to maxwidth. See section 3.3.5 for further
details.
widthliststyle no string linear linear|log|sqrt
If smoothstyle='adaptive' is chosen but withuserwidths=`no', the task constructs a library of gaus-
sian convolvers. The sigma values of successive gaussians are spaced according to widthliststyle. See
section 3.3.5 for further details.
desiredsnr no real 10.0 0:0 < desiredsnr
Desired signal-to-noise ratio in an adaptively-smoothed image.
writetemplateset no boolean yes
After completion of (adaptive) smoothing, save an image of the convolver widths to a le name speci ed
by outtemplateset. See section 3.3.6 for further details.
outtemplateset no dataset template.ds
Name of the template image to be written when writetemplateset=`yes'. See section 3.3.6 for further
details.
writeconvolvers no boolean no
After completion of (adaptive) smoothing, save details of the convolvers used to les named in parameters
outconvolversset and outindeximageset. See section 3.3.4 for a description of how these les can be
used.
outconvolversset no dataset outconvolvers.ds
If writeconvolvers=`yes', the task writes images of all the convolvers to this dataset. It is recommended
that outindeximageset and outconvolversset be the same dataset. See section 3.3.4 for a description
of how this le can be used.
xmmsas 20050815 1803-6.5.0

XMM-Newton Science Analysis System Page: 12
outindeximageset no dataset outindeximage.ds
If writeconvolvers=`yes', the task writes an index image to this dataset. It is recommended that
outindeximageset and outconvolversset be the same dataset. See section 3.3.4 for a description of
how this le can be used.
inconvolversset no dataset inconvolvers.ds
This parameter is read if smoothstyle=`withset'. inconvolversset is the name of a dataset which con-
tains images of all the convolvers to be used. An index image speci ed in parameter inindeximageset
is also needed. See section 3.3.4 for further details.
inindeximageset no dataset inindeximage.ds
This parameter is read if smoothstyle=`withset'. inindeximageset is the name of a dataset which
contains