Changeset 10215
- Timestamp:
- Nov 27, 2006, 6:39:28 PM (19 years ago)
- Location:
- trunk/ppImage/src
- Files:
-
- 4 deleted
- 3 edited
-
ppImage.c (modified) (3 diffs)
-
ppImageDetrendFlat.c (deleted)
-
ppImageDetrendFringe.h (modified) (3 diffs)
-
ppImageDetrendMask.c (deleted)
-
ppImageDetrendPedestal.c (deleted)
-
ppImageParseCamera.c (modified) (1 diff)
-
ppImageParseDetrend.c (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImage.c
r8751 r10215 17 17 pmConfig *config = ppImageArguments(argc, argv); 18 18 if (config == NULL) { 19 psErrorStackPrint(stderr, " ");19 psErrorStackPrint(stderr, "Unable to parse command-line arguments."); 20 20 exit(1); 21 21 } … … 25 25 ppImageOptions *options = ppImageParseCamera(config); 26 26 if (options == NULL) { 27 psErrorStackPrint(stderr, " ");27 psErrorStackPrint(stderr, "Unable to parse camera."); 28 28 exit(1); 29 29 } … … 31 31 // Image Arithmetic Loop 32 32 if (!ppImageLoop(config, options)) { 33 psErrorStackPrint(stderr, " ");33 psErrorStackPrint(stderr, "Unable to loop over input"); 34 34 exit(1); 35 35 } 36 36 37 psLogMsg ("ppImage", 3, " complete ppImage run: %f sec\n", psTimerMark(TIMERNAME));37 psLogMsg ("ppImage", 3, "Complete ppImage run: %f sec\n", psTimerMark(TIMERNAME)); 38 38 39 39 // Cleaning up 40 40 ppImageCleanup(config, options); 41 41 42 return EXIT_SUCCESS; 42 43 } -
trunk/ppImage/src/ppImageDetrendFringe.h
r9952 r10215 6 6 #include "ppImageOptions.h" 7 7 8 // Measure fringes 8 9 bool ppImageDetrendFringeMeasure(pmReadout *readout, // Readout to measure 9 10 pmCell *fringe, // Fringe cell (each readout is a different component) … … 11 12 ); 12 13 14 // Solve the fringe system 13 15 bool ppImageDetrendFringeSolve(pmChip *scienceChip, // Chip with science 14 16 const pmChip *refChip, // Chip with reference fringes … … 16 18 ); 17 19 18 20 // Generate fringe frame 19 21 psImage *ppImageDetrendFringeGenerate(pmCell *science, // Science cell 20 22 pmCell *fringes // Fringe cell, one readout per fringe component -
trunk/ppImage/src/ppImageParseCamera.c
r10083 r10215 16 16 return NULL; 17 17 } 18 19 #if 0 20 // the input image defines the camera, and all recipes and options the follow 21 pmFPAfile *inputMask = pmFPAfileDefineFromArgs (&status, config, "PPIMAGE.INPUT.MASK", "INPUT.MASK"); 22 if (!status || !inputMask) { 23 psError(PS_ERR_IO, false, "Failed to build FPA from PPIMAGE.INPUT.MASK"); 24 return NULL; 25 } 26 27 // the input image defines the camera, and all recipes and options the follow 28 pmFPAfile *inputWeight = pmFPAfileDefineFromArgs (&status, config, "PPIMAGE.INPUT.WEIGHT", "INPUT.WEIGHT"); 29 if (!status || !inputWeight) { 30 psError(PS_ERR_IO, false, "Failed to build FPA from PPIMAGE.INPUT.WEIGHT"); 31 return NULL; 32 } 33 #endif 18 34 19 35 // add recipe options supplied on command line
Note:
See TracChangeset
for help on using the changeset viewer.
