#! /bin/csh -f
## graf: pipe the input file through xyplot 
##       and display to plot it on the screen

if ($?DISPLAY) then
   xyplot $argv | xysee -geometry 510x500+0+0
   else
   xyplot $argv | xyview -wx 500 500 0 10
   endif
