IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 15, 2010, 11:22:56 AM (16 years ago)
Author:
watersc1
Message:

association and jpegs look fine. random simtest errors are a bit worrying, though.

Location:
branches/czw_branch/20100519
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/20100519

  • branches/czw_branch/20100519/ppImage/src/ppImageMosaic.c

    r28304 r28334  
    99{
    1010    bool status;                        // Status of MD lookup
    11         printf("PPIM: %x %s\n",psErrorCodeLast(),psErrorCodeString(psErrorCodeLast()));
     11
    1212    pmFPAfile *in = psMetadataLookupPtr(&status, config->files, inFile); // Input file
    1313    if (!status) {
     
    1515        exit(EXIT_FAILURE);
    1616    }
    17         printf("PPIM: %x %s\n",psErrorCodeLast(),psErrorCodeString(psErrorCodeLast()));
     17
    1818    pmFPAfile *out = psMetadataLookupPtr(&status, config->files, outFile); // Output file
    1919    if (!status) {
     
    2121        exit(EXIT_FAILURE);
    2222    }
    23         printf("PPIM: %x %s\n",psErrorCodeLast(),psErrorCodeString(psErrorCodeLast()));
     23
    2424    pmChip *outChip = pmFPAviewThisChip(view, out->fpa);
    2525    pmChip *inChip = pmFPAviewThisChip(view, in->fpa);
     
    2727        pmFPAAddSourceFromView(out->fpa, view, out->format);
    2828    }
    29         printf("PPIM: %x %s\n",psErrorCodeLast(),psErrorCodeString(psErrorCodeLast()));
     29
    3030    // If the input is a dark (normalising and mosaicking) then it looks like a video cell and will be ignored
    3131    // by pmChipMosaic.  We therefore hack the structure so it doesn't look like a video cell.
    3232    psVector *darkNumbers = NULL;       // Number of dark readouts for each cell
    33     //    psVectorInit(darkNumbers, 0);
    34     printf("PPIM: %x %s\n",psErrorCodeLast(),psErrorCodeString(psErrorCodeLast()));
    3533    if (psMetadataLookupBool(&status, config->arguments, "INPUT_IS_DARK")) {
    3634        darkNumbers = psVectorAlloc(inChip->cells->n, PS_TYPE_S32);
     
    4543        }
    4644    }
    47         printf("PPMI: %x %s\n",psErrorCodeLast(),psErrorCodeString(psErrorCodeLast()));
     45
    4846    psTrace("pmChipMosaic", 5, "mosaic chip %s to %s (xbin,ybin: %d,%d to %d,%d)\n",
    4947            in->name, out->name, in->xBin, in->yBin, out->xBin, out->yBin);
Note: See TracChangeset for help on using the changeset viewer.