IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 4, 2008, 2:19:02 PM (18 years ago)
Author:
eugene
Message:

substantial re-organization: moved FITS and REDUCTIION tables to recipes/fitstypes.mdc and recipes/reductionClasses.mdc; merged filerules for all cameras into one of three top-level file rules: recipes/filerules-simple.mdc; recipes/filerules-mef.mdc; recipes/filerules-split.mdc; removed astrometry from chip-level analysis

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippconfig/simple/camera.config

    r17398 r17523  
    4545END
    4646
    47 # Reduction classes
    48 REDUCTION       METADATA
    49         # Detrend processing
    50         DETREND         METADATA
    51                 BIAS_PROCESS    STR     PPIMAGE_O
    52                 BIAS_RESID      STR     PPIMAGE_B
    53                 BIAS_VERIFY     STR     PPIMAGE_OB
    54                 BIAS_STACK      STR     PPMERGE_BIAS
    55                 DARK_PROCESS    STR     PPIMAGE_OB
    56                 DARK_RESID      STR     PPIMAGE_D
    57                 DARK_VERIFY     STR     PPIMAGE_OBD
    58                 DARK_STACK      STR     PPMERGE_DARK
    59                 SHUTTER_PROCESS STR     PPIMAGE_OBD
    60                 SHUTTER_RESID   STR     PPIMAGE_S
    61                 SHUTTER_VERIFY  STR     PPIMAGE_OBDS
    62                 SHUTTER_STACK   STR     PPMERGE_SHUTTER
    63                 FLAT_PROCESS    STR     PPIMAGE_OBDS
    64                 FLAT_RESID      STR     PPIMAGE_F
    65                 FLAT_VERIFY     STR     PPIMAGE_OBDSF
    66                 FLAT_STACK      STR     PPMERGE_FLAT
    67                 FRINGE_PROCESS  STR     PPIMAGE_OBDSF
    68                 FRINGE_RESID    STR     PPIMAGE_R
    69                 FRINGE_VERIFY   STR     PPIMAGE_OBDSFR
    70                 FRINGE_STACK    STR     PPMERGE_FRINGE
    71         END
    72         # Processing raw data
    73         DEFAULT         METADATA
    74                 CHIP            STR     PPIMAGE_OBDSFRA
    75         END
    76 END
     47# reduction classes (recipes which are grouped together)
     48REDUCTION       STR     recipes/reductionClasses.mdc
    7749
    78 FITS    METADATA
    79 # BITPIX is the bits per pixel for writing the output data
    80 # COMP = NONE|RICE|GZIP|HCOMPRESS|PLIO is the compression algorithm
    81 # TILE.[XYZ] are the tile sizes.  0 means entire the dimension, so (0,1,1) forms tiles from rows
    82 # NOISE [0..16] is the number of "noise bits" to preserve when quantising floating point data; 16 for no loss
    83 # HSCALE is the scale factor for lossy compression with HCOMPRESS; 0 or 1 for none; 2*RMS --> 10x compression
    84 # HSMOOTH is the smoothing to apply to HCOMPRESSed data when decompressing; 0 for none
     50FITSTYPES       STR     recipes/fitstypes.mdc
    8551
    86 # BITPIX(S32) is the bits per pixel for writing the output data
    87 # COMPRESSION(STR) = NONE|RICE|GZIP|HCOMPRESS|PLIO is the compression algorithm
    88 # TILE.[XYZ](S32) are the tile sizes.  0 means entire the dimension, so (0,1,1) forms tiles from rows
    89 # NOISE(S32) [0..16] is the number of "noise bits" to preserve when quantising floating point data
    90 # HSCALE(S32) is the scale factor for lossy compression with HCOMPRESS; 0 or 1 for none; 2*RMS --> 10x compression
    91 # HSMOOTH(S32) is the smoothing to apply to HCOMPRESSed data when decompressing; 0 for none
    92 # SCALING(STR) = NONE|RANGE|STDEV_POSITIVE|STDEV_NEGATIVE|STDEV_BOTH|MANUAL is the scaling scheme
    93 # BSCALE(F32) is the manual scaling to apply (when SCALING = MANUAL)
    94 # BZERO(F32) is the manual zero-point to apply (when SCALING = MANUAL)
    95 # STDEV.BITS(S32) is the number of bits to map to a standard deviation (when SCALING = STDEV_*)
    96 # STDEV.NUM(F32) is the number of standard deviations to the edge (when SCALING = STDEV_NEGATIVE|STDEV_POSITIVE)
    97 # FLOAT(STR) is the name of a custom floating-point type
    98 
    99         DET_IMAGE       METADATA
    100                 BITPIX          S32     -32
    101         END
    102         DET_MASK        METADATA
    103                 BITPIX          S32     8
    104         END
    105         DET_WEIGHT      METADATA
    106                 BITPIX          S32     -32
    107         END
    108 
    109         SKY_IMAGE       METADATA
    110                 BITPIX          S32     -32
    111         END
    112         SKY_MASK        METADATA
    113                 BITPIX          S32     8
    114         END
    115         SKY_WEIGHT      METADATA
    116                 BITPIX          S32     -32
    117         END
    118 
    119         COMPRESSED_POSITIVE     METADATA
    120                 BITPIX          S32     16
    121                 SCALING         STR     STDEV_POSITIVE
    122                 STDEV.BITS      S32     4
    123                 STDEV.NUM       F32     10
    124                 COMPRESSION     STR     RICE
    125                 TILE.X          S32     0
    126                 TILE.Y          S32     1
    127                 TILE.Z          S32     1
    128                 NOISE           S32     8
    129         END
    130         COMPRESSED_MASK         METADATA
    131                 COMPRESSION     STR     PLIO
    132                 TILE.X          S32     0
    133                 TILE.Y          S32     1
    134                 TILE.Z          S32     1
    135                 NOISE           S32     8
    136         END
    137         COMPRESSED_SUBTRACTION  METADATA
    138                 BITPIX          S32     16
    139                 SCALING         STR     STDEV_BOTH
    140                 STDEV.BITS      S32     4
    141                 STDEV.NUM       F32     5
    142                 COMPRESSION     STR     RICE
    143                 TILE.X          S32     0
    144                 TILE.Y          S32     1
    145                 TILE.Z          S32     1
    146                 NOISE           S32     8
    147         END
    148 
    149 END
    150 
    151 FILERULES STR simple/filerules.mdc
     52FILERULES       STR     recipes/filerules-simple.mdc
    15253
    15354EXTNAME.RULES METADATA
Note: See TracChangeset for help on using the changeset viewer.