IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 14027


Ignore:
Timestamp:
Jul 5, 2007, 3:35:32 PM (19 years ago)
Author:
jhoblitt
Message:

remove regtool_find_unprocessed_imfile.sql

Location:
trunk/ippTools/share
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/Makefile.am

    r14026 r14027  
    1616        difftool_skyfile.sql \
    1717        difftool_todiffskyfile.sql \
    18         regtool_find_unprocessed_imfile.sql \
    1918        regtool_pendingexp.sql \
    2019        regtool_pendingimfile.sql \
  • trunk/ippTools/share/camtool_find_pendingexp.sql

    r14023 r14027  
    44SELECT
    55    camRun.*,
     6    rawExp.exp_tag,
    67    rawExp.exp_id,
    78    rawExp.exp_name,
  • trunk/ippTools/share/camtool_find_pendingimfile.sql

    r14023 r14027  
    1 SELECT * FROM
     1SELECT DISTINCT * FROM
    22     -- the subselect is so where criteria can be specified without knowing
    33     -- which table the field came from
    44    (SELECT
    5         camPendingExp.*,
    6         chipProcessedExp.exp_id,
    7         chipProcessedExp.guide_id,
     5        camRun.*,
     6        chipProcessedImfile.exp_id,
    87        chipProcessedImfile.class_id,
    98        chipProcessedImfile.uri,
     
    1615        rawExp.telescope,
    1716        rawExp.filelevel
    18     FROM camPendingExp
    19     JOIN chipProcessedExp
     17    FROM camRun
     18    JOIN chipRun
    2019        USING(chip_id)
    2120    JOIN chipProcessedImfile
    2221        USING(chip_id)
    2322    JOIN rawExp
    24         ON chipProcessedExp.exp_id = rawExp.exp_id
     23        ON chipProcessedImfile.exp_id = rawExp.exp_id
    2524    LEFT JOIN camProcessedExp
    26         ON camPendingExp.cam_id = camProcessedExp.cam_id
     25        ON camRun.cam_id = camProcessedExp.cam_id
    2726    LEFT JOIN camMask
    28         ON camPendingExp.label = camMask.label
     27        ON camRun.label = camMask.label
    2928    WHERE
    3029        camProcessedExp.cam_id IS NULL
  • trunk/ippTools/share/camtool_find_processedexp.sql

    r14023 r14027  
    11SELECT
    22    camProcessedExp.*,
     3    rawExp.exp_tag,
    34    rawExp.exp_name,
    45    rawExp.camera,
Note: See TracChangeset for help on using the changeset viewer.