- Timestamp:
- Jan 29, 2009, 5:31:30 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/pap_branch_20090128/ppStack/src/ppStackArguments.c
r20995 r21236 24 24 "\tIMAGE(STR): Image filename\n" 25 25 "\tMASK(STR): Mask filename\n" 26 "\t WEIGHT(STR): Weightmap filename\n"26 "\tVARIANCE(STR): Variance map filename\n" 27 27 "\tPSF(STR): PSF filename\n" 28 28 "\tSOURCES(STR): Sources filename\n" … … 151 151 psMetadataAddStr(arguments, PS_LIST_TAIL, "-mask-poor", 0, "Mask value to give poor pixels", NULL); 152 152 psMetadataAddF32(arguments, PS_LIST_TAIL, "-threshold-mask", 0, "Threshold for mask deconvolution", NAN); 153 psMetadataAddF32(arguments, PS_LIST_TAIL, "-poor-frac", 0, "Fraction of weightfor poor pixels", NAN);153 psMetadataAddF32(arguments, PS_LIST_TAIL, "-poor-frac", 0, "Fraction of variance for poor pixels", NAN); 154 154 psMetadataAddF32(arguments, PS_LIST_TAIL, "-image-rej", 0, 155 155 "Pixel rejection fraction threshold for rejecting entire image", NAN); … … 182 182 psMetadataAddStr(arguments, PS_LIST_TAIL, "-temp-image", 0, "Suffix for temporary images", NULL); 183 183 psMetadataAddStr(arguments, PS_LIST_TAIL, "-temp-mask", 0, "Suffix for temporary masks", NULL); 184 psMetadataAddStr(arguments, PS_LIST_TAIL, "-temp- weight", 0, "Suffix for temporary weightmaps", NULL);184 psMetadataAddStr(arguments, PS_LIST_TAIL, "-temp-variance", 0, "Suffix for temporary variance maps", NULL); 185 185 psMetadataAddBool(arguments, PS_LIST_TAIL, "-temp-delete", 0, 186 186 "Delete temporary files on completion?", false); … … 281 281 VALUE_ARG_RECIPE_INT("-renorm-num", "RENORM.NUM", S32, 0); 282 282 VALUE_ARG_RECIPE_FLOAT("-renorm-width", "RENORM.WIDTH", F32); 283 valueArgRecipeStr(arguments, recipe, "-renorm-mean", "RENORM.MEAN", recipe);283 valueArgRecipeStr(arguments, recipe, "-renorm-mean", "RENORM.MEAN", recipe); 284 284 valueArgRecipeStr(arguments, recipe, "-renorm-stdev", "RENORM.STDEV", recipe); 285 285 286 valueArgRecipeStr(arguments, recipe, "-temp-image", "TEMP.IMAGE", recipe);287 valueArgRecipeStr(arguments, recipe, "-temp-mask", "TEMP.MASK", recipe);288 valueArgRecipeStr(arguments, recipe, "-temp- weight", "TEMP.WEIGHT", recipe);286 valueArgRecipeStr(arguments, recipe, "-temp-image", "TEMP.IMAGE", recipe); 287 valueArgRecipeStr(arguments, recipe, "-temp-mask", "TEMP.MASK", recipe); 288 valueArgRecipeStr(arguments, recipe, "-temp-variance", "TEMP.VARIANCE", recipe); 289 289 290 290 if (psMetadataLookupBool(NULL, arguments, "-temp-delete") ||
Note:
See TracChangeset
for help on using the changeset viewer.
