|
Developer Documentation |
|||||||||
| prev file | next file | ||||||||||
| SUMMARY: fields | routine DETAILS: routine | ||||||||||
./guide putchunk.pro
| 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.
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
| Parameters | |
|
chunk |
The array of spectrum data containers to save. |