LeCroy 3513 (CAMAC)

The functions in this section operate the LeCroy 3513 CAMAC module.

reset_adc( device_id) = code, resadc( device_id)
Resets the LeCroy_3513 ADC and selects a resolution.

  Code     Resolution
  250        9728
  500        9472
 1000        9216
 2000        8960
 4000        8704
 8000        8448

read_memory( device_id, scan_name, offset, n_data), rm()
Reads n_data points of the memory and stores them in scan_name.

reset_memory( device_id), resmem()
Clears the memory.

e.g.:
create scan_name 0 10 999
reset_adc(adc) = 9216
do reset_memory(memory)
st(t1) = sample_time
...
do wft(t1)
* = read_memory( memory, scan_name, 0, 1000)