IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 9, 2008, 7:42:30 AM (19 years ago)
Author:
eugene
Message:

setting up chip/host assignment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20080109/ippTasks/pantasks.pro

    r15780 r16054  
    339339  ??
    340340end
     341
     342macro set.host.for.camera
     343  if ($0 != 3)
     344    echo "USAGE: set.host.for.camera (camera) (class_id)"
     345    break
     346  end
     347
     348  if (not($parallel))
     349    host local
     350    return
     351  end
     352
     353  # XXX need to catch missing camera and/or chiphosts table and fallback on anyhost
     354  book getword chiphosts $1 $2 -var $host
     355
     356  if ("$host" == "NULL")
     357    host anyhost
     358  else
     359    host $host
     360  end
     361end
     362
     363
Note: See TracChangeset for help on using the changeset viewer.