Changeset 42761 for branches/eam_branches/ipp-20230313/Ohana
- Timestamp:
- Dec 6, 2024, 4:56:27 PM (20 months ago)
- Location:
- branches/eam_branches/ipp-20230313/Ohana/src
- Files:
-
- 2 edited
-
libdvo/src/mosaic_astrom.c (modified) (1 diff)
-
relphot/src/bcatalog.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20230313/Ohana/src/libdvo/src/mosaic_astrom.c
r42752 r42761 60 60 j = getDISentry (images[i].tzero, images[i].tzero + (int) images[i].exptime, DIStzero, DISentry, Ndis); 61 61 if (j == -1) { 62 if (NfailMatch < 100) fprintf (stderr, "WARNING: can't find matching mosaic: ID %d, name: %s, Dateobs %s, \n", images[i].name); 63 // char *ohana_sec_to_date (time_t second) { 62 char *mydate = ohana_sec_to_date (images[i].tzero); 63 if (NfailMatch < 100) fprintf (stderr, "WARNING: can't find matching mosaic: ID %d, name: %s, Dateobs %s, \n", images[i].imageID, images[i].name, mydate); 64 free (mydate); 64 65 NfailMatch ++; 65 66 continue; -
branches/eam_branches/ipp-20230313/Ohana/src/relphot/src/bcatalog.c
r42705 r42761 199 199 if (nEXT >= nPSF) { 200 200 Nmeasure -= Nm; 201 BAD_COUNT(Ngalaxy);201 badCount.Ngalaxy++; 202 202 continue; 203 203 } … … 209 209 if (Nm <= STAR_TOOFEW) { /* enough measurements total? */ 210 210 Nmeasure -= Nm; 211 BAD_COUNT(Nfew);211 badCount.Nfew++; 212 212 continue; 213 213 } … … 219 219 if (!anySecfiltGood) { 220 220 Nmeasure -= Nm; 221 BAD_COUNT(Nfew);221 badCount.Nfew++; 222 222 continue; 223 223 }
Note:
See TracChangeset
for help on using the changeset viewer.
