Manual
Teledyne LeCroy Automation API for PETracer/PETrainer
62
5.1.9 IRecOptions::Reset
HRESULT Reset ( )
Resets the recording options to the initial state.
Parameters
Return values
Remarks
For default values of recording options, see the remarks sections of all IRecOptions, IPERecOptions,
and IPERecOptions2 methods.
Example
WSH:
Set Analyzer = WScript.CreateObject( “CATC.PETracer” )
Set RecOptions = Analyzer.GetRecordingOptions
RecOptions.SetRecMode 2 ' Event trigger
RecOptions.SetBufferSize 1024*1024 ' 1Mb
RecOptions.SetPostTriggerPercentage 60 ' 60%
. . .
RecOptions.Reset
C++: