IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 3, 2009, 11:58:24 AM (17 years ago)
Author:
Paul Price
Message:

Committing changes in progress. Attempting to make ppSub spit out not just the regular subtracted image and sources, but the inverse with sources in the inverse (for the warp-warp difference). Does not compile yet.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/pap/ppSub/src/ppSub.h

    r23688 r23704  
    2424// Output files, for activation/deactivation
    2525typedef enum {
    26     PPSUB_FILES_IMAGE = 0x01,           // Image files
    27     PPSUB_FILES_PHOT  = 0x02,           // Photometry files
    28     PPSUB_FILES_ALL   = 0xFF,           // All files
     26    PPSUB_FILES_INPUT    = 0x01,         // Input files
     27    PPSUB_FILES_CONV     = 0x02,         // Convolved files (output)
     28    PPSUB_FILES_SUB      = 0x04,         // Subtracted files (output)
     29    PPSUB_FILES_INV      = 0x08,         // Inverse subtracted files (output)
     30    PPSUB_FILES_PHOT_SUB = 0x10,         // Photometry files (output)
     31    PPSUB_FILES_PHOT_INV = 0x20,        // Photometry files (
     32    PPSUB_FILES_ALL      = 0xFF,         // All files
    2933} ppSubFiles;
    3034
    3135/// Data for processing
    3236typedef struct {
    33     psErrorCode quality;                /// Quality code; 0 for no problem
    34     psMetadata *stats;                  /// Statistics
     37    psErrorCode quality;                // Quality code; 0 for no problem
     38    bool photometry;                    // Perform photometry?
     39    bool inverse;                       // Output inverse subtraction as well?
     40    const char *statsFile;              // Statistics file
     41    psMetadata *stats;                  // Statistics
    3542} ppSubData;
    3643
Note: See TracChangeset for help on using the changeset viewer.