Changeset 21183 for trunk/ppSim
- Timestamp:
- Jan 26, 2009, 8:40:07 PM (17 years ago)
- Location:
- trunk/ppSim/src
- Files:
-
- 6 edited
-
ppSim.h (modified) (1 diff)
-
ppSimMosaicChip.c (modified) (1 diff)
-
ppSimPhotom.c (modified) (1 diff)
-
ppSimPhotomReadout.c (modified) (1 diff)
-
ppSimPhotomReadoutFake.c (modified) (1 diff)
-
ppSimPhotomReadoutForce.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppSim/src/ppSim.h
r18011 r21183 130 130 bool ppSimInsertGalaxies (pmReadout *readout, psImage *expCorr, psArray *galaxies, pmConfig *config); 131 131 132 bool ppSimMosaicChip(pmConfig *config, const psMaskType blankMask, const pmFPAview *view, 133 const char *outFile, const char *inFile); 132 bool ppSimMosaicChip(pmConfig *config, const psImageMaskType blankMask, const pmFPAview *view, const char *outFile, const char *inFile); 134 133 135 134 bool ppSimPhotom (pmConfig *config, pmFPAview *view); -
trunk/ppSim/src/ppSimMosaicChip.c
r18712 r21183 2 2 3 3 // XXX this is essentially identical to ppImageMosaicChip 4 bool ppSimMosaicChip(pmConfig *config, const ps MaskType blankMask, const pmFPAview *view,4 bool ppSimMosaicChip(pmConfig *config, const psImageMaskType blankMask, const pmFPAview *view, 5 5 const char *outFile, const char *inFile) 6 6 { -
trunk/ppSim/src/ppSimPhotom.c
r20410 r21183 15 15 psphotInit (); 16 16 17 int blankMask = 0; // XXX not sure what this should be set to...17 psImageMaskType blankMask = 1; // XXX not sure what this should be set to... 18 18 ppSimMosaicChip(config, blankMask, view, "PPSIM.FORCE.CHIP", "PPSIM.INPUT"); 19 19 ppSimMosaicChip(config, blankMask, view, "PPSIM.FAKE.CHIP", "PPSIM.OUTPUT"); -
trunk/ppSim/src/ppSimPhotomReadout.c
r21170 r21183 96 96 97 97 // XXX fake sources should measure peak->x,y, force sources should not 98 ps MaskType maskVal = 0xff;98 psImageMaskType maskVal = 0xff; 99 99 psImage *significance = psphotSignificanceImage (readout, recipe, 1, maskVal); 100 100 ppSimDetections (significance, recipe, fakeSources); -
trunk/ppSim/src/ppSimPhotomReadoutFake.c
r21170 r21183 76 76 77 77 // XXX fake sources should measure peak->x,y, force sources should not 78 ps MaskType maskVal = 0xff;78 psImageMaskType maskVal = 0xff; 79 79 psImage *significance = psphotSignificanceImage (readout, recipe, 1, maskVal); 80 80 ppSimDetections (significance, recipe, fakeSources); -
trunk/ppSim/src/ppSimPhotomReadoutForce.c
r21170 r21183 69 69 70 70 // XXX fake sources should measure peak->x,y, force sources should not 71 ps MaskType maskVal = 0xff;71 psImageMaskType maskVal = 0xff; 72 72 psImage *significance = psphotSignificanceImage (readout, recipe, 1, maskVal); 73 73 ppSimDetections (significance, recipe, forceSources);
Note:
See TracChangeset
for help on using the changeset viewer.
