#!/bin/csh -f #+ # fullframe -- reset DEIMOS detector to read out entirety of each CCD # # Purpose: # Reset the value of the WINDOW keyword to enable readout of # all rows and columns on each CCD. # # Usage: # fullframe # # Arguments: # none # # Output: # none # # Restrictions: # none # # Exit values: # 0 = normal completion # 1 = wrong number of arguments # # Example: # 1) Reset window to fullframe mode: # fullframe #- # Modification history: # 2002-Oct-06 GDW Original version #----------------------------------------------------------------------- set buf = $0 set cmd = $buf:t set usage = "Usage: $cmd" # verify args... if ( $#argv > 0 ) then printf "$usage\n" exit 1 endif # reset window... modify -s deiccd window=0,0,0,2048,4096 exit