# create the data files needed to run all the speedups. Since the
# files take up space, oly the core files are retained and the
# actual files can be rebuild with this script. Files are named
# with the form
#
#         pict.#.res   e.g. col.2.512
#
# which means use the columbine picture using option 2 and a y resolution
# of 512
#

cd ../data;
rm -f col.*;
cat mode2 res200 cube > cube.2.200;
cat mode3 res200 cube > cube.3.200;
cat mode2 res512 cube > cube.2.512;
cat mode3 res512 cube > cube.3.512;

rm -f col.*;
cat mode2 res200 columbine > col.2.200;
cat mode3 res200 columbine > col.3.200;
cat mode2 res512 columbine > col.2.512;
cat mode3 res512 columbine > col.3.512;

rm -f rand.*;
cat mode2 res200 random > rand.2.200;
cat mode3 res200 random > rand.3.200;
cat mode2 res512 random > rand.2.512;
cat mode3 res512 random > rand.3.512;

echo "Data files recreated"
