Changeset 42761
- Timestamp:
- Dec 6, 2024, 4:56:27 PM (20 months ago)
- Location:
- branches/eam_branches/ipp-20230313
- Files:
-
- 3 edited
-
Ohana/src/libdvo/src/mosaic_astrom.c (modified) (1 diff)
-
Ohana/src/relphot/src/bcatalog.c (modified) (3 diffs)
-
psLib/src/db/psDB.c (modified) (1 diff)
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 } -
branches/eam_branches/ipp-20230313/psLib/src/db/psDB.c
r42713 r42761 55 55 56 56 /* my_bool was removed from mysql at version 8.0.1, but not from mariadb */ 57 # if (MYSQL_VERSION_ID >= 80 100) && !defined MARIADB_VERSION_ID57 # if (MYSQL_VERSION_ID >= 80001) && !defined MARIADB_VERSION_ID 58 58 # define MYSQL_BOOL bool 59 59 # else
Note:
See TracChangeset
for help on using the changeset viewer.
