- Timestamp:
- May 3, 2010, 8:50:52 AM (16 years ago)
- Location:
- branches/simtest_nebulous_branches
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ippTools/share/difftool_skyfile.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/simtest_nebulous_branches
- Property svn:mergeinfo changed
-
branches/simtest_nebulous_branches/ippTools/share/difftool_skyfile.sql
r24512 r27840 5 5 diffRun.state, 6 6 diffRun.workdir, 7 diffRun.label, 7 8 diffRun.bothways, 8 camProcessedExp.zpt_obs, 9 camProcessedExp.zpt_stdev, 10 camProcessedExp.zpt_lq, 11 camProcessedExp.zpt_uq, 12 rawExp.exp_time, 13 rawExp.camera, 9 diffRun.diff_mode, 14 10 warp1, 15 11 stack1, 16 12 warp2, 17 stack2 13 stack2, 14 -- The following are only valid for warps 15 -- XXX This needs to be more clever to handle diffs between stacks 16 -- Zero points are appropriate for both forward and backward diffs 17 camProcessedInput.zpt_obs, 18 camProcessedInput.zpt_stdev, 19 camProcessedInput.zpt_lq, 20 camProcessedInput.zpt_uq, 21 rawInput.comment, 22 rawInput.exp_time, 23 rawInput.camera, 24 rawInput.exp_name AS exp_name_1, 25 rawInput.exp_id AS exp_id_1, 26 chipInput.chip_id AS chip_id_1, 27 camInput.cam_id AS cam_id_1, 28 fakeInput.fake_id AS fake_id_1, 29 camProcessedInput.sigma_ra AS sigma_ra_1, 30 camProcessedInput.sigma_dec AS sigma_dec_1, 31 rawTemplate.exp_name AS exp_name_2, 32 rawTemplate.exp_id AS exp_id_2, 33 chipTemplate.chip_id AS chip_id_2, 34 camTemplate.cam_id AS cam_id_2, 35 fakeTemplate.fake_id AS fake_id_2, 36 camProcessedTemplate.sigma_ra AS sigma_ra_2, 37 camProcessedTemplate.sigma_dec AS sigma_dec_2 18 38 FROM diffRun 19 39 JOIN diffSkyfile USING(diff_id) 20 40 JOIN diffInputSkyfile USING(diff_id, skycell_id) 21 JOIN warpRun 22 -- NOTE: joining input only! 23 -- This is so that we can get the correct zero point 24 -- XXX This needs to be more clever to handle diffs between stacks 25 ON warpRun.warp_id = diffInputSkyfile.warp1 26 JOIN fakeRun USING(fake_id) 27 JOIN camRun USING(cam_id) 28 JOIN camProcessedExp USING(cam_id) 29 JOIN chipRun USING(chip_id) 30 JOIN rawExp USING(exp_id) 41 LEFT JOIN warpRun AS warpInput 42 ON warpInput.warp_id = diffInputSkyfile.warp1 43 LEFT JOIN fakeRun AS fakeInput 44 ON fakeInput.fake_id = warpInput.fake_id 45 LEFT JOIN camRun AS camInput 46 ON camInput.cam_id = fakeInput.cam_id 47 LEFT JOIN camProcessedExp AS camProcessedInput 48 ON camProcessedInput.cam_id = camInput.cam_id 49 LEFT JOIN chipRun AS chipInput 50 ON chipInput.chip_id = camInput.chip_id 51 LEFT JOIN rawExp AS rawInput 52 ON rawInput.exp_id = chipInput.exp_id 53 LEFT JOIN warpRun AS warpTemplate 54 ON warpTemplate.warp_id = diffInputSkyfile.warp2 55 LEFT JOIN fakeRun AS fakeTemplate 56 ON fakeTemplate.fake_id = warpTemplate.fake_id 57 LEFT JOIN camRun AS camTemplate 58 ON camTemplate.cam_id = fakeTemplate.cam_id 59 LEFT JOIN camProcessedExp AS camProcessedTemplate 60 ON camProcessedTemplate.cam_id = camTemplate.cam_id 61 LEFT JOIN chipRun AS chipTemplate 62 ON chipTemplate.chip_id = camTemplate.chip_id 63 LEFT JOIN rawExp AS rawTemplate 64 ON rawTemplate.exp_id = chipTemplate.exp_id
Note:
See TracChangeset
for help on using the changeset viewer.
