Changeset 28027 for trunk/ppTranslate/src/ppMops.h
- Timestamp:
- May 19, 2010, 1:46:54 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/ppTranslate/src/ppMops.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppTranslate/src/ppMops.h
r25923 r28027 27 27 } ppMopsArguments; 28 28 29 #if 0 30 TTYPE19 = 'PSF_CHISQ' / label for field 19 31 TFORM19 = '1E ' / data format of field: 4-byte REAL 32 TTYPE20 = 'CR_NSIGMA' / label for field 20 33 TFORM20 = '1E ' / data format of field: 4-byte REAL 34 TTYPE21 = 'EXT_NSIGMA' / label for field 21 35 TFORM21 = '1E ' / data format of field: 4-byte REAL 36 TTYPE22 = 'PSF_MAJOR' / label for field 22 37 TFORM22 = '1E ' / data format of field: 4-byte REAL 38 TTYPE23 = 'PSF_MINOR' / label for field 23 39 TFORM23 = '1E ' / data format of field: 4-byte REAL 40 TTYPE24 = 'PSF_THETA' / label for field 24 41 TFORM24 = '1E ' / data format of field: 4-byte REAL 42 TTYPE25 = 'PSF_QF ' / label for field 25 43 TFORM25 = '1E ' / data format of field: 4-byte REAL 44 TTYPE26 = 'PSF_NDOF' / label for field 26 45 TFORM26 = '1J ' / data format of field: 4-byte INTEGER 46 TTYPE27 = 'PSF_NPIX' / label for field 27 47 TFORM27 = '1J ' / data format of field: 4-byte INTEGER 48 TTYPE28 = 'MOMENTS_XX' / label for field 28 49 TFORM28 = '1E ' / data format of field: 4-byte REAL 50 TTYPE29 = 'MOMENTS_XY' / label for field 29 51 TFORM29 = '1E ' / data format of field: 4-byte REAL 52 TTYPE30 = 'MOMENTS_YY' / label for field 30 53 TFORM30 = '1E ' / data format of field: 4-byte REAL 54 #endif 55 29 56 /// Parse arguments 30 57 ppMopsArguments *ppMopsArgumentsParse(int argc, char *argv[]); … … 44 71 psVector *raErr, *decErr; // Error in sky coordinates 45 72 psVector *mag, *magErr; // Magnitude and associated error 46 psVector *extended; // Measure of extendedness 47 psVector *angle, *angleErr; // Angle of trail and associated error 48 psVector *length, *lengthErr; // Length of trail and associated error 73 psVector *chi2, *dof; // Chi^2 from fitting, with associated degrees of freedom 74 psVector *cr, *extended; // Measures of CR-ness and extendedness 75 psVector *psfMajor, *psfMinor, *psfTheta; // PSF major and minor axes, and position angle 76 psVector *quality, *numPix; // PSF quality factor and number of pixels 77 psVector *xxMoment, *xyMoment, *yyMoment; // Moments 49 78 psVector *flags; // psphot flags 50 79 psVector *diffSkyfileId; // Identifier for source image 51 80 psVector *naxis1, *naxis2; // Size of image 52 81 psVector *mask; // Mask for detections 82 psVector *nPos; // Number of positive pixels 83 psVector *fPos; // Fraction of positive flux 84 psVector *nRatioBad; // Fraction of positive pixels to negative 85 psVector *nRatioMask; // Fraction of positive pixels to masked 86 psVector *nRatioAll; // Fraction of positive pixels to all 53 87 } ppMopsDetections; 88 54 89 55 90 ppMopsDetections *ppMopsDetectionsAlloc(long num);
Note:
See TracChangeset
for help on using the changeset viewer.
