IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 17, 2022, 3:27:16 PM (4 years ago)
Author:
eugene
Message:

add fpcamera.pro; improvements to automate.pro and simtest.pro

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20220316/ippTasks/automate.pro

    r24189 r42204  
    1717# DONE (action finished)
    1818
     19macro automate.status
     20
     21  ## Pull out the ones that are to be run regularly
     22  local npages
     23  book npages automate -var npages
     24  for i 0 $npages
     25    book getpage automate $i -var pageName
     26    echo $i : $pageName
     27    book getword automate $pageName pantaskState -var myState
     28    if ("$myState" != "NULL")
     29      echo $pageName : $myState
     30    end
     31  end
     32end
     33
    1934macro automate.reset
    2035  ## probably should not always init
     
    2742    break
    2843  end
    29   queueload tmp -x "cat $MODULES:0/$1"
     44
     45  file $1 isFound
     46  if ($isFound)
     47    queueload tmp -x "cat $1"
     48  else
     49    # search module path list for existing file
     50    queueload tmp -x "cat $MODULES:0/$1"
     51  end
    3052
    3153  pwd -var cwd
     54  $username = `whoami`
    3255
    3356  ## interpolate standard values
     
    3558  queuesubstr tmp @DBNAME@ $3
    3659  queuesubstr tmp @CWD@ $cwd
    37 
    38   $username = `whoami`
    3960  queuesubstr tmp @USER@ $username
    4061
Note: See TracChangeset for help on using the changeset viewer.