;+ ; Abbreviation for 'emptystack'. See emptystack for help. ; ; @file_comments Collection of abbreviations. Use abbrev for a ; complete list of all abbreviations. Note that not all arguments to ; the abbreviated commands are always available through the abbreviations. ;

Contributed By: Jim Braatz, NRAO-CV ; ; @version $Id$ ;- pro es emptystack end ;+ ; Abbreviation for 'tellstack'. See tellstack for help. ;- pro ts tellstack end ;+ ; Abbreviation for 'appendstack'. See appendstack for help. ;- pro ap,index appendstack,index end ;+ ; Abbreviation for 'addstack'. See addstack for help. ;- pro as,first,last,step if n_elements(last) eq 0 then begin addstack,first endif else if n_elements(step) eq 0 then begin addstack,first,last endif else begin addstack,first,last,step endelse end ;+ ; Abbreviation for 'getnod'. See getnod for help. ;- pro gn,scan,_extra=extras getnod,scan,_extra=extras end ;+ ; Abbreviation for 'getfs'. See getfs for help. ;- pro gfs,scan,_extra=extras getfs,scan,_extra=extras end ;+ ; Abbreviation for 'getps'. See getps for help. ;- pro gps,scan,_extra=extras getps,scan,_extra=extras end ;+ ; Abbreviation for 'gettp'. See gettp for help. ;- pro gtp,scan,_extra=extras gettp,scan,_extra=extras end ;+ ; Abbreviation for 'getbs'. See getbs for help. ;- pro gbs,scan,_extra=extras getbs,scan,_extra=extras end ;+ ; Abbreviation for 'getsigref'. See getsigref for help. ;- pro gsr,sigscan,refscan,_extra=extras getsigref,sigscan,refscan,_extra=extras end ;+ ; Abbreviation for 'setregion'. See setregion for help. ;- pro sr setregion end ;+ ; Abbreviation for 'summary'. See summary for help. ;- pro sm summary end ;+ ; Abbreviation for 'unzoom'. See unzoom for help. ;- pro uz unzoom end ;+ ; Abbreviation for 'hanning'. See hanning for help. ;- pro ha hanning end ;+ ; Abbreviation for 'hanning with decimation'. See hanning, /decimate for help. ;- pro hd hanning, /decimate end ;+ ; Abbreviation for 'boxcar with decimation'. See boxcar, /decimate for help. ;- pro bx, width boxcar, width, /decimate end ;+ ; List the available abbreviations. ; ;

; This has to go last so that running "abbrev" will compile all the ; procs. ;- pro abbrev print print,'Abbreviations:' print print,' es : emptystack' print,' ts : tellstack' print,' ap : appendstack' print,' as : addstack' print,' gn : getnod' print,' gfs : getfs' print,' gtp : gettp' print,' gbs : getbs' print,' gps : getps' print,' gsr : getsigref' print,' sr : setregion' print,' sm : summary' print,' uz : unzoom' print,' ha : hanning' print,' hd : hanning with decimation' print,' bx : boxcar with decimation' print,'' print,' abbrev : list these abbreviations.' end