IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 1 and Version 2 of AddstarPantasks


Ignore:
Timestamp:
Aug 27, 2010, 8:57:39 PM (16 years ago)
Author:
rhenders
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AddstarPantasks

    v1 v2  
     1
     2[[PageOutline]]
     3
    14== Running The !AddStar Pantasks ==
    25
     
    69 * make sure the appropriate modules are loaded in addstar's pantasks (addstar.pro, minidvodb.pro, survey.pro)
    710
    8  === setting up the !ThreePi catalog ===
     11 === Setting up the !ThreePi catalog ===
    912
    10  * survey.add.addstar !ThreePi.nightlyscience THREEPI.V1 !ThreePi
    11  * add.minidvodb !ThreePi THREEPI.V1.MINI THREEPI.V1 1 GPC1
    12  * add.label !ThreePi
     13NOTE: the order is important here due to a yet-to-be-resolved bug:
    1314
     15{{{
     16add.minidvodb ThreePi THREEPI.V1.MINI THREEPI.V1 1 GPC1
     17add.label ThreePi
     18}}}
    1419
    15  === a general example ===
     20now wait for there to be a {{{minidovdbRun}}} entry, then
     21
     22{{{
     23    survey.add.addstar ThreePi.nightlyscience THREEPI.V1 ThreePi
     24}}}
     25
     26 === A general example ===
    1627
    1728 * survey.add.addstar (label) (dvodb) (minidvodb_group)
     
    1930 * add.label (minidvodb_group)
    2031
    21  === the arguments ===
     32 === The arguments ===
    2233
    2334 * (label) - the label used in addtool -definebyquery to queue the exposures
     
    2839 * (camera) - I couldn't figure out how to suck this out of the available information, and it's needed, so you have to provide it on the command line.
    2940
    30  === what each task does ===
     41 === What each task does ===
    3142
    32  * survey.add.addstar - queues the exposures using addtool
    33  * add.minidvodb - creates the minidvodbRun table (like a survey task). This is essential for minidvodbs
    34  * add.label - it's pantasks - it needs to know what label to munch on.
     43 * {{{survey.add.addstar}}} - queues the exposures using addtool
     44 * {{{add.minidvodb}}} - creates the minidvodbRun table (like a survey task). This is essential for minidvodbs
     45 * {{{add.label}}} - it's pantasks - it needs to know what label to munch on.
    3546
    3647For other purposes, for example, if you have a different sort of query (not one that can be queued off of the label), do not run survey.add.addstar. You will still need add.minidvodb and add.label. You will have to queue the exposures using addtool
    3748
    38  === some 'by hand' examples ===
     49 === Some 'by hand' examples ===
    3950
    4051To queue a minidvodb (which will get merged automatically)
    4152
    42  * addtool -definebyquery -destreaked -comment %SAS% -set_dvodb ROYSAS.V1 -set_minidvodb_group RoySAS.V1 -set_minidvodb -set_label RoySAS.V1 -dbname gpc1
     53
     54{{{
     55 addtool -definebyquery -destreaked -comment %SAS% -set_dvodb ROYSAS.V1 -set_minidvodb_group RoySAS.V1 -set_minidvodb -set_label RoySAS.V1 -dbname gpc1
     56}}}
    4357
    4458in pantasks
    4559
    46  * add.minidvodb RoySAS.V1  ROYSAS.V1   ROYSAS.V1 1 GPC1
    47  * add.label RoySAS.V1
     60
     61{{{
     62add.minidvodb RoySAS.V1  ROYSAS.V1   ROYSAS.V1 1 GPC1
     63add.label RoySAS.V1
     64}}}
    4865
    4966To queue something that is not a minidvodb (this is not tested yet - I need to test it):
    5067
    51  * addtool -definebyquery -destreaked -comment %SAS% -set_dvodb ROYSAS.V1 -set_label RoySAS.V1 -dbname gpc1
     68{{{
     69addtool -definebyquery -destreaked -comment %SAS% -set_dvodb ROYSAS.V1 -set_label RoySAS.V1 -dbname gpc1
     70}}}
    5271
    5372in pantasks
    5473
    55  * add.label RoySAS.V1
     74{{{
     75add.label RoySAS.V1
     76}}}
    5677
    5778