Produced by IDL 7.1.1
User Documentation

./guide
summary.pro

Last modification date:
Wed Sep 28 13:27:09 2016

summary

procedure summary[, file], [bscan=integer], [escan=integer]

This procedure lists a summary of the input dataset. The listing can be sent to a file instead of directly to the current screen.

This is designed to work with un-calibrated GBT data and is likely to give confusing results for other data. For other data, list is usually more useful.

Note: The numbers (nIF, nInt, nFd) are the number of unique values for each parameter (ifnum, intnum, fdnum) found for that scan. All combinations of all possible values of ifnum, intnum, fdnum, and plnum may not be present in that scan.

Examples
    filein,'myfile.fits'
    summary
       ; summarize the same output to a file instead of the screen
    summary,'myfile.summary'
       ; summarize starting from scan 14
    summary, bscan=14
       ; summarize through scan 24
    summary, escan=24
       ; summarize from scan 14 through scan 24
    summary, bscan=14, escan=24
 
Version
$Id$

Parameters
file
in, optional
string (def. /dev/tty)
The file to write to. Defaults to the current screen, using "more" to page the output.

Keywords
bscan
in, optional
integer
The smallest scan number to summarize. Scan numbers less than bscan are ignored. When unspecified no scans are excluded by this keyword.
escan
in, optional
integer
The largest scan number to summarize. Scan numbers larger than escan are ignored. When unspecified no scans are excluded by this keyword.


Produced by IDLdoc 1.6 on Wed Sep 28 13:27:36 2016