IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39750


Ignore:
Timestamp:
Oct 13, 2016, 12:53:16 PM (10 years ago)
Author:
eugene
Message:

objects with large FeH are fake QSOs and should not have NAN valued uR,uD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/20160809/Ohana/src/uniphot/src/update_catalog_setgalmodel.c

    r39740 r39750  
    3333
    3434    // fake or real QSOs are marked with FeH = +/- 100.0
    35     if (fabs(starpar->FeH) > 99.0) continue;
     35    if (fabs(starpar->FeH) > 99.0) {
     36      starpar->uRA  = 0.0;
     37      starpar->uDEC = 0.0;
     38      average[i].uRgal = 0.0;
     39      average[i].uDgal = 0.0;
     40      continue;
     41    }
    3642
    3743    // NOTE: distance is in kiloparsec
Note: See TracChangeset for help on using the changeset viewer.