#! /bin/csh -fe
# Last edited on 1999-11-14 05:37:03 by hcgl

set usage = "$0 RUN"

if ( $#argv != 1 ) then
  echo "usage: ${usage}"; exit 1
endif
set run = "$1"; shift;

foreach band ( `cat bands-filter.txt | sort -nr` )
  echo "band = ${band}"
  run-PZEncodeCurvature-band ${run} ${band}
end
