IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 13, 2015, 3:06:58 PM (11 years ago)
Author:
eugene
Message:

include all diff measurements in primary skycell; add mode to distinguish diff and stack/warp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/relphot/src/extra.c

    r37037 r37907  
    3030int isGPC1warp (int photcode) {
    3131
     32  // diff warps get stack-like photcodes (kind of lame)
     33  if (IS_DIFF_DB) {
     34    if (photcode == 11000) return TRUE; // g-band
     35    if (photcode == 11100) return TRUE; // r-band
     36    if (photcode == 11200) return TRUE; // i-band
     37    if (photcode == 11300) return TRUE; // z-band
     38    if (photcode == 11400) return TRUE; // y-band
     39    if (photcode == 11500) return TRUE; // w-band
     40    return FALSE;
     41  }
     42
    3243  if (photcode == 12000) return TRUE; // g-band
    3344  if (photcode == 12100) return TRUE; // r-band
Note: See TracChangeset for help on using the changeset viewer.