Name

vnmr — Load and VNMR parameter files.

Synopsis

vnmr exists
vnmr get
vnmr load
vnmr remove

exists

vnmr exists handleName parameterName

Returns 0 or 1 indicating whetherspecified parameter exists in the parameter set specified with handleName.

vnmr exists vpar4 sw

1

get

vnmr get handleName parameterName

Get the value of the specified parameter from the parameter set specified with handleName.

vnmr get vpar4 sw

7509.62

load

vnmr load procParFileData

Reads in the specified VNMR procpar file data. Returns a handle that can be used to refer to these parameters. The data must have been previously read and stored in to a Tcl variable. For exampe:

set f1 [open /Users/brucejohnson/data/proton.fid/procpar]
set d [read $f1]
close $f1
vnmr load $d

By working this way data can be loaded not only from normal files, but other sources such as network sockets.

remove

vnmr remove handleName

Remove the specified parameter set from memory.