Changeset 31423
- Timestamp:
- May 2, 2011, 3:06:10 PM (15 years ago)
- Location:
- tags/ipp-20110406
- Files:
-
- 3 edited
-
ippScripts/scripts/stack_skycell.pl (modified) (4 diffs, 1 prop)
-
ippconfig/recipes/ppStack.config (modified) (3 diffs, 1 prop)
-
ppStack/src/ppStackArguments.c (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20110406/ippScripts/scripts/stack_skycell.pl
- Property svn:mergeinfo set to
r30842 r31423 73 73 PPSTACK.OUTPUT.EXPNUM 74 74 PPSTACK.OUTPUT.EXPWT 75 PPSTACK.TARGET.PSF76 75 PPSTACK.OUTPUT.JPEG1 77 76 PPSTACK.OUTPUT.JPEG2 … … 84 83 # extra outputs when convolving 85 84 my @outputListUnconv = qw( 85 PPSTACK.TARGET.PSF 86 86 PPSTACK.UNCONV 87 87 PPSTACK.UNCONV.MASK … … 208 208 &my_die("Unable to not compress and logflux compress simultaneously. Check config.",$stack_id, $PS_EXIT_CONFIG_ERROR); 209 209 } 210 my $stack_type = metadataLookupStr($recipe, 'STACK.TYPE'); 211 &my_die("STACK.TYPE not found in recipe. Check config.",$stack_id, $PS_EXIT_CONFIG_ERROR) unless $stack_type; 210 212 211 213 # Generate MDC file with the inputs … … 281 283 $command .= " -recipe PSPHOT $recipe_psphot"; 282 284 $command .= " -recipe PPSTATS $recipe_ppstats" if $do_stats;; 285 $command .= " -stack-type $stack_type"; 283 286 $command .= " -F PSPHOT.PSF.SAVE PSPHOT.PSF.SKY.SAVE"; 284 287 $command .= " -F PSPHOT.OUTPUT PSPHOT.OUT.CMF.MEF"; -
tags/ipp-20110406/ippconfig/recipes/ppStack.config
- Property svn:mergeinfo set to
r31163 r31423 97 97 OUTPUT.REPLICATE BOOL TRUE 98 98 99 STACK.TYPE STR DEEP_STACK 100 99 101 # Recipe overrides for STACK 100 102 STACK METADATA … … 123 125 END 124 126 127 QUICKSTACK METADATA 128 CONVOLVE BOOL FALSE 129 COMBINE.REJ F32 3.0 130 COMBINE.DISCARD F32 0.3 131 MASK.VAL STR MASK.VALUE,CONV.BAD,GHOST,BURNTOOL # Mask value of input bad pixels 132 END 125 133 126 134 # … … 130 138 131 139 STACK_NIGHTLY METADATA 140 STACK.TYPE STR NIGHTLY_STACK 132 141 END 133 142 -
tags/ipp-20110406/ppStack/src/ppStackArguments.c
- Property svn:mergeinfo set to
r31158 r31423 204 204 } 205 205 psArgumentRemove (argNum, &argc, argv); 206 if (strcasecmp(argv[argNum], "NIGHTLY ") && strcasecmp(argv[argNum], "DEEP") && strcasecmp(argv[argNum], "BEST_IQ")) {206 if (strcasecmp(argv[argNum], "NIGHTLY_STACK") && strcasecmp(argv[argNum], "DEEP_STACK") && strcasecmp(argv[argNum], "IQ_STACK")) { 207 207 psErrorStackPrint(stderr, "Invalid option for -stack-type %s (must be one of NIGHTLY_STACK, DEEP_STACK, IQ_STACK)", argv[argNum]); 208 208 exit(PS_EXIT_CONFIG_ERROR);
Note:
See TracChangeset
for help on using the changeset viewer.
