IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 32527


Ignore:
Timestamp:
Oct 10, 2011, 3:08:12 PM (15 years ago)
Author:
watersc1
Message:

stare ignore handler.

Location:
tags/ipp-20110622/ippTools/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tags/ipp-20110622/ippTools/src/regtool.c

    r31301 r32527  
    267267        continue;
    268268      }
     269    }
     270    char *is_stareim = strchr(psMetadataLookupStr(NULL,row,"exp_name"),'a');
     271    if (is_stareim) {
     272      continue;
    269273    }
    270274   
     
    720724    PXOPT_COPY_STR(config->args, where,  "-obs_mode",      "obs_mode", "==");
    721725    PXOPT_COPY_STR(config->args, where,  "-data_state",    "data_state", "==");
     726    PXOPT_LOOKUP_BOOL(video_cells, config->args, "-video_cells", false);
    722727
    723728    PXOPT_LOOKUP_U64(limit, config->args, "-limit", false, false);
     
    769774        // don't list faulted rows
    770775        psStringAppend(&query, " %s", "AND rawImfile.fault = 0");
     776    }
     777    if (video_cells) {
     778        psStringAppend(&query, " %s", "AND rawImfile.video_cells");
    771779    }
    772780
  • tags/ipp-20110622/ippTools/src/regtoolConfig.c

    r30652 r32527  
    169169    ADD_OPT(Bool, processedimfileArgs, "-simple",    "use the simple output format",          false);
    170170    ADD_OPT(Bool, processedimfileArgs, "-ordered_by_date", "force output to be in DATE order", false);
     171    ADD_OPT(Bool, processedimfileArgs, "-video_cells",    "limit result to chips that have video cells", false);
    171172    pxspaceAddArguments(processedimfileArgs);
    172173    pxmagicAddArguments(processedimfileArgs);
Note: See TracChangeset for help on using the changeset viewer.