IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 3, 2011, 2:25:17 PM (15 years ago)
Author:
watersc1
Message:

difftool: add the ability to specify both the input_warp_id and the template_warp_id. This allows us to explicitly say "subtract this one from that one."
stacktool: fix stackAssociation listing to supply the information, even if stackSumSkyfile isn't populated yet.
laptool: LAP now works cleanly from -definesequence through the final stack stage for runs that do not require a quickstack.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/20110406/ippTools/share/laptool_definerun.sql

    r31407 r31428  
    1 SELECT exp_id, chip_id, false as private, true as active, false as pairwise
    2   FROM rawExp
    3   LEFT JOIN
    4   (SELECT exp_id, chip_id
    5      FROM lapExp
    6      where private IS FALSE
    7      AND data_state = 'full') AS old USING(exp_id)
     1SELECT want.exp_id, have.chip_id, false as private, true as active, false as pairwise
     2  FROM
     3  (SELECT exp_id FROM rawExp
    84     WHERE rawExp.exp_type= 'OBJECT' AND
    95     rawExp.dateobs >= '2009-04-01T00:00:00.000000' AND
    106-- Position restriction goes here.
     7     @WHERE@
     8  ) AS want
     9  LEFT JOIN
     10  (SELECT *
     11     FROM lapExp
     12     where private IS FALSE
     13     AND chip_id IS NOT NULL
     14     AND active = TRUE ) AS have USING(exp_id)
     15     
     16
Note: See TracChangeset for help on using the changeset viewer.