IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18373 for trunk/ippMonitor


Ignore:
Timestamp:
Jun 29, 2008, 3:16:04 PM (18 years ago)
Author:
eugene
Message:

add stage to chip entries; consistent formatting for chip

Location:
trunk/ippMonitor
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/Makefile.in

    r18313 r18373  
    7171$(DESTWWW)/newImfile.php \
    7272$(DESTWWW)/guidePendingExp.php \
     73$(DESTWWW)/chipStageExp.php \
    7374$(DESTWWW)/chipPendingExp.php \
    7475$(DESTWWW)/chipPendingImfile.php \
     
    7677$(DESTWWW)/chipProcessedImfile.php \
    7778$(DESTWWW)/chipProcessedImfile_failure.php \
     79$(DESTWWW)/camStageExp.php \
    7880$(DESTWWW)/camPendingExp.php \
    7981$(DESTWWW)/camProcessedExp.php \
  • trunk/ippMonitor/def/chipPendingExp.d

    r18340 r18373  
    1717FIELD rawExp.exp_name,           5, %s,     Exp Name,    value,  rawImfile.php,  ARG1
    1818FIELD chipRun.chip_id,           7, %d,     chip ID
     19FIELD chipRun.state,             7, %s,     state
    1920FIELD rawExp.telescope,         10, %s,     Telescope
    2021FIELD rawExp.camera,            10, %s,     Camera
  • trunk/ippMonitor/def/chipProcessedExp.d

    r18193 r18373  
    55
    66# limit this table to non-OBJECT types of images
    7 WHERE chipRun.state = 'stop'
     7WHERE chipRun.state != 'run'
    88WHERE chipRun.exp_id = rawExp.exp_id
    99
     
    1818FIELD rawExp.exp_name,           5, %s,     Exp Name,    value,  chipProcessedImfile.php, ARG2
    1919FIELD chipRun.chip_id,           7, %d,     chip ID
     20FIELD chipRun.state,             7, %s,     state
    2021FIELD rawExp.telescope,         10, %s,     Telescope
    2122FIELD rawExp.camera,            10, %s,     Camera
     
    2324FIELD rawExp.ra,                 8, %10.6f, RA,           op=OP1     
    2425FIELD rawExp.decl,               8, %10.6f, DEC,          op=OP2
    25 FIELD rawExp.object,            10, %s,     Object
     26FIELD rawExp.object,             8, %s,     Object
    2627FIELD rawExp.filter,            10, %s,     FILTER
    2728FIELD rawExp.exp_time,           5, %.2f,     exp_time   
    28 FIELD rawExp.airmass,            5, %.2f,     airmass     
     29FIELD rawExp.airmass,            5, %.4f,     airmass     
    2930FIELD rawExp.bg,                 5, %.2f,     backgnd
    3031FIELD rawExp.bg_stdev,           5, %.2f,     stdev   
     32FIELD rawExp.comment,           65, %s,     Comment
    3133
    3234# FIELD rawExp.bg_mean_stdev,    5, %s,     <backgnd>
  • trunk/ippMonitor/def/chipProcessedImfile.d

    r18340 r18373  
    2424FIELD rawExp.exp_name,                    5, %s,     Exp Name,    value,  chipProcessedImfile.php, ARG2
    2525FIELD chipProcessedImfile.class_id,       5, %s,     Class ID
    26 FIELD chipRun.chip_id,                    7, %s,     chip ID
     26FIELD chipRun.chip_id,                    7, %d,     chip ID
     27FIELD chipRun.state,                      7, %s,     state
    2728FIELD rawExp.telescope,                  10, %s,     Telescope
    2829FIELD rawExp.camera,                     10, %s,     Camera
  • trunk/ippMonitor/def/chipProcessedImfile_failure.d

    r18340 r18373  
    2626FIELD chipProcessedImfile.class_id,       5, %s,     Class ID
    2727FIELD chipRun.chip_id,                    7, %d,     chip ID
     28FIELD chipRun.state,                      7, %s,     state
    2829FIELD rawExp.telescope,                  10, %s,     Telescope
    2930FIELD rawExp.camera,                     10, %s,     Camera
  • trunk/ippMonitor/def/chipStageExp.d

    r18340 r18373  
    44MENU  ipp.science.dat
    55
    6 # limit this table to non-OBJECT types of images
    7 # WHERE chipRun.state = 'run'
    86WHERE chipRun.exp_id = rawExp.exp_id
    97
     
    2119FIELD rawExp.camera,            10, %s,     Camera
    2220FIELD rawExp.dateobs,           19, %T,     Date/Time
    23 FIELD rawExp.ra,                 5, %10.6f, RA,          op=OP1   
    24 FIELD rawExp.decl,               5, %10.6f, DEC,         op=OP2
     21FIELD rawExp.ra,                 8, %10.6f, RA,          op=OP1   
     22FIELD rawExp.decl,               8, %10.6f, DEC,         op=OP2
    2523FIELD rawExp.object,             8, %s,     Object
    2624FIELD rawExp.filter,            10, %s,     FILTER
  • trunk/ippMonitor/raw/ipp.php

    r18340 r18373  
    613613  }
    614614
    615   echo "<b>insert log</b><br>\n";
    616   echo "<b>basename: $basename</b><br>\n";
    617   echo "<b>class_id: $class_id</b><br>\n";
    618   echo "<b>camera:   $camera</b><br>\n";
     615  // echo "<b>insert log</b><br>\n";
     616  // echo "<b>basename: $basename</b><br>\n";
     617  // echo "<b>class_id: $class_id</b><br>\n";
     618  // echo "<b>camera:   $camera</b><br>\n";
    619619
    620620  if (! $class_id) { $class_id = "NONE"; }
Note: See TracChangeset for help on using the changeset viewer.