IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 5 and Version 6 of LAP_Czar


Ignore:
Timestamp:
Oct 14, 2011, 6:21:37 PM (15 years ago)
Author:
watersc1
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LAP_Czar

    v5 v6  
    2121}}}
    2222
     23== Defining a new region to work on ==
     24
     25In the ipp/trunk/tools directory is a script `LAP_regiontool.pl`.  This takes the boundaries of the region to be defined, and produces a list of `laptool -definerun` commands that can be used as a queuelist file to ensure new runs are automatically launched as old ones complete (defined in pantasks using `lap.define.queue /path/to/queuelist.file`).  The RA is assumed to be in hours unless the `--degrees` option is passed.  The commands to generate the current list of regions are listed below:
     26
     27{{{
     28 alias LAP_RT 'LAP_regiontool.pl --seq_id 8 --label LAP.ThreePi.20110809 --dist_group LAP.ThreePi --tess_id RINGS.V3 --radius 5 --dbname gpc1'
     29 LAP_RT --ra_min 21 --ra_max 22 --dec_min -30 --dec_max 10 > region_A.queue
     30 LAP_RT --ra_min 23 --ra_max 24 --dec_min -10 --dec_max 10 > region_B.queue
     31 LAP_RT --ra_min 20 --ra_max 21 --dec_min -30 --dec_max -20 > region_C.queue
     32 LAP_RT --ra_min 22 --ra_max 23 --dec_min -10 --dec_max 10 > region_D.queue
     33 LAP_RT --ra_min 23 --ra_max 24 --dec_min 30 --dec_max 50 > region_E.queue
     34 LAP_RT --ra_min 21 --ra_max 23 --dec_min 30 --dec_max 40 > region_F.queue
     35 LAP_RT --ra_min 21 --ra_max 22 --dec_min 10 --dec_max 30 > region_G.queue
     36 LAP_RT --ra_min 18 --ra_max 22 --dec_min 70 --dec_max 90 > region_H.queue
     37}}}
     38
     39Caveat: this script blocks the region into bands in declination, to allow regions of five filter coverage to be generated quickly.  Because of this, it cycles through the filters in a different way for each block, as it selects the last filter of the previous block as the first filter of the current block. 
    2340
    2441== Examples ==