
#
#                     Copyright Notice
#
# This software was developed at the National Institute of Standards
# and Technology (NIST) by employees of the Federal Government in the
# course of their official duties. Pursuant to title 17 Section 105
# of the United States Code this software is not subject to copyright
# protection and is in the public domain.
#
# This is an experimental system.  NIST assumes no responsibility
# whatsoever for its use by other parties, and makes no guarantees,
# expressed or implied, about its quality, reliability, or any other
# characteristic.
#
# We would appreciate acknowledgment if the software is used.
#

#
# This script is intended to gather the errors into the following files:
# 
#    Main.ERR
#    MainIG.ERR
#    MainDP.ERR
#    Big.ERR
#    AltEll.ERR
#    IcosDP.ERR
#    BothDP.ERR


# Main*.ERR
rm -f Main.ERR
rm -f MainIG.ERR
rm -f MainDP.ERR
cat IG/E/*.err IG/PE/*.err IG/PH/*.err IG/H1/*.err > MainIG.ERR
cat DP/E/*.err DP/PE/*.err DP/PH/*.err DP/H1/*.err > MainDP.ERR
cat MainIG.ERR MainDP.ERR > Main.ERR


# Big.ERR
rm -f Big.ERR
cat IG.big/E/*.err IG.big/PE/*.err IG.big/PH/*.err IG.big/H1/*.err > Big.ERR
cat DP.big/E/*.err DP.big/PE/*.err DP.big/PH/*.err DP.big/H1/*.err >> Big.ERR


# AltEll.ERR
rm -f AltEll.ERR
cat IG.altEll/E/*.err DP.altEll/E/*.err > AltEll.ERR


# IcosDP.ERR
rm -f IcosDP.ERR
cat DP.altEll.Icos/E/*.err > IcosDP.ERR


# BothDP.ERR
rm -f BothDP.ERR
cat MainDP.ERR IcosDP.ERR > BothDP.ERR

rm -f figsAndModels/*.ERR
cp *.ERR figsAndModels


