# LOGIN.CL -- User login file for the IRAF command language. # CfA local version # Identify login.cl version (checked in images.cl). if (defpar ("logver")) logver = "IRAF V2.11 May 1997" set home = "/home/huchra/iraf/" set imdir = "" set uparm = "home$uparm/" set userid = "huchra" # This local graphcap file is set up by mkiraf. # If you are using Sunview, comment it out. set graphcap = "home$graphcap" # Set the terminal type. if (envget("TERM") == "sun") { if (!access (".hushiraf")) print "setting terminal type to gterm..." stty gterm } else if (envget("TERM") == "xterm") { if (!access (".hushiraf")) print "setting terminal type to xterm..." stty xterm } else if (envget("TERM") == "network") { if (!access (".hushiraf")) print "setting terminal type to vt100..." stty vt100 } else { if (!access (".hushiraf")) print "setting terminal type to xterm..." stty xterm } # Set printer if (envget("PRINTER") == "") { set printer = psp5 set stdplot = psp5 } else { set printer = envget("PRINTER") set stdplot = envget("PRINTER") } # Uncomment and edit to change the defaults. #set editor = vi #set stdimage = imt800 #set stdimcur = stdimage #set clobber = no #set filewait = yes #set cmbuflen = 512000 #set min_lenuserarea = 64000 #set imtype = "imh" set impkden = 1.0 # IMTOOL/XIMAGE stuff. Set node to the name of your workstation to # enable remote image display. The trailing "!" is required. #set node = "my_workstation!" # CL parameters you mighth want to change. #ehinit = "nostandout eol noverify" #epinit = "standout showall" showtype = yes # Default USER package; extend or modify as you wish. Note that this can # be used to call FORTRAN programs from IRAF. package user task $adb $bc $cal $cat $comm $cp $csh $date $df $diff = "$foreign" task $du $find $finger $ftp $grep $lpq $ls $mail $make = "$foreign" task $man $mon $mv $nm $od $ps $rcp $rlogin $rsh $ruptime = "$foreign" task $rwho $sh $spell $sps $strings $su $telnet $tip $top = "$foreign" task $touch $vi $emacs $w $wc $less $rusers $sync $pwd = "$foreign" task $xc $mkpkg $generic $rtar $wtar $buglog = "$foreign" #task $fc = "$xc -h $* -limfort -lsys -lvops -los" task $fc = ("$" // envget("iraf") // "unix/hlib/fc.csh" // " -h $* -limfort -lsys -lvops -los") task $nbugs = ("$(setenv EDITOR 'buglog -e';" // "less -Cqm +G " // envget ("iraf") // "local/bugs.*)") task $cls = "$clear;ls" if (access ("home$loginuser.cl")) cl < "home$loginuser.cl" ; keep; clpackage prcache directory cache directory page type help # Print the message of the day. if (access (".hushiraf")) menus = no else { clear; type hlib$motd } # Delete any old MTIO lock (magtape position) files. if (deftask ("mtclean")) mtclean else delete uparm$mt?.lok,uparm$*.wcs verify- # List any packages you want loaded at login time, ONE PER LINE. #images # general image operators #plot # graphics tasks #dataio # data conversions, import export lists # list processing # The if(deftask...) is needed for V2.9 compatibility. if (deftask ("proto")) proto # prototype or ad hoc tasks #tv # image display #noao # optical astronomy packages #stsdas # (uncomment to load package `stsdas') utilities # miscellaneous utilities # Load saotdc and subpackages so we can access simple unix commands # and startup saoimage with correct I/O pipes (task ximtool) saotdc # (uncomment to load package `saotdc') untools itools task newclassify = "/ta/nur4/kochanek/massfunc/iraf/scripts/flwo60/newclassify.cl" task iterstat = "/ta/nur4/kochanek/massfunc/iraf/scripts/flwo60/iterstat.cl" task pclear = "/ta/nur4/kochanek/massfunc/iraf/scripts/flwo60/pclear.cl" # Get terminal type from Unix environment #stty envget("TERM") #set stdgraph = envget("TERM") #sizetty keep