IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 40034


Ignore:
Timestamp:
May 12, 2017, 10:18:07 PM (9 years ago)
Author:
mhuber
Message:

update nightly diffs to PS1_DV5 for chip position in cmf, add option to disable chip back mapping and necessary config for SSdiff

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippconfig/recipes/psphot.config

    r39926 r40034  
    9090# calculate difference stats?
    9191DIFF_STATS                          BOOL  FALSE
     92
     93# add backward chip mapping
     94CHIP_PARAMS                         BOOL  TRUE
    9295
    9396# basic object statistics
     
    687690DIFF    METADATA
    688691  DIFF_STATS                        BOOL TRUE          # Calculate diff-specific stats
    689   OUTPUT.FORMAT                     STR  PS1_DV3       # Format of output file
     692  OUTPUT.FORMAT                     STR  PS1_DV5       # Format of output file
    690693
    691694  # Extended source fit parameters
     
    701704END
    702705
     706# Recipe overrides for STACK-STACK DIFF
     707STACK_DIFF         METADATA
     708  DIFF_STATS                        BOOL TRUE          # Calculate diff-specific stats
     709  OUTPUT.FORMAT                     STR  PS1_DV5       # Format of output file
     710
     711  CHIP_PARAMS                       BOOL FALSE
     712
     713  # Extended source fit parameters
     714  # these models are used for high-quality shape analysis after all sources have been removed
     715  EXTENDED_SOURCE_FITS                BOOL  TRUE  # perform the detailed extended sourc fits?
     716  EXT_MODEL                           STR   PS_MODEL_TRAIL
     717
     718  # extended source models applied to sources
     719  EXTENDED_SOURCE_MODELS METADATA
     720    TYPE      EXTENDED_SOURCE_MODEL  MODEL            SNLIM   PSF_CONVOLVED
     721    TRAIL_RAW EXTENDED_SOURCE_MODEL  PS_MODEL_TRAIL    10.0   FALSE
     722  END
     723END
     724
     725
     726
    703727# Recipe overrides for DIFF_PV3
    704728DIFF_PV3        METADATA
     
    721745  PEAKS_NSIGMA_LIMIT_2              F32  3.5           # peak significance threshold -- MOPS would like to see 4.0->3.5 since ppMops fixed
    722746  DIFF_STATS                        BOOL TRUE          # Calculate diff-specific stats
    723   OUTPUT.FORMAT                     STR  PS1_DV3       # Format of output file
     747  OUTPUT.FORMAT                     STR  PS1_DV5       # Format of output file
    724748
    725749  PSF_FIT_MODEL_SUM_FRAC_CUT        F32  0.5
  • trunk/ippconfig/recipes/reductionClasses.mdc

    r38863 r40034  
    665665END
    666666
    667 # reduction class specifically for warpwarp diffs:
     667# reduction class specifically for stackstack diffs:
    668668STACKSTACK      METADATA
    669669        DIFF_PPSUB      STR     STACKSTACK
    670         DIFF_PSPHOT     STR     DIFF
     670        DIFF_PSPHOT     STR     STACK_DIFF
    671671        JPEG_BIN1       STR     PPIMAGE_J1
    672672        JPEG_BIN2       STR     PPIMAGE_J2
  • trunk/psphot/src/psphotChipParams.c

    r37321 r40034  
    3434    psAssert (recipe, "missing recipe?");
    3535
     36    //MEH -- shouldn't do if input is stack... will need to be a config option for now
     37    // -- return true method like for psphotExtendedSourceFits to be consistent...
     38    if (!psMetadataLookupBool (&status, recipe, "CHIP_PARAMS")) {
     39        psLogMsg ("psphot", PS_LOG_INFO, "stack -- skipping backward chip mapping \n");
     40        return true;
     41    }
     42
    3643    int num = psphotFileruleCount(config, filerule);
    3744
     
    5966        if (!psphotChipParamsReadout (config, recipe, view, filerule, readout, sources)) {
    6067            psError (PSPHOT_ERR_CONFIG, false, "failed to measure magnitudes for %s entry %d", filerule, i);
    61             return false;
     68             return false;
    6269        }
    6370    }
  • trunk/psphot/src/psphotReadoutMinimal.c

    r37965 r40034  
    9090    psphotKronIterate(config, view, filerule, 1);
    9191
     92    // MEH -- sensless for SSdfiffs...
    9293    psphotChipParams (config, view, filerule);
    9394
Note: See TracChangeset for help on using the changeset viewer.