Changeset 21258
- Timestamp:
- Feb 1, 2009, 11:57:23 AM (17 years ago)
- Location:
- trunk/ppStack/src
- Files:
-
- 2 edited
-
ppStack.c (modified) (1 diff)
-
ppStackLoop.c (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppStack/src/ppStack.c
r20413 r21258 16 16 psExit exitValue = PS_EXIT_SUCCESS; // Exit value 17 17 psTimerStart(TIMER_NAME); 18 psTimerStart("PPSTACK_STEPS"); 18 19 psLibInit(NULL); 19 20 -
trunk/ppStack/src/ppStackLoop.c
r21199 r21258 249 249 250 250 memDump("start"); 251 252 psLogMsg("ppStack", PS_LOG_INFO, "Stage 0 : Initialization and Configuration : %f sec", psTimerClear("PPSTACK_STEPS")); 251 253 252 254 // Preparation iteration: Load the sources, and get a target PSF model … … 380 382 } 381 383 384 psLogMsg("ppStack", PS_LOG_INFO, "Stage 1 : Load Sources and Generate Target PSF : %f sec", psTimerClear("PPSTACK_STEPS")); 382 385 memDump("psf"); 383 386 … … 509 512 psFree(rng); 510 513 514 psLogMsg("ppStack", PS_LOG_INFO, "Stage 2 : Generate Convolutions and Save : %f sec", psTimerClear("PPSTACK_STEPS")); 515 511 516 if (numGood == 0) { 512 517 psError(PS_ERR_UNKNOWN, false, "No good images to combine."); … … 613 618 #endif 614 619 620 psLogMsg("ppStack", PS_LOG_INFO, "Stage 3 : Basic Image Rejection : %f sec", psTimerClear("PPSTACK_STEPS")); 615 621 616 622 // Start threading … … 762 768 "Time to make initial stack", psTimerMark("PPSTACK_INITIAL")); 763 769 } 770 psLogMsg("ppStack", PS_LOG_INFO, "Stage 4 : Make Initial Stack : %f sec", psTimerClear("PPSTACK_STEPS")); 764 771 psLogMsg("ppStack", PS_LOG_INFO, "Time to make initial stack: %f sec", psTimerClear("PPSTACK_INITIAL")); 765 772 … … 912 919 "Number of images rejected completely", numRejected); 913 920 } 914 } 915 921 } 922 923 psLogMsg("ppStack", PS_LOG_INFO, "Stage 5 : Pixel Rejection : %f sec", psTimerClear("PPSTACK_STEPS")); 916 924 psTimerStart("PPSTACK_FINAL"); 917 925 … … 976 984 "Time to make final stack", psTimerMark("PPSTACK_FINAL")); 977 985 } 986 987 psLogMsg("ppStack", PS_LOG_INFO, "Stage 6 : Final Stack : %f sec", psTimerClear("PPSTACK_STEPS")); 978 988 psLogMsg("ppStack", PS_LOG_INFO, "Time to make final stack: %f sec", psTimerClear("PPSTACK_FINAL")); 979 989 … … 1071 1081 } 1072 1082 1083 psLogMsg("ppStack", PS_LOG_INFO, "Stage 7 : WCS & JPEGS : %f sec", psTimerClear("PPSTACK_STEPS")); 1084 1073 1085 if (psMetadataLookupBool(&mdok, recipe, "RENORM")) { 1074 1086 // Statistics for renormalisation … … 1088 1100 } 1089 1101 1102 psLogMsg("ppStack", PS_LOG_INFO, "Stage 8 : Photometry Renormalization : %f sec", psTimerClear("PPSTACK_STEPS")); 1103 1090 1104 if (psMetadataLookupBool(&mdok, recipe, "PHOTOMETRY")) { 1091 1105 psTrace("ppStack", 1, "Photometering stacked image....\n"); … … 1117 1131 } 1118 1132 1133 psLogMsg("ppStack", PS_LOG_INFO, "Stage 9 : Photometry Analysis : %f sec", psTimerClear("PPSTACK_STEPS")); 1134 1119 1135 psThreadPoolFinalize(); 1120 1136 … … 1170 1186 } 1171 1187 1188 psLogMsg("ppStack", PS_LOG_INFO, "Stage 10 : Final Output : %f sec", psTimerClear("PPSTACK_STEPS")); 1189 1172 1190 memDump("finish"); 1173 1191
Note:
See TracChangeset
for help on using the changeset viewer.
