These are a few notes about the eiktest code. 6.25.90 I compiled the code successfully on hydra.pppl.gov (a DEC ALPHA). I had to checkout configure. The configure script in the geo directory is not appropriate right now, though, so I had to run configure to get the appropriate cache files for utils, then cd utils configure This generates the Makefile for utils. Then I did cd ../ cvs checkout /afs/pppl.gov/u/qpliu/cvsroot/codes/geometry/Makefile,v This restores the Makefile for eiktest. The eiktest makefile must be edited as follows: -N80 => *deleted* -p => -I ../utils => utils ../interpolate/interpolate.o => utils/fitpack.o and FFLAGS picks up the option -r8 (for double precision -- I don't know if this is effective with f90). and the compile line should read: eiktest: mods et.o geo.a utils/fitpack.o $(stubs) $(FC) -o eiktest et.o utils/fitpack.o $(stubs) $(geo_obj) \ utils/splines.o utils/netcdf.o $(FLIBS) (The alpha f90 compiler wants the module .o files on the compile line.) The compiled code seems to work well. I should build some test cases...