Changeset 30874 for trunk/ppStack
- Timestamp:
- Mar 10, 2011, 6:03:50 PM (15 years ago)
- Location:
- trunk/ppStack/src
- Files:
-
- 4 edited
-
ppStackCleanup.c (modified) (1 diff)
-
ppStackCombineFinal.c (modified) (2 diffs)
-
ppStackCombineInitial.c (modified) (1 diff)
-
ppStackConvolve.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppStack/src/ppStackCleanup.c
r30620 r30874 116 116 117 117 psTrace("ppStack", 1, "Finished at %f sec\n", psTimerMark("PPSTACK")); 118 psLogMsg("ppStack", PS_LOG_INFO, "Complete ppStack run: %f sec\n", psTimerMark("PPSTACK")); 118 119 psTimerStop(); 119 120 -
trunk/ppStack/src/ppStackCombineFinal.c
r30620 r30874 10 10 psAssert(config, "Require configuration"); 11 11 12 psTimerStart("PPSTACK_FINAL"); 13 12 14 pmReadout *outRO = options->outRO; // Output readout 13 15 pmReadout *expRO = options->expRO; // Exposure readout … … 111 113 #endif 112 114 115 if (options->stats) { 116 psMetadataAddF32(options->stats, PS_LIST_TAIL, "TIME_FINAL", 0, 117 "Time to make final stack", psTimerMark("PPSTACK_FINAL")); 118 } 119 113 120 return true; 114 121 } -
trunk/ppStack/src/ppStackCombineInitial.c
r30620 r30874 90 90 if (options->stats) { 91 91 psMetadataAddF32(options->stats, PS_LIST_TAIL, "TIME_INITIAL", 0, 92 "Time to make final stack", psTimerMark("PPSTACK_INITIAL"));92 "Time to make initial stack", psTimerMark("PPSTACK_INITIAL")); 93 93 } 94 94 -
trunk/ppStack/src/ppStackConvolve.c
r30620 r30874 16 16 psAssert(config, "Require configuration"); 17 17 18 psTimerStart("PPSTACK_CONVOLVE"); 19 18 20 psMetadata *recipe = psMetadataLookupMetadata(NULL, config->recipes, PPSTACK_RECIPE); // ppStack recipe 19 21 psAssert(recipe, "We've thrown an error on this before."); … … 365 367 psFree(renorms); 366 368 369 if (options->stats) { 370 psMetadataAddF32(options->stats, PS_LIST_TAIL, "TIME_CONVOLVE", 0, 371 "Time to convolve input images", psTimerMark("PPSTACK_CONVOLVE")); 372 } 373 367 374 return true; 368 375 }
Note:
See TracChangeset
for help on using the changeset viewer.
