;;-TOPOSITECONFIG.PRO---------------------------------------------------- ;; *** This does not need configuration for XOP *** ;; SITE/PLATFORM-DEPENDENT SETTINGS ;; ;; The only things you should need to set to get TOPO to run on ;; your system are (a) the desired widget font for your platform, and ;; (b) the special characters necessary for widgets to display the ;; angstrom symbol and the greek mu character. If you're not sure ;; about these special characters, just use an 'A' for the angstrom ;; symbol and a 'u' for the mu symbol. ;; ;; NOTE: Each line of this file must use valid IDL syntax. Lines ;; cannot be continued using the $ symbol. Be careful making changes: ;; If you mess it up, TOPO won't run. ;; ;;------------------------------------------------------------------------ ;; ;; UNIX PLATFORMS: ;; ;; TOPO Installation directory: ;; ;if (!version.os_family eq 'unix') then topohome=!dir+'/user_contrib/topo/' ;if (!version.os_family eq 'unix') then topohome='/users/b/srio/Working/idl/WINDT/topo/' ;; ;; default widget fonts and special characters: ;; ;; these work for me on HP-UX: if (!version.os eq "hp-ux") then font_w='' if (!version.os eq "hp-ux") then angstrom_w=string(208B) if (!version.os eq "hp-ux") then mu_w=string(243B) ;; these work for me on Sun OS if (!version.os eq "sunos") then font_w='helvR12' if (!version.os eq "sunos") then angstrom_w=string(197B) if (!version.os eq "sunos") then mu_w=string(181B) ;; add your unix platform here (don't forget to remove the ;; semicolons): ;; ; if (!version.os eq "YOUR UNIX OS") then font_w='' ; if (!version.os eq "YOUR UNIX OS") then angstrom_w='A' ; if (!version.os eq "YOUR UNIX OS") then mu_w='u' ;;------------------------------------------------------------------------ ;; ;; MACINTOSH: ;; ;; TOPO Installation directory: ;; if (!version.os eq 'MacOS') then topohome=!dir+'user_contrib:topo:' ;; ;; default widget fonts and special characters: ;; if (!version.os eq 'MacOS') then font_w='' if (!version.os eq 'MacOS') then angstrom_w=string(129B) if (!version.os eq 'MacOS') then mu_w='u' ;;------------------------------------------------------------------------ ;; ;; WINDOWS: ;; ;; ;; TOPO Installation directory: ;; if (!version.os eq 'Win32') then topohome=!dir+'\user_contrib\topo\' ;; ;; default widget fonts and special characters: ;; if (!version.os eq 'Win32') then font_w='' if (!version.os eq 'Win32') then angstrom_w='A' if (!version.os eq 'Win32') then mu_w='u' ;;------------------------------------------------------------------------ ;; ;; VMS: ;; ;; I have no clue about the VMS file system: ;; if (!version.os eq 'vms') then topohome=!dir+':[user_contrib.topo]' ;; ;; default widget fonts and special characters: ;; if (!version.os eq 'vms') then font_w='' if (!version.os eq 'vms') then angstrom_w='A' if (!version.os eq 'vms') then mu_w='u'