IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 25, 2008, 4:08:42 PM (18 years ago)
Author:
Paul Price
Message:

Don't produce a file if there's nothing in it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack/src/ppStackReadout.c

    r19206 r19208  
    9191    for (int i = 0; i < stack->n; i++) {
    9292        pmStackData *data = stack->data[i]; // Data for this image
    93         if (!data) {
     93        if (!data || !data->inspect) {
    9494            continue;
    9595        }
     
    212212        for (int i = 0; i < stack->n; i++) {
    213213            pmStackData *data = stack->data[i]; // Data for this image
    214             if (!data) {
     214            if (!data || !data->reject) {
    215215                continue;
    216216            }
Note: See TracChangeset for help on using the changeset viewer.