Changeset 19368 for trunk/ippTools/src/difftool.c
- Timestamp:
- Sep 4, 2008, 2:22:31 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/difftool.c (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/difftool.c
r19301 r19368 108 108 PXOPT_LOOKUP_STR(skycell_id, config->args, "-skycell_id", true, false); 109 109 PXOPT_LOOKUP_STR(tess_id, config->args, "-tess_id", true, false); 110 PXOPT_LOOKUP_STR(label, config->args, "-label", false, false); 111 PXOPT_LOOKUP_STR(reduction, config->args, "-reduction", false, false); 110 112 111 113 // default … … 116 118 0, // ID 117 119 "reg", // state 120 label, 121 reduction, 118 122 workdir, 119 123 NULL, // dvodb … … 485 489 uri, 486 490 path_base, 491 "full", // data_state 487 492 bg, 488 493 bg_stdev, … … 722 727 const char *skycell_id, // Skycell identifier 723 728 const char *tess_id, // Tessellation identifier 729 const char *label, // label 730 const char *reduction, // reduction 724 731 psS64 input_warp_id, // Warp identifier for input image, PS_MAX_S64 for none 725 732 psS64 input_stack_id, // Stack identifier for input image, PS_MAX_S64 for none … … 750 757 0, // ID 751 758 "reg", // state 759 label, 760 reduction, 752 761 workdir, 753 762 NULL, // dvodb … … 843 852 PXOPT_LOOKUP_STR(skycell_id, config->args, "-skycell_id", true, false); // required options 844 853 PXOPT_LOOKUP_STR(tess_id, config->args, "-tess_id", true, false); // required options 854 PXOPT_LOOKUP_STR(label, config->args, "-label", false, false); 855 PXOPT_LOOKUP_STR(reduction, config->args, "-reduction", false, false); 845 856 PXOPT_LOOKUP_S64(template_warp_id, config->args, "-template_warp_id", false, false); 846 857 PXOPT_LOOKUP_S64(template_stack_id, config->args, "-template_stack_id", false, false); … … 871 882 psArray *list = psArrayAllocEmpty(16); // List of runs, to print 872 883 873 if (!populatedrun(list, workdir, skycell_id, tess_id, 884 if (!populatedrun(list, workdir, skycell_id, tess_id, label, reduction, 874 885 input_warp_id ? input_warp_id : PS_MAX_S64, 875 886 input_stack_id ? input_stack_id : PS_MAX_S64, … … 906 917 PXOPT_COPY_F32(config->args, where, "-good_frac", "good_frac", ">="); 907 918 PXOPT_LOOKUP_STR(workdir, config->args, "-workdir", true, false); // required options 919 PXOPT_LOOKUP_STR(reduction, config->args, "-reduction", false, false); // option 920 PXOPT_LOOKUP_STR(label, config->args, "-label", false, false); // option 908 921 PXOPT_LOOKUP_TIME(registered, config->args, "-registered", false, false); 909 922 PXOPT_LOOKUP_BOOL(simple, config->args, "-simple", false); … … 987 1000 } 988 1001 989 if (!populatedrun(list, workdir, skycell_id, tess_id, warp_id, PS_MAX_S64, PS_MAX_S64,1002 if (!populatedrun(list, workdir, skycell_id, tess_id, label, reduction, warp_id, PS_MAX_S64, PS_MAX_S64, 990 1003 stack_id, config)) { 991 1004 psWarning("Unable to add run for %s,%s,%" PRId64 ",%" PRId64, skycell_id, tess_id,
Note:
See TracChangeset
for help on using the changeset viewer.
