Changeset 42053
- Timestamp:
- Feb 20, 2022, 8:38:14 AM (4 years ago)
- Location:
- branches/eam_branches/ipp-20211108/ippTools
- Files:
-
- 1 added
- 3 edited
-
share/Makefile.am (modified) (1 diff)
-
share/stacktool_tosum_allstates.sql (added)
-
src/stacktool.c (modified) (1 diff)
-
src/stacktoolConfig.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20211108/ippTools/share/Makefile.am
r41297 r42053 421 421 stacktool_sassskyfile.sql \ 422 422 stacktool_tosum.sql \ 423 stacktool_tosum_allstates.sql \ 423 424 stacktool_tobkg.sql \ 424 425 stacktool_tosummary.sql \ -
branches/eam_branches/ipp-20211108/ippTools/src/stacktool.c
r41951 r42053 928 928 PXOPT_LOOKUP_U64(limit, config->args, "-limit", false, false); 929 929 PXOPT_LOOKUP_BOOL(simple, config->args, "-simple", false); 930 931 psString query = pxDataGet("stacktool_tosum.sql"); 930 PXOPT_LOOKUP_BOOL(ignore_warp_state, config->args, "-ignore-warp-state", false); 931 932 psString query = ignore_warp_state ? pxDataGet("stacktool_tosum_allstates.sql") : pxDataGet("stacktool_tosum.sql"); 932 933 if (!query) { 933 934 psError(PXTOOLS_ERR_SYS, false, "failed to retreive SQL statement"); -
branches/eam_branches/ipp-20211108/ippTools/src/stacktoolConfig.c
r41951 r42053 154 154 psMetadataAddU64(tosumArgs, PS_LIST_TAIL, "-limit", 0, "limit result set to N items", 0); 155 155 psMetadataAddBool(tosumArgs, PS_LIST_TAIL, "-simple", 0, "use the simple output format", false); 156 psMetadataAddBool(tosumArgs, PS_LIST_TAIL, "-ignore-warp-state", 0, "generate the stack even if some inputs are not full", false); 156 157 157 158 // -tobkg
Note:
See TracChangeset
for help on using the changeset viewer.
