#! /bin/csh
#
# Create model result files for Sarah from 2008 through end of 2009.
#

set icr1=2065
set icr2=2086

set icr=$icr1

while ($icr < $icr2)
  mkdir cr$icr
  cd cr$icr
  cp /Library/WebServer/Documents/data/runs/cr$icr\-low/corhel_mas/helio_bc/r1.hdf ch.hdf
  cp /Library/WebServer/Documents/data/runs/cr$icr\-low/corhel_mas/corona/br002.hdf br-corona.hdf
  cp /Library/WebServer/Documents/data/runs/cr$icr\-low/corhel_mas/helio/carrington/br002.hdf br-helio.hdf
  cp /Library/WebServer/Documents/data/runs/cr$icr\-low/corhel_mas/helio/carrington/vr002.hdf vr-helio.hdf
  cd ../
  @ icr = $icr + 1
end

