IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 15 and Version 16 of PSPSFlags_SAS10


Ignore:
Timestamp:
Nov 21, 2012, 12:53:07 PM (14 years ago)
Author:
bills
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PSPSFlags_SAS10

    v15 v16  
    6666Example to select detections which are extended (sgSep > 3)
    6767
    68     WHERE (Detection.infoFlag & 0x4000 != 0)
     68    WHERE (DetectionFull.infoFlag & 0x4000 != 0)
    6969
    7070To find stack detections that have radial aperture measurements
    7171
    72     WHERE (StackDetection.infoFlag & 0x08000000 != 0)
     72    WHERE (StackDetectionFull.infoFlag & 0x08000000 != 0)
    7373}}}
    7474
     
    9595Example to exclude "matched" stack detections (If set the detection values are from forced photometry).
    9696
    97     WHERE CAST(StackDetection.infoFlag / 0x100000000 AS INT) & 4 = 0
     97    WHERE CAST(StackDetectionFull.infoFlag / 0x100000000 AS INT) & 4 = 0
    9898
    9999To exclude detections from very bright saturated objects that were modeled with a radial profile
    100100
    101     WHERE CAST(StackDetection.infoFlag / 0x100000000 AS INT) & 0x1000 = 0
     101    WHERE CAST(StackDetectionFull.infoFlag / 0x100000000 AS INT) & 0x1000 = 0
    102102
    103103(Note this will never set for single frame detections since that mode of psphot is only used for stack photometry)