Improved Save of Logs, Reports, RAS, and Model Check Data

I have started adding this to the end of task main in order to save my PSLF log data after my run completes.

if (-e "${dyt_label}.rep") then
		copy "node:${dyt_label}.rep" "node:${dyt_outdir}/${dyt_name}-$ENFRUNID/${dyt_label}-${dyt_busname}-$ENFJOBNAME.rep"
	endif
	copy "node:term.log" "node:${dyt_outdir}/${dyt_name}-$ENFRUNID/term-${dyt_label}-${dyt_busname}-$ENFJOBNAME.log"
	copy "node:notread.dyd" "node:${dyt_outdir}/${dyt_name}-$ENFRUNID/notread-$ENFJOBNAME.dyd"
	if (-e "pslf_ras_validation.csv") then
		copy "node:pslf_ras_validation.csv" "node:${dyt_outdir}/${dyt_name}-$ENFRUNID/pslf_ras_validation-$ENFJOBNAME.csv"
	endif
	if (-e "datacheck.txt") then
		copy "node:datacheck.txt" "node:${dyt_outdir}/${dyt_name}-$ENFRUNID/datacheck-$ENFJOBNAME.txt"
	endif

This will save debug information into the output folder like this.