| 11 | | The measurements are performed on residual images created by subtracting model fits of galaxies from images. |
| | 12 | The measurements are performed on residual images created by subtracting a galaxy model fits from the input images. |
| | 13 | The model used was the combination of bulge (de Vaucouleurs) + disk (exponential). |
| | 14 | These Asymmetry indices "provide an estimate of the overall smoothness of the galaxy image with respect to the fitting model". |
| | 15 | The program used to make these measurements is called GIM2D. It is performed on the results of processing by SExtractor. |
| | 16 | Since the indices consist of sums of absolute values of the residuals a positive signal will result even in the prescence of noise. |
| | 17 | So the algorithm subtracts off radomly selected "background pixels" which in the GIM2D program are chosen from the SExtractor |
| | 18 | segmentation image. |
| | 21 | |
| | 22 | In the most recent version of psphotStack I have attempted to implement these measurements. |
| | 23 | Since we do not fit a bulge + disk model we have chosen to use our sersic model fits. The measurements are preformed independently |
| | 24 | on each filter's sources as follows. |
| | 25 | |
| | 26 | 1 At the beginning of the function the input image has all sources subtracted. The first step for each source is to add the |
| | 27 | subtracted model back in. |
| | 28 | |
| | 29 | 2. Next if the source's model is not the Sersic model fit, the model is temporarily changed to make it so. |
| | 30 | The indices consist of sums over a specific radius. Following Simard 2011 the radius chosen is 2 times the half light radius for which |
| | 31 | the value that we have chosen is the major axes of the Sersic fit. |
| | 32 | |
| | 33 | 3 The next step is to determine the background pixels. psphotStack doesn't have a segmentation image so the background pixels are |
| | 34 | selected using the "footprints" measured during source detection. A pixel that is not part of any footprint is considered a background |
| | 35 | pixel. The source's pixels are examined and a vector of background and mirror background pixels are saved. During this loop the sum of |
| | 36 | the source's pixels is made as well. |
| | 37 | |
| | 38 | 4. The sersic model is subtracted |
| | 39 | |
| | 40 | 5. The sums in the formulas for RT and RA are performed. |
| | 41 | |
| | 42 | The new code was used in psphotStack for SAS.37. |
| | 43 | |