Produced by IDL 7.1.1
User Documentation

./guide
putchunk.pro

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

putchunk

procedure putchunk, chunk

This saves several data containers into the output file (keep file). These must be spectrum data containers. This is most often used in conjuction with getchunk.

Examples
Copy the input file to the keep file (this is currently only possible in line mode), one scan at a time (in a procedure or function).
    scans=get_scan_numbers(/unique)
    for i=0,(n_elements(scan)-1) do begin
       a = getchunk(scan=scans[i])
       putchunk, a
       data_free, a
    endfor
 
Version
$Id$

Parameters
chunk
in, required
spectrum data container arry
The array of spectrum data containers to save.


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