Changeset 19465
- Timestamp:
- Sep 10, 2008, 11:07:54 AM (18 years ago)
- Location:
- trunk/ippTasks
- Files:
-
- 16 edited
-
calibration.pro (modified) (1 diff)
-
camera.pro (modified) (2 diffs)
-
chip.pro (modified) (2 diffs)
-
detrend.correct.pro (modified) (2 diffs)
-
detrend.norm.pro (modified) (6 diffs)
-
detrend.process.pro (modified) (4 diffs)
-
detrend.reject.pro (modified) (1 diff)
-
detrend.resid.pro (modified) (4 diffs)
-
detrend.stack.pro (modified) (2 diffs)
-
diff.pro (modified) (2 diffs)
-
fake.pro (modified) (2 diffs)
-
flatcorr.pro (modified) (1 diff)
-
pantasks.pro (modified) (2 diffs)
-
register.pro (modified) (2 diffs)
-
stack.pro (modified) (2 diffs)
-
warp.pro (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTasks/calibration.pro
r16298 r19465 57 57 58 58 # define the command (does not depend on previous queries) 59 if ($DB:n == 0)59 if ($DB:n != 0) 60 60 command caltool -dbs -active true 61 61 else -
trunk/ippTasks/camera.pro
r19421 r19465 73 73 74 74 task.exec 75 $run = camtool -pendingexp -limit 2075 $run = camtool -pendingexp 76 76 if ($DB:n == 0) 77 77 option DEFAULT … … 204 204 205 205 task.exec 206 $run = camtool -pendingcleanuprun -limit 20206 $run = camtool -pendingcleanuprun 207 207 if ($DB:n == 0) 208 208 option DEFAULT -
trunk/ippTasks/chip.pro
r19421 r19465 76 76 77 77 task.exec 78 $run = chiptool -pendingimfile -limit 2078 $run = chiptool -pendingimfile 79 79 if ($DB:n == 0) 80 80 option DEFAULT … … 207 207 208 208 task.exec 209 $run = chiptool -pendingcleanuprun -limit 20209 $run = chiptool -pendingcleanuprun 210 210 if ($DB:n == 0) 211 211 option DEFAULT -
trunk/ippTasks/detrend.correct.pro
r18568 r19465 71 71 72 72 task.exec 73 $run = dettool -tocorrectedimfile 73 74 if ($DB:n == 0) 74 75 option DEFAULT 75 command dettool -tocorrectedimfile -limit 2076 76 else 77 77 # save the DB name for the exit tasks 78 78 option $DB:$detPendingCorrectedImfile_DB 79 command dettool -tocorrectedimfile -limit 20-dbname $DB:$detPendingCorrectedImfile_DB79 $run = $run -dbname $DB:$detPendingCorrectedImfile_DB 80 80 $detPendingCorrectedImfile_DB ++ 81 81 if ($detPendingCorrectedImfile_DB >= $DB:n) set detPendingCorrectedImfile_DB = 0 82 82 end 83 add_poll_args run 84 command $run 83 85 end 84 86 … … 192 194 193 195 task.exec 196 $run = dettool -tocorrectedexp 194 197 if ($DB:n == 0) 195 198 option DEFAULT 196 command dettool -tocorrectedexp -limit 20197 199 else 198 200 # save the DB name for the exit tasks 199 201 option $DB:$detPendingCorrectedExp_DB 200 command dettool -tocorrectedexp -limit 20-dbname $DB:$detPendingCorrectedExp_DB202 $run = $run -dbname $DB:$detPendingCorrectedExp_DB 201 203 $detPendingCorrectedExp_DB ++ 202 204 if ($detPendingCorrectedExp_DB >= $DB:n) set detPendingCorrectedExp_DB = 0 203 205 end 206 add_poll_args run 207 command $run 204 208 end 205 209 -
trunk/ippTasks/detrend.norm.pro
r19089 r19465 137 137 138 138 task.exec 139 $run = dettool -tonormalizedstat 139 140 if ($DB:n == 0) 140 141 option DEFAULT 141 command dettool -tonormalizedstat -limit 20142 142 else 143 143 # save the DB name for the exit tasks 144 144 option $DB:$detPendingNormStatImfile_DB 145 command dettool -tonormalizedstat -limit 20-dbname $DB:$detPendingNormStatImfile_DB145 $run = $run -dbname $DB:$detPendingNormStatImfile_DB 146 146 $detPendingNormStatImfile_DB ++ 147 147 if ($detPendingNormStatImfile_DB >= $DB:n) set detPendingNormStatImfile_DB = 0 148 148 end 149 add_poll_args run 150 command $run 149 151 end 150 152 … … 247 249 248 250 task.exec 251 $run = dettool -tonormalize 249 252 if ($DB:n == 0) 250 253 option DEFAULT 251 command dettool -tonormalize -limit 20252 254 else 253 255 # save the DB name for the exit tasks 254 256 option $DB:$detPendingNormImfile_DB 255 command dettool -tonormalize -limit 20-dbname $DB:$detPendingNormImfile_DB257 $run = $run -dbname $DB:$detPendingNormImfile_DB 256 258 $detPendingNormImfile_DB ++ 257 259 if ($detPendingNormImfile_DB >= $DB:n) set detPendingNormImfile_DB = 0 258 260 end 261 add_poll_args run 262 command $run 259 263 end 260 264 … … 360 364 361 365 task.exec 366 $run = dettool -tonormalizedexp 362 367 if ($DB:n == 0) 363 368 option DEFAULT 364 command dettool -tonormalizedexp -limit 20365 369 else 366 370 # save the DB name for the exit tasks 367 371 option $DB:$detPendingNormExp_DB 368 command dettool -tonormalizedexp -limit 20-dbname $DB:$detPendingNormExp_DB372 $run = $run -dbname $DB:$detPendingNormExp_DB 369 373 $detPendingNormExp_DB ++ 370 374 if ($detPendingNormExp_DB >= $DB:n) set detPendingNormExp_DB = 0 371 375 end 376 add_poll_args run 377 command $run 372 378 end 373 379 … … 469 475 470 476 task.exec 477 $run = dettool -pendingcleanup_normalizedstat 471 478 if ($DB:n == 0) 472 479 option DEFAULT 473 command dettool -pendingcleanup_normalizedstat -limit 20474 480 else 475 481 # save the DB name for the exit tasks 476 482 option $DB:$detCleanupNormStatImfile_DB 477 command dettool -pendingcleanup_normalizedstat -limit 20-dbname $DB:$detCleanupNormStatImfile_DB483 $run = $run -dbname $DB:$detCleanupNormStatImfile_DB 478 484 $detCleanupNormStatImfile_DB ++ 479 485 if ($detCleanupNormStatImfile_DB >= $DB:n) set detCleanupNormStatImfile_DB = 0 480 486 end 487 add_poll_args run 488 command $run 481 489 end 482 490 … … 573 581 574 582 task.exec 583 $run = dettool -pendingcleanup_normalizedimfile 575 584 if ($DB:n == 0) 576 585 option DEFAULT 577 command dettool -pendingcleanup_normalizedimfile -limit 20578 586 else 579 587 # save the DB name for the exit tasks 580 588 option $DB:$detCleanupNormImfile_DB 581 command dettool -pendingcleanup_normalizedimfile -limit 20-dbname $DB:$detCleanupNormImfile_DB589 $run = $run -dbname $DB:$detCleanupNormImfile_DB 582 590 $detCleanupNormImfile_DB ++ 583 591 if ($detCleanupNormImfile_DB >= $DB:n) set detCleanupNormImfile_DB = 0 584 592 end 593 add_poll_args run 594 command $run 585 595 end 586 596 … … 678 688 679 689 task.exec 690 $run = dettool -pendingcleanup_normalizedexp 680 691 if ($DB:n == 0) 681 692 option DEFAULT 682 command dettool -pendingcleanup_normalizedexp -limit 20683 693 else 684 694 # save the DB name for the exit tasks 685 695 option $DB:$detCleanupNormExp_DB 686 command dettool -pendingcleanup_normalizedexp -limit 20-dbname $DB:$detCleanupNormExp_DB696 $run = $run -dbname $DB:$detCleanupNormExp_DB 687 697 $detCleanupNormExp_DB ++ 688 698 if ($detCleanupNormExp_DB >= $DB:n) set detCleanupNormExp_DB = 0 689 699 end 700 add_poll_args run 701 command $run 690 702 end 691 703 -
trunk/ippTasks/detrend.process.pro
r19126 r19465 105 105 106 106 task.exec 107 $run = dettool -toprocessedimfile 107 108 if ($DB:n == 0) 108 109 option DEFAULT 109 command dettool -toprocessedimfile -limit 20110 110 else 111 111 # save the DB name for the exit tasks 112 112 option $DB:$detPendingProcessedImfile_DB 113 command dettool -toprocessedimfile -limit 20-dbname $DB:$detPendingProcessedImfile_DB113 $run = $run -dbname $DB:$detPendingProcessedImfile_DB 114 114 $detPendingProcessedImfile_DB ++ 115 115 if ($detPendingProcessedImfile_DB >= $DB:n) set detPendingProcessedImfile_DB = 0 116 116 end 117 add_poll_args run 118 command $run 117 119 end 118 120 … … 222 224 223 225 task.exec 226 $run = dettool -toprocessedexp 224 227 if ($DB:n == 0) 225 228 option DEFAULT 226 command dettool -toprocessedexp -limit 20227 229 else 228 230 # save the DB name for the exit tasks 229 231 option $DB:$detPendingProcessedExp_DB 230 command dettool -toprocessedexp -limit 20-dbname $DB:$detPendingProcessedExp_DB232 $run = $run -dbname $DB:$detPendingProcessedExp_DB 231 233 $detPendingProcessedExp_DB ++ 232 234 if ($detPendingProcessedExp_DB >= $DB:n) set detPendingProcessedExp_DB = 0 233 235 end 236 add_poll_args run 237 command $run 234 238 end 235 239 … … 336 340 337 341 task.exec 342 $run = dettool -pendingcleanup_processedimfile 338 343 if ($DB:n == 0) 339 344 option DEFAULT 340 command dettool -pendingcleanup_processedimfile -limit 20341 345 else 342 346 # save the DB name for the exit tasks 343 347 option $DB:$detCleanupProcessedImfile_DB 344 command dettool -pendingcleanup_processedimfile -limit 20-dbname $DB:$detCleanupProcessedImfile_DB348 $run = $run -dbname $DB:$detCleanupProcessedImfile_DB 345 349 $detCleanupProcessedImfile_DB ++ 346 350 if ($detCleanupProcessedImfile_DB >= $DB:n) set detCleanupProcessedImfile_DB = 0 347 351 end 352 add_poll_args run 353 command $run 348 354 end 349 355 … … 442 448 443 449 task.exec 450 $run = dettool -pendingcleanup_processedexp 444 451 if ($DB:n == 0) 445 452 option DEFAULT 446 command dettool -pendingcleanup_processedexp -limit 20447 453 else 448 454 # save the DB name for the exit tasks 449 455 option $DB:$detCleanupProcessedExp_DB 450 command dettool -pendingcleanup_processedexp -limit 20-dbname $DB:$detCleanupProcessedExp_DB456 $run = $run -dbname $DB:$detCleanupProcessedExp_DB 451 457 $detCleanupProcessedExp_DB ++ 452 458 if ($detCleanupProcessedExp_DB >= $DB:n) set detCleanupProcessedExp_DB = 0 453 459 end 460 add_poll_args run 461 command $run 454 462 end 455 463 -
trunk/ippTasks/detrend.reject.pro
r18607 r19465 52 52 53 53 task.exec 54 $run = dettool -todetrunsummary 54 55 if ($DB:n == 0) 55 56 option DEFAULT 56 command dettool -todetrunsummary -limit 2057 57 else 58 58 # save the DB name for the exit tasks 59 59 option $DB:$detRejectExp_DB 60 command dettool -todetrunsummary -limit 20-dbname $DB:$detRejectExp_DB60 $run = $run -dbname $DB:$detRejectExp_DB 61 61 $detRejectExp_DB ++ 62 62 if ($detRejectExp_DB >= $DB:n) set detRejectExp_DB = 0 63 63 end 64 add_poll_args run 65 command $run 64 66 end 65 67 -
trunk/ippTasks/detrend.resid.pro
r19126 r19465 100 100 101 101 task.exec 102 $run = dettool -toresidimfile 102 103 if ($DB:n == 0) 103 104 option DEFAULT 104 command dettool -toresidimfile -limit 20105 105 else 106 106 # save the DB name for the exit tasks 107 107 option $DB:$detPendingResidImfile_DB 108 command dettool -toresidimfile -limit 20-dbname $DB:$detPendingResidImfile_DB108 $run = $run -dbname $DB:$detPendingResidImfile_DB 109 109 $detPendingResidImfile_DB ++ 110 110 if ($detPendingResidImfile_DB >= $DB:n) set detPendingResidImfile_DB = 0 111 111 end 112 add_poll_args run 113 command $run 112 114 end 113 115 … … 221 223 222 224 task.exec 225 $run = dettool -toresidexp 223 226 if ($DB:n == 0) 224 227 option DEFAULT 225 command dettool -toresidexp -limit 20226 228 else 227 229 # save the DB name for the exit tasks 228 230 option $DB:$detPendingResidExp_DB 229 command dettool -toresidexp -limit 20-dbname $DB:$detPendingResidExp_DB231 $run = $run -dbname $DB:$detPendingResidExp_DB 230 232 $detPendingResidExp_DB ++ 231 233 if ($detPendingResidExp_DB >= $DB:n) set detPendingResidExp_DB = 0 232 234 end 235 add_poll_args run 236 command $run 233 237 end 234 238 … … 335 339 336 340 task.exec 341 $run = dettool -pendingcleanup_residimfile 337 342 if ($DB:n == 0) 338 343 option DEFAULT 339 command dettool -pendingcleanup_residimfile -limit 20340 344 else 341 345 # save the DB name for the exit tasks 342 346 option $DB:$detCleanupResidImfile_DB 343 command dettool -pendingcleanup_residimfile -limit 20-dbname $DB:$detCleanupResidImfile_DB347 $run = $run -dbname $DB:$detCleanupResidImfile_DB 344 348 $detCleanupResidImfile_DB ++ 345 349 if ($detCleanupResidImfile_DB >= $DB:n) set detCleanupResidImfile_DB = 0 346 350 end 351 add_poll_args run 352 command $run 347 353 end 348 354 … … 442 448 443 449 task.exec 450 $run = dettool -pendingcleanup_residexp 444 451 if ($DB:n == 0) 445 452 option DEFAULT 446 command dettool -pendingcleanup_residexp -limit 20447 453 else 448 454 # save the DB name for the exit tasks 449 455 option $DB:$detCleanupResidExp_DB 450 command dettool -pendingcleanup_residexp -limit 20-dbname $DB:$detCleanupResidExp_DB456 $run = $run -dbname $DB:$detCleanupResidExp_DB 451 457 $detCleanupResidExp_DB ++ 452 458 if ($detCleanupResidExp_DB >= $DB:n) set detCleanupResidExp_DB = 0 453 459 end 460 add_poll_args run 461 command $run 454 462 end 455 463 -
trunk/ippTasks/detrend.stack.pro
r19126 r19465 70 70 71 71 task.exec 72 $run = dettool -tostacked 72 73 if ($DB:n == 0) 73 74 option DEFAULT 74 command dettool -tostacked -limit 2075 75 else 76 76 # save the DB name for the exit tasks 77 77 option $DB:$detPendingStackedImfile_DB 78 command dettool -tostacked -limit 20-dbname $DB:$detPendingStackedImfile_DB78 $run = $run -dbname $DB:$detPendingStackedImfile_DB 79 79 $detPendingStackedImfile_DB ++ 80 80 if ($detPendingStackedImfile_DB >= $DB:n) set detPendingStackedImfile_DB = 0 81 81 end 82 add_poll_args run 83 command $run 82 84 end 83 85 … … 184 186 185 187 task.exec 188 $run = dettool -pendingcleanup_stacked 186 189 if ($DB:n == 0) 187 190 option DEFAULT 188 command dettool -pendingcleanup_stacked -limit 20189 191 else 190 192 # save the DB name for the exit tasks 191 193 option $DB:$detCleanupStackedImfile_DB 192 command dettool -pendingcleanup_stacked -limit 20-dbname $DB:$detCleanupStackedImfile_DB194 $run = $run -dbname $DB:$detCleanupStackedImfile_DB 193 195 $detCleanupStackedImfile_DB ++ 194 196 if ($detCleanupStackedImfile_DB >= $DB:n) set detCleanupStackedImfile_DB = 0 195 197 end 198 add_poll_args run 199 command $run 196 200 end 197 201 -
trunk/ippTasks/diff.pro
r19461 r19465 81 81 82 82 task.exec 83 $run = difftool -todiffskyfile -limit 2083 $run = difftool -todiffskyfile 84 84 if ($DB:n == 0) 85 85 option DEFAULT … … 205 205 206 206 task.exec 207 $run = difftool -pendingcleanuprun -limit 20207 $run = difftool -pendingcleanuprun 208 208 if ($DB:n == 0) 209 209 option DEFAULT -
trunk/ippTasks/fake.pro
r19426 r19465 73 73 74 74 task.exec 75 $run = faketool -pendingimfile -limit 2075 $run = faketool -pendingimfile 76 76 if ($DB:n == 0) 77 77 option DEFAULT … … 196 196 197 197 task.exec 198 $run = faketool -pendingcleanuprun -limit 20198 $run = faketool -pendingcleanuprun 199 199 if ($DB:n == 0) 200 200 option DEFAULT -
trunk/ippTasks/flatcorr.pro
r19329 r19465 114 114 115 115 # define the command (does not depend on previous queries) 116 if ($DB:n == 0) 117 command flatcorr -pendingprocess 118 else 116 $run = flatcorr -pendingprocess 117 if ($DB:n != 0) 119 118 # save the DB name for the exit tasks 120 119 option $DB:$flatcorr_pendingprocess_DB 121 command flatcorr -pendingprocess-dbname $DB:$flatcorr_pendingprocess_DB120 $run = $run -dbname $DB:$flatcorr_pendingprocess_DB 122 121 $flatcorr_pendingprocess_DB ++ 123 122 if ($flatcorr_pendingprocess_DB >= $DB:n) set flatcorr_pendingprocess_DB = 0 124 123 end 124 add_poll_args run 125 command $run 125 126 126 127 # silently drop stdout -
trunk/ippTasks/pantasks.pro
r19429 r19465 7 7 $VERBOSE = 1 8 8 $LABEL = "NONE" 9 $POLLLIMIT = 32 9 10 $LOGDIR = `pwd` 10 11 $LOGDIR = $LOGDIR/pantasks_logs … … 192 193 193 194 local command 194 $command = $$1 195 $command = $$1 -limit $POLLLIMIT 195 196 196 197 # Only process the data with the specified label. -
trunk/ippTasks/register.pro
r18607 r19465 71 71 # iff the DB list is not set, use the value defined in .ipprc 72 72 task.exec 73 $run = regtool -pendingimfile 73 74 if ($DB:n == 0) 74 75 option DEFAULT 75 command regtool -pendingimfile -limit 2076 76 else 77 77 # save the DB name for the exit tasks 78 78 option $DB:$regPendingImfile_DB 79 command regtool -pendingimfile -limit 20-dbname $DB:$regPendingImfile_DB79 $run = $run -dbname $DB:$regPendingImfile_DB 80 80 $regPendingImfile_DB ++ 81 81 if ($regPendingImfile_DB >= $DB:n) set regPendingImfile_DB = 0 82 82 end 83 add_poll_args run 84 command $run 83 85 end 84 86 … … 198 200 199 201 task.exec 202 $run = regtool -pendingexp 200 203 if ($DB:n == 0) 201 204 option DEFAULT 202 command regtool -pendingexp -limit 20203 205 else 204 206 # save the DB name for the exit tasks 205 207 option $DB:$regPendingExp_DB 206 command regtool -pendingexp -limit 20-dbname $DB:$regPendingExp_DB208 $run = $run -dbname $DB:$regPendingExp_DB 207 209 $regPendingExp_DB ++ 208 210 if ($regPendingExp_DB >= $DB:n) set regPendingExp_DB = 0 209 211 end 212 add_poll_args run 213 command $run 210 214 end 211 215 -
trunk/ippTasks/stack.pro
r19443 r19465 81 81 82 82 task.exec 83 $run = stacktool -tosum -limit 2083 $run = stacktool -tosum 84 84 if ($DB:n == 0) 85 85 option DEFAULT … … 206 206 207 207 task.exec 208 $run = stacktool -pendingcleanuprun -limit 20208 $run = stacktool -pendingcleanuprun 209 209 if ($DB:n == 0) 210 210 option DEFAULT -
trunk/ippTasks/warp.pro
r19409 r19465 96 96 97 97 task.exec 98 $run = warptool -tooverlap -limit 2098 $run = warptool -tooverlap 99 99 if ($DB:n == 0) 100 100 option DEFAULT … … 209 209 210 210 task.exec 211 $run = warptool -towarped -limit 20211 $run = warptool -towarped 212 212 if ($DB:n == 0) 213 213 option DEFAULT … … 328 328 329 329 task.exec 330 $run = warptool -pendingcleanuprun -limit 20330 $run = warptool -pendingcleanuprun 331 331 if ($DB:n == 0) 332 332 option DEFAULT
Note:
See TracChangeset
for help on using the changeset viewer.
