Changeset 14096
- Timestamp:
- Jul 9, 2007, 5:10:37 PM (19 years ago)
- Location:
- trunk/ippMonitor/def
- Files:
-
- 4 edited
-
camPendingExp.d (modified) (1 diff)
-
camProcessedExp.d (modified) (1 diff)
-
chipPendingExp.d (modified) (1 diff)
-
chipProcessedExp.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippMonitor/def/camPendingExp.d
r14044 r14096 1 TABLE cam PendingExp, chipProcessedExp1 TABLE camRun, chipRun, rawExp 2 2 TITLE Camera Pending 3 3 FILE camPendingExp.php 4 4 MENU ipp.science.dat 5 5 6 WHERE camPendingExp.chip_id = chipProcessedExp.chip_id 6 WHERE camRun.state != 'stop' 7 WHERE camRun.chip_id = chipRun.chip_id 8 WHERE chipRun.exp_id = rawExp.exp_id 7 9 8 ARGS ARG1 chip ProcessedExp.exp_id=$chipProcessedExp.exp_id10 ARGS ARG1 chipRun.exp_id=$chipRun.exp_id 9 11 10 12 # field size name show link to extras 11 FIELD chipProcessedExp.exp_id, 20, exposure ID, value, chipProcessedImfile.php, ARG1 12 FIELD camPendingExp.chip_id, 20, chip ID, value, chipProcessedExp.php, ARG1 13 FIELD camPendingExp.cam_id, 20, cam ID 13 FIELD camRun.cam_id, 5, chip ID, value, chipProcessedExp.php, ARG1 14 FIELD chipRun.chip_id, 5, cam ID 15 FIELD chipRun.exp_id, 5, exposure ID, value, chipProcessedImfile.php, ARG1 16 FIELD rawExp.exp_name, 5, Exp Name, value, rawImfile.php, ARG1 17 FIELD rawExp.telescope, 10, Telescope 18 FIELD rawExp.camera, 10, Camera 19 FIELD rawExp.dateobs, 20, Date/Time 20 FIELD rawExp.filter, 10, FILTER 21 FIELD rawExp.ra, 5, RA 22 FIELD rawExp.decl, 5, Dec 23 FIELD rawExp.exp_time, 5, exp_time 24 FIELD rawExp.sat_pixel_frac, 5, f(sat pixels) 25 FIELD rawExp.airmass, 5, airmass 26 FIELD rawExp.bg, 5, backgnd 27 FIELD rawExp.bg_stdev, 5, stdev 28 FIELD rawExp.bg_mean_stdev, 5, <backgnd> -
trunk/ippMonitor/def/camProcessedExp.d
r14044 r14096 1 TABLE cam ProcessedExp, chipProcessedExp, rawExp2 TITLE Camera -Level Processed Exposures1 TABLE camRun, camProcessedExp, chipRun, rawExp 2 TITLE Camera Processed 3 3 FILE camProcessedExp.php 4 4 MENU ipp.science.dat 5 5 6 WHERE camProcessedExp.chip_id = chipProcessedExp.chip_id 7 WHERE chipProcessedExp.exp_id = rawExp.exp_id 6 WHERE camRun.state = 'stop' 7 WHERE camRun.chip_id = chipRun.chip_id 8 WHERE chipRun.exp_id = rawExp.exp_id 9 WHERE camProcessedExp.cam_id = camRun.cam_id 10 WHERE camProcessedExp.chip_id = camRun.chip_id 8 11 9 # define image names to be used below 10 # IMAGE VAR basename filerule camera class_id 11 IMAGE JPEG $camProcessedExp.path_base PPIMAGE.JPEG2 $rawExp.camera NONE 12 ARGS ARG1 chipRun.exp_id=$chipRun.exp_id 12 13 13 # show all chips for this camera exposure, summary stats from the camera tables 14 ARGS ARG1 camera=$rawExp.camera 15 ARGS ARG1 basename=$camProcessedExp.path_base 16 ARGS ARG1 exp_id=$chipProcessedExp.exp_id 14 # field size name show link to extras 15 FIELD camRun.cam_id, 5, chip ID, value, chipProcessedExp.php, ARG1 16 FIELD chipRun.chip_id, 5, cam ID 17 FIELD chipRun.exp_id, 5, exposure ID, value, chipProcessedImfile.php, ARG1 18 FIELD rawExp.exp_name, 5, Exp Name, value, rawImfile.php, ARG1 19 FIELD rawExp.telescope, 10, Telescope 20 FIELD rawExp.camera, 10, Camera 21 FIELD rawExp.dateobs, 20, Date/Time 22 FIELD rawExp.filter, 10, FILTER 23 FIELD rawExp.ra, 5, RA 24 FIELD rawExp.decl, 5, Dec 25 FIELD rawExp.exp_time, 5, exp_time 26 FIELD rawExp.sat_pixel_frac, 5, f(sat pixels) 27 FIELD rawExp.airmass, 5, airmass 28 FIELD rawExp.bg, 5, backgnd 29 FIELD rawExp.bg_stdev, 5, stdev 30 FIELD rawExp.bg_mean_stdev, 5, <backgnd> 17 31 18 # field size name show link to extras 19 FIELD chipProcessedExp.exp_id, 5, Exp ID, value 20 FIELD *, 8, image, image=JPEG, chipProcessedImfile.php, ARG1 21 FIELD camProcessedExp.bg, 8, backgnd, value 22 FIELD camProcessedExp.bg_mean_stdev, 8, [stdev], value 23 FIELD camProcessedExp.bg_stdev, 8, stdev, value 24 FIELD camProcessedExp.path_base, 20, path_base, value 25 FIELD camProcessedExp.uri, 20, uri, value 32 FIELD camProcessedExp.n_stars, 5, Nstars 33 FIELD camProcessedExp.n_astrom, 5, Nastrom 34 FIELD camProcessedExp.sigma_ra, 5, sigma ra 35 FIELD camProcessedExp.fwhm, 5, FHWM -
trunk/ippMonitor/def/chipPendingExp.d
r14044 r14096 1 TABLE chip PendingExp, rawExp2 TITLE chip PendingExp1 TABLE chipRun, rawExp 2 TITLE chip Pending Exposures 3 3 FILE chipPendingExp.php 4 4 MENU ipp.science.dat 5 5 6 6 # limit this table to non-OBJECT types of images 7 WHERE chip PendingExp.exp_id = rawExp.exp_id7 WHERE chipRun.exp_id = rawExp.exp_id 8 8 9 ARGS ARG1 exp_id=$ exp_id9 ARGS ARG1 exp_id=$chipRun.exp_id 10 10 11 11 # field size name show link to extras 12 FIELD chipPendingExp.chip_id, 7, chip ID 13 FIELD chipPendingExp.exp_id, 5, exposure ID, value, rawImfile.php, ARG1 12 FIELD chipRun.chip_id, 7, chip ID 13 FIELD chipRun.exp_id, 5, Exp ID 14 FIELD rawExp.exp_name, 5, Exp Name, value, rawImfile.php, ARG1 14 15 FIELD rawExp.telescope, 10, Telescope 15 16 FIELD rawExp.camera, 10, Camera -
trunk/ippMonitor/def/chipProcessedExp.d
r14044 r14096 1 TABLE chip ProcessedExp2 TITLE chip ProcessedExp3 FILE chipP rocessedExp.php1 TABLE chipRun, rawExp, chipProcessedImfile 2 TITLE chip Processed Exposures 3 FILE chipPendingExp.php 4 4 MENU ipp.science.dat 5 5 6 ARGS ARG1 exp_id=$exp_id 6 # limit this table to non-OBJECT types of images 7 WHERE chipRun.state = 'stop' 8 WHERE chipRun.exp_id = rawExp.exp_id 9 WHERE chipProcessedImfile.exp_id = chipRun.exp_id 10 WHERE chipProcessedImfile.chip_id = chipRun.chip_id 7 11 8 # field size name show link to extras 9 FIELD exp_id, 20, Exp ID, value, chipProcessedImfile.php, ARG1 10 FIELD chip_id, 20, Chip ID 11 FIELD guide_id, 20, guide ID, value, guideProcessedExp.php, ARG1 12 FIELD label, 20, label 13 FIELD workdir, 20, workdir 12 ARGS ARG1 exp_id=$chipRun.exp_id 13 14 # field size name show link to extras 15 FIELD chipRun.chip_id, 7, chip ID 16 FIELD chipRun.exp_id, 5, Exp ID 17 FIELD rawExp.exp_name, 5, Exp Name, value, rawImfile.php, ARG1 18 FIELD rawExp.telescope, 10, Telescope 19 FIELD rawExp.camera, 10, Camera 20 FIELD rawExp.dateobs, 20, Date/Time 21 FIELD rawExp.filter, 10, FILTER 22 FIELD rawExp.ra, 5, RA 23 FIELD rawExp.decl, 5, Dec 24 FIELD rawExp.exp_time, 5, exp_time 25 FIELD rawExp.sat_pixel_frac, 5, f(sat pixels) 26 FIELD rawExp.airmass, 5, airmass 27 FIELD rawExp.bg, 5, backgnd 28 FIELD rawExp.bg_stdev, 5, stdev 29 FIELD rawExp.bg_mean_stdev, 5, <backgnd> 30 31 FIELD chipProcessedImfile.n_stars, 5, Nstars 32 FIELD chipProcessedImfile.n_astrom, 5, Nastrom 33 FIELD chipProcessedImfile.sigma_ra, 5, sigma ra 34 FIELD chipProcessedImfile.fwhm, 5, FHWM 35 36 # FIELD chipPendingExp.reduction, 20, reduction 37 # FIELD chipPendingExp.guide_id, 20, guide ID
Note:
See TracChangeset
for help on using the changeset viewer.
