IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 14 and Version 15 of PSPSFlags_SAS10


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

--

Legend:

Unmodified
Added
Removed
Modified
  • PSPSFlags_SAS10

    v14 v15  
    6666Example to select detections which are extended (sgSep > 3)
    6767
    68 WHERE (Detection.infoFlag & 0x4000 != 0)
     68    WHERE (Detection.infoFlag & 0x4000 != 0)
    6969
    7070To find stack detections that have radial aperture measurements
    7171
    72 WHERE (StackDetection.infoFlag & 0x08000000 != 0)
     72    WHERE (StackDetection.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(StackDetection.infoFlag / 0x100000000 AS INT) & 4 = 0
    9898
    99 To remove very bright saturated stars
     99To 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(StackDetection.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)
    … …  
    127127Example to select the StackDetections that supplied their Object's values for the "stack columns"
    128128
    129 WHERE (CAST(StackDetectionFull.infoFlag / 0x200000000000 AS INT) & 0x20000) != 0
     129    WHERE (CAST(StackDetectionFull.infoFlag / 0x200000000000 AS INT) & 0x20000) != 0
    130130
    131131}}}