Changeset 30874
- Timestamp:
- Mar 10, 2011, 6:03:50 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
ppStack/src/ppStackCleanup.c (modified) (1 diff)
-
ppStack/src/ppStackCombineFinal.c (modified) (2 diffs)
-
ppStack/src/ppStackCombineInitial.c (modified) (1 diff)
-
ppStack/src/ppStackConvolve.c (modified) (2 diffs)
-
ppSub/src/ppSub.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 } -
trunk/ppSub/src/ppSub.c
r30619 r30874 71 71 72 72 if (data && data->stats && data->statsFile) { 73 psMetadataAddF32(data->stats, PS_LIST_TAIL, "TIME_DIFF", 0, "Total time (sec)", psTimerMark("ppSub")); 73 74 psString stats = psMetadataConfigFormat(data->stats); // Statistics to output 74 75 if (!stats || strlen(stats) == 0) { … … 104 105 105 106 psTrace("ppSub", 1, "Finished at %f sec\n", psTimerMark("ppSub")); 107 psLogMsg("ppSub", PS_LOG_INFO, "Complete ppSub run: %f sec\n", psTimerMark("ppSub")); 106 108 psTimerStop(); 107 109
Note:
See TracChangeset
for help on using the changeset viewer.
