IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 26 and Version 27 of Processing


Ignore:
Timestamp:
Apr 9, 2010, 3:55:11 PM (16 years ago)
Author:
rhenders
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Processing

    v26 v27  
    247247 * restart pantasks (as above)
    248248
     249= Queuing data with chiptool =
     250
     251Before pantasks can used to manage processing of a particular label, {{{chiptool}}} must first be run to queue data and create that label. The custom here is to write a small script that runs {{{chiptool}}} with the necessary arguments. This script is then left in the {{{stdscience}}} sub-directory with the same name as the survey in question (M31, MD04 etc). This is so that there is a record of what has been queued. An example script would be
     252
     253{{{
     254#!/bin/csh -f
     255
     256set label = "M31.Run5.20100408"
     257
     258set options = ""
     259set options = "$options -dbname gpc1"
     260set options = "$options -definebyquery"
     261set options = "$options -set_end_stage warp"
     262set options = "$options -set_tess_id M31.V0"
     263set options = "$options -set_data_group M31.Run5b"
     264set options = "$options -set_dist_group M31"
     265set options = "$options -comment M31%"
     266set options = "$options -dateobs_begin 2009-12-09T00:00:00"
     267set options = "$options -dateobs_end 2010-03-01T00:00:00"
     268# set options = "$options -simple -pretend"
     269
     270chiptool $options -set_label $label -set_workdir neb://@HOST@.0/gpc1/$label
     271}}}
     272
    249273= Common issues =
     274
     275This section attempts to outline common issues encountered during processing and how to work through them.
    250276
    251277== stdscience ==