Changeset 13725
- Timestamp:
- Jun 8, 2007, 12:53:56 PM (19 years ago)
- Location:
- trunk/ippMonitor
- Files:
-
- 7 edited
-
def/detInputExp.d (modified) (2 diffs)
-
def/detNormalizedImfile.d (modified) (1 diff)
-
def/detRun.d (modified) (1 diff)
-
def/detRunSummary.d (modified) (2 diffs)
-
def/rawDetrendExp_detrend.d (modified) (2 diffs)
-
generate (modified) (2 diffs)
-
raw/ipp.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippMonitor/def/detInputExp.d
r13595 r13725 1 TABLE detInputExp 1 TABLE detInputExp, rawExp 2 2 TITLE detInputExp 3 3 FILE detInputExp.php 4 4 MENU ipp.detrend.dat 5 6 # limit this table to non-OBJECT types of images 7 WHERE detInputExp.exp_tag = rawExp.exp_tag 5 8 6 9 ARGS ARG1 rawImfile.exp_tag=$detInputExp.exp_tag … … 20 23 # field width name show link to extras 21 24 FIELD detInputExp.det_id, 7, det_id 25 FIELD detInputExp.iteration, 5, iteration 22 26 FIELD detInputExp.exp_tag, 20, exposure, value, rawImfile.php, ARG1 23 FIELD detInputExp.iteration, 5, iteration24 27 FIELD detInputExp.include, 7, include 25 FIELD *, 5, choose, value=resid, detResidImfile.php, ARG2 26 FIELD *, 5, choose, value=proc, detProcessedImfile.php, ARG3 27 28 FIELD rawExp.telescope, 10, Telescope 29 FIELD rawExp.camera, 10, Camera 30 FIELD rawExp.exp_type, 10, Type 31 FIELD rawExp.filter, 10, FILTER 32 FIELD rawExp.dateobs, 20, Date/Time 33 FIELD rawExp.exp_time, 5, exp_time 34 FIELD rawExp.sat_pixel_frac, 5, f(sat pixels) 35 FIELD rawExp.airmass, 5, airmass 36 FIELD rawExp.bg, 5, backgnd 37 FIELD rawExp.bg_stdev, 5, stdev 38 FIELD rawExp.bg_mean_stdev, 5, <backgnd> 39 FIELD *, 5, choose, value=resid, detResidImfile.php, ARG2 40 FIELD *, 5, choose, value=proc, detProcessedImfile.php, ARG3 -
trunk/ippMonitor/def/detNormalizedImfile.d
r13282 r13725 15 15 16 16 TAIL PHP insert_image ('PPIMAGE.JPEG1'); 17 TAIL PHP insert_log ('LOG.EXP'); -
trunk/ippMonitor/def/detRun.d
r13595 r13725 35 35 FIELD use_begin, 10, use_begin 36 36 FIELD use_end, 10, use_end 37 38 TD_CLASS list_off $state == 'drop' 39 TD_CLASS list_run $state == 'run' -
trunk/ippMonitor/def/detRunSummary.d
r13595 r13725 1 TABLE detRunSummary 1 TABLE detRunSummary, detRun 2 2 TITLE detRunSummary 3 3 FILE detRunSummary.php 4 4 MENU ipp.detrend.dat 5 6 WHERE detRunSummary.det_id = detRun.det_id 5 7 6 8 ARGS ARG1 detInputExp.det_id=$detRunSummary.det_id … … 19 21 FIELD detRunSummary.bg, 20, bg 20 22 FIELD detRunSummary.bg_stdev, 20, bg_stdev 23 FIELD detRun.state, 20, state, none 21 24 22 TD_CLASS list_off $detRunSummary.accept == 0 25 TD_CLASS list_off $detRun.state == 'drop' 26 TD_CLASS list_run $detRun.state == 'run' -
trunk/ippMonitor/def/rawDetrendExp_detrend.d
r13264 r13725 1 1 TABLE rawExp 2 2 TITLE Raw Detrend Exposures 3 FILE rawDetrendExp .php3 FILE rawDetrendExp_detrend.php 4 4 MENU ipp.detrend.dat 5 5 … … 17 17 FIELD dateobs, 20, Date/Time 18 18 FIELD exp_time, 5, exp_time 19 FIELD sat_pixel_frac, 5, f(sat pixels) 19 20 FIELD airmass, 5, airmass 20 21 FIELD bg, 5, backgnd -
trunk/ippMonitor/generate
r13595 r13725 85 85 # the TD_CLASS command sets up an alternate TD class 86 86 if ($key eq "TD_CLASS") { 87 $tdClass =$value;87 push @tdClasses, $value; 88 88 # print STDERR "found TD_CLASS\n"; 89 89 } … … 242 242 my ($field, $testline); 243 243 244 if ($tdClass eq "") { return; } 245 # print STDERR "write TD CLASS: $tdClass...\n"; 246 247 # TD_CLASS class field expression 248 ($class, $field, $testline) = split (" ", $tdClass, 3); 249 250 $field = &parse_fieldname ($field); 251 252 printf FILE " if ($field $testline) {\n"; 253 printf FILE " \$class = \"$class\";\n"; 254 printf FILE " }\n"; 244 if (@tdClasses == 0) { return; } 245 foreach $tdClass (@tdClasses) { 246 print STDERR "write TD CLASS: $tdClass...\n"; 247 248 # TD_CLASS class field expression 249 ($class, $field, $testline) = split (" ", $tdClass, 3); 250 251 $field = &parse_fieldname ($field); 252 253 printf FILE " if ($field $testline) {\n"; 254 printf FILE " \$class = \"$class\";\n"; 255 printf FILE " }\n"; 256 257 printf STDERR " if ($field $testline) {\n"; 258 printf STDERR " \$class = \"$class\";\n"; 259 printf STDERR " }\n"; 260 } 255 261 } 256 262 -
trunk/ippMonitor/raw/ipp.css
r13566 r13725 112 112 } 113 113 114 td.list_run { 115 text-align: left; 116 font-size: normal; 117 font-weight: normal; 118 vertical-align: top; 119 background: #ffa0a0; 120 background-color: #ffa0a0; 121 border: 2px solid #000000; 122 padding: 2px; 123 } 124 114 125 th.list { 115 126 text-align: left;
Note:
See TracChangeset
for help on using the changeset viewer.
