Changeset 27579
- Timestamp:
- Apr 2, 2010, 3:51:34 PM (16 years ago)
- Location:
- trunk/Ohana/src/libautocode
- Files:
-
- 5 added
- 4 edited
-
Makefile.Targets (modified) (10 diffs)
-
def/average-ps1-v2.d (added)
-
def/average.d (modified) (4 diffs)
-
def/image-ps1-v2.d (added)
-
def/image.d (modified) (3 diffs)
-
def/measure-ps1-v2.d (added)
-
def/photcode-ps1-v2.d (added)
-
def/secfilt-ps1-v2.d (added)
-
def/secfilt.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/libautocode/Makefile.Targets
r24746 r27579 9 9 $(ASRC)/average-ps1-dev-2.$(ARCH).o \ 10 10 $(ASRC)/average-ps1-v1.$(ARCH).o \ 11 $(ASRC)/average-ps1-v2.$(ARCH).o \ 11 12 $(ASRC)/average-ps1-ref.$(ARCH).o \ 12 13 $(ASRC)/secfilt.$(ARCH).o \ … … 18 19 $(ASRC)/secfilt-ps1-dev-2.$(ARCH).o \ 19 20 $(ASRC)/secfilt-ps1-v1.$(ARCH).o \ 21 $(ASRC)/secfilt-ps1-v2.$(ARCH).o \ 20 22 $(ASRC)/secfilt-ps1-ref.$(ARCH).o \ 21 23 $(ASRC)/measure.$(ARCH).o \ … … 27 29 $(ASRC)/measure-ps1-dev-2.$(ARCH).o \ 28 30 $(ASRC)/measure-ps1-v1.$(ARCH).o \ 31 $(ASRC)/measure-ps1-v2.$(ARCH).o \ 29 32 $(ASRC)/measure-ps1-ref.$(ARCH).o \ 30 33 $(ASRC)/missing.$(ARCH).o \ … … 35 38 $(ASRC)/photcode-ps1-dev-3.$(ARCH).o \ 36 39 $(ASRC)/photcode-ps1-v1.$(ARCH).o \ 40 $(ASRC)/photcode-ps1-v2.$(ARCH).o \ 37 41 $(ASRC)/photcode-ps1-ref.$(ARCH).o \ 38 42 $(ASRC)/image.$(ARCH).o \ … … 45 49 $(ASRC)/image-ps1-dev-3.$(ARCH).o \ 46 50 $(ASRC)/image-ps1-v1.$(ARCH).o \ 51 $(ASRC)/image-ps1-v2.$(ARCH).o \ 47 52 $(ASRC)/image-ps1-ref.$(ARCH).o \ 48 53 $(ASRC)/regimage.$(ARCH).o \ … … 74 79 $(AINC)/average-ps1-dev-2.h \ 75 80 $(AINC)/average-ps1-v1.h \ 81 $(AINC)/average-ps1-v2.h \ 76 82 $(AINC)/average-ps1-ref.h \ 77 83 $(AINC)/secfilt.h \ … … 83 89 $(AINC)/secfilt-ps1-dev-2.h \ 84 90 $(AINC)/secfilt-ps1-v1.h \ 91 $(AINC)/secfilt-ps1-v2.h \ 85 92 $(AINC)/secfilt-ps1-ref.h \ 86 93 $(AINC)/measure.h \ … … 92 99 $(AINC)/measure-ps1-dev-2.h \ 93 100 $(AINC)/measure-ps1-v1.h \ 101 $(AINC)/measure-ps1-v2.h \ 94 102 $(AINC)/measure-ps1-ref.h \ 95 103 $(AINC)/missing.h \ … … 100 108 $(AINC)/photcode-ps1-dev-3.h \ 101 109 $(AINC)/photcode-ps1-v1.h \ 110 $(AINC)/photcode-ps1-v2.h \ 102 111 $(AINC)/photcode-ps1-ref.h \ 103 112 $(AINC)/image.h \ … … 110 119 $(AINC)/image-ps1-dev-3.h \ 111 120 $(AINC)/image-ps1-v1.h \ 121 $(AINC)/image-ps1-v2.h \ 112 122 $(AINC)/image-ps1-ref.h \ 113 123 $(AINC)/regimage.h \ -
trunk/Ohana/src/libautocode/def/average.d
r21508 r27579 2 2 EXTNAME DVO_AVERAGE 3 3 TYPE BINTABLE 4 SIZE 944 SIZE 112 5 5 DESCRIPTION DVO Average Object Table 6 6 … … 9 9 FIELD R, RA, double, RA, decimal degrees 10 10 FIELD D, DEC, double, DEC, decimal degrees 11 FIELD dR, RA_ERR, float, RA error arcsec12 FIELD dD, DEC_ERR, float, DEC error arcsec11 FIELD dR, RA_ERR, float, RA error, arcsec 12 FIELD dD, DEC_ERR, float, DEC error, arcsec 13 13 14 14 FIELD uR, U_RA, float, RA*cos(D) proper-motion, arcsec/year … … 19 19 FIELD dP, PAR_ERR, float, parallax error, arcsec 20 20 21 FIELD Xp, SIGMA_POS, short, position scatter, 1/100 arcsec 22 FIELD ChiSq, CHISQ_POS, float, astrometry analysis chisq 21 FIELD ChiSqAve, CHISQ_POS, float, astrometry analysis chisq 22 FIELD ChiSqPM, CHISQ_PM, float, astrometry analysis chisq 23 FIELD ChiSqPar, CHISQ_PAP, float, astrometry analysis chisq 24 FIELD Tmean, MEAN_EPOCH, int, mean epoch (PM,PAR ref), unix time seconds 25 FIELD Trange, TIME_RANGE, int, mean epoch (PM,PAR ref), unix time seconds 26 27 FIELD Xp, SIGMA_POS, float, position scatter, 1/100 arcsec 23 28 FIELD Npos, NUMBER_POS, unsigned short, number of detections used for astrometry 24 29 … … 46 51 47 52 # *** 20090206 : new fields : ChiSq, Npos, flags (was code, uint16_t), extID 53 54 # *** 20100331 : new fields needed to assess astrometry analysis quality: 55 -
trunk/Ohana/src/libautocode/def/image.d
r21508 r27579 2 2 EXTNAME DVO_IMAGE 3 3 TYPE BINTABLE 4 SIZE 3 444 SIZE 360 5 5 DESCRIPTION DVO Image Table 6 6 … … 40 40 # 40 bytes 41 41 42 FIELD RAo, RA_CENTER, float, image center, degrees 43 FIELD DECo, DEC_CENTER, float, image center, degrees 44 FIELD Radius, RADIUS, float, image radius, degrees 45 FIELD DUMMY, DUMMY, float, dummy 46 42 47 FIELD name, NAME, char[121], name of original image 43 48 FIELD detection_limit, DETECTION_LIMIT, unsigned char, detection limit, 10*mag … … 73 78 74 79 # *** 20090206 : new fields : parentID, flags (was code char), changed name to 121 bytes. 80 # *** 20100331 : new fields : -
trunk/Ohana/src/libautocode/def/secfilt.d
r21508 r27579 2 2 EXTNAME DVO_SECFILT 3 3 TYPE BINTABLE 4 SIZE 184 SIZE 24 5 5 DESCRIPTION DVO SecFilt : Secondary Filter Data 6 6 … … 8 8 FIELD M, MAG, float, other mags, mags 9 9 FIELD dM, MAG_ERR, float, scatter on mag, mags 10 FIELD Xm, MAG_CHI, short, chisq on mag, [100*log(value)] 10 FIELD Xm, MAG_CHI, float, chisq on average mag, [100*log(value)] 11 FIELD flags, FLAGS, uint32_t, photometry flags 11 12 FIELD Ncode, NCODE, short, number of detections in band 12 13 FIELD Nused, NUSED, short, number of detections used in average
Note:
See TracChangeset
for help on using the changeset viewer.
