public software.sextractor

[/] [trunk/] [src/] [param.h] - Blame information for rev 209

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 bertin
/*
2
                                param.h
3
 
4
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5
*
6
*       Part of:        SExtractor
7
*
8
*       Author:         E.BERTIN (IAP)
9
*
10
*       Contents:       parameter list for catalog data.
11
*
12 208 bertin
*       Last modify:    24/09/2009
13 2 bertin
*
14
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
15
*/
16
 
17
objstruct       outobj;
18
obj2struct      outobj2;
19
 
20
/*--------------------------------- initialization --------------------------*/
21
keystruct       objkey[] = {
22
  {"NUMBER", "Running object number",
23 11 bertin
        &outobj.number, H_INT, T_LONG, "%10d", "",
24
        "meta.record", ""},
25 2 bertin
  {"EXT_NUMBER", "FITS extension number",
26 11 bertin
        &outobj2.ext_number, H_INT, T_SHORT, "%3d", "",
27
        "meta.id;meta.dataset", ""},
28 2 bertin
  {"FLUX_ISO", "Isophotal flux",
29 11 bertin
        &outobj2.flux_iso, H_FLOAT, T_FLOAT, "%12.7g", "count",
30
        "phot.flux", "ct"},
31 2 bertin
  {"FLUXERR_ISO", "RMS error for isophotal flux",
32 11 bertin
        &outobj2.fluxerr_iso, H_FLOAT, T_FLOAT, "%12.7g", "count",
33
        "stat.stdev;phot.flux", "ct"},
34 2 bertin
  {"MAG_ISO", "Isophotal magnitude",
35 11 bertin
        &outobj2.mag_iso, H_FLOAT, T_FLOAT, "%8.4f", "mag",
36
        "phot.mag", "mag"},
37 2 bertin
  {"MAGERR_ISO", "RMS error for isophotal magnitude",
38 11 bertin
        &outobj2.magerr_iso, H_FLOAT, T_FLOAT, "%8.4f", "mag",
39
        "stat.stdev;phot.mag", "mag"},
40 2 bertin
 
41
  {"FLUX_ISOCOR", "Corrected isophotal flux",
42 11 bertin
        &outobj2.flux_isocor, H_FLOAT, T_FLOAT, "%12.7g", "count",
43
        "phot.flux", "ct"},
44 2 bertin
  {"FLUXERR_ISOCOR", "RMS error for corrected isophotal flux",
45 11 bertin
        &outobj2.fluxerr_isocor, H_FLOAT, T_FLOAT, "%12.7g", "count",
46
        "stat.stdev;phot.flux", "ct"},
47 2 bertin
  {"MAG_ISOCOR", "Corrected isophotal magnitude",
48 11 bertin
        &outobj2.mag_isocor, H_FLOAT, T_FLOAT, "%8.4f", "mag",
49
        "phot.mag", "mag"},
50 2 bertin
  {"MAGERR_ISOCOR", "RMS error for corrected isophotal magnitude",
51 11 bertin
        &outobj2.magerr_isocor, H_FLOAT, T_FLOAT, "%8.4f", "mag",
52
        "stat.stdev;phot.mag", "mag"},
53 2 bertin
 
54
  {"FLUX_APER", "Flux vector within fixed circular aperture(s)",
55 11 bertin
        &outobj2.flux_aper, H_FLOAT, T_FLOAT, "%12.7g", "count",
56
        "phot.flux", "ct", 1, &prefs.flux_apersize},
57 2 bertin
  {"FLUXERR_APER", "RMS error vector for aperture flux(es)",
58 11 bertin
        &outobj2.fluxerr_aper, H_FLOAT, T_FLOAT, "%12.7g", "count",
59
        "stat.stdev;phot.flux", "ct", 1, &prefs.fluxerr_apersize},
60 2 bertin
  {"MAG_APER", "Fixed aperture magnitude vector",
61 11 bertin
        &outobj2.mag_aper, H_FLOAT, T_FLOAT, "%8.4f", "mag",
62
        "phot.mag", "mag", 1, &prefs.mag_apersize},
63 2 bertin
  {"MAGERR_APER", "RMS error vector for fixed aperture mag.",
64 11 bertin
        &outobj2.magerr_aper, H_FLOAT, T_FLOAT, "%8.4f", "mag",
65
        "stat.stdev;phot.mag", "mag", 1, &prefs.magerr_apersize},
66 2 bertin
 
67
  {"FLUX_AUTO", "Flux within a Kron-like elliptical aperture",
68 11 bertin
        &outobj2.flux_auto, H_FLOAT, T_FLOAT, "%12.7g", "count",
69
        "phot.flux;meta.main", "ct"},
70 2 bertin
  {"FLUXERR_AUTO", "RMS error for AUTO flux",
71 11 bertin
        &outobj2.fluxerr_auto, H_FLOAT, T_FLOAT, "%12.7g", "count",
72
        "stat.stdev;phot.flux;meta.main", "ct"},
73 2 bertin
  {"MAG_AUTO", "Kron-like elliptical aperture magnitude",
74 11 bertin
        &outobj2.mag_auto, H_FLOAT, T_FLOAT, "%8.4f", "mag",
75
        "phot.mag;meta.main", "mag"},
76 2 bertin
  {"MAGERR_AUTO", "RMS error for AUTO magnitude",
77 11 bertin
        &outobj2.magerr_auto, H_FLOAT, T_FLOAT, "%8.4f", "mag",
78
        "stat.stdev;phot.mag;meta.main", "mag"},
79 2 bertin
 
80
  {"FLUX_PETRO", "Flux within a Petrosian-like elliptical aperture",
81 11 bertin
        &outobj2.flux_petro, H_FLOAT, T_FLOAT, "%12.7g", "count",
82
        "phot.flux", "ct"},
83 2 bertin
  {"FLUXERR_PETRO", "RMS error for PETROsian flux",
84 11 bertin
        &outobj2.fluxerr_petro, H_FLOAT, T_FLOAT, "%12.7g", "count",
85
        "stat.stdev;phot.flux", "ct"},
86 2 bertin
  {"MAG_PETRO", "Petrosian-like elliptical aperture magnitude",
87 11 bertin
        &outobj2.mag_petro, H_FLOAT, T_FLOAT, "%8.4f", "mag",
88
        "phot.mag", "mag"},
89 2 bertin
  {"MAGERR_PETRO", "RMS error for PETROsian magnitude",
90 11 bertin
        &outobj2.magerr_petro, H_FLOAT, T_FLOAT, "%8.4f", "mag",
91
        "stat.stdev;phot.mag", "mag"},
92 2 bertin
 
93
  {"FLUX_BEST", "Best of FLUX_AUTO and FLUX_ISOCOR",
94 11 bertin
        &outobj2.flux_best, H_FLOAT, T_FLOAT, "%12.7g", "count",
95
        "phot.flux", "ct"},
96 2 bertin
  {"FLUXERR_BEST", "RMS error for BEST flux",
97 11 bertin
        &outobj2.fluxerr_best, H_FLOAT, T_FLOAT, "%12.7g", "count",
98
        "stat.stdev;phot.flux", "ct"},
99 2 bertin
  {"MAG_BEST", "Best of MAG_AUTO and MAG_ISOCOR",
100 11 bertin
        &outobj2.mag_best, H_FLOAT, T_FLOAT, "%8.4f", "mag",
101
        "phot.mag", "mag"},
102 2 bertin
  {"MAGERR_BEST", "RMS error for MAG_BEST",
103 11 bertin
        &outobj2.magerr_best, H_FLOAT, T_FLOAT, "%8.4f", "mag",
104
        "stat.stdev;phot.mag", "mag"},
105 2 bertin
 
106
  {"FLUX_WIN", "Gaussian-weighted flux",
107 11 bertin
        &outobj2.flux_win, H_FLOAT, T_FLOAT, "%12.7g", "count",
108
        "phot.flux", "ct"},
109 2 bertin
  {"FLUXERR_WIN", "RMS error for WIN flux",
110 11 bertin
        &outobj2.fluxerr_win, H_FLOAT, T_FLOAT, "%12.7g", "count",
111
        "stat.stdev;phot.flux", "ct"},
112 2 bertin
  {"MAG_WIN", "Gaussian-weighted magnitude",
113 11 bertin
        &outobj2.mag_win, H_FLOAT, T_FLOAT, "%8.4f", "mag",
114
        "phot.mag", "mag"},
115 2 bertin
  {"MAGERR_WIN", "RMS error for MAG_WIN",
116 11 bertin
        &outobj2.magerr_win, H_FLOAT, T_FLOAT, "%8.4f", "mag",
117
        "stat.stdev;phot.mag", "mag"},
118 2 bertin
 
119
  {"FLUX_SOMFIT", "Flux derived from SOM fit",
120 11 bertin
        &outobj2.flux_somfit, H_FLOAT, T_FLOAT, "%12.7g", "count",
121
        "phot.flux", "ct"},
122 2 bertin
  {"FLUXERR_SOMFIT", "RMS error for SOMFIT flux",
123 11 bertin
        &outobj2.fluxerr_somfit, H_FLOAT, T_FLOAT, "%12.7g", "count",
124
        "stat.stdev;phot.flux", "ct"},
125 2 bertin
  {"MAG_SOMFIT", "Magnitude derived from SOM fit",
126 11 bertin
        &outobj2.mag_somfit, H_FLOAT, T_FLOAT, "%8.4f", "mag",
127
        "phot.mag", "mag"},
128 2 bertin
  {"MAGERR_SOMFIT", "Magnitude error derived from SOM fit",
129 11 bertin
        &outobj2.magerr_somfit, H_FLOAT, T_FLOAT, "%8.4f", "mag",
130
        "stat.stdev;phot.mag", "mag"},
131 2 bertin
  {"ERROR_SOMFIT", "Reduced Chi-square error of the SOM fit",
132 11 bertin
        &outobj2.stderr_somfit, H_FLOAT, T_FLOAT, "%10.4g", "",
133
        "stat.fit.chi2", ""},
134 2 bertin
  {"VECTOR_SOMFIT", "Position vector of the winning SOM node",
135 11 bertin
        &outobj2.vector_somfit, H_FLOAT, T_FLOAT, "%5.2f", "",
136
        "src.morph.param", "", 1, &prefs.somfit_vectorsize},
137 2 bertin
 
138 186 bertin
/* The following would use Principal Component fitting.
139
   This has been obsoleted by bona fide model fitting.
140
 
141 2 bertin
  {"FLUX_GALFIT", "Flux derived from the galaxy fit",
142 11 bertin
        &outobj2.flux_galfit, H_FLOAT, T_FLOAT, "%12.7g", "count",
143
        "phot.flux;stat.fit.param", "ct"},
144 2 bertin
  {"FLUXERR_GALFIT", "RMS error for GALFIT flux",
145
        &outobj2.fluxerr_galfit, H_FLOAT, T_FLOAT, "%12.7g", "count"},
146
  {"MAG_GALFIT", "Magnitude derived from galaxy fit",
147 11 bertin
        &outobj2.mag_galfit, H_FLOAT, T_FLOAT, "%8.4f", "mag",
148
        "phot.mag;stat.fit.param", "mag"},
149 2 bertin
 
150
  {"MAGERR_GALFIT", "Magnitude error derived from galaxy fit",
151
        &outobj2.magerr_galfit, H_FLOAT, T_FLOAT, "%8.4f", "mag"},
152
  {"ERROR_GALFIT", "Reduced Chi-square error of the galaxy fit",
153
        &outobj2.stderr_galfit, H_FLOAT, T_FLOAT, "%10g", ""},
154 186 bertin
 
155 2 bertin
  {"GALDANG_IMAGE", "Galaxy disk position angle  from the galaxy fit",
156 191 bertin
        &outobj2.gdposang, H_FLOAT, T_FLOAT, "%6.2f", "deg",
157 11 bertin
        "pos.posAng;stat.fit.param", "deg"},
158 2 bertin
  {"GALDSCALE_IMAGE", "Galaxy disk-scale from the galaxy fit",
159 11 bertin
        &outobj2.gdscale, H_FLOAT, T_FLOAT, "%9.3f", "pixel",
160
        "src.morph.scLength;stat.fit.param", "pix"},
161 2 bertin
  {"GALDASPEC_IMAGE", "Galaxy disk aspect ratio from the galaxy fit",
162 11 bertin
        &outobj2.gdaspect, H_FLOAT, T_FLOAT, "%5.3f", "",
163
        "phys.size.axisRatio;stat.fit.param", ""},
164 2 bertin
  {"GALDE1_IMAGE", "Galaxy disk ellipticity #1 from the galaxy fit",
165 11 bertin
        &outobj2.gde1, H_FLOAT, T_FLOAT, "%6.4f", "",
166
        "src.ellipticity", ""},
167 2 bertin
  {"GALDE2_IMAGE", "Galaxy disk ellipticity #2 from the galaxy fit",
168 11 bertin
        &outobj2.gde2, H_FLOAT, T_FLOAT, "%6.4f", "",
169
        "src.ellipticity", ""},
170 2 bertin
  {"GALBRATIO_IMAGE", "Galaxy bulge ratio from the galaxy fit",
171 11 bertin
        &outobj2.gbratio, H_FLOAT, T_FLOAT, "%5.3f", "",
172
        "src.morph.param;stat.fit.param", ""},
173 2 bertin
  {"GALBANG_IMAGE", "Galaxy bulge position angle  from the galaxy fit",
174 191 bertin
        &outobj2.gbposang, H_FLOAT, T_FLOAT, "%6.2f", "deg",
175 11 bertin
        "pos.posAng;stat.fit.param", "deg"},
176 2 bertin
  {"GALBSCALE_IMAGE", "Galaxy bulge-scale from the galaxy fit",
177 11 bertin
        &outobj2.gbscale, H_FLOAT, T_FLOAT, "%9.3f", "pixel",
178
        "src.morph.scLength;stat.fit.param", "pix"},
179 2 bertin
  {"GALBASPEC_IMAGE", "Galaxy bulge aspect ratio from the galaxy fit",
180 11 bertin
        &outobj2.gbaspect, H_FLOAT, T_FLOAT, "%5.3f", "",
181
        "phys.size.axisRatio;stat.fit.param", ""},
182 186 bertin
*/
183 2 bertin
 
184
  {"KRON_RADIUS", "Kron apertures in units of A or B",
185 11 bertin
        &outobj2.kronfactor, H_FLOAT, T_FLOAT, "%5.2f", "",
186
        "arith.factor;arith.ratio", ""},
187 2 bertin
  {"PETRO_RADIUS", "Petrosian apertures in units of A or B",
188 11 bertin
        &outobj2.petrofactor, H_FLOAT, T_FLOAT, "%5.2f", "",
189
        "arith.factor;arith.ratio", ""},
190 2 bertin
  {"BACKGROUND", "Background at centroid position",
191 11 bertin
        &outobj.bkg, H_FLOAT, T_FLOAT, "%12.7g", "count",
192
        "instr.skyLevel", "ct"},
193 2 bertin
  {"THRESHOLD", "Detection threshold above background",
194 11 bertin
        &outobj.dthresh, H_FLOAT, T_FLOAT, "%12.7g", "count",
195
        "instr.sensitivity;phot.flux.sb", "ct"},
196 2 bertin
  {"FLUX_MAX", "Peak flux above background",
197 11 bertin
        &outobj.peak, H_FLOAT, T_FLOAT, "%12.7g", "count",
198
        "phot.flux.sb;stat.max", "ct"},
199 2 bertin
  {"ISOAREA_IMAGE", "Isophotal area above Analysis threshold",
200 11 bertin
        &outobj.npix, H_INT, T_LONG, "%9d", "pixel**2",
201 13 bertin
        "phys.area", "pix2"},
202 2 bertin
  {"ISOAREAF_IMAGE", "Isophotal area (filtered) above Detection threshold",
203 11 bertin
        &outobj.fdnpix, H_INT, T_LONG, "%9d", "pixel**2",
204 13 bertin
        "phys.area", "pix2"},
205 2 bertin
 
206
  {"XMIN_IMAGE", "Minimum x-coordinate among detected pixels",
207 11 bertin
        &outobj.xmin, H_INT, T_LONG, "%10d", "pixel",
208
        "pos.cartesian.x;stat.min", "pix"},
209 2 bertin
  {"YMIN_IMAGE", "Minimum y-coordinate among detected pixels",
210 11 bertin
        &outobj.ymin, H_INT, T_LONG, "%10d", "pixel",
211
        "pos.cartesian.y;stat.min", "pix"},
212 2 bertin
  {"XMAX_IMAGE", "Maximum x-coordinate among detected pixels",
213 11 bertin
        &outobj.xmax, H_INT, T_LONG, "%10d", "pixel",
214
        "pos.cartesian.x;stat.max", "pix"},
215 2 bertin
  {"YMAX_IMAGE", "Maximum y-coordinate among detected pixels",
216 11 bertin
        &outobj.ymax, H_INT, T_LONG, "%10d", "pixel",
217
        "pos.cartesian.y;stat.max", "pix"},
218 2 bertin
 
219
  {"XPEAK_IMAGE", "x-coordinate of the brightest pixel",
220 11 bertin
        &outobj.peakx, H_INT, T_LONG, "%10d", "pixel",
221
        "pos.cartesian.x", "pix"},
222 2 bertin
  {"YPEAK_IMAGE", "y-coordinate of the brightest pixel",
223 11 bertin
        &outobj.peaky, H_INT, T_LONG, "%10d", "pixel",
224
        "pos.cartesian.y", "pix"},
225 199 bertin
  {"XPEAK_FOCAL", "Focal-plane x coordinate of the brightest pixel",
226
        &outobj2.peakxf, H_FLOAT, T_DOUBLE, "%18.10e", "",
227
        "pos.cartesian.x", ""},
228
  {"YPEAK_FOCAL", "Focal-plane y coordinate of the brightest pixel",
229
        &outobj2.peakyf, H_FLOAT, T_DOUBLE, "%18.10e", "",
230
        "pos.cartesian.y", ""},
231 2 bertin
  {"XPEAK_WORLD", "World-x coordinate of the brightest pixel",
232 191 bertin
        &outobj2.peakxw, H_FLOAT, T_DOUBLE, "%18.10e", "deg",
233 11 bertin
        "pos.eq.ra", "deg"},
234 2 bertin
  {"YPEAK_WORLD", "World-y coordinate of the brightest pixel",
235 191 bertin
        &outobj2.peakyw, H_FLOAT, T_DOUBLE, "%18.10e", "deg",
236 11 bertin
        "pos.eq.dec", "deg"},
237 2 bertin
 
238
  {"ALPHAPEAK_SKY", "Right ascension of brightest pix (native)",
239 11 bertin
        &outobj2.peakalphas, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
240
        "pos.eq.ra", "deg"},
241 2 bertin
  {"DELTAPEAK_SKY", "Declination of brightest pix (native)",
242 11 bertin
        &outobj2.peakdeltas, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
243
        "pos.eq.dec", "deg"},
244 2 bertin
 
245
  {"ALPHAPEAK_J2000", "Right ascension of brightest pix (J2000)",
246 11 bertin
        &outobj2.peakalpha2000, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
247
        "pos.eq.ra", "deg"},
248 2 bertin
  {"DELTAPEAK_J2000", "Declination of brightest pix (J2000)",
249 11 bertin
        &outobj2.peakdelta2000, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
250
        "pos.eq.dec", "deg"},
251 2 bertin
 
252
  {"ALPHAPEAK_B1950", "Right ascension of brightest pix (B1950)",
253 11 bertin
        &outobj2.peakalpha1950, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
254
        "pos.eq.ra", "deg"},
255 2 bertin
  {"DELTAPEAK_B1950", "Declination of brightest pix (B1950)",
256 11 bertin
        &outobj2.peakdelta1950, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
257
        "pos.eq.dec", "deg"},
258 2 bertin
 
259
  {"X_IMAGE", "Object position along x",
260 11 bertin
        &outobj2.sposx, H_FLOAT, T_FLOAT, "%10.3f", "pixel",
261
        "pos.cartesian.x;pos.barycenter;instr.det;meta.main", "pix"},
262 2 bertin
  {"Y_IMAGE", "Object position along y",
263 11 bertin
        &outobj2.sposy, H_FLOAT, T_FLOAT, "%10.3f", "pixel",
264
        "pos.cartesian.y;pos.barycenter;instr.det;meta.main", "pix"},
265 2 bertin
  {"X_IMAGE_DBL", "Object position along x (double precision)",
266 11 bertin
        &outobj2.posx, H_FLOAT, T_DOUBLE, "%10.3f", "pixel",
267
        "pos.cartesian.x;pos.barycenter;instr.det", "pix"},
268 2 bertin
  {"Y_IMAGE_DBL", "Object position along y (double precision)",
269 11 bertin
        &outobj2.posy, H_FLOAT, T_DOUBLE, "%10.3f", "pixel",
270
        "pos.cartesian.x;pos.barycenter;instr.det", "pix"},
271 199 bertin
  {"X_FOCAL", "Barycenter position along focal-plane x axis",
272
        &outobj2.mxf, H_FLOAT, T_DOUBLE, "%18.10e", "",
273
        "pos.cartesian.x", ""},
274
  {"Y_FOCAL", "Barycenter position along focal-plane y axis",
275
        &outobj2.myf, H_FLOAT, T_DOUBLE, "%18.10e", "",
276
        "pos.cartesian.y", ""},
277 2 bertin
  {"X_WORLD", "Barycenter position along world x axis",
278 191 bertin
        &outobj2.mxw, H_FLOAT, T_DOUBLE, "%18.10e", "deg",
279 11 bertin
        "pos.eq.ra", "deg"},
280 2 bertin
  {"Y_WORLD", "Barycenter position along world y axis",
281 191 bertin
        &outobj2.myw, H_FLOAT, T_DOUBLE, "%18.10e", "deg",
282 11 bertin
        "pos.eq.dec", "deg"},
283 2 bertin
  {"X_MAMA", "Barycenter position along MAMA x axis",
284 11 bertin
        &outobj2.mamaposx, H_FLOAT, T_DOUBLE, "%8.1f", "m**(-6)",
285
        "pos.cartesian.x;instr.det;pos.barycenter", "um"},
286 2 bertin
  {"Y_MAMA", "Barycenter position along MAMA y axis",
287 11 bertin
        &outobj2.mamaposy, H_FLOAT, T_DOUBLE, "%8.1f", "m**(-6)",
288
        "pos.cartesian.y;instr.det;pos.barycenter", "um"},
289 2 bertin
 
290
  {"ALPHA_SKY", "Right ascension of barycenter (native)",
291 11 bertin
        &outobj2.alphas, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
292
        "pos.eq.ra;pos.barycenter", "deg"},
293 2 bertin
  {"DELTA_SKY", "Declination of barycenter (native)",
294 11 bertin
        &outobj2.deltas, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
295
        "pos.eq.dec;pos.barycenter", "deg"},
296 2 bertin
 
297
  {"ALPHA_J2000", "Right ascension of barycenter (J2000)",
298 11 bertin
        &outobj2.alpha2000, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
299
        "pos.eq.ra;pos.barycenter;meta.main", "deg"},
300 2 bertin
  {"DELTA_J2000", "Declination of barycenter (J2000)",
301 11 bertin
        &outobj2.delta2000, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
302
        "pos.eq.dec;pos.barycenter;meta.main", "deg"},
303 2 bertin
 
304
  {"ALPHA_B1950", "Right ascension of barycenter (B1950)",
305 11 bertin
        &outobj2.alpha1950, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
306
        "pos.eq.ra;pos.barycenter", "deg"},
307 2 bertin
  {"DELTA_B1950", "Declination of barycenter (B1950)",
308 11 bertin
        &outobj2.delta1950, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
309
        "pos.eq.dec;pos.barycenter", "deg"},
310 2 bertin
 
311
  {"X2_IMAGE", "Variance along x",
312 191 bertin
        &outobj.mx2, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
313 11 bertin
        "src.impactParam;instr.det", "pix2"},
314 2 bertin
  {"Y2_IMAGE", "Variance along y",
315 191 bertin
        &outobj.my2, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
316 11 bertin
        "src.impactParam;instr.det", "pix2"},
317 2 bertin
  {"XY_IMAGE", "Covariance between x and y",
318 191 bertin
        &outobj.mxy, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
319 11 bertin
        "src.impactParam;instr.det", "pix2"},
320 2 bertin
  {"X2_WORLD", "Variance along X-WORLD (alpha)",
321 191 bertin
        &outobj2.mx2w, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
322 11 bertin
        "src.impactParam", "deg2"},
323 2 bertin
  {"Y2_WORLD", "Variance along Y-WORLD (delta)",
324 191 bertin
        &outobj2.my2w, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
325 11 bertin
        "src.impactParam", "deg2"},
326 2 bertin
  {"XY_WORLD", "Covariance between X-WORLD and Y-WORLD",
327 191 bertin
        &outobj2.mxyw, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
328 11 bertin
        "src.impactParam", "deg2"},
329 2 bertin
 
330
  {"CXX_IMAGE", "Cxx object ellipse parameter",
331 191 bertin
        &outobj.cxx, H_EXPO, T_FLOAT, "%15.7e", "pixel**(-2)",
332 11 bertin
        "src.impactParam;instr.det", "pix-2"},
333 2 bertin
  {"CYY_IMAGE", "Cyy object ellipse parameter",
334 191 bertin
        &outobj.cyy, H_EXPO, T_FLOAT, "%15.7e", "pixel**(-2)",
335 11 bertin
        "src.impactParam;instr.det", "pix-2"},
336 2 bertin
  {"CXY_IMAGE", "Cxy object ellipse parameter",
337 191 bertin
        &outobj.cxy, H_EXPO, T_FLOAT, "%15.7e", "pixel**(-2)",
338 11 bertin
        "src.impactParam;instr.det", "pix-2"},
339 2 bertin
  {"CXX_WORLD", "Cxx object ellipse parameter (WORLD units)",
340 191 bertin
        &outobj2.cxxw, H_EXPO, T_FLOAT, "%15.7e", "deg**(-2)",
341 11 bertin
        "src.impactParam", "deg-2"},
342 2 bertin
  {"CYY_WORLD", "Cyy object ellipse parameter (WORLD units)",
343 191 bertin
        &outobj2.cyyw, H_EXPO, T_FLOAT, "%15.7e", "deg**(-2)",
344 11 bertin
        "src.impactParam", "deg-2"},
345 2 bertin
  {"CXY_WORLD", "Cxy object ellipse parameter (WORLD units)",
346 191 bertin
        &outobj2.cxyw, H_EXPO, T_FLOAT, "%15.7e", "deg**(-2)",
347 11 bertin
        "src.impactParam", "deg-2"},
348 2 bertin
 
349
  {"A_IMAGE", "Profile RMS along major axis",
350 11 bertin
        &outobj.a, H_FLOAT, T_FLOAT, "%9.3f", "pixel",
351
        "phys.size.smajAxis;instr.det;meta.main", "pix"},
352 2 bertin
  {"B_IMAGE", "Profile RMS along minor axis",
353 11 bertin
        &outobj.b, H_FLOAT, T_FLOAT, "%9.3f", "pixel",
354
        "phys.size.sminAxis;instr.det;meta.main", "pix"},
355 2 bertin
  {"THETA_IMAGE", "Position angle (CCW/x)",
356 191 bertin
        &outobj.theta, H_FLOAT, T_FLOAT, "%6.2f", "deg",
357 11 bertin
        "pos.posAng;instr.det;meta.main", "deg"},
358 2 bertin
  {"A_WORLD", "Profile RMS along major axis (world units)",
359 11 bertin
        &outobj2.aw, H_FLOAT, T_FLOAT, "%12.7g", "deg",
360
        "phys.size.smajAxis;meta.main", "deg"},
361 2 bertin
  {"B_WORLD", "Profile RMS along minor axis (world units)",
362 11 bertin
        &outobj2.bw, H_FLOAT, T_FLOAT, "%12.7g", "deg",
363
        "phys.size.sminAxis;meta.main", "deg"},
364 2 bertin
  {"THETA_WORLD", "Position angle (CCW/world-x)",
365 191 bertin
        &outobj2.thetaw, H_FLOAT, T_FLOAT, "%6.2f", "deg",
366 11 bertin
        "pos.posAng", "deg"},
367 2 bertin
  {"THETA_SKY", "Position angle (east of north) (native)",
368 11 bertin
        &outobj2.thetas, H_FLOAT, T_FLOAT, "%+6.2f", "deg",
369
        "pos.posAng", "deg"},
370 2 bertin
  {"THETA_J2000", "Position angle (east of north) (J2000)",
371 11 bertin
        &outobj2.theta2000, H_FLOAT, T_FLOAT, "%+6.2f", "deg",
372
        "pos.posAng;meta.main", "deg"},
373 2 bertin
  {"THETA_B1950", "Position angle (east of north) (B1950)",
374 11 bertin
        &outobj2.theta1950, H_FLOAT, T_FLOAT, "%+6.2f", "deg",
375
        "pos.posAng", "deg"},
376 2 bertin
 
377
  {"ERRX2_IMAGE", "Variance of position along x",
378 191 bertin
        &outobj.poserr_mx2, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
379 11 bertin
        "stat.variance;pos.errorEllipse;instr.det", "pix2"},
380 2 bertin
  {"ERRY2_IMAGE", "Variance of position along y",
381 191 bertin
        &outobj.poserr_my2, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
382 11 bertin
        "stat.variance;pos.errorEllipse;instr.det", "pix2"},
383 2 bertin
  {"ERRXY_IMAGE", "Covariance of position between x and y",
384 191 bertin
        &outobj.poserr_mxy, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
385 11 bertin
        "stat.covariance;pos.errorEllipse;instr.det", "pix2"},
386 2 bertin
  {"ERRX2_WORLD", "Variance of position along X-WORLD (alpha)",
387 191 bertin
        &outobj2.poserr_mx2w, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
388 11 bertin
        "stat.variance;pos.errorEllipse", "deg2"},
389 2 bertin
  {"ERRY2_WORLD", "Variance of position along Y-WORLD (delta)",
390 191 bertin
        &outobj2.poserr_my2w, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
391 11 bertin
        "stat.variance;pos.errorEllipse", "deg2"},
392 2 bertin
  {"ERRXY_WORLD", "Covariance of position X-WORLD/Y-WORLD",
393 191 bertin
        &outobj2.poserr_mxyw, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
394 11 bertin
        "stat.covariance;pos.errorEllipse", "deg2"},
395 2 bertin
 
396
  {"ERRCXX_IMAGE", "Cxx error ellipse parameter",
397 11 bertin
        &outobj2.poserr_cxx, H_EXPO, T_FLOAT, "%12.7g", "pixel**(-2)",
398
        "src.impactParam;pos.errorEllipse;instr.det", "pix-2"},
399 2 bertin
  {"ERRCYY_IMAGE", "Cyy error ellipse parameter",
400 11 bertin
        &outobj2.poserr_cyy, H_EXPO, T_FLOAT, "%12.7g", "pixel**(-2)",
401
        "src.impactParam;pos.errorEllipse;instr.det", "pix-2"},
402 2 bertin
  {"ERRCXY_IMAGE", "Cxy error ellipse parameter",
403 11 bertin
        &outobj2.poserr_cxy, H_EXPO, T_FLOAT, "%12.7g", "pixel**(-2)",
404
        "src.impactParam;pos.errorEllipse;instr.det", "pix-2"},
405 2 bertin
  {"ERRCXX_WORLD", "Cxx error ellipse parameter (WORLD units)",
406 11 bertin
        &outobj2.poserr_cxxw, H_EXPO, T_FLOAT, "%12.7g", "deg**(-2)",
407
        "src.impactParam;pos.errorEllipse", "deg-2"},
408 2 bertin
  {"ERRCYY_WORLD", "Cyy error ellipse parameter (WORLD units)",
409 11 bertin
        &outobj2.poserr_cyyw, H_EXPO, T_FLOAT, "%12.7g", "deg**(-2)",
410
        "src.impactParam;pos.errorEllipse", "deg-2"},
411 2 bertin
  {"ERRCXY_WORLD", "Cxy error ellipse parameter (WORLD units)",
412 11 bertin
        &outobj2.poserr_cxyw, H_EXPO, T_FLOAT, "%12.7g", "deg**(-2)",
413
        "src.impactParam;pos.errorEllipse", "deg-2"},
414 2 bertin
 
415
  {"ERRA_IMAGE", "RMS position error along major axis",
416 173 bertin
        &outobj2.poserr_a, H_FLOAT, T_FLOAT, "%8.4f", "pixel",
417 11 bertin
        "stat.stdev;stat.max;pos.errorEllipse;instr.det;meta.main", "pix"},
418 2 bertin
  {"ERRB_IMAGE", "RMS position error along minor axis",
419 11 bertin
        &outobj2.poserr_b, H_FLOAT, T_FLOAT, "%8.4f", "pixel",
420
        "stat.stdev;stat.min;pos.errorEllipse;instr.det;meta.main", "pix"},
421 2 bertin
  {"ERRTHETA_IMAGE", "Error ellipse position angle (CCW/x)",
422 191 bertin
        &outobj2.poserr_theta, H_FLOAT, T_FLOAT, "%6.2f", "deg",
423 11 bertin
        "pos.posAng;pos.errorEllipse;instr.det;meta.main", "deg"},
424 2 bertin
  {"ERRA_WORLD", "World RMS position error along major axis",
425 22 bertin
        &outobj2.poserr_aw, H_FLOAT, T_FLOAT, "%12.7g", "deg",
426 11 bertin
        "stat.stdev;stat.max;pos.errorEllipse;meta.main", "deg"},
427 2 bertin
  {"ERRB_WORLD", "World RMS position error along minor axis",
428 22 bertin
        &outobj2.poserr_bw, H_FLOAT, T_FLOAT, "%12.7g", "deg",
429 11 bertin
        "stat.stdev;stat.min;pos.errorEllipse;meta.main", "deg"},
430 2 bertin
  {"ERRTHETA_WORLD", "Error ellipse pos. angle (CCW/world-x)",
431 191 bertin
        &outobj2.poserr_thetaw, H_FLOAT, T_FLOAT, "%6.2f", "deg",
432 11 bertin
        "pos.posAng;pos.errorEllipse", "deg"},
433 2 bertin
  {"ERRTHETA_SKY", "Native error ellipse pos. angle (east of north)",
434 191 bertin
        &outobj2.poserr_thetas, H_FLOAT, T_FLOAT, "%6.2f", "deg",
435 11 bertin
        "pos.posAng;pos.errorEllipse", "deg"},
436 2 bertin
  {"ERRTHETA_J2000", "J2000 error ellipse pos. angle (east of north)",
437 191 bertin
        &outobj2.poserr_theta2000, H_FLOAT, T_FLOAT, "%6.2f", "deg",
438 11 bertin
        "pos.posAng;pos.errorEllipse;meta.main", "deg"},
439 2 bertin
  {"ERRTHETA_B1950", "B1950 error ellipse pos. angle (east of north)",
440 191 bertin
        &outobj2.poserr_theta1950, H_FLOAT, T_FLOAT, "%6.2f", "deg",
441 11 bertin
        "pos.posAng;pos.errorEllipse", "deg"},
442 2 bertin
 
443
  {"XWIN_IMAGE", "Windowed position estimate along x",
444 11 bertin
        &outobj2.winpos_x, H_FLOAT, T_DOUBLE, "%10.3f", "pixel",
445
        "pos.cartesian.x;instr.det", "pix"},
446 2 bertin
  {"YWIN_IMAGE", "Windowed position estimate along y",
447 11 bertin
        &outobj2.winpos_y, H_FLOAT, T_DOUBLE, "%10.3f", "pixel",
448
        "pos.cartesian.y;instr.det", "pix"},
449 2 bertin
 
450 199 bertin
  {"XWIN_FOCAL", "Windowed position along focal-plane x axis",
451
        &outobj2.winpos_xf, H_FLOAT, T_DOUBLE, "%18.10e", "",
452
        "pos.cartesian.x", ""},
453
  {"YWIN_FOCAL", "Windowed position along focal-plane y axis",
454
        &outobj2.winpos_yf, H_FLOAT, T_DOUBLE, "%18.10e", "",
455
        "pos.cartesian.y", ""},
456
 
457 2 bertin
  {"XWIN_WORLD", "Windowed position along world x axis",
458 191 bertin
        &outobj2.winpos_xw, H_FLOAT, T_DOUBLE, "%18.10e", "deg",
459 11 bertin
        "pos.eq.ra", "deg"},
460 2 bertin
  {"YWIN_WORLD", "Windowed position along world y axis",
461 191 bertin
        &outobj2.winpos_yw, H_FLOAT, T_DOUBLE, "%18.10e", "deg",
462 11 bertin
        "pos.eq.dec", "deg"},
463 2 bertin
 
464
  {"ALPHAWIN_SKY", "Windowed right ascension  (native)",
465 11 bertin
        &outobj2.winpos_alphas, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
466
        "pos.eq.ra", "deg"},
467 2 bertin
  {"DELTAWIN_SKY", "Windowed declination (native)",
468 11 bertin
        &outobj2.winpos_deltas, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
469
        "pos.eq.dec", "deg"},
470 2 bertin
 
471
  {"ALPHAWIN_J2000", "Windowed right ascension (J2000)",
472 11 bertin
        &outobj2.winpos_alpha2000, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
473
        "pos.eq.ra", "deg"},
474 2 bertin
  {"DELTAWIN_J2000", "windowed declination (J2000)",
475 11 bertin
        &outobj2.winpos_delta2000, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
476
        "pos.eq.dec", "deg"},
477 2 bertin
 
478
  {"ALPHAWIN_B1950", "Windowed right ascension (B1950)",
479 11 bertin
        &outobj2.winpos_alpha1950, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
480
        "pos.eq.ra", "deg"},
481 2 bertin
  {"DELTAWIN_B1950", "Windowed declination (B1950)",
482 11 bertin
        &outobj2.winpos_delta1950, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
483 173 bertin
        "pos.eq.dec", "deg"},
484
 
485 2 bertin
  {"X2WIN_IMAGE", "Windowed variance along x",
486 191 bertin
        &outobj2.win_mx2, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
487 11 bertin
        "src.impactParam;instr.det", "pix2"},
488 2 bertin
  {"Y2WIN_IMAGE", "Windowed variance along y",
489 191 bertin
        &outobj2.win_my2, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
490 11 bertin
        "src.impactParam;instr.det", "pix2"},
491 2 bertin
  {"XYWIN_IMAGE", "Windowed covariance between x and y",
492 191 bertin
        &outobj2.win_mxy, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
493 11 bertin
        "src.impactParam;instr.det", "pix2"},
494 2 bertin
  {"X2WIN_WORLD", "Windowed variance along X-WORLD (alpha)",
495 191 bertin
        &outobj2.win_mx2w, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
496 11 bertin
        "src.impactParam", "deg2"},
497 2 bertin
  {"Y2WIN_WORLD", "Windowed variance along Y-WORLD (delta)",
498 191 bertin
        &outobj2.win_my2w, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
499 11 bertin
        "src.impactParam", "deg2"},
500 2 bertin
  {"XYWIN_WORLD", "Windowed covariance between X-WORLD and Y-WORLD",
501 191 bertin
        &outobj2.win_mxyw, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
502 11 bertin
        "src.impactParam", "deg2"},
503 2 bertin
 
504
  {"CXXWIN_IMAGE", "Windowed Cxx object ellipse parameter",
505 191 bertin
        &outobj2.win_cxx, H_EXPO, T_FLOAT, "%15.7e", "pixel**(-2)",
506 11 bertin
        "src.impactParam;instr.det", "pix-2"},
507 2 bertin
  {"CYYWIN_IMAGE", "Windowed Cyy object ellipse parameter",
508 191 bertin
        &outobj2.win_cyy, H_EXPO, T_FLOAT, "%15.7e", "pixel**(-2)",
509 11 bertin
        "src.impactParam;instr.det", "pix-2"},
510 2 bertin
  {"CXYWIN_IMAGE", "Windowed Cxy object ellipse parameter",
511 191 bertin
        &outobj2.win_cxy, H_EXPO, T_FLOAT, "%15.7e", "pixel**(-2)",
512 11 bertin
        "src.impactParam;instr.det", "pix-2"},
513 2 bertin
  {"CXXWIN_WORLD", "Windowed Cxx object ellipse parameter (WORLD units)",
514 191 bertin
        &outobj2.win_cxxw, H_EXPO, T_FLOAT, "%15.7e", "deg**(-2)",
515 11 bertin
        "src.impactParam", "deg-2"},
516 2 bertin
  {"CYYWIN_WORLD", "Windowed Cyy object ellipse parameter (WORLD units)",
517 191 bertin
        &outobj2.win_cyyw, H_EXPO, T_FLOAT, "%15.7e", "deg**(-2)",
518 11 bertin
        "src.impactParam", "deg-2"},
519 2 bertin
  {"CXYWIN_WORLD", "Windowed Cxy object ellipse parameter (WORLD units)",
520 191 bertin
        &outobj2.win_cxyw, H_EXPO, T_FLOAT, "%15.7e", "deg**(-2)",
521 11 bertin
        "src.impactParam", "deg-2"},
522 2 bertin
 
523
  {"AWIN_IMAGE", "Windowed profile RMS along major axis",
524 11 bertin
        &outobj2.win_a, H_FLOAT, T_FLOAT, "%9.3f", "pixel",
525
        "phys.size.smajAxis;instr.det", "pix"},
526 2 bertin
  {"BWIN_IMAGE", "Windowed profile RMS along minor axis",
527 11 bertin
        &outobj2.win_b, H_FLOAT, T_FLOAT, "%9.3f", "pixel",
528
        "phys.size.sminAxis;instr.det", "pix"},
529 2 bertin
  {"THETAWIN_IMAGE", "Windowed position angle (CCW/x)",
530 191 bertin
        &outobj2.win_theta, H_FLOAT, T_FLOAT, "%6.2f", "deg",
531 11 bertin
        "pos.posAng;instr.det", "deg"},
532 2 bertin
  {"AWIN_WORLD", "Windowed profile RMS along major axis (world units)",
533 11 bertin
        &outobj2.win_aw, H_FLOAT, T_FLOAT, "%12.7g", "deg",
534
        "phys.size.smajAxis", "deg"},
535 2 bertin
  {"BWIN_WORLD", "Windowed profile RMS along minor axis (world units)",
536 11 bertin
        &outobj2.win_bw, H_FLOAT, T_FLOAT, "%12.7g", "deg",
537
        "phys.size.sminAxis", "deg"},
538 2 bertin
  {"THETAWIN_WORLD", "Windowed position angle (CCW/world-x)",
539 191 bertin
        &outobj2.win_thetaw, H_FLOAT, T_FLOAT, "%6.2f", "deg",
540 11 bertin
        "pos.posAng", "deg"},
541 2 bertin
  {"THETAWIN_SKY", "Windowed position angle (east of north) (native)",
542 11 bertin
        &outobj2.win_thetas, H_FLOAT, T_FLOAT, "%+6.2f", "deg",
543
        "pos.posAng", "deg"},
544 2 bertin
  {"THETAWIN_J2000", "Windowed position angle (east of north) (J2000)",
545 11 bertin
        &outobj2.win_theta2000, H_FLOAT, T_FLOAT, "%+6.2f", "deg",
546
        "pos.posAng", "deg"},
547 2 bertin
  {"THETAWIN_B1950", "Windowed position angle (east of north) (B1950)",
548 11 bertin
        &outobj2.win_theta1950, H_FLOAT, T_FLOAT, "%+6.2f", "deg",
549
        "pos.posAng", "deg"},
550 2 bertin
 
551
  {"ERRX2WIN_IMAGE", "Variance of windowed pos along x",
552 191 bertin
        &outobj2.winposerr_mx2, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
553 11 bertin
        "stat.variance;pos.errorEllipse;instr.det", "pix2"},
554 2 bertin
  {"ERRY2WIN_IMAGE", "Variance of windowed pos along y",
555 191 bertin
        &outobj2.winposerr_my2, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
556 11 bertin
        "stat.variance;pos.errorEllipse;instr.det", "pix2"},
557 2 bertin
  {"ERRXYWIN_IMAGE", "Covariance of windowed pos between x and y",
558 191 bertin
        &outobj2.winposerr_mxy, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
559 11 bertin
        "stat.covariance;pos.errorEllipse;instr.det", "pix2"},
560 2 bertin
  {"ERRX2WIN_WORLD", "Variance of windowed pos along X-WORLD (alpha)",
561 191 bertin
        &outobj2.winposerr_mx2w, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
562 11 bertin
        "stat.variance;pos.errorEllipse", "deg2"},
563 2 bertin
  {"ERRY2WIN_WORLD", "Variance of windowed pos along Y-WORLD (delta)",
564 191 bertin
        &outobj2.winposerr_my2w, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
565 11 bertin
        "stat.variance;pos.errorEllipse", "deg2"},
566 2 bertin
  {"ERRXYWIN_WORLD", "Covariance of windowed pos X-WORLD/Y-WORLD",
567 191 bertin
        &outobj2.winposerr_mxyw, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
568 11 bertin
        "stat.covariance;pos.errorEllipse", "deg2"},
569 2 bertin
 
570
  {"ERRCXXWIN_IMAGE", "Cxx windowed error ellipse parameter",
571 11 bertin
        &outobj2.winposerr_cxx, H_EXPO, T_FLOAT, "%12.7g", "pixel**(-2)",
572
        "src.impactParam;pos.errorEllipse;instr.det", "pix-2"},
573 2 bertin
  {"ERRCYYWIN_IMAGE", "Cyy windowed error ellipse parameter",
574 11 bertin
        &outobj2.winposerr_cyy, H_EXPO, T_FLOAT, "%12.7g", "pixel**(-2)",
575
        "src.impactParam;pos.errorEllipse;instr.det", "pix-2"},
576 2 bertin
  {"ERRCXYWIN_IMAGE", "Cxy windowed error ellipse parameter",
577 11 bertin
        &outobj2.winposerr_cxy, H_EXPO, T_FLOAT, "%12.7g", "pixel**(-2)",
578
        "src.impactParam;pos.errorEllipse;instr.det", "pix-2"},
579 2 bertin
  {"ERRCXXWIN_WORLD", "Cxx windowed error ellipse parameter (WORLD units)",
580 11 bertin
        &outobj2.winposerr_cxxw, H_EXPO, T_FLOAT, "%12.7g", "deg**(-2)",
581
        "src.impactParam;pos.errorEllipse", "deg-2"},
582 2 bertin
  {"ERRCYYWIN_WORLD", "Cyy windowed error ellipse parameter (WORLD units)",
583 11 bertin
        &outobj2.winposerr_cyyw, H_EXPO, T_FLOAT, "%12.7g", "deg**(-2)",
584
        "src.impactParam;pos.errorEllipse", "deg-2"},
585 2 bertin
  {"ERRCXYWIN_WORLD", "Cxy windowed error ellipse parameter (WORLD units)",
586 11 bertin
        &outobj2.winposerr_cxyw, H_EXPO, T_FLOAT, "%12.7g", "deg**(-2)",
587
        "src.impactParam;pos.errorEllipse", "deg-2"},
588 2 bertin
 
589
  {"ERRAWIN_IMAGE", "RMS windowed pos error along major axis",
590 11 bertin
        &outobj2.winposerr_a, H_FLOAT, T_FLOAT, "%8.4f", "pixel",
591
        "stat.stdev;stat.max;pos.errorEllipse;instr.det", "pix"},
592 2 bertin
  {"ERRBWIN_IMAGE", "RMS windowed pos error along minor axis",
593 11 bertin
        &outobj2.winposerr_b, H_FLOAT, T_FLOAT, "%8.4f", "pixel",
594
        "stat.stdev;stat.min;pos.errorEllipse;instr.det", "pix"},
595 2 bertin
  {"ERRTHETAWIN_IMAGE", "Windowed error ellipse pos angle (CCW/x)",
596 191 bertin
        &outobj2.winposerr_theta, H_FLOAT, T_FLOAT, "%6.2f", "deg",
597 11 bertin
        "pos.posAng;pos.errorEllipse;instr.det", "deg"},
598 2 bertin
  {"ERRAWIN_WORLD", "World RMS windowed pos error along major axis",
599 22 bertin
        &outobj2.winposerr_aw, H_FLOAT, T_FLOAT, "%12.7g", "deg",
600 11 bertin
        "stat.stdev;stat.max;pos.errorEllipse", "deg"},
601 2 bertin
  {"ERRBWIN_WORLD", "World RMS windowed pos error along minor axis",
602 22 bertin
        &outobj2.winposerr_bw, H_FLOAT, T_FLOAT, "%12.7g", "deg",
603 11 bertin
        "stat.stdev;stat.min;pos.errorEllipse", "deg"},
604 2 bertin
  {"ERRTHETAWIN_WORLD", "Windowed error ellipse pos. angle (CCW/world-x)",
605 191 bertin
        &outobj2.winposerr_thetaw, H_FLOAT, T_FLOAT, "%6.2f", "deg",
606 11 bertin
        "pos.posAng;pos.errorEllipse", "deg"},
607 2 bertin
  {"ERRTHETAWIN_SKY", "Native windowed error ellipse pos. angle (east of north)",
608 191 bertin
        &outobj2.winposerr_thetas, H_FLOAT, T_FLOAT, "%6.2f", "deg",
609 11 bertin
        "pos.posAng;pos.errorEllipse", "deg"},
610 2 bertin
  {"ERRTHETAWIN_J2000", "J2000 windowed error ellipse pos. angle (east of north)",
611 191 bertin
        &outobj2.winposerr_theta2000, H_FLOAT, T_FLOAT, "%6.2f", "deg",
612 11 bertin
        "pos.posAng;pos.errorEllipse", "deg"},
613 2 bertin
  {"ERRTHETAWIN_B1950", "B1950 windowed error ellipse pos. angle (east of north)",
614 191 bertin
        &outobj2.winposerr_theta1950, H_FLOAT, T_FLOAT, "%6.2f", "deg",
615 11 bertin
        "pos.posAng;pos.errorEllipse", "deg"},
616 2 bertin
 
617
  {"NITER_WIN", "Number of iterations for WIN centering",
618 11 bertin
        &outobj2.winpos_niter, H_INT, T_SHORT, "%3d", "",
619
        "meta.number", ""},
620 2 bertin
 
621
  {"MU_THRESHOLD", "Detection threshold above background",
622 11 bertin
        &outobj2.threshmu, H_FLOAT, T_FLOAT, "%8.4f", "mag * arcsec**(-2)",
623
        "instr.sensitivity;phot.mag.sb", "mag.arcsec-2"},
624 2 bertin
  {"MU_MAX", "Peak surface brightness above background",
625 11 bertin
        &outobj2.maxmu, H_FLOAT, T_FLOAT, "%8.4f", "mag * arcsec**(-2)",
626
        "phot.mag.sb;stat.max", "mag.arcsec-2"},
627 2 bertin
  {"ISOAREA_WORLD", "Isophotal area above Analysis threshold",
628 11 bertin
        &outobj2.npixw, H_FLOAT, T_FLOAT, "%12.7g", "deg**2",
629
        "phys.angArea", "deg2"},
630 2 bertin
  {"ISOAREAF_WORLD", "Isophotal area (filtered) above Detection threshold",
631 11 bertin
        &outobj2.fdnpixw, H_FLOAT, T_FLOAT, "%12.7g", "deg**2",
632
        "phys.angArea", "deg2"},
633 2 bertin
  {"ISO0", "Isophotal area at level 0",
634 11 bertin
        &outobj.iso[0], H_INT, T_LONG, "%8d", "pixel**2",
635
        "phys.area;instr.det", "pix2"},
636 2 bertin
  {"ISO1", "Isophotal area at level 1",
637 11 bertin
        &outobj.iso[1], H_INT, T_LONG, "%8d", "pixel**2",
638
        "phys.area;instr.det", "pix2"},
639 2 bertin
  {"ISO2", "Isophotal area at level 2",
640 11 bertin
        &outobj.iso[2], H_INT, T_LONG, "%8d", "pixel**2",
641
        "phys.area;instr.det", "pix2"},
642 2 bertin
  {"ISO3", "Isophotal area at level 3",
643 11 bertin
        &outobj.iso[3], H_INT, T_LONG, "%8d", "pixel**2",
644
        "phys.area;instr.det", "pix2"},
645 2 bertin
  {"ISO4", "Isophotal area at level 4",
646 11 bertin
        &outobj.iso[4], H_INT, T_LONG, "%8d", "pixel**2",
647
        "phys.area;instr.det", "pix2"},
648 2 bertin
  {"ISO5", "Isophotal area at level 5",
649 11 bertin
        &outobj.iso[5], H_INT, T_LONG, "%8d", "pixel**2",
650
        "phys.area;instr.det", "pix2"},
651 2 bertin
  {"ISO6", "Isophotal area at level 6",
652 11 bertin
        &outobj.iso[6], H_INT, T_LONG, "%8d", "pixel**2",
653
        "phys.area;instr.det", "pix2"},
654 2 bertin
  {"ISO7", "Isophotal area at level 7",
655 11 bertin
        &outobj.iso[7], H_INT, T_LONG, "%8d", "pixel**2",
656
        "phys.area;instr.det", "pix2"},
657 2 bertin
 
658
  {"FLAGS", "Extraction flags",
659 11 bertin
        &outobj.flag, H_INT, T_SHORT, "%3d", "",
660
        "meta.code.qual", ""},
661 4 bertin
  {"FLAGS_WEIGHT", "Weighted extraction flags",
662 11 bertin
        &outobj.wflag, H_INT, T_SHORT, "%1d", "",
663
        "meta.code.qual", ""},
664
   {"FLAGS_WIN", "Flags for WINdowed parameters",
665
        &outobj2.win_flag, H_INT, T_SHORT, "%3d", "",
666
        "meta.code.qual", ""},
667
   {"IMAFLAGS_ISO", "FLAG-image flags OR'ed over the iso. profile",
668 2 bertin
        outobj.imaflag, H_INT, T_LONG, "%9u", "",
669 11 bertin
        "meta.code.qual", "", 1, &prefs.imaflag_size},
670 2 bertin
  {"NIMAFLAGS_ISO", "Number of flagged pixels entering IMAFLAGS_ISO",
671
        outobj.imanflag, H_INT, T_LONG, "%9d", "",
672 11 bertin
        "meta.number", "", 1, &prefs.imanflag_size},
673 2 bertin
 
674
  {"FWHM_IMAGE", "FWHM assuming a gaussian core",
675 11 bertin
        &outobj.fwhm, H_FLOAT, T_FLOAT, "%8.2f", "pixel",
676
        "phys.size.diameter;instr.det.psf", "pix"},
677 2 bertin
  {"FWHM_WORLD", "FWHM assuming a gaussian core",
678 11 bertin
        &outobj2.fwhmw, H_FLOAT, T_FLOAT, "%12.7g", "deg",
679
        "phys.angSize;instr.det.psf", "deg"},
680 2 bertin
  {"ELONGATION", "A_IMAGE/B_IMAGE",
681 11 bertin
        &outobj2.elong, H_FLOAT, T_FLOAT, "%8.3f", "",
682
        "src.ellipticity;arith.ratio;instr.det", ""},
683 2 bertin
  {"ELLIPTICITY", "1 - B_IMAGE/A_IMAGE",
684 11 bertin
        &outobj2.ellip, H_FLOAT, T_FLOAT, "%8.3f", "",
685
        "src.ellipticity;instr.det      ", ""},
686 2 bertin
  {"POLAR_IMAGE", "(A_IMAGE^2 - B_IMAGE^2)/(A_IMAGE^2 + B_IMAGE^2)",
687 11 bertin
        &outobj2.polar, H_FLOAT, T_FLOAT, "%7.5f", "",
688
        "src.ellipticity;instr.det", ""},
689 2 bertin
  {"POLAR_WORLD", "(A_WORLD^2 - B_WORLD^2)/(A_WORLD^2 + B_WORLD^2)",
690 11 bertin
        &outobj2.polarw, H_FLOAT, T_FLOAT, "%7.5f", "",
691
        "src.ellipticity", ""},
692 2 bertin
  {"POLARWIN_IMAGE", "(AWIN^2 - BWIN^2)/(AWIN^2 + BWIN^2)",
693 11 bertin
        &outobj2.win_polar, H_FLOAT, T_FLOAT, "%7.5f", "",
694
        "src.ellipticity;instr.det", ""},
695 2 bertin
  {"POLARWIN_WORLD", "(AWIN^2 - BWIN^2)/(AWIN^2 + BWIN^2)",
696 11 bertin
        &outobj2.win_polarw, H_FLOAT, T_FLOAT, "%7.5f", "",
697
        "src.ellipticity", ""},
698 2 bertin
  {"CLASS_STAR", "S/G classifier output",
699 11 bertin
        &outobj2.sprob, H_FLOAT, T_FLOAT, "%5.2f", "",
700
        "src.class.starGalaxy", ""},
701 2 bertin
  {"VIGNET", "Pixel data around detection",
702 11 bertin
        &outobj2.vignet, H_FLOAT, T_FLOAT, "%12.7g", "count",
703
        "obs.image", "ct", 2, prefs.vignetsize},
704 2 bertin
  {"VIGNET_SHIFT", "Pixel data around detection, corrected for shift",
705 11 bertin
        &outobj2.vigshift, H_FLOAT, T_FLOAT, "%12.7g", "count",
706
        "obs.image", "ct", 2, prefs.vigshiftsize},
707 2 bertin
  {"VECTOR_ASSOC", "ASSOCiated parameter vector",
708 11 bertin
        &outobj2.assoc, H_FLOAT, T_FLOAT, "%12.7g", "",
709
        "src", "", 1, &prefs.assoc_size},
710 2 bertin
  {"NUMBER_ASSOC", "Number of ASSOCiated IDs",
711 11 bertin
        &outobj2.assoc_number, H_INT, T_LONG, "%10d", "",
712
        "meta.number;src", ""},
713 2 bertin
 
714
  {"THRESHOLDMAX", "Maximum threshold possible for detection",
715 11 bertin
        &outobj.dthresh, H_FLOAT, T_FLOAT, "%12.7g", "count",
716
        "phot.flux.sb;stat.max", "ct"},
717 2 bertin
 
718
  {"FLUX_GROWTH", "Cumulated growth-curve",
719 11 bertin
        &outobj2.flux_growth, H_FLOAT, T_FLOAT, "%12.7g", "count",
720
        "phot.count", "ct", 1, &prefs.flux_growthsize},
721 2 bertin
  {"FLUX_GROWTHSTEP", "Step for growth-curves",
722 11 bertin
        &outobj2.flux_growthstep, H_FLOAT, T_FLOAT, "%10.3f", "pixel",
723
        "pos.distance", "pix"},
724 2 bertin
  {"MAG_GROWTH", "Cumulated magnitude growth-curve",
725
        &outobj2.mag_growth, H_FLOAT, T_FLOAT, "%8.4f", "mag",
726 11 bertin
        "phot.mag", "mag", 1, &prefs.mag_growthsize},
727 2 bertin
  {"MAG_GROWTHSTEP", "Step for growth-curves",
728 11 bertin
        &outobj2.mag_growthstep, H_FLOAT, T_FLOAT, "%10.3f", "pixel",
729
        "pos.distance", "pix"},
730 2 bertin
  {"FLUX_RADIUS", "Fraction-of-light radii",
731
        &outobj2.flux_radius, H_FLOAT, T_FLOAT, "%10.3f", "pixel",
732 11 bertin
        "phys.size.radius;instr.det", "pix",  1, &prefs.flux_radiussize},
733 2 bertin
 
734
  {"XPSF_IMAGE", "X coordinate from PSF-fitting",
735
        &outobj2.x_psf, H_FLOAT, T_FLOAT, "%10.3f", "pixel",
736 11 bertin
        "pos.cartesian.x;stat.fit.param;instr.det", "pix", 1, &prefs.psf_xsize},
737 2 bertin
  {"YPSF_IMAGE", "Y coordinate from PSF-fitting",
738
        &outobj2.y_psf, H_FLOAT, T_FLOAT, "%10.3f", "pixel",
739 11 bertin
        "pos.cartesian.y;stat.fit.param;instr.det", "pix", 1, &prefs.psf_ysize},
740 2 bertin
  {"XPSF_WORLD", "PSF position along world x axis",
741 191 bertin
        &outobj2.xw_psf, H_FLOAT, T_DOUBLE, "%18.10e", "deg",
742 11 bertin
        "pos.eq.ra;stat.fit.param", "deg", 1, &prefs.psf_xwsize},
743 2 bertin
  {"YPSF_WORLD", "PSF position along world y axis",
744 191 bertin
        &outobj2.yw_psf, H_FLOAT, T_DOUBLE, "%18.10e", "deg",
745 11 bertin
        "pos.eq.dec;stat.fit.param", "deg", 1, &prefs.psf_ywsize},
746 2 bertin
 
747
  {"ALPHAPSF_SKY", "Right ascension of the fitted PSF (native)",
748
        &outobj2.alphas_psf, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
749 11 bertin
        "pos.eq.ra;stat.fit.param", "deg", 1, &prefs.psf_alphassize},
750 2 bertin
  {"DELTAPSF_SKY", "Declination of the fitted PSF (native)",
751
        &outobj2.deltas_psf, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
752 11 bertin
        "pos.eq.dec;stat.fit.param", "deg", 1, &prefs.psf_deltassize},
753 2 bertin
 
754
  {"ALPHAPSF_J2000", "Right ascension of the fitted PSF (J2000)",
755
        &outobj2.alpha2000_psf, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
756 11 bertin
        "pos.eq.ra;stat.fit.param", "deg", 1, &prefs.psf_alpha2000size},
757 2 bertin
  {"DELTAPSF_J2000", "Declination of the fitted PSF (J2000)",
758
        &outobj2.delta2000_psf, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
759 11 bertin
        "pos.eq.dec;stat.fit.param", "deg", 1, &prefs.psf_delta2000size},
760 2 bertin
 
761
  {"ALPHAPSF_B1950", "Right ascension of the fitted PSF (B1950)",
762
        &outobj2.alpha1950_psf, H_FLOAT, T_DOUBLE, "%11.7f", "deg",
763 11 bertin
        "pos.eq.ra;stat.fit.param", "deg", 1, &prefs.psf_alpha1950size},
764 2 bertin
  {"DELTAPSF_B1950", "Declination of the fitted PSF (B1950)",
765
        &outobj2.delta1950_psf, H_FLOAT, T_DOUBLE, "%+11.7f", "deg",
766 11 bertin
        "pos.eq.dec;stat.fit.param", "deg", 1, &prefs.psf_delta1950size},
767 2 bertin
 
768
  {"FLUX_PSF", "Flux from PSF-fitting",
769
        &outobj2.flux_psf, H_FLOAT, T_FLOAT, "%12.7g", "count",
770 11 bertin
        "phot.count;stat.fit.param", "ct", 1, &prefs.psf_fluxsize},
771 2 bertin
  {"FLUXERR_PSF", "RMS flux error for PSF-fitting",
772
        &outobj2.fluxerr_psf, H_FLOAT, T_FLOAT, "%12.7g", "count",
773 11 bertin
        "stat.stdev;phot.count", "ct", 1, &prefs.psf_fluxerrsize},
774 2 bertin
  {"MAG_PSF", "Magnitude from PSF-fitting",
775
        &outobj2.mag_psf, H_FLOAT, T_FLOAT, "%8.4f", "mag",
776 11 bertin
        "phot.mag", "mag", 1, &prefs.psf_magsize},
777 2 bertin
  {"MAGERR_PSF", "RMS magnitude error from PSF-fitting",
778
        &outobj2.magerr_psf, H_FLOAT, T_FLOAT, "%8.4f", "mag",
779 11 bertin
        "stat.stdev;phot.mag", "mag", 1, &prefs.psf_magsize},
780 2 bertin
 
781
  {"NITER_PSF", "Number of iterations for PSF-fitting",
782 11 bertin
        &outobj2.niter_psf, H_INT, T_SHORT, "%3d", "",
783
        "meta.number", ""},
784 2 bertin
  {"CHI2_PSF", "Reduced chi2 from PSF-fitting",
785 11 bertin
        &outobj2.chi2_psf, H_FLOAT, T_FLOAT, "%9.4g", "",
786
        "stat.fit.chi2", ""},
787 2 bertin
 
788
  {"ERRX2PSF_IMAGE", "Variance of PSF position along x",
789 191 bertin
        &outobj2.poserrmx2_psf, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
790 11 bertin
        "stat.variance;pos.errorEllipse;instr.det", "pix2"},
791 2 bertin
  {"ERRY2PSF_IMAGE", "Variance of PSF position along y",
792 191 bertin
        &outobj2.poserrmy2_psf, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
793 11 bertin
        "stat.variance;pos.errorEllipse;instr.det", "pix2"},
794 2 bertin
  {"ERRXYPSF_IMAGE", "Covariance of PSF position between x and y",
795 191 bertin
        &outobj2.poserrmxy_psf, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
796 11 bertin
        "stat.covariance;pos.errorEllipse;instr.det", "pix2"},
797 2 bertin
  {"ERRX2PSF_WORLD", "Variance of PSF position along X-WORLD (alpha)",
798 191 bertin
        &outobj2.poserrmx2w_psf, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
799 11 bertin
        "stat.variance;pos.errorEllipse", "deg2"},
800 2 bertin
  {"ERRY2PSF_WORLD", "Variance of PSF position along Y-WORLD (delta)",
801 191 bertin
        &outobj2.poserrmy2w_psf, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
802 11 bertin
        "stat.variance;pos.errorEllipse", "deg2"},
803 2 bertin
  {"ERRXYPSF_WORLD", "Covariance of PSF position X-WORLD/Y-WORLD",
804 191 bertin
        &outobj2.poserrmxyw_psf, H_EXPO, T_DOUBLE, "%18.10e", "deg**2",
805 11 bertin
        "stat.covariance;pos.errorEllipse", "deg2"},
806 2 bertin
 
807
  {"ERRCXXPSF_IMAGE", "Cxx PSF error ellipse parameter",
808 11 bertin
        &outobj2.poserrcxx_psf, H_EXPO, T_FLOAT, "%12.7g", "pixel**(-2)",
809
        "src.impactParam;pos.errorEllipse;instr.det", "pix-2"},
810 2 bertin
  {"ERRCYYPSF_IMAGE", "Cyy PSF error ellipse parameter",
811 11 bertin
        &outobj2.poserrcyy_psf, H_EXPO, T_FLOAT, "%12.7g", "pixel**(-2)",
812
        "src.impactParam;pos.errorEllipse;instr.det", "pix-2"},
813 2 bertin
  {"ERRCXYPSF_IMAGE", "Cxy PSF error ellipse parameter",
814 11 bertin
        &outobj2.poserrcxy_psf, H_EXPO, T_FLOAT, "%12.7g", "pixel**(-2)",
815
        "src.impactParam;pos.errorEllipse;instr.det", "pix-2"},
816 2 bertin
  {"ERRCXXPSF_WORLD", "Cxx PSF error ellipse parameter (WORLD units)",
817 11 bertin
        &outobj2.poserrcxxw_psf, H_EXPO, T_FLOAT, "%12.7g", "deg**(-2)",
818
        "src.impactParam;pos.errorEllipse", "deg-2"},
819 2 bertin
  {"ERRCYYPSF_WORLD", "Cyy PSF error ellipse parameter (WORLD units)",
820 11 bertin
        &outobj2.poserrcyyw_psf, H_EXPO, T_FLOAT, "%12.7g", "deg**(-2)",
821
        "src.impactParam;pos.errorEllipse", "deg-2"},
822 2 bertin
  {"ERRCXYPSF_WORLD", "Cxy PSF error ellipse parameter (WORLD units)",
823 11 bertin
        &outobj2.poserrcxyw_psf, H_EXPO, T_FLOAT, "%12.7g", "deg**(-2)",
824
        "src.impactParam;pos.errorEllipse", "deg-2"},
825 2 bertin
 
826
  {"ERRAPSF_IMAGE", "PSF RMS position error along major axis",
827 11 bertin
        &outobj2.poserra_psf, H_FLOAT, T_FLOAT, "%8.4f", "pixel",
828
        "stat.stdev;stat.max;pos.errorEllipse;instr.det", "pix"},
829 2 bertin
  {"ERRBPSF_IMAGE", "PSF RMS position error along minor axis",
830 11 bertin
        &outobj2.poserrb_psf, H_FLOAT, T_FLOAT, "%8.4f", "pixel",
831
        "stat.stdev;stat.min;pos.errorEllipse;instr.det", "pix"},
832 209 bertin
  {"ERRTHETAPSF_IMAGE", "PSF error ellipse position angle (CCW/x)",
833 191 bertin
        &outobj2.poserrtheta_psf, H_FLOAT, T_FLOAT, "%6.2f", "deg",
834 11 bertin
        "pos.posAng;pos.errorEllipse;instr.det", "deg"},
835 2 bertin
  {"ERRAPSF_WORLD", "World PSF RMS position error along major axis",
836 11 bertin
        &outobj2.poserraw_psf, H_FLOAT, T_FLOAT, "%12.7g", "pixel",
837
        "stat.stdev;stat.max;pos.errorEllipse", "deg"},
838 2 bertin
  {"ERRBPSF_WORLD", "World PSF RMS position error along minor axis",
839 11 bertin
        &outobj2.poserrbw_psf, H_FLOAT, T_FLOAT, "%12.7g", "pixel",
840
        "stat.stdev;stat.min;pos.errorEllipse", "deg"},
841 209 bertin
  {"ERRTHETAPSF_WORLD", "PSF error ellipse pos. angle (CCW/world-x)",
842 191 bertin
        &outobj2.poserrthetaw_psf, H_FLOAT, T_FLOAT, "%6.2f", "deg",
843 11 bertin
        "pos.posAng;pos.errorEllipse", "deg"},
844 209 bertin
  {"ERRTHETAPSF_SKY", "Native PSF error ellipse pos. angle (east of north)",
845 191 bertin
        &outobj2.poserrthetas_psf, H_FLOAT, T_FLOAT, "%6.2f", "deg",
846 11 bertin
        "pos.posAng;pos.errorEllipse", "deg"},
847 209 bertin
  {"ERRTHETAPSF_J2000", "J2000 PSF error ellipse pos. angle (east of north)",
848 191 bertin
        &outobj2.poserrtheta2000_psf, H_FLOAT, T_FLOAT, "%6.2f", "deg",
849 11 bertin
        "pos.posAng;pos.errorEllipse", "deg"},
850 209 bertin
  {"ERRTHETAPSF_B1950", "B1950 PSF error ellipse pos. angle (east of north)",
851 191 bertin
        &outobj2.poserrtheta1950_psf, H_FLOAT, T_FLOAT, "%6.2f", "deg",
852 11 bertin
        "pos.posAng;pos.errorEllipse", "deg"},
853 2 bertin
 
854 208 bertin
  {"DURATION_ANALYSIS", "Duration of analysis for this source",
855
        &outobj2.analtime, H_FLOAT, T_FLOAT, "%9.4g", "s",
856
        "time.duration;time.processing", "s"},
857
 
858 186 bertin
/* Temporarily (at least) deactivated not to confuse users with model-fitting
859 2 bertin
  {"X2PC_IMAGE", "PC variance along x",
860 191 bertin
        &outobj2.mx2_pc, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
861 11 bertin
        "src.impactParam;instr.det", "pix2"},
862 2 bertin
  {"Y2PC_IMAGE", "PC variance along y",
863 191 bertin
        &outobj2.my2_pc, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
864 11 bertin
        "src.impactParam;instr.det", "pix2"},
865 2 bertin
  {"XYPC_IMAGE", "PC covariance between x and y",
866 191 bertin
        &outobj2.mxy_pc, H_EXPO, T_DOUBLE, "%18.10e", "pixel**2",
867 11 bertin
        "src.impactParam;instr.det", "pix2"},
868 2 bertin
 
869
  {"APC_IMAGE", "PC profile RMS along major axis",
870 11 bertin
        &outobj2.a_pc, H_FLOAT, T_FLOAT, "%8.2f", "pixel",
871
        "phys.size.smajAxis;instr.det", "pix"},
872 2 bertin
  {"BPC_IMAGE", "PC profile RMS along minor axis",
873 11 bertin
        &outobj2.b_pc, H_FLOAT, T_FLOAT, "%8.2f", "pixel",
874
        "phys.size.sminAxis;instr.det", "pix"},
875 2 bertin
  {"THETAPC_IMAGE", "PC position angle (CCW/x)",
876 191 bertin
        &outobj2.theta_pc, H_FLOAT, T_FLOAT, "%6.2f", "deg",
877 11 bertin
        "pos.posAng;instr.det", "deg"},
878 2 bertin
  {"PC", "Principal components",
879 191 bertin
        &outobj2.vector_pc, H_FLOAT, T_FLOAT, "%18.10e", "",
880 11 bertin
        "src.morph.param", "", 1, &prefs.pc_vectorsize},
881 186 bertin
*/
882 173 bertin
 
883
#include "paramprofit.h"
884
 
885 2 bertin
  {""}
886
  };
887