Index: mttroot/mtt/bin/trans/gdat2ps ================================================================== --- mttroot/mtt/bin/trans/gdat2ps +++ mttroot/mtt/bin/trans/gdat2ps @@ -13,10 +13,13 @@ ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ +## Revision 1.4 1996/08/14 09:21:17 peter +## Gnu plot conversion now done externally in dat2gdat +## ## Revision 1.3 1996/08/10 14:12:48 peter ## Revised to new dat format: [x y x y x y] in place of [x y y y]. ## ## Revision 1.2 1996/08/10 12:54:56 peter ## Reorganised data file for gnuplot input. @@ -26,15 +29,13 @@ ## ############################################################### echo Creating $1.ps - gnuplot << EOF set terminal postscript set output '$1.ps' set grid - # set size 0.2,0.2 - set title "$1. Generated by MTT on $(date)" + set title "$(date) $2 " plot '$1.gdat' with lines exit EOF Index: mttroot/mtt/bin/trans/gdat2view ================================================================== --- mttroot/mtt/bin/trans/gdat2view +++ mttroot/mtt/bin/trans/gdat2view @@ -13,16 +13,20 @@ ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ +## Revision 1.1 1996/08/15 08:50:20 peter +## Initial revision +## ############################################################### -echo Creating view of $1 +# echo Creating view of $1 gnuplot << EOF set grid - set title "$1. Generated by MTT on $(date)" +# set title "$1. Generated by MTT on $(date)" + set title "$(date) $2 " plot '$1.gdat' with lines pause 100000 EOF