IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 14, 2021, 3:30:26 PM (5 years ago)
Author:
eugene
Message:

improved plots, option to restrict to camera-confirmed sources

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/eam/teleff/warpmask.pro

    r41719 r41720  
    55$OUTDIR     = .
    66$OUTVERSION = XXX
     7
     8if (not($?USE_CAMSOURCE)) set USE_CAMSOURCE = 0
    79
    810$REF_FIELDS_WRP = Rref Dref Mref
     
    4042  # load the reference source table
    4143  # how to choose the name of the filter?
    42   data $refsrcs
    4344  # NOTE: Mref is chosen to match filter for this exposure
    44   data $refsrcs; read -fits DATA $REF_FIELDS_WRP
     45  data $refsrcs                 ;
     46  if ($USE_CAMSOURCE)
     47   read -fits DATA Rref_out Dref_out Mref_out
     48   set Rref = Rref_out
     49   set Dref = Dref_out
     50   set Mref = Mref_out
     51  else
     52    read -fits DATA $REF_FIELDS_WRP
     53  end
     54
    4555  set Nref = ramp(Rref)
    4656  if ($VERBOSE) echo "loaded Rref[] sources from reference $refsrcs"
Note: See TracChangeset for help on using the changeset viewer.