#!/bin/csh -f # Please change the following line to reflect your own setup #setenv DSS_ROOT /scisoft/dss setenv DSS_ROOT /your/path # <<<=== the directory that contains the following: bin.hp bin.lin86 bin.macosx bin.sun4s dino.jpg headers INSTALL README.html scripts # # Do not change anything below. # if ( $1 == "-h" || $1 == "--help") then echo "Usage: $0 [-i input_file]" exit endif # Use DSS_HOST if the data files are to be retrieved via http setenv DSS_HOST "archive.eso.org" setenv DSS_PORT "80" # Use DSS_LOG if logging function should be switched on setenv DSS_LOG "http://archive.eso.org/cgi-bin/dsslog" # mount point for the data CD's or disks # must correspond to doc root of the http server setenv DSS_MTPT "/dss1" # Directory with header files setenv DSS_HDRS $DSS_ROOT/headers # Header file extension setenv DSS_EXTN hhh # Plate list file setenv DSS_PLTL locomp20.lis # Prefix for CD-ROM disc volume labels setenv DSS_LBPF USA_AURA_STSI_DSS1 # Do not change any of the one below setenv DSS_MNT "cd" setenv DSS_DMNT "" setenv DSS_DEV "" setenv DSS_CLIENT "dss-2.56m" switch ( "`uname -rms`" ) case HP-UX*: setenv ARCH hp breaksw case SunOS*5.*: setenv ARCH sun4s breaksw case Linux*86*: setenv ARCH lin86 breaksw case Darwin*: setenv ARCH macosx breaksw default: setenv ARCH unknown echo "Error - unrecognized computer platform" breaksw endsw # Execute th actual getimage program $DSS_ROOT/bin.$ARCH/dss $*