IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18722


Ignore:
Timestamp:
Jul 24, 2008, 3:56:45 PM (18 years ago)
Author:
eugene
Message:

changing to new state values

Location:
trunk/ippMonitor/def
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/def/chipPendingExp.d

    r18373 r18722  
    55
    66# limit this table to non-OBJECT types of images
    7 WHERE chipRun.state = 'run'
     7WHERE chipRun.state = 'new'
    88WHERE chipRun.exp_id = rawExp.exp_id
    99
  • trunk/ippMonitor/def/chipPendingImfile.d

    r18340 r18722  
    1 TABLE chipRun, rawExp
     1TABLE chipRun, rawExp, rawImfile
    22TITLE Chip Pending Imfiles
    3 FILE  chipPendingExp.php
     3FILE  chipPendingImfile.php
    44MENU  ipp.science.dat
    55
    6 # limit this table to non-OBJECT types of images
    7 WHERE chipRun.state = 'run'
     6# XXX this query does not exclude imfiles already processed (unless the exp is done)
     7# I need to join against chipProcessedImfile and exclude ones where chipProcessedImfile.class_id is not NULL
     8
     9# limit this table to OBJECT types of images
     10WHERE chipRun.state = 'new'
    811WHERE chipRun.exp_id = rawExp.exp_id
     12WHERE rawImfile.exp_id = rawExp.exp_id
     13
    914
    1015ARGS  ARG1  exp_id=$chipRun.exp_id
     
    1621FIELD chipRun.exp_id,            5, %d,     Exp ID
    1722FIELD rawExp.exp_name,           5, %s,     Exp Name,    value,  rawImfile.php,  ARG1
     23FIELD rawImfile.class_id,        5, %s,     Class ID
    1824FIELD chipRun.chip_id,           7, %d,     chip ID
    1925FIELD chipRun.state,             7, %s,     state
  • trunk/ippMonitor/def/chipProcessedExp.d

    r18373 r18722  
    55
    66# limit this table to non-OBJECT types of images
    7 WHERE chipRun.state != 'run'
     7WHERE chipRun.state != 'new'
    88WHERE chipRun.exp_id = rawExp.exp_id
    99
Note: See TracChangeset for help on using the changeset viewer.