IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 21183 for trunk/ppSim


Ignore:
Timestamp:
Jan 26, 2009, 8:40:07 PM (17 years ago)
Author:
eugene
Message:

incorporating changes from 16bit mask upgrades (eam_branch_20081230)

Location:
trunk/ppSim/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppSim/src/ppSim.h

    r18011 r21183  
    130130bool ppSimInsertGalaxies (pmReadout *readout, psImage *expCorr, psArray *galaxies, pmConfig *config);
    131131
    132 bool ppSimMosaicChip(pmConfig *config, const psMaskType blankMask, const pmFPAview *view,
    133                      const char *outFile, const char *inFile);
     132bool ppSimMosaicChip(pmConfig *config, const psImageMaskType blankMask, const pmFPAview *view, const char *outFile, const char *inFile);
    134133
    135134bool ppSimPhotom (pmConfig *config, pmFPAview *view);
  • trunk/ppSim/src/ppSimMosaicChip.c

    r18712 r21183  
    22
    33// XXX this is essentially identical to ppImageMosaicChip
    4 bool ppSimMosaicChip(pmConfig *config, const psMaskType blankMask, const pmFPAview *view,
     4bool ppSimMosaicChip(pmConfig *config, const psImageMaskType blankMask, const pmFPAview *view,
    55                       const char *outFile, const char *inFile)
    66{
  • trunk/ppSim/src/ppSimPhotom.c

    r20410 r21183  
    1515    psphotInit ();
    1616
    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...
    1818    ppSimMosaicChip(config, blankMask, view, "PPSIM.FORCE.CHIP", "PPSIM.INPUT");
    1919    ppSimMosaicChip(config, blankMask, view, "PPSIM.FAKE.CHIP", "PPSIM.OUTPUT");
  • trunk/ppSim/src/ppSimPhotomReadout.c

    r21170 r21183  
    9696
    9797    // XXX fake sources should measure peak->x,y, force sources should not
    98     psMaskType maskVal = 0xff;
     98    psImageMaskType maskVal = 0xff;
    9999    psImage *significance = psphotSignificanceImage (readout, recipe, 1, maskVal);
    100100    ppSimDetections (significance, recipe, fakeSources);
  • trunk/ppSim/src/ppSimPhotomReadoutFake.c

    r21170 r21183  
    7676
    7777    // XXX fake sources should measure peak->x,y, force sources should not
    78     psMaskType maskVal = 0xff;
     78    psImageMaskType maskVal = 0xff;
    7979    psImage *significance = psphotSignificanceImage (readout, recipe, 1, maskVal);
    8080    ppSimDetections (significance, recipe, fakeSources);
  • trunk/ppSim/src/ppSimPhotomReadoutForce.c

    r21170 r21183  
    6969
    7070    // XXX fake sources should measure peak->x,y, force sources should not
    71     psMaskType maskVal = 0xff;
     71    psImageMaskType maskVal = 0xff;
    7272    psImage *significance = psphotSignificanceImage (readout, recipe, 1, maskVal);
    7373    ppSimDetections (significance, recipe, forceSources);
Note: See TracChangeset for help on using the changeset viewer.