steric_1.11
|
Makefile,
Makefile.sgi,
README.steric,
contplot,
craig.c,
craig.h,
crystal.c,
crystal.h,
integrat.c,
integrat.h,
leach.c,
leach.h,
long_steric,
makeit,
mapcont,
mapcont.c,
mapprof,
mapprof.c,
profplot,
proja.c,
proja.h,
ryan.c,
ryan.h,
ryan_perm.c,
ryan_perm.h,
ryan_quad.c,
ryan_quad.h,
steraid.c,
steraid.h,
stercalc.c,
stercalc.h,
stercomm.c,
stercomm.h,
sterdefn.h,
stererr.h,
sterfile.c,
sterfile.h,
stergrap.c,
stergrap.h,
stergrp.c,
stergrp.h,
steric,
steric.TeX,
steric.err,
steric.grp,
steric.hlp,
steric.ini,
steric.par,
stermain.c,
stermem.c,
stermem.h,
sterover.c,
sterover.h,
sterplot,
stertext.c,
stertext.h,
test.bgf,
test.inp,
vectors.c,
vectors.h,
|
|
|
#!/bin/sh
#
if [ -r $1.ctr ]; then
mapcont $2 $3 $4 $5 $6 <$1.ctr >$1.ctr.cart
echo "set parametric" >$1.ctr.plt
echo "set contour" >>$1.ctr.plt
echo "set title \"Cone Angle 3D Contour Plot of $1\"" >>$1.ctr.plt
echo "set terminal postscript portrait solid" >>$1.ctr.plt
echo "set size .8, 1.3" >>$1.ctr.plt
echo "set output \"$1.ps\"" >>$1.ctr.plt
echo "set nokey" >>$1.ctr.plt
echo "splot \"$1.ctr.cart\" with lines" >>$1.ctr.plt
echo "exit" >>$1.ctr.plt
gnuplot $1.ctr.plt >gnuplot.log
ghostview $1.ps
#latex $1.tex
#dvilj $1.dvi
#lpr -Plaser $1.lj
else
echo "Error $1.ctr file not found"
echo "Did you set the contour output option in \"change settings mode\""
fi
|