Changeset 15323 for trunk/ppstamp/src/ppstamp.h
- Timestamp:
- Oct 16, 2007, 4:00:33 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ppstamp/src/ppstamp.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppstamp/src/ppstamp.h
r15280 r15323 16 16 #include "ppStats.h" 17 17 18 #define RECIPE_NAME "PPSTAMP" // Name of the recipe to use19 18 #define TIMERNAME "ppstamp" // Name of timer 20 19 … … 29 28 typedef struct { 30 29 // input arguments 31 doublecenterX;32 doublecenterY;33 doubledX;34 doubledY;30 int centerX; 31 int centerY; 32 int dX; 33 int dY; 35 34 double centerRA; 36 35 double centerDEC; 37 36 double dRA; 38 37 double dDEC; 39 bool celestialCenter; // true if center is in RA/dec40 bool celestialRange; // true if range is in RA/dec38 bool celestialCenter; // true if center is in RA/dec 39 bool celestialRange; // true if range is in RA/dec 41 40 psString chipName; 42 41 // 43 // Calculated Parameters42 // Calculated Values 44 43 // 45 int chip;46 int cell;47 44 psRegion roi; // roi in chip coordinates 48 // psPlane fpaCenter; // center of ROI in FPA coordinates 49 // ppstampROI fpaROI; // region of interest in FPA coordinates 45 50 46 } ppstampOptions; 51 47 … … 64 60 bool ppstampMakeStamp(pmConfig *config, ppstampOptions *); 65 61 66 // Loop over the input67 bool ppstampLoop(pmConfig *config, ppstampOptions *options);68 69 bool ppstampReadout(pmConfig *config, pmFPAview *view);70 71 62 // free memory, check for leaks 72 63 void ppstampCleanup (pmConfig *config, ppstampOptions *options); 73 74 #ifdef notyet75 // calculate stats, including MD576 bool ppstampStats (pmConfig *config, pmChip *chip, const pmFPAview *inputView);77 78 // write stats to output file79 bool ppstampStatsOutput (pmConfig *config);80 #endif81 64 82 65 /// Return short version information … … 90 73 ); 91 74 92 93 // calculate stats, including MD5 94 bool ppstampPixelStats (pmConfig *config, const pmFPAview *inputView); 95 96 // calculate stats from headers and concepts 97 bool ppstampMetadataStats (pmConfig *config); 98 99 void ppstampFileCheck (pmConfig *config); 75 psRegion *ppstampCellRegion(const pmCell *cell); 76 psRegion *ppstampChipRegion(const pmChip *chip); 100 77 101 78 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
